From 66c67bb6352d28a6b748e837a8a0f89fee9f4879 Mon Sep 17 00:00:00 2001
From: Pieter Germishuys LONGTEXT (Synonyms: LONGCHAR, MEMO, NOTE) ```Call MyProc(0)```
+Additionally, each page on a tab control has its own **Controls** collection. By using a page's **Controls** collection, you can refer to controls on each page. The following code enumerates the controls for each page of the tab control on the Employees form.
```vb
diff --git a/access/Concepts/Criteria-Expressions/avg-function-microsoft-access-sql.md b/access/Concepts/Criteria-Expressions/avg-function-microsoft-access-sql.md
index 880ec493e85..d5b5ffe8c60 100644
--- a/access/Concepts/Criteria-Expressions/avg-function-microsoft-access-sql.md
+++ b/access/Concepts/Criteria-Expressions/avg-function-microsoft-access-sql.md
@@ -1,22 +1,21 @@
---
-title: Avg Function (Microsoft Access SQL)
+title: Avg function (Microsoft Access SQL)
keywords: jetsql40.chm5278823
f1_keywords:
- jetsql40.chm5278823
ms.prod: access
ms.assetid: be955493-a236-2dbe-a08d-2a7f6d113b39
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Avg Function (Microsoft Access SQL)
+# Avg function (Microsoft Access SQL)
**Applies to:** Access 2013 | Access 2016
Calculates the arithmetic mean of a set of values contained in a specified field on a query.
## Syntax
-
**Avg(** _expr_ **)**
@@ -24,17 +23,15 @@ The _expr_ placeholder represents a string expression identifying the field tha
## Remarks
-
-The average calculated by **Avg** is the arithmetic mean (the sum of the values divided by the number of values). You could use **Avg**, for example, to calculate average freight cost.
+The average calculated by **Avg** is the arithmetic mean (the sum of the values divided by the number of values). You could use **Avg**, for example, to calculate average freight cost.
-The **Avg** function does not include any **Null** fields in the calculation.
+The **Avg** function does not include any **Null** fields in the calculation.
-You can use **Avg** in a query expression and in the **SQL** property of a **QueryDef** object or when creating a Recordset object based on an SQL query.
+You can use **Avg** in a query expression and in the **SQL** property of a **QueryDef** object or when creating a Recordset object based on an SQL query.
## Example
-
This example uses the Orders table to calculate the average freight charges for orders with freight charges over $100.
@@ -70,12 +67,9 @@ End Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
-- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
-- [Search for specific Access error codes on Bing](https://www.bing.com/)
-- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
-- [Access wiki on UtterAcess](https://www.utteraccess.com/forum/index.php?act=idx)
-- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
+- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
+- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Criteria-Expressions/calculate-fields-in-domain-aggregate-functions.md b/access/Concepts/Criteria-Expressions/calculate-fields-in-domain-aggregate-functions.md
index 35bdea1dd0a..f7ffd324113 100644
--- a/access/Concepts/Criteria-Expressions/calculate-fields-in-domain-aggregate-functions.md
+++ b/access/Concepts/Criteria-Expressions/calculate-fields-in-domain-aggregate-functions.md
@@ -1,15 +1,15 @@
---
-title: Calculate Fields in Domain Aggregate Functions
+title: Calculate fields in domain aggregate functions
keywords: vbaac10.chm5187048
f1_keywords:
- vbaac10.chm5187048
ms.prod: access
ms.assetid: 73c27d1c-0a3c-03e4-c17c-337133d7b316
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Calculate Fields in Domain Aggregate Functions
+# Calculate fields in domain aggregate functions
You can use the string expression argument (the _expr_ argument) in a domain aggregate function to perform a calculation on values in a field. For example, you can calculate a percentage (such as a surcharge or sales tax) by dividing a field value by a number.
@@ -26,9 +26,8 @@ The following table provides examples of calculations on fields from an Orders t
|Subtract one field from another|"[ReorderLevel] - [UnitsInStock]"|
You would most likely use a domain aggregate function in a macro or module, in a calculated control on a form or report, or in a criteria expression in a query.
-For example, you can calculate the average discount amount for all orders in an Order Details table. Multiply the Unit Price and Discount fields to determine the discount for each order, then calculate the average. Enter the following example in a procedure in a module.
-
+For example, you can calculate the average discount amount for all orders in an Order Details table. Multiply the Unit Price and Discount fields to determine the discount for each order, and then calculate the average. Enter the following example in a procedure in a module.
```vb
Dim dblX As Double
diff --git a/access/Concepts/Criteria-Expressions/count-function-microsoft-access-sql.md b/access/Concepts/Criteria-Expressions/count-function-microsoft-access-sql.md
index 52aa1710932..cec59145f4b 100644
--- a/access/Concepts/Criteria-Expressions/count-function-microsoft-access-sql.md
+++ b/access/Concepts/Criteria-Expressions/count-function-microsoft-access-sql.md
@@ -1,36 +1,35 @@
---
-title: Count Function (Microsoft Access SQL)
+title: Count function (Microsoft Access SQL)
keywords: jetsql40.chm5278824
f1_keywords:
- jetsql40.chm5278824
ms.prod: access
ms.assetid: 01743d33-d7de-12b5-eb0f-eb775b0bcffd
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Count Function (Microsoft Access SQL)
+# Count function (Microsoft Access SQL)
**Applies to:** Access 2013 | Access 2016
Calculates the number of records returned by a query.
## Syntax
-
**Count(** _expr_ **)**
The _expr_ placeholder represents a string expression identifying the field that contains the data you want to count or an expression that performs a calculation using the data in the field. Operands in _expr_ can include the name of a table field or function (which can be either intrinsic or user-defined but not other SQL aggregate functions). You can count any kind of data, including text.
-
## Remarks
-
-You can use **Count** to count the number of records in an underlying query. For example, you could use **Count** to count the number of orders shipped to a particular country or region.
+You can use **Count** to count the number of records in an underlying query. For example, you could use **Count** to count the number of orders shipped to a particular country or region.
Although _expr_ can perform a calculation on a field, **Count** simply tallies the number of records. It does not matter what values are stored in the records.
-The **Count** function does not count records that have **Null** fields unless _expr_ is the asterisk (*) wildcard character. If you use an asterisk, **Count** calculates the total number of records, including those that contain **Null** fields. **Count(** * **)** is considerably faster than **Count(** [ _Column Name_ ] **)**. Do not enclose the asterisk in quotation marks (' '). The following example calculates the number of records in the Orders table:
+The **Count** function does not count records that have **Null** fields unless _expr_ is the asterisk (*) wildcard character. If you use an asterisk, **Count** calculates the total number of records, including those that contain **Null** fields. **Count(** * **)** is considerably faster than **Count(** [ _Column Name_ ] **)**. Do not enclose the asterisk in quotation marks (' ').
+
+The following example calculates the number of records in the Orders table:
```sql
SELECT Count(*)
@@ -45,11 +44,10 @@ Count('ShippedDate & Freight')
AS [Not Null] FROM Orders;
```
-You can use **Count** in a query expression. You can also use this expression in the **SQL** property of a **QueryDef** object or when creating a **Recordset** object based on an SQL query.
+You can use **Count** in a query expression. You can also use this expression in the **SQL** property of a **QueryDef** object or when creating a **Recordset** object based on an SQL query.
## Example
-
This example uses the Orders table to calculate the number of orders shipped to the United Kingdom.
@@ -87,12 +85,8 @@ End Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
-- [Search for specific Access error codes on Bing](https://www.bing.com/)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
-- [Access wiki on UtterAcess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
-- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
-
+- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
\ No newline at end of file
diff --git a/access/Concepts/Criteria-Expressions/date-and-time-criteria-expressions.md b/access/Concepts/Criteria-Expressions/date-and-time-criteria-expressions.md
index 817f47a6319..3329f73c5d6 100644
--- a/access/Concepts/Criteria-Expressions/date-and-time-criteria-expressions.md
+++ b/access/Concepts/Criteria-Expressions/date-and-time-criteria-expressions.md
@@ -1,25 +1,22 @@
---
-title: Date and Time Criteria Expressions
+title: Date and time criteria expressions
keywords: vbaac10.chm10885
f1_keywords:
- vbaac10.chm10885
ms.prod: access
ms.assetid: fff89f87-444e-b275-c7b1-4c82240e57f0
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Date and Time Criteria Expressions
+# Date and time criteria expressions
To specify date or time criteria for an operation, you supply a date or time value as part of the string expression that forms the _criteria_ argument. This value must be enclosed in number signs (#).
+> [!NOTE]
+> The number signs indicate to Access that the _criteria_ argument contains a date or time within a string.
- **Note** The number signs indicate to Access that the _criteria_ argument contains a date or time within a string.
-
-
-Suppose that you are creating a filter for an Employees form to display records for all employees born on or after January 1, 1960. You could construct the _criteria_ argument for the form's **Filter** or **ServerFilter** property as in the following example. Note the placement of the number signs.
-
-
+Suppose that you are creating a filter for an Employees form to display records for all employees born on or after January 1, 1960. You could construct the _criteria_ argument for the form's **[Filter](../../../api/Access.Form.Filter(property).md)** or **[ServerFilter](../../../api/Access.Form.ServerFilter.md)** property as in the following example. Note the placement of the number signs.
```vb
diff --git a/access/Concepts/Criteria-Expressions/date-and-time-criteria-from-a-control-on-a-form.md b/access/Concepts/Criteria-Expressions/date-and-time-criteria-from-a-control-on-a-form.md
index 04a5ceefb8d..914f6975473 100644
--- a/access/Concepts/Criteria-Expressions/date-and-time-criteria-from-a-control-on-a-form.md
+++ b/access/Concepts/Criteria-Expressions/date-and-time-criteria-from-a-control-on-a-form.md
@@ -1,15 +1,15 @@
---
-title: Date and Time Criteria from a Control on a Form
+title: Date and time criteria from a control on a form
keywords: vbaac10.chm5187147
f1_keywords:
- vbaac10.chm5187147
ms.prod: access
ms.assetid: 132cf297-eb3b-68a1-7a47-b832931a5091
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Date and Time Criteria from a Control on a Form
+# Date and time criteria from a control on a form
If you want to change the _criteria_ argument for an operation based on a user's decision, you can specify that the criteria comes from a control on a form. For example, you could specify that the _criteria_ argument comes from a list box containing order dates from an Orders table.
@@ -17,12 +17,10 @@ To specify date and time criteria that comes from a control on a form, you inclu
In addition to enclosing the entire string expression in double quotation marks ("), you must also ensure that the date or time criteria within the string expression is enclosed in number signs (#). The number signs must be included in the strings flanking the expression that references the control on the form.
+> [!NOTE]
+> The number signs indicate to Access that the _criteria_ argument contains a date or time within a string.
- **Note** The number signs indicate to Access that the _criteria_ argument contains a date or time within a string.
-
-The following examples set a form's **Filter** or **ServerFilter** property based on criteria that comes from a control named HireDate that's on the form. Note the placement of the number signs.
-
-
+The following examples set a form's **[Filter](../../../api/Access.Form.Filter(property).md)** or **[ServerFilter](../../../api/Access.Form.ServerFilter.md)** property based on criteria that comes from a control named HireDate that's on the form. Note the placement of the number signs.
```vb
Forms!Employees.Filter = "[HireDate] >= #" _
@@ -30,9 +28,6 @@ Forms!Employees.Filter = "[HireDate] >= #" _
Forms!Employees.FilterOn = True
```
-- or -
-
-
```vb
Forms!Employees.ServerFilter = "[HireDate] >= #" _
@@ -40,21 +35,19 @@ Forms!Employees.ServerFilter = "[HireDate] >= #" _
Forms!Employees.FilterOn = True
```
-If the current value of the HireDate control is , the **Filter** or **ServerFilter** property will have the following _criteria_ argument:
-
+If the current value of the HireDate control is May 1, 1992, the **Filter** or **ServerFilter** property will have the following _criteria_ argument:
```text
"[HireDate] >= #5-1-92#"
```
-
- **Tip** To troubleshoot an expression in the _criteria_ argument, break the expression into smaller components and test each individually in the Immediate window. When all of the components are working correctly, put them back together one at a time until the complete expression works correctly.
+> [!TIP]
+> To troubleshoot an expression in the _criteria_ argument, break the expression into smaller components and test each individually in the Immediate window. When all of the components are working correctly, put them back together one at a time until the complete expression works correctly.
You can also include a variable representing a date or time in the _criteria_ argument. The variable should be separate from the string expression, so that Access will evaluate the variable first and then concatenate it with the rest of the string expression. The date or time criteria must be enclosed in number signs.
-The following example shows how to construct a _criteria_ argument that includes a variable representing a date or time:
-
+The following example shows how to construct a _criteria_ argument that includes a variable representing a date or time:
```vb
Dim datHireDate As Date
diff --git a/access/Concepts/Criteria-Expressions/functions-alphabetical-list.md b/access/Concepts/Criteria-Expressions/functions-alphabetical-list.md
index 8ebbf8437ef..15714cbc019 100644
--- a/access/Concepts/Criteria-Expressions/functions-alphabetical-list.md
+++ b/access/Concepts/Criteria-Expressions/functions-alphabetical-list.md
@@ -1,348 +1,346 @@
---
-title: Functions (Alphabetical List)
+title: Functions (alphabetical list)
ms.prod: access
ms.assetid: c32092f7-cac1-5c29-956d-20e09506cb16
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Functions (Alphabetical List)
+# Functions (alphabetical list)
The following topics describe common functions used in Access expressions.
-
## Common Access expression functions
-[Abs Function ](../../../language/reference/User-Interface-Help/abs-function.md)
-
-[Array Function ](../../../language/reference/User-Interface-Help/array-function.md)
+- [Abs function](../../../language/reference/User-Interface-Help/abs-function.md)
+- [Array function](../../../language/reference/User-Interface-Help/array-function.md)
+- [Asc function](../../../language/reference/User-Interface-Help/asc-function.md)
+- [Atn function](../../../language/reference/User-Interface-Help/atn-function.md)
+- [Avg function](avg-function-microsoft-access-sql.md)
+- [CallByName function](../../../language/reference/User-Interface-Help/callbyname-function.md)
+- [CBool function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CByte function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CCur function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CDate function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CDbl function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CDec function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [Choose function](../../../language/reference/User-Interface-Help/choose-function.md)
+- [Chr function](../../../language/reference/User-Interface-Help/chr-function.md)
+- [CInt function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CLng function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [Command function](../../../language/reference/User-Interface-Help/command-function.md)
+- [Cos function](../../../language/reference/User-Interface-Help/cos-function.md)
+- [Count function](count-function-microsoft-access-sql.md)
+- [CreateObject function](../../../language/reference/User-Interface-Help/createobject-function.md)
+- [CSng function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CStr function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CurDir function](../../../language/reference/User-Interface-Help/curdir-function.md)
+- [CurrentUser method](../../../api/Access.Application.CurrentUser.md)
+- [CVar function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CVErr function](../../../language/reference/User-Interface-Help/cverr-function.md)
+- [Date function](../../../language/reference/User-Interface-Help/date-function.md)
+- [DateAdd function](../../../language/reference/User-Interface-Help/dateadd-function.md)
+- [DateDiff function](../../../language/reference/User-Interface-Help/datediff-function.md)
+- [DatePart function](../../../language/reference/User-Interface-Help/datepart-function.md)
+- [DateSerial function](../../../language/reference/User-Interface-Help/dateserial-function.md)
+- [DateValue function](../../../language/reference/User-Interface-Help/datevalue-function.md)
+- [DAvg function](../../../api/Access.application.davg.md)
+- [Day function](../../../language/reference/User-Interface-Help/day-function.md)
+- [DCount method](../../../api/Access.Application.DCount.md)
+- [DDB function](../../../language/reference/User-Interface-Help/ddb-function.md)
+- [DDEInitiate method](../../../api/Access.Application.DDEInitiate.md)
+- [DDERequest method](../../../api/Access.Application.DDERequest.md)
+- [DFirst method](../../../api/Access.Application.DFirst.md)
+- [Dir function](../../../language/reference/User-Interface-Help/dir-function.md)
+- [DLast method](../../../api/Access.Application.DLast.md)
+- [DLookup method](../../../api/Access.Application.DLookup.md)
+- [DMax method](../../../api/Access.Application.DMax.md)
+- [DMin method](../../../api/Access.Application.DMin.md)
+- [DoEvents function](../../../language/reference/User-Interface-Help/doevents-function.md)
+- [DStDev method](../../../api/Access.Application.DStDev.md)
+- [DStDevP method](../../../api/Access.Application.DStDevP.md)
+- [DSum method](../../../api/Access.Application.DSum.md)
+- [DVar method](../../../api/Access.Application.DVar.md)
+- [DVarP method](../../../api/Access.Application.DVarP.md)
+- [Environ function](../../../language/reference/User-Interface-Help/environ-function.md)
+- [EOF function](../../../language/reference/User-Interface-Help/eof-function.md)
+- [Error function](../../../language/reference/User-Interface-Help/error-function.md)
+- [EuroConvert method](../../../api/Access.Application.EuroConvert.md)
+- [Eval method](../../../api/Access.Application.Eval.md)
+- [Exp function](../../../language/reference/User-Interface-Help/exp-function.md)
+- [FileAttr function](../../../language/reference/User-Interface-Help/fileattr-function.md)
+- [FileDateTime function](../../../language/reference/User-Interface-Help/filedatetime-function.md)
+- [FileLen function](../../../language/reference/User-Interface-Help/filelen-function.md)
+- [Filter function](../../../language/reference/User-Interface-Help/filter-function.md)
+- [Fix function](../../../language/reference/User-Interface-Help/int-fix-functions.md)
+- [Format function](../../../language/reference/User-Interface-Help/format-function-visual-basic-for-applications.md)
+- [FormatCurrency function](../../../language/reference/User-Interface-Help/formatcurrency-function.md)
+- [FormatDateTime function](../../../language/reference/User-Interface-Help/formatdatetime-function.md)
+- [FormatNumber function](../../../language/reference/User-Interface-Help/formatnumber-function.md)
+- [FormatPercent function](../../../language/reference/User-Interface-Help/formatpercent-function.md)
+- [FreeFile function](../../../language/reference/User-Interface-Help/freefile-function.md)
+- [FV function](../../../language/reference/User-Interface-Help/fv-function.md)
+- [GetAllSettings function](../../../language/reference/User-Interface-Help/getallsettings-function.md)
+- [GetAttr function](../../../language/reference/User-Interface-Help/getattr-function.md)
+- [GetObject function](../../../language/reference/User-Interface-Help/getobject-function.md)
+- [GetSetting function](../../../language/reference/User-Interface-Help/getsetting-function.md)
+- [GUIDFromString method](../../../api/Access.Application.GUIDFromString.md)
+- [Hex function](../../../language/reference/User-Interface-Help/hex-function.md)
+- [Hour function](../../../language/reference/User-Interface-Help/hour-function.md)
+- [HtmlEncode method](../../../api/Access.Application.HtmlEncode.md)
+- [HyperlinkPart method](../../../api/Access.Application.HyperlinkPart.md)
+- [IIf function](../../../language/reference/User-Interface-Help/iif-function.md)
+- [IMEStatus function](../../../language/reference/User-Interface-Help/imestatus-function.md)
+- [Input function](../../../language/reference/User-Interface-Help/input-function.md)
+- [InputBox function](../../../language/reference/User-Interface-Help/inputbox-function.md)
+- [InStr function](../../../language/reference/User-Interface-Help/instr-function.md)
+- [InStrRev function](../../../language/reference/User-Interface-Help/instrrev-function.md)
+- [Int function](../../../language/reference/User-Interface-Help/int-fix-functions.md)
+- [IPmt function](../../../language/reference/User-Interface-Help/ipmt-function.md)
+- [IRR function](../../../language/reference/User-Interface-Help/irr-function.md)
+- [IsArray function](../../../language/reference/User-Interface-Help/isarray-function.md)
+- [IsDate function](../../../language/reference/User-Interface-Help/isdate-function.md)
+- [IsEmpty function](../../../language/reference/User-Interface-Help/isempty-function.md)
+- [IsError function](../../../language/reference/User-Interface-Help/iserror-function.md)
+- [IsMissing function](../../../language/reference/User-Interface-Help/ismissing-function.md)
+- [IsNull function](../../../language/reference/User-Interface-Help/isnull-function.md)
+- [IsNumeric function](../../../language/reference/User-Interface-Help/isnumeric-function.md)
+- [IsObject function](../../../language/reference/User-Interface-Help/isobject-function.md)
+- [Join function](../../../language/reference/User-Interface-Help/join-function.md)
+- [LBound function](../../../language/reference/User-Interface-Help/lbound-function.md)
+- [LCase function](../../../language/reference/User-Interface-Help/lcase-function.md)
+- [Left function](../../../language/reference/User-Interface-Help/left-function.md)
+- [Len function](../../../language/reference/User-Interface-Help/len-function.md)
+- [Loc function](../../../language/reference/User-Interface-Help/loc-function.md)
+- [LOF function](../../../language/reference/User-Interface-Help/lof-function.md)
+- [Log function](../../../language/reference/User-Interface-Help/log-function.md)
+- [LTrim function](../../../language/reference/User-Interface-Help/ltrim-rtrim-and-trim-functions.md)
+- [Max function](min-max-functions-microsoft-access-sql.md)
+- [Mid function](../../../language/reference/User-Interface-Help/mid-function.md)
+- [Min function](min-max-functions-microsoft-access-sql.md)
+- [Minute function](../../../language/reference/User-Interface-Help/minute-function.md)
+- [MIRR function](../../../language/reference/User-Interface-Help/mirr-function.md)
+- [Month function](../../../language/reference/User-Interface-Help/month-function.md)
+- [MonthName function](../../../language/reference/User-Interface-Help/monthname-function.md)
+- [MsgBox function](../../../language/reference/User-Interface-Help/msgbox-function.md)
+- [Now function](../../../language/reference/User-Interface-Help/now-function.md)
+- [NPer function](../../../language/reference/User-Interface-Help/nper-function.md)
+- [NPV function](../../../language/reference/User-Interface-Help/npv-function.md)
+- [Nz method](../../../api/Access.Application.Nz.md)
+- [Oct function](../../../language/reference/User-Interface-Help/oct-function.md)
+- [Partition function](../../../language/reference/User-Interface-Help/partition-function.md)
+- [PlainText method](../../../api/Access.Application.PlainText.md)
+- [Pmt function](../../../language/reference/User-Interface-Help/pmt-function.md)
+- [PPmt function](../../../language/reference/User-Interface-Help/ppmt-function.md)
+- [PV function](../../../language/reference/User-Interface-Help/pv-function.md)
+- [QBColor function](../../../language/reference/User-Interface-Help/qbcolor-function.md)
+- [Rate function](../../../language/reference/User-Interface-Help/rate-function.md)
+- [Replace function](../../../language/reference/User-Interface-Help/replace-function.md)
+- [RGB function](../../../language/reference/User-Interface-Help/rgb-function.md)
+- [Right function](../../../language/reference/User-Interface-Help/right-function.md)
+- [Rnd function](../../../language/reference/User-Interface-Help/rnd-function.md)
+- [Round function](../../../language/reference/User-Interface-Help/round-function.md)
+- [RTrim function](../../../language/reference/User-Interface-Help/ltrim-rtrim-and-trim-functions.md)
+- [Second function](../../../language/reference/User-Interface-Help/second-function.md)
+- [Seek function](../../../language/reference/User-Interface-Help/seek-function.md)
+- [Sgn function](../../../language/reference/User-Interface-Help/sgn-function.md)
+- [Shell function](../../../language/reference/User-Interface-Help/shell-function.md)
+- [Sin function](../../../language/reference/User-Interface-Help/sin-function.md)
+- [SLN function](../../../language/reference/User-Interface-Help/sln-function.md)
+- [Space function](../../../language/reference/User-Interface-Help/space-function.md)
+- [Spc function](../../../language/reference/User-Interface-Help/spc-function.md)
+- [Split function](../../../language/reference/User-Interface-Help/split-function.md)
+- [Sqr function](../../../language/reference/User-Interface-Help/sqr-function.md)
+- [StDev function](stdev-stdevp-functions-microsoft-access-sql.md)
+- [StDevP function](stdev-stdevp-functions-microsoft-access-sql.md)
+- [Str function](../../../language/reference/User-Interface-Help/str-function.md)
+- [StrComp function](../../../language/reference/User-Interface-Help/strcomp-function.md)
+- [StrConv function](../../../language/reference/User-Interface-Help/strconv-function.md)
+- [String function](../../../language/reference/User-Interface-Help/string-function.md)
+- [StringFromGUID method](../../../api/Access.Application.StringFromGUID.md)
+- [StrReverse function](../../../language/reference/User-Interface-Help/strreverse-function.md)
+- [Sum function](sum-function-microsoft-access-sql.md)
+- [Switch function](../../../language/reference/User-Interface-Help/switch-function.md)
+- [SYD function](../../../language/reference/User-Interface-Help/syd-function.md)
+- [Tab function](../../../language/reference/User-Interface-Help/tab-function.md)
+- [Tan function](../../../language/reference/User-Interface-Help/tan-function.md)
+- [Time function](../../../language/reference/User-Interface-Help/time-function.md)
+- [Timer function](../../../language/reference/User-Interface-Help/timer-function.md)
+- [TimeSerial function](../../../language/reference/User-Interface-Help/timeserial-function.md)
+- [TimeValue function](../../../language/reference/User-Interface-Help/timevalue-function.md)
+- [Trim function](../../../language/reference/User-Interface-Help/ltrim-rtrim-and-trim-functions.md)
+- [TypeName function](../../../language/reference/User-Interface-Help/typename-function.md)
+- [UBound function](../../../language/reference/User-Interface-Help/ubound-function.md)
+- [UCase function](../../../language/reference/User-Interface-Help/ucase-function.md)
+- [Val function](../../../language/reference/User-Interface-Help/val-function.md)
+- [Var, VarP functions](var-varp-functions-microsoft-access-sql.md)
+- [VarType function](../../../language/reference/User-Interface-Help/vartype-function.md)
+- [Weekday function](../../../language/reference/User-Interface-Help/weekday-function.md)
+- [WeekdayName function](../../../language/reference/User-Interface-Help/weekdayname-function.md)
+- [Year function](../../../language/reference/User-Interface-Help/year-function.md)
-[Asc Function](../../../language/reference/User-Interface-Help/asc-function.md)
-[Atn Function](../../../language/reference/User-Interface-Help/atn-function.md)
-[Avg Function](avg-function-microsoft-access-sql.md)
-[CallByName Function](../../../language/reference/User-Interface-Help/callbyname-function.md)
-[CBool Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-[CByte Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-[CCur Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-[CDate Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-[CDbl Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-[CDec Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-[Choose Function](../../../language/reference/User-Interface-Help/choose-function.md)
-[Chr Function](../../../language/reference/User-Interface-Help/chr-function.md)
-[CInt Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-[CLng Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-[Command Function](../../../language/reference/User-Interface-Help/command-function.md)
-[Cos Function](../../../language/reference/User-Interface-Help/cos-function.md)
-[Count Function](count-function-microsoft-access-sql.md)
-[CreateObject Function](../../../language/reference/User-Interface-Help/createobject-function.md)
-[CSng Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-[CStr Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-[CurDir Function](../../../language/reference/User-Interface-Help/curdir-function.md)
-[CurrentUser Method](../../../api/Access.Application.CurrentUser.md)
-[CVar Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-[CVErr Function](../../../language/reference/User-Interface-Help/cverr-function.md)
-[Date Function](../../../language/reference/User-Interface-Help/date-function.md)
-[DateAdd Function](../../../language/reference/User-Interface-Help/dateadd-function.md)
-[DateDiff Function](../../../language/reference/User-Interface-Help/datediff-function.md)
-[DatePart Function](../../../language/reference/User-Interface-Help/datepart-function.md)
-[DateSerial Function](../../../language/reference/User-Interface-Help/dateserial-function.md)
-[DateValue Function](../../../language/reference/User-Interface-Help/datevalue-function.md)
-[DAvg Function](../../../api/Access.application.davg.md)
-[Day Function](../../../language/reference/User-Interface-Help/day-function.md)
-[DCount Method](../../../api/Access.Application.DCount.md)
-[DDB Function](../../../language/reference/User-Interface-Help/ddb-function.md)
-[DDEInitiate Method](../../../api/Access.Application.DDEInitiate.md)
-[DDERequest Method](../../../api/Access.Application.DDERequest.md)
-[DFirst Method](../../../api/Access.Application.DFirst.md)
-[Dir Function](../../../language/reference/User-Interface-Help/dir-function.md)
-[DLast Method](../../../api/Access.Application.DLast.md)
-[DLookup Method](../../../api/Access.Application.DLookup.md)
-[DMax Method](../../../api/Access.Application.DMax.md)
-[DMin Method](../../../api/Access.Application.DMin.md)
-[DoEvents Function](../../../language/reference/User-Interface-Help/doevents-function.md)
-[DStDev Method](../../../api/Access.Application.DStDev.md)
-[DStDevP Method](../../../api/Access.Application.DStDevP.md)
-[DSum Method](../../../api/Access.Application.DSum.md)
-[DVar Method](../../../api/Access.Application.DVar.md)
-[DVarP Method](../../../api/Access.Application.DVarP.md)
-[Environ Function](../../../language/reference/User-Interface-Help/environ-function.md)
-[EOF Function](../../../language/reference/User-Interface-Help/eof-function.md)
-[Error Function](../../../language/reference/User-Interface-Help/error-function.md)
-[EuroConvert Method](../../../api/Access.Application.EuroConvert.md)
-[Eval Method](../../../api/Access.Application.Eval.md)
-[Exp Function](../../../language/reference/User-Interface-Help/exp-function.md)
-[FileAttr Function](../../../language/reference/User-Interface-Help/fileattr-function.md)
-[FileDateTime Function](../../../language/reference/User-Interface-Help/filedatetime-function.md)
-[FileLen Function](../../../language/reference/User-Interface-Help/filelen-function.md)
-[Filter Function](../../../language/reference/User-Interface-Help/filter-function.md)
-[Fix Function](../../../language/reference/User-Interface-Help/int-fix-functions.md)
-[Format Function](../../../language/reference/User-Interface-Help/format-function-visual-basic-for-applications.md)
-[FormatCurrency Function](../../../language/reference/User-Interface-Help/formatcurrency-function.md)
-[FormatDateTime Function](../../../language/reference/User-Interface-Help/formatdatetime-function.md)
-[FormatNumber Function](../../../language/reference/User-Interface-Help/formatnumber-function.md)
-[FormatPercent Function](../../../language/reference/User-Interface-Help/formatpercent-function.md)
-[FreeFile Function](../../../language/reference/User-Interface-Help/freefile-function.md)
-[FV Function](../../../language/reference/User-Interface-Help/fv-function.md)
-[GetAllSettings Function](../../../language/reference/User-Interface-Help/getallsettings-function.md)
-[GetAttr Function](../../../language/reference/User-Interface-Help/getattr-function.md)
-[GetObject Function](../../../language/reference/User-Interface-Help/getobject-function.md)
-[GetSetting Function](../../../language/reference/User-Interface-Help/getsetting-function.md)
-[GUIDFromString Method](../../../api/Access.Application.GUIDFromString.md)
-[Hex Function](../../../language/reference/User-Interface-Help/hex-function.md)
-[Hour Function](../../../language/reference/User-Interface-Help/hour-function.md)
-[HtmlEncode Method](../../../api/Access.Application.HtmlEncode.md)
-[HyperlinkPart Method](../../../api/Access.Application.HyperlinkPart.md)
-[IIf Function](../../../language/reference/User-Interface-Help/iif-function.md)
-[IMEStatus Function](../../../language/reference/User-Interface-Help/imestatus-function.md)
-[Input Function](../../../language/reference/User-Interface-Help/input-function.md)
-[InputBox Function](../../../language/reference/User-Interface-Help/inputbox-function.md)
-[InStr Function](../../../language/reference/User-Interface-Help/instr-function.md)
-[InStrRev Function](../../../language/reference/User-Interface-Help/instrrev-function.md)
-[Int Function](../../../language/reference/User-Interface-Help/int-fix-functions.md)
-[IPmt Function](../../../language/reference/User-Interface-Help/ipmt-function.md)
-[IRR Function](../../../language/reference/User-Interface-Help/irr-function.md)
-[IsArray Function](../../../language/reference/User-Interface-Help/isarray-function.md)
-[IsDate Function](../../../language/reference/User-Interface-Help/isdate-function.md)
-[IsEmpty Function](../../../language/reference/User-Interface-Help/isempty-function.md)
-[IsError Function](../../../language/reference/User-Interface-Help/iserror-function.md)
-[IsMissing Function](../../../language/reference/User-Interface-Help/ismissing-function.md)
-[IsNull Function](../../../language/reference/User-Interface-Help/isnull-function.md)
-[IsNumeric Function](../../../language/reference/User-Interface-Help/isnumeric-function.md)
-[IsObject Function](../../../language/reference/User-Interface-Help/isobject-function.md)
-[Join Function](../../../language/reference/User-Interface-Help/join-function.md)
-[LBound Function](../../../language/reference/User-Interface-Help/lbound-function.md)
-[LCase Function](../../../language/reference/User-Interface-Help/lcase-function.md)
-[Left Function](../../../language/reference/User-Interface-Help/left-function.md)
-[Len Function](../../../language/reference/User-Interface-Help/len-function.md)
-[Loc Function](../../../language/reference/User-Interface-Help/loc-function.md)
-[LOF Function](../../../language/reference/User-Interface-Help/lof-function.md)
-[Log Function](../../../language/reference/User-Interface-Help/log-function.md)
-[LTrim Function](../../../language/reference/User-Interface-Help/ltrim-rtrim-and-trim-functions.md)
-[Max Function](min-max-functions-microsoft-access-sql.md)
-[Mid Function](../../../language/reference/User-Interface-Help/mid-function.md)
-[Min Function](min-max-functions-microsoft-access-sql.md)
-[Minute Function](../../../language/reference/User-Interface-Help/minute-function.md)
-[MIRR Function](../../../language/reference/User-Interface-Help/mirr-function.md)
-[Month Function](../../../language/reference/User-Interface-Help/month-function.md)
-[MonthName Function](../../../language/reference/User-Interface-Help/monthname-function.md)
-[MsgBox Function](../../../language/reference/User-Interface-Help/msgbox-function.md)
-[Now Function](../../../language/reference/User-Interface-Help/now-function.md)
-[NPer Function](../../../language/reference/User-Interface-Help/nper-function.md)
-[NPV Function](../../../language/reference/User-Interface-Help/npv-function.md)
-[Nz Method](../../../api/Access.Application.Nz.md)
-[Oct Function](../../../language/reference/User-Interface-Help/oct-function.md)
-[Partition Function](../../../language/reference/User-Interface-Help/partition-function.md)
-[PlainText Method](../../../api/Access.Application.PlainText.md)
-[Pmt Function](../../../language/reference/User-Interface-Help/pmt-function.md)
-[PPmt Function](../../../language/reference/User-Interface-Help/ppmt-function.md)
-[PV Function](../../../language/reference/User-Interface-Help/pv-function.md)
-[QBColor Function](../../../language/reference/User-Interface-Help/qbcolor-function.md)
-[Rate Function](../../../language/reference/User-Interface-Help/rate-function.md)
-[Replace Function](../../../language/reference/User-Interface-Help/replace-function.md)
-[RGB Function](../../../language/reference/User-Interface-Help/rgb-function.md)
-[Right Function](../../../language/reference/User-Interface-Help/right-function.md)
-[Rnd Function](../../../language/reference/User-Interface-Help/rnd-function.md)
-[Round Function](../../../language/reference/User-Interface-Help/round-function.md)
-[RTrim Function](../../../language/reference/User-Interface-Help/ltrim-rtrim-and-trim-functions.md)
-[Second Function](../../../language/reference/User-Interface-Help/second-function.md)
-[Seek Function](../../../language/reference/User-Interface-Help/seek-function.md)
-[Sgn Function](../../../language/reference/User-Interface-Help/sgn-function.md)
-[Shell Function](../../../language/reference/User-Interface-Help/shell-function.md)
-[Sin Function](../../../language/reference/User-Interface-Help/sin-function.md)
-[SLN Function](../../../language/reference/User-Interface-Help/sln-function.md)
-[Space Function](../../../language/reference/User-Interface-Help/space-function.md)
-[Spc Function](../../../language/reference/User-Interface-Help/spc-function.md)
-[Split Function](../../../language/reference/User-Interface-Help/split-function.md)
-[Sqr Function](../../../language/reference/User-Interface-Help/sqr-function.md)
-[Str Function](../../../language/reference/User-Interface-Help/str-function.md)
-[StrComp Function](../../../language/reference/User-Interface-Help/strcomp-function.md)
-[StrConv Function](../../../language/reference/User-Interface-Help/strconv-function.md)
-[StDev Function](stdev-stdevp-functions-microsoft-access-sql.md)
-[StDevP Function](stdev-stdevp-functions-microsoft-access-sql.md)
-[String Function](../../../language/reference/User-Interface-Help/string-function.md)
-[StringFromGUID Method](../../../api/Access.Application.StringFromGUID.md)
-[StrReverse Function](../../../language/reference/User-Interface-Help/strreverse-function.md)
-[Sum Function](sum-function-microsoft-access-sql.md)
-[Switch Function](../../../language/reference/User-Interface-Help/switch-function.md)
-[SYD Function](../../../language/reference/User-Interface-Help/syd-function.md)
-[Tab Function](../../../language/reference/User-Interface-Help/tab-function.md)
-[Tan Function](../../../language/reference/User-Interface-Help/tan-function.md)
-[Time Function](../../../language/reference/User-Interface-Help/time-function.md)
-[Timer Function](../../../language/reference/User-Interface-Help/timer-function.md)
-[TimeSerial Function](../../../language/reference/User-Interface-Help/timeserial-function.md)
-[TimeValue Function](../../../language/reference/User-Interface-Help/timevalue-function.md)
-[Trim Function](../../../language/reference/User-Interface-Help/ltrim-rtrim-and-trim-functions.md)
-[TypeName Function](../../../language/reference/User-Interface-Help/typename-function.md)
-[UBound Function](../../../language/reference/User-Interface-Help/ubound-function.md)
-[UCase Function](../../../language/reference/User-Interface-Help/ucase-function.md)
-[Val Function](../../../language/reference/User-Interface-Help/val-function.md)
-[Var, VarP Functions](var-varp-functions-microsoft-access-sql.md)
-[VarType Function](../../../language/reference/User-Interface-Help/vartype-function.md)
-[Weekday Function](../../../language/reference/User-Interface-Help/weekday-function.md)
-[WeekdayName Function](../../../language/reference/User-Interface-Help/weekdayname-function.md)
-[Year Function](../../../language/reference/User-Interface-Help/year-function.md)
diff --git a/access/Concepts/Criteria-Expressions/functions-category-list.md b/access/Concepts/Criteria-Expressions/functions-category-list.md
index 46eea292b8e..951c0a95a2c 100644
--- a/access/Concepts/Criteria-Expressions/functions-category-list.md
+++ b/access/Concepts/Criteria-Expressions/functions-category-list.md
@@ -1,411 +1,255 @@
---
-title: Functions (Category List)
+title: Functions (category list)
ms.prod: access
ms.assetid: f6095ed0-465d-6447-321f-4bc1c7c543c5
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Functions (Category List)
+# Functions (category list)
The following list contains topics that describe common functions used in Access expressions.
## ActiveX
-[CreateObject Function](../../../language/reference/User-Interface-Help/createobject-function.md)
-
-[GetObject Function](../../../language/reference/User-Interface-Help/getobject-function.md)
+- [CreateObject function](../../../language/reference/User-Interface-Help/createobject-function.md)
+- [GetObject function](../../../language/reference/User-Interface-Help/getobject-function.md)
## Application
-[Command Function](../../../language/reference/User-Interface-Help/command-function.md)
-
-[Shell Function](../../../language/reference/User-Interface-Help/shell-function.md)
+- [Command function](../../../language/reference/User-Interface-Help/command-function.md)
+- [Shell function](../../../language/reference/User-Interface-Help/shell-function.md)
## Arrays
-[Array Function](../../../language/reference/User-Interface-Help/array-function.md)
-
-[Filter Function](../../../language/reference/User-Interface-Help/filter-function.md)
-
-[Join Function](../../../language/reference/User-Interface-Help/join-function.md)
-
-[LBound Function](../../../language/reference/User-Interface-Help/lbound-function.md)
-
-[Split Function](../../../language/reference/User-Interface-Help/split-function.md)
-
-[UBound Function](../../../language/reference/User-Interface-Help/ubound-function.md)
+- [Array function](../../../language/reference/User-Interface-Help/array-function.md)
+- [Filter function](../../../language/reference/User-Interface-Help/filter-function.md)
+- [Join function](../../../language/reference/User-Interface-Help/join-function.md)
+- [LBound function](../../../language/reference/User-Interface-Help/lbound-function.md)
+- [Split function](../../../language/reference/User-Interface-Help/split-function.md)
+- [UBound function](../../../language/reference/User-Interface-Help/ubound-function.md)
## Conversion
-[Asc Function](../../../language/reference/User-Interface-Help/asc-function.md)
-
-[CBool Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-
-[CByte Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-
-[CCur Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-
-[CDate Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-
-[CDbl Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-
-[CDec Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-
-[Chr Function](../../../language/reference/User-Interface-Help/chr-function.md)
-
-[CInt Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-
-[CLng Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-
-[CSng Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-
-[CStr Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-
-[CVar Function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-
-[Day Function](../../../language/reference/User-Interface-Help/day-function.md)
-
-[EuroConvert Method](../../../api/Access.Application.EuroConvert.md)
-
-[FormatCurrency Function](../../../language/reference/User-Interface-Help/formatcurrency-function.md)
-
-[FormatDateTime Function](../../../language/reference/User-Interface-Help/formatdatetime-function.md)
-
-[FormatNumber Function](../../../language/reference/User-Interface-Help/formatnumber-function.md)
-
-[FormatPercent Function](../../../language/reference/User-Interface-Help/formatpercent-function.md)
-
-[GUIDFromString Method](../../../api/Access.Application.GUIDFromString.md)
-
-[Hex Function](../../../language/reference/User-Interface-Help/hex-function.md)
-
-[Nz Method](../../../api/Access.Application.Nz.md)
-
-[Oct Function](../../../language/reference/User-Interface-Help/oct-function.md)
-
-[Str Function](../../../language/reference/User-Interface-Help/str-function.md)
-
-[StringFromGUID Method](../../../api/Access.Application.StringFromGUID.md)
-
-[Type Conversion Functions](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
-
-[Val Function](../../../language/reference/User-Interface-Help/val-function.md)
-
+- [Asc function](../../../language/reference/User-Interface-Help/asc-function.md)
+- [CBool function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CByte function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CCur function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CDate function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CDbl function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CDec function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [Chr function](../../../language/reference/User-Interface-Help/chr-function.md)
+- [CInt function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CLng function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CSng function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CStr function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [CVar function](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [Day function](../../../language/reference/User-Interface-Help/day-function.md)
+- [EuroConvert method](../../../api/Access.Application.EuroConvert.md)
+- [FormatCurrency function](../../../language/reference/User-Interface-Help/formatcurrency-function.md)
+- [FormatDateTime function](../../../language/reference/User-Interface-Help/formatdatetime-function.md)
+- [FormatNumber function](../../../language/reference/User-Interface-Help/formatnumber-function.md)
+- [FormatPercent function](../../../language/reference/User-Interface-Help/formatpercent-function.md)
+- [GUIDFromString method](../../../api/Access.Application.GUIDFromString.md)
+- [Hex function](../../../language/reference/User-Interface-Help/hex-function.md)
+- [Nz method](../../../api/Access.Application.Nz.md)
+- [Oct function](../../../language/reference/User-Interface-Help/oct-function.md)
+- [Str function](../../../language/reference/User-Interface-Help/str-function.md)
+- [StringFromGUID method](../../../api/Access.Application.StringFromGUID.md)
+- [Type Conversion functions](../../../Language/Concepts/Getting-Started/type-conversion-functions.md)
+- [Val function](../../../language/reference/User-Interface-Help/val-function.md)
## Database
-[CurrentUser Method](../../../api/Access.Application.CurrentUser.md)
-
-[DDEInitiate Method](../../../api/Access.Application.DDEInitiate.md)
-
-[DDERequest Method](../../../api/Access.Application.DDERequest.md)
-
-[Eval Method](../../../api/Access.Application.Eval.md)
-
-[HyperlinkPart Method](../../../api/Access.Application.HyperlinkPart.md)
-
-[Partition Function](../../../language/reference/User-Interface-Help/partition-function.md)
+- [CurrentUser method](../../../api/Access.Application.CurrentUser.md)
+- [DDEInitiate method](../../../api/Access.Application.DDEInitiate.md)
+- [DDERequest method](../../../api/Access.Application.DDERequest.md)
+- [Eval method](../../../api/Access.Application.Eval.md)
+- [HyperlinkPart method](../../../api/Access.Application.HyperlinkPart.md)
+- [Partition function](../../../language/reference/User-Interface-Help/partition-function.md)
## Date/Time
-[Date Function](../../../language/reference/User-Interface-Help/date-function.md)
-
-[DateAdd Function](../../../language/reference/User-Interface-Help/dateadd-function.md)
-
-[DateDiff Function](../../../language/reference/User-Interface-Help/datediff-function.md)
-
-[DatePart Function](../../../language/reference/User-Interface-Help/datepart-function.md)
-
-[DateSerial Function](../../../language/reference/User-Interface-Help/dateserial-function.md)
-
-[DateValue Function](../../../language/reference/User-Interface-Help/datevalue-function.md)
-
-[Day Function](../../../language/reference/User-Interface-Help/day-function.md)
-
-[Hour Function](../../../language/reference/User-Interface-Help/hour-function.md)
-
-[Minute Function](../../../language/reference/User-Interface-Help/minute-function.md)
-
-[Month Function](../../../language/reference/User-Interface-Help/month-function.md)
-
-[MonthName Function](../../../language/reference/User-Interface-Help/monthname-function.md)
-
-[Now Function](../../../language/reference/User-Interface-Help/now-function.md)
-
-[Second Function](../../../language/reference/User-Interface-Help/second-function.md)
-
-[Time Function](../../../language/reference/User-Interface-Help/time-function.md)
-
-[Timer Function](../../../language/reference/User-Interface-Help/timer-function.md)
-
-[TimeSerial Function](../../../language/reference/User-Interface-Help/timeserial-function.md)
-
-[TimeValue Function](../../../language/reference/User-Interface-Help/timevalue-function.md)
-
-[Weekday Function](../../../language/reference/User-Interface-Help/weekday-function.md)
-
-[WeekdayName Function](../../../language/reference/User-Interface-Help/weekdayname-function.md)
-
-[Year Function](../../../language/reference/User-Interface-Help/year-function.md)
-
-
-## Domain Aggregate
-
-[DAvg Function](../../../api/Access.application.davg.md)
-
-[DCount Method](../../../api/Access.Application.DCount.md)
-
-[DFirst Method](../../../api/Access.Application.DFirst.md)
-
-[DLast Method](../../../api/Access.Application.DLast.md)
-
-[DLookup Method](../../../api/Access.Application.DLookup.md)
-
-[DMax Method](../../../api/Access.Application.DMax.md)
-
-[DMin Method](../../../api/Access.Application.DMin.md)
-
-[DStDev Method](../../../api/Access.Application.DStDev.md)
-
-[DStDevP Method](../../../api/Access.Application.DStDevP.md)
-
-[DSum Method](../../../api/Access.Application.DSum.md)
-
-[DVar Method](../../../api/Access.Application.DVar.md)
-
-[DVarP Method](../../../api/Access.Application.DVarP.md)
-
-
-## Error Handling
-
-[CVErr Function](../../../language/reference/User-Interface-Help/cverr-function.md)
-
-[Error Function](../../../language/reference/User-Interface-Help/error-function.md)
-
-[IsError Function](../../../language/reference/User-Interface-Help/iserror-function.md)
-
-
-## File Input/Output
-
-[EOF Function](../../../language/reference/User-Interface-Help/eof-function.md)
-
-[FreeFile Function](../../../language/reference/User-Interface-Help/freefile-function.md)
-
-[Input Function](../../../language/reference/User-Interface-Help/input-function.md)
-
-[Loc Function](../../../language/reference/User-Interface-Help/loc-function.md)
-
-[LOF Function](../../../language/reference/User-Interface-Help/lof-function.md)
-
-[Seek Function](../../../language/reference/User-Interface-Help/seek-function.md)
-
-
-## File Management
-
-[CurDir Function](../../../language/reference/User-Interface-Help/curdir-function.md)
-
-[Dir Function](../../../language/reference/User-Interface-Help/dir-function.md)
-
-[FileAttr Function](../../../language/reference/User-Interface-Help/fileattr-function.md)
-
-[FileDateTime Function](../../../language/reference/User-Interface-Help/filedatetime-function.md)
-
-[FileLen Function](../../../language/reference/User-Interface-Help/filelen-function.md)
-
-[GetAttr Function](../../../language/reference/User-Interface-Help/getattr-function.md)
+- [Date function](../../../language/reference/User-Interface-Help/date-function.md)
+- [DateAdd function](../../../language/reference/User-Interface-Help/dateadd-function.md)
+- [DateDiff function](../../../language/reference/User-Interface-Help/datediff-function.md)
+- [DatePart function](../../../language/reference/User-Interface-Help/datepart-function.md)
+- [DateSerial function](../../../language/reference/User-Interface-Help/dateserial-function.md)
+- [DateValue function](../../../language/reference/User-Interface-Help/datevalue-function.md)
+- [Day function](../../../language/reference/User-Interface-Help/day-function.md)
+- [Hour function](../../../language/reference/User-Interface-Help/hour-function.md)
+- [Minute function](../../../language/reference/User-Interface-Help/minute-function.md)
+- [Month function](../../../language/reference/User-Interface-Help/month-function.md)
+- [MonthName function](../../../language/reference/User-Interface-Help/monthname-function.md)
+- [Now function](../../../language/reference/User-Interface-Help/now-function.md)
+- [Second function](../../../language/reference/User-Interface-Help/second-function.md)
+- [Time function](../../../language/reference/User-Interface-Help/time-function.md)
+- [Timer function](../../../language/reference/User-Interface-Help/timer-function.md)
+- [TimeSerial function](../../../language/reference/User-Interface-Help/timeserial-function.md)
+- [TimeValue function](../../../language/reference/User-Interface-Help/timevalue-function.md)
+- [Weekday function](../../../language/reference/User-Interface-Help/weekday-function.md)
+- [WeekdayName function](../../../language/reference/User-Interface-Help/weekdayname-function.md)
+- [Year function](../../../language/reference/User-Interface-Help/year-function.md)
+
+
+## Domain aggregate
+
+- [DAvg function](../../../api/Access.application.davg.md)
+- [DCount method](../../../api/Access.Application.DCount.md)
+- [DFirst method](../../../api/Access.Application.DFirst.md)
+- [DLast method](../../../api/Access.Application.DLast.md)
+- [DLookup method](../../../api/Access.Application.DLookup.md)
+- [DMax method](../../../api/Access.Application.DMax.md)
+- [DMin method](../../../api/Access.Application.DMin.md)
+- [DStDev method](../../../api/Access.Application.DStDev.md)
+- [DStDevP method](../../../api/Access.Application.DStDevP.md)
+- [DSum method](../../../api/Access.Application.DSum.md)
+- [DVar method](../../../api/Access.Application.DVar.md)
+- [DVarP method](../../../api/Access.Application.DVarP.md)
+
+
+## Error handling
+
+- [CVErr function](../../../language/reference/User-Interface-Help/cverr-function.md)
+- [Error function](../../../language/reference/User-Interface-Help/error-function.md)
+- [IsError function](../../../language/reference/User-Interface-Help/iserror-function.md)
+
+
+## File input/output
+
+- [EOF function](../../../language/reference/User-Interface-Help/eof-function.md)
+- [FreeFile function](../../../language/reference/User-Interface-Help/freefile-function.md)
+- [Input function](../../../language/reference/User-Interface-Help/input-function.md)
+- [Loc function](../../../language/reference/User-Interface-Help/loc-function.md)
+- [LOF function](../../../language/reference/User-Interface-Help/lof-function.md)
+- [Seek function](../../../language/reference/User-Interface-Help/seek-function.md)
+
+
+## File management
+
+- [CurDir function](../../../language/reference/User-Interface-Help/curdir-function.md)
+- [Dir function](../../../language/reference/User-Interface-Help/dir-function.md)
+- [FileAttr function](../../../language/reference/User-Interface-Help/fileattr-function.md)
+- [FileDateTime function](../../../language/reference/User-Interface-Help/filedatetime-function.md)
+- [FileLen function](../../../language/reference/User-Interface-Help/filelen-function.md)
+- [GetAttr function](../../../language/reference/User-Interface-Help/getattr-function.md)
## Financial
-[DDB Function](../../../language/reference/User-Interface-Help/ddb-function.md)
-
-[FV Function](../../../language/reference/User-Interface-Help/fv-function.md)
-
-[IPmt Function](../../../language/reference/User-Interface-Help/ipmt-function.md)
+- [DDB function](../../../language/reference/User-Interface-Help/ddb-function.md)
+- [FV function](../../../language/reference/User-Interface-Help/fv-function.md)
+- [IPmt function](../../../language/reference/User-Interface-Help/ipmt-function.md)
+- [IRR function](../../../language/reference/User-Interface-Help/irr-function.md)
+- [MIRR function](../../../language/reference/User-Interface-Help/mirr-function.md)
+- [NPer function](../../../language/reference/User-Interface-Help/nper-function.md)
+- [NPV function](../../../language/reference/User-Interface-Help/npv-function.md)
+- [Pmt function](../../../language/reference/User-Interface-Help/pmt-function.md)
+- [PPmt function](../../../language/reference/User-Interface-Help/ppmt-function.md)
+- [PV function](../../../language/reference/User-Interface-Help/pv-function.md)
+- [Rate function](../../../language/reference/User-Interface-Help/rate-function.md)
+- [SLN function](../../../language/reference/User-Interface-Help/sln-function.md)
+- [SYD function](../../../language/reference/User-Interface-Help/syd-function.md)
-[IRR Function](../../../language/reference/User-Interface-Help/irr-function.md)
-
-[MIRR Function](../../../language/reference/User-Interface-Help/mirr-function.md)
-
-[NPer Function](../../../language/reference/User-Interface-Help/nper-function.md)
-
-[NPV Function](../../../language/reference/User-Interface-Help/npv-function.md)
-
-[Pmt Function](../../../language/reference/User-Interface-Help/pmt-function.md)
-
-[PPmt Function](../../../language/reference/User-Interface-Help/ppmt-function.md)
-
-[PV Function](../../../language/reference/User-Interface-Help/pv-function.md)
-
-[Rate Function](../../../language/reference/User-Interface-Help/rate-function.md)
-
-[SLN Function](../../../language/reference/User-Interface-Help/sln-function.md)
-
-[SYD Function](../../../language/reference/User-Interface-Help/syd-function.md)
## Inspection
-[Environ Function](../../../language/reference/User-Interface-Help/environ-function.md)
-
-[GetAllSettings Function ](../../../language/reference/User-Interface-Help/getallsettings-function.md)
-
-[GetSetting Function ](../../../language/reference/User-Interface-Help/getsetting-function.md)
-
-[IsArray Function](../../../language/reference/User-Interface-Help/isarray-function.md)
-
-[IsDate Function](../../../language/reference/User-Interface-Help/isdate-function.md)
-
-[IsEmpty Function](../../../language/reference/User-Interface-Help/isempty-function.md)
-
-[IsError Function](../../../language/reference/User-Interface-Help/iserror-function.md)
-
-[IsMissing Function](../../../language/reference/User-Interface-Help/ismissing-function.md)
-
-[IsNull Function](../../../language/reference/User-Interface-Help/isnull-function.md)
-
-[IsNumeric Function](../../../language/reference/User-Interface-Help/isnumeric-function.md)
-
-[IsObject Function](../../../language/reference/User-Interface-Help/isobject-function.md)
-
-[TypeName Function](../../../language/reference/User-Interface-Help/typename-function.md)
-
-[VarType Function](../../../language/reference/User-Interface-Help/vartype-function.md)
+- [Environ function](../../../language/reference/User-Interface-Help/environ-function.md)
+- [GetAllSettings function](../../../language/reference/User-Interface-Help/getallsettings-function.md)
+- [GetSetting function](../../../language/reference/User-Interface-Help/getsetting-function.md)
+- [IsArray function](../../../language/reference/User-Interface-Help/isarray-function.md)
+- [IsDate function](../../../language/reference/User-Interface-Help/isdate-function.md)
+- [IsEmpty function](../../../language/reference/User-Interface-Help/isempty-function.md)
+- [IsError function](../../../language/reference/User-Interface-Help/iserror-function.md)
+- [IsMissing function](../../../language/reference/User-Interface-Help/ismissing-function.md)
+- [IsNull function](../../../language/reference/User-Interface-Help/isnull-function.md)
+- [IsNumeric function](../../../language/reference/User-Interface-Help/isnumeric-function.md)
+- [IsObject function](../../../language/reference/User-Interface-Help/isobject-function.md)
+- [TypeName function](../../../language/reference/User-Interface-Help/typename-function.md)
+- [VarType function](../../../language/reference/User-Interface-Help/vartype-function.md)
## Math
-[Abs Function](../../../language/reference/User-Interface-Help/abs-function.md)
-
-[Atn Function](../../../language/reference/User-Interface-Help/atn-function.md)
-
-[Cos Function](../../../language/reference/User-Interface-Help/cos-function.md)
-
-[Exp Function](../../../language/reference/User-Interface-Help/exp-function.md)
-
-[Fix Function](../../../language/reference/User-Interface-Help/int-fix-functions.md)
-
-[Int Function](../../../language/reference/User-Interface-Help/int-fix-functions.md)
-
-[Log Function](../../../language/reference/User-Interface-Help/log-function.md)
-
-[Rnd Function](../../../language/reference/User-Interface-Help/rnd-function.md)
-
-[Round Function](../../../language/reference/User-Interface-Help/round-function.md)
-
-[Sgn Function](../../../language/reference/User-Interface-Help/sgn-function.md)
-
-[Sin Function](../../../language/reference/User-Interface-Help/sin-function.md)
-
-[Sqr Function](../../../language/reference/User-Interface-Help/sqr-function.md)
-
-[StDev Function](stdev-stdevp-functions-microsoft-access-sql.md)
-
-[StDevP Function](stdev-stdevp-functions-microsoft-access-sql.md)
-
-[Tan Function](../../../language/reference/User-Interface-Help/tan-function.md)
+- [Abs function](../../../language/reference/User-Interface-Help/abs-function.md)
+- [Atn function](../../../language/reference/User-Interface-Help/atn-function.md)
+- [Cos function](../../../language/reference/User-Interface-Help/cos-function.md)
+- [Exp function](../../../language/reference/User-Interface-Help/exp-function.md)
+- [Fix function](../../../language/reference/User-Interface-Help/int-fix-functions.md)
+- [Int function](../../../language/reference/User-Interface-Help/int-fix-functions.md)
+- [Log function](../../../language/reference/User-Interface-Help/log-function.md)
+- [Rnd function](../../../language/reference/User-Interface-Help/rnd-function.md)
+- [Round function](../../../language/reference/User-Interface-Help/round-function.md)
+- [Sgn function](../../../language/reference/User-Interface-Help/sgn-function.md)
+- [Sin function](../../../language/reference/User-Interface-Help/sin-function.md)
+- [Sqr function](../../../language/reference/User-Interface-Help/sqr-function.md)
+- [StDev function](stdev-stdevp-functions-microsoft-access-sql.md)
+- [StDevP function](stdev-stdevp-functions-microsoft-access-sql.md)
+- [Tan function](../../../language/reference/User-Interface-Help/tan-function.md)
## Messages
-[InputBox Function](../../../language/reference/User-Interface-Help/inputbox-function.md)
-
-[MsgBox Function](../../../language/reference/User-Interface-Help/msgbox-function.md)
+- [InputBox function](../../../language/reference/User-Interface-Help/inputbox-function.md)
+- [MsgBox function](../../../language/reference/User-Interface-Help/msgbox-function.md)
## Miscellaneous
-[CallByName Function](../../../language/reference/User-Interface-Help/callbyname-function.md)
-
-[IMEStatus Function](../../../language/reference/User-Interface-Help/imestatus-function.md)
-
-[QBColor Function](../../../language/reference/User-Interface-Help/qbcolor-function.md)
-
-[RGB Function](../../../language/reference/User-Interface-Help/rgb-function.md)
-
-[Spc Function](../../../language/reference/User-Interface-Help/spc-function.md)
-
-[Tab Function](../../../language/reference/User-Interface-Help/tab-function.md)
-
-
-## Program Flow
-
-[Choose Function](../../../language/reference/User-Interface-Help/choose-function.md)
-
-[DoEvents Function](../../../language/reference/User-Interface-Help/doevents-function.md)
-
-[IIf Function](../../../language/reference/User-Interface-Help/iif-function.md)
-
-[Switch Function](../../../language/reference/User-Interface-Help/switch-function.md)
-
-
-## SQL Aggregate
-
-[Avg Function](avg-function-microsoft-access-sql.md)
-
-[Count Function](count-function-microsoft-access-sql.md)
-
-[Max Function](min-max-functions-microsoft-access-sql.md)
+- [CallByName function](../../../language/reference/User-Interface-Help/callbyname-function.md)
+- [IMEStatus function](../../../language/reference/User-Interface-Help/imestatus-function.md)
+- [QBColor function](../../../language/reference/User-Interface-Help/qbcolor-function.md)
+- [RGB function](../../../language/reference/User-Interface-Help/rgb-function.md)
+- [Spc function](../../../language/reference/User-Interface-Help/spc-function.md)
+- [Tab function](../../../language/reference/User-Interface-Help/tab-function.md)
-[Min Function](min-max-functions-microsoft-access-sql.md)
-[StDev Function](stdev-stdevp-functions-microsoft-access-sql.md)
+## Program flow
-[StDevP Function](stdev-stdevp-functions-microsoft-access-sql.md)
+- [Choose function](../../../language/reference/User-Interface-Help/choose-function.md)
+- [DoEvents function](../../../language/reference/User-Interface-Help/doevents-function.md)
+- [IIf function](../../../language/reference/User-Interface-Help/iif-function.md)
+- [Switch function](../../../language/reference/User-Interface-Help/switch-function.md)
-[Sum Function](sum-function-microsoft-access-sql.md)
-[Var Function](var-varp-functions-microsoft-access-sql.md)
+## SQL aggregate
-[VarP Function](var-varp-functions-microsoft-access-sql.md)
+- [Avg function](avg-function-microsoft-access-sql.md)
+- [Count function](count-function-microsoft-access-sql.md)
+- [Max function](min-max-functions-microsoft-access-sql.md)
+- [Min function](min-max-functions-microsoft-access-sql.md)
+- [StDev function](stdev-stdevp-functions-microsoft-access-sql.md)
+- [StDevP function](stdev-stdevp-functions-microsoft-access-sql.md)
+- [Sum function](sum-function-microsoft-access-sql.md)
+- [Var function](var-varp-functions-microsoft-access-sql.md)
+- [VarP function](var-varp-functions-microsoft-access-sql.md)
## Text
-[Format Function](../../../language/reference/User-Interface-Help/format-function-visual-basic-for-applications.md)
-
-[HtmlEncode Method](../../../api/Access.Application.HtmlEncode.md)
-
-[InStr Function](../../../language/reference/User-Interface-Help/instr-function.md)
-
-[InStrRev Function](../../../language/reference/User-Interface-Help/instrrev-function.md)
-
-[LCase Function](../../../language/reference/User-Interface-Help/lcase-function.md)
-
-[Left Function](../../../language/reference/User-Interface-Help/left-function.md)
-
-[Len Function](../../../language/reference/User-Interface-Help/len-function.md)
-
-[LTrim Function](../../../language/reference/User-Interface-Help/ltrim-rtrim-and-trim-functions.md)
-
-[Mid Function](../../../language/reference/User-Interface-Help/mid-function.md)
-
-[PlainText Method](../../../api/Access.Application.PlainText.md)
-
-[Replace Function](../../../language/reference/User-Interface-Help/replace-function.md)
-
-[Right Function](../../../language/reference/User-Interface-Help/right-function.md)
-
-[RTrim Function](../../../language/reference/User-Interface-Help/ltrim-rtrim-and-trim-functions.md)
-
-[Space Function](../../../language/reference/User-Interface-Help/space-function.md)
-
-[StrComp Function](../../../language/reference/User-Interface-Help/strcomp-function.md)
-
-[StrConv Function](../../../language/reference/User-Interface-Help/strconv-function.md)
-
-[String Function](../../../language/reference/User-Interface-Help/string-function.md)
-
-[StrReverse Function](../../../language/reference/User-Interface-Help/strreverse-function.md)
-
-[Trim Function](../../../language/reference/User-Interface-Help/ltrim-rtrim-and-trim-functions.md)
-
-[UCase Function](../../../language/reference/User-Interface-Help/ucase-function.md)
-
-
+- [Format function](../../../language/reference/User-Interface-Help/format-function-visual-basic-for-applications.md)
+- [HtmlEncode method](../../../api/Access.Application.HtmlEncode.md)
+- [InStr function](../../../language/reference/User-Interface-Help/instr-function.md)
+- [InStrRev function](../../../language/reference/User-Interface-Help/instrrev-function.md)
+- [LCase function](../../../language/reference/User-Interface-Help/lcase-function.md)
+- [Left function](../../../language/reference/User-Interface-Help/left-function.md)
+- [Len function](../../../language/reference/User-Interface-Help/len-function.md)
+- [LTrim function](../../../language/reference/User-Interface-Help/ltrim-rtrim-and-trim-functions.md)
+- [Mid function](../../../language/reference/User-Interface-Help/mid-function.md)
+- [PlainText method](../../../api/Access.Application.PlainText.md)
+- [Replace function](../../../language/reference/User-Interface-Help/replace-function.md)
+- [Right function](../../../language/reference/User-Interface-Help/right-function.md)
+- [RTrim function](../../../language/reference/User-Interface-Help/ltrim-rtrim-and-trim-functions.md)
+- [Space function](../../../language/reference/User-Interface-Help/space-function.md)
+- [StrComp function](../../../language/reference/User-Interface-Help/strcomp-function.md)
+- [StrConv function](../../../language/reference/User-Interface-Help/strconv-function.md)
+- [String function](../../../language/reference/User-Interface-Help/string-function.md)
+- [StrReverse function](../../../language/reference/User-Interface-Help/strreverse-function.md)
+- [Trim function](../../../language/reference/User-Interface-Help/ltrim-rtrim-and-trim-functions.md)
+- [UCase function](../../../language/reference/User-Interface-Help/ucase-function.md)
diff --git a/access/Concepts/Criteria-Expressions/include-quotation-marks-in-string-expressions.md b/access/Concepts/Criteria-Expressions/include-quotation-marks-in-string-expressions.md
index 12818d6c89d..c5987e5e54e 100644
--- a/access/Concepts/Criteria-Expressions/include-quotation-marks-in-string-expressions.md
+++ b/access/Concepts/Criteria-Expressions/include-quotation-marks-in-string-expressions.md
@@ -1,21 +1,20 @@
---
-title: Include Quotation Marks in String Expressions
+title: Quotation marks in string expressions
ms.prod: access
ms.assetid: bb4d42ee-37cb-8fbf-0489-62fdf0706b91
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Include Quotation Marks in String Expressions
+# Quotation marks in string expressions
In situations where you must construct strings to be concatenated, you may need to embed a string within another string, or a string variable within a string. Situations in which you might need to nest one string within another include:
-
- When specifying criteria for domain aggregate functions.
-- When specifying criteria for the **Find** methods.
+- When specifying criteria for the **Find** methods.
-- When specifying criteria for the **[Filter](../../../api/Access.Form.Filter(property).md)** or **[ServerFilter](../../../api/Access.Form.ServerFilter.md)** property of a form.
+- When specifying criteria for the **[Filter](../../../api/Access.Form.Filter(property).md)** or **[ServerFilter](../../../api/Access.Form.ServerFilter.md)** property of a form.
- When building SQL strings.
@@ -23,58 +22,47 @@ In situations where you must construct strings to be concatenated, you may need
In all of these instances, Access must pass a string to the Access database engine. When you specify a _criteria_ argument for a domain aggregate function, for example, Access must evaluate any variables, concatenate them into a string, and then pass the entire string to the Access database engine.
If you embed a numeric variable, Access evaluates the variable and simply concatenates the value into the string. If the variable is a text string, however, the resulting criteria string will contain a string within a string. A string within a string must be identified by string delimiters. Otherwise, the Access database engine will not be able to determine which part of the string is the value you want to use.
-The string delimiters are not actually part of the variable itself, but they must be included in the string in the _criteria_ argument. There are three different ways to construct the string in the _criteria_ argument. Each method results in a _criteria_ argument that looks like one of the following examples.
-
+The string delimiters are not actually part of the variable itself, but they must be included in the string in the _criteria_ argument. There are three different ways to construct the string in the _criteria_ argument. Each method results in a _criteria_ argument that looks like one of the following examples.
```vb
"[LastName] = 'Smith'"
```
-- or -
-
-
```vb
"[LastName] = ""Smith"""
```
-## Include Single Quotation Marks
+## Include single quotation marks
-You should include single quotation marks in the _criteria_ argument in such a way that when the value of the variable is concatenated into the string, it will be enclosed within the single quotation marks. For instance, suppose your _criteria_ argument must contain a string variable called . You could construct the _criteria_ argument as in the following example:
+You should include single quotation marks in the _criteria_ argument in such a way that when the value of the variable is concatenated into the string, it will be enclosed within the single quotation marks. For example, suppose your _criteria_ argument must contain a string variable called `strName`. You could construct the _criteria_ argument as in the following example:
```vb
"[LastName] = '" & strName & "'"
```
-When the variable `strName` is evaluated and concatenated into the _criteria_ string, the _criteria_ string becomes:
-
-
-
+When the variable `strName` is evaluated and concatenated into the _criteria_ string, the _criteria_ string becomes:
```vb
"[LastName] = 'Smith'"
```
+> [!NOTE]
+> This syntax does not permit the use of apostrophes (') within the value of the variable itself. If the value of the string variable includes an apostrophe, Access generates a run-time error. If your variable may represent values containing apostrophes, consider using one of the other syntax forms discussed in the following sections.
- **Note** This syntax does not permit the use of apostrophes (') within the value of the variable itself. If the value of the string variable includes an apostrophe, Access generates a run-time error. If your variable may represent values containing apostrophes, consider using one of the other syntax forms discussed in the following sections.
-
-## Include Double Quotation Marks
+## Include double quotation marks
You should include double quotation marks within the _criteria_ argument in such a way so that when the value of the variable is evaluated, it will be enclosed within the quotation marks. Within a string, you must use two sets of double quotation marks to represent a single set of double quotation marks. You could construct the _criteria_ argument as in the following example:
-
```vb
"[LastName] = """ & strName & """"
```
-When the variable `strName` is evaluated and concatenated into the _criteria_ argument, each set of two double quotation marks is replaced by one single quotation mark. The _criteria_ argument becomes:
-
-
-
+When the variable `strName` is evaluated and concatenated into the _criteria_ argument, each set of two double quotation marks is replaced by one single quotation mark. The _criteria_ argument becomes:
```vb
"[LastName] = 'Smith'"
@@ -83,9 +71,9 @@ When the variable `strName` is evaluated and concatenated into the _criteria_ a
This syntax may appear more complicated than the single quotation mark syntax, but it enables you to embed a string that contains an apostrophe within the _criteria_ argument. It also enables you to nest one or more strings within the embedded string.
-## Include a Variable Representing Quotation Marks
+## Include a variable representing quotation marks
-You can create a string variable that represents double quotation marks, and concatenate this variable into the _criteria_ argument along with the value of the variable. The ANSI representation for double quotation marks is `Chr$(34)`; you could assign this value to a string variable called `strQuote`. You could then construct the _criteria_ argument as in the following example:
+You can create a string variable that represents double quotation marks, and concatenate this variable into the _criteria_ argument along with the value of the variable. The ANSI representation for double quotation marks is `Chr$(34)`; you could assign this value to a string variable called `strQuote`. You could then construct the _criteria_ argument as in the following example:
```vb
@@ -94,9 +82,6 @@ You can create a string variable that represents double quotation marks, and con
When the variables are evaluated and concatenated into the _criteria_ argument, the _criteria_ argument becomes:
-
-
-
```vb
[LastName] = "Smith"
```
diff --git a/access/Concepts/Criteria-Expressions/min-max-functions-microsoft-access-sql.md b/access/Concepts/Criteria-Expressions/min-max-functions-microsoft-access-sql.md
index 32fafff9e22..85b177f9c5b 100644
--- a/access/Concepts/Criteria-Expressions/min-max-functions-microsoft-access-sql.md
+++ b/access/Concepts/Criteria-Expressions/min-max-functions-microsoft-access-sql.md
@@ -1,22 +1,21 @@
---
-title: Min, Max Functions (Microsoft Access SQL)
+title: Min, Max functions (Microsoft Access SQL)
keywords: jetsql40.chm5278826
f1_keywords:
- jetsql40.chm5278826
ms.prod: access
ms.assetid: 5ac77377-1f6a-7b4f-ecbb-5480bc5a3187
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Min, Max Functions (Microsoft Access SQL)
+# Min, Max functions (Microsoft Access SQL)
**Applies to:** Access 2013 | Access 2016
Return the minimum or maximum of a set of values contained in a specified field on a query.
## Syntax
-
**Min(_expr_)**
@@ -26,21 +25,13 @@ The _expr_ placeholder represents a string expression identifying the field tha
## Remarks
-
-You can use **Min** and **Max** to determine the smallest and largest values in a field based on the specified aggregation, or grouping. For example, you could use these functions to return the lowest and highest freight cost. If there is no aggregation specified, then the entire table is used.
+You can use **Min** and **Max** to determine the smallest and largest values in a field based on the specified aggregation, or grouping. For example, you could use these functions to return the lowest and highest freight cost. If there is no aggregation specified, the entire table is used.
-You can use **Min** and **Max** in a query expression and in the **SQL** property of a **QueryDef** object or when creating a **Recordset** object based on an SQL query.
-
-**Link provided by:**
- The[UtterAccess](https://www.utteraccess.com) community |[About the Contributors](#AboutContributors)
-
-
-- [Record Order](https://www.utteraccess.com/wiki/index.php/Record_Order)
+You can use **Min** and **Max** in a query expression and in the **SQL** property of a **QueryDef** object or when creating a **Recordset** object based on an SQL query.
## Example
-
This example uses the Orders table to return the lowest and highest freight charges for orders shipped to the United Kingdom.
@@ -77,19 +68,19 @@ End Sub
```
-## About the Contributors
-
-UtterAccess is the premier Microsoft Access wiki and help forum. Click here to join.
+### About the contributors
-## See also
+**Link provided by**  the [UtterAccess](https://www.utteraccess.com) community.
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
-- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
-- [Search for specific Access error codes on Bing](https://www.bing.com/)
-- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
-- [Access wiki on UtterAcess](https://www.utteraccess.com/forum/index.php?act=idx)
-- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
-- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
+- [Record Order](https://www.utteraccess.com/wiki/index.php/Record_Order)
+
+UtterAccess is the premier Microsoft Access wiki and help forum.
+
+## See also
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
+- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
+- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
+- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
\ No newline at end of file
diff --git a/access/Concepts/Criteria-Expressions/multiple-fields-in-criteria-expressions.md b/access/Concepts/Criteria-Expressions/multiple-fields-in-criteria-expressions.md
index 11dbd61f592..ea42c6d69fb 100644
--- a/access/Concepts/Criteria-Expressions/multiple-fields-in-criteria-expressions.md
+++ b/access/Concepts/Criteria-Expressions/multiple-fields-in-criteria-expressions.md
@@ -1,24 +1,21 @@
---
-title: Multiple Fields in Criteria Expressions
+title: Multiple fields in criteria expressions
keywords: vbaac10.chm5187501
f1_keywords:
- vbaac10.chm5187501
ms.prod: access
ms.assetid: 6ed0992f-912f-10ca-27de-4e3c9d6a2f71
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Multiple Fields in Criteria Expressions
+# Multiple fields in criteria expressions
You can specify multiple fields in a _criteria_ argument.
To specify multiple fields in the _criteria_ argument, you must ensure that multiple string expressions are concatenated correctly to form a valid SQL WHERE clause. In an SQL WHERE clause with multiple fields, fields may be joined with one of three keywords: **AND**, **OR**, or **NOT**. Your expression must evaluate to a string that includes one of these keywords.
-For example, suppose that you wish to set the **Filter** property of an Employees form to display records restricted by two sets of criteria. The following example filters the form so that it displays only those employees whose title is "Sales Representative" and who were hired since January 1, 1993:
-
-
-
+For example, suppose that you want to set the **[Filter](../../../api/Access.Form.Filter(property).md)** property of an Employees form to display records restricted by two sets of criteria. The following example filters the form so that it displays only those employees whose title is "Sales Representative" and who were hired since January 1, 1993:
```vb
Dim datHireDate As Date
@@ -28,19 +25,16 @@ datHireDate = #1/1/93#
strTitle = "Sales Representative"
Forms!Employees.Filter = "[HireDate] >= #" & _
- datHireDate & "# AND [Title] = '" & strTitle & "'"
+ datHireDate & "# AND [Title] = '" & strTitle & "'"
Forms!Employees.FilterOn = True
```
The _criteria_ argument evaluates to the following string:
-
-
```sql
"[HireDate] >= #1-1-93# AND [Title] = 'Sales Representative'"
```
-
- **Tip** To troubleshoot an expression in the _criteria_ argument, break the expression into smaller components and test each individually in the Immediate window. When all of the components are working correctly, put them back together one at a time until the complete expression works correctly.
-
+> [!TIP]
+> To troubleshoot an expression in the _criteria_ argument, break the expression into smaller components and test each individually in the Immediate window. When all of the components are working correctly, put them back together one at a time until the complete expression works correctly.
diff --git a/access/Concepts/Criteria-Expressions/numeric-criteria-expressions.md b/access/Concepts/Criteria-Expressions/numeric-criteria-expressions.md
index fbdb283a87f..56a2c9c4d84 100644
--- a/access/Concepts/Criteria-Expressions/numeric-criteria-expressions.md
+++ b/access/Concepts/Criteria-Expressions/numeric-criteria-expressions.md
@@ -1,21 +1,19 @@
---
-title: Numeric Criteria Expressions
+title: Numeric criteria expressions
keywords: vbaac10.chm5187729
f1_keywords:
- vbaac10.chm5187729
ms.prod: access
ms.assetid: ff497f13-7251-9131-459f-9bd2b189816b
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Numeric Criteria Expressions
+# Numeric criteria expressions
To specify numeric criteria for an operation, you supply a numeric value as part of the string expression that forms the _criteria_ argument.
-Suppose that you are performing the [Application.DLookup Method (Access)](../../../api/Access.Application.DLookup.md) function on an Employees table to find the last name of a particular employee, and you want to use a value from the EmployeeID field in the function's _criteria_ argument. You could construct a _criteria_ argument like the following example, which returns the last name of the employee whose EmployeeID is 7:
-
-
+Suppose that you are performing the **[DLookup](../../../api/Access.Application.DLookup.md)** function on an Employees table to find the last name of a particular employee, and you want to use a value from the EmployeeID field in the function's _criteria_ argument. You could construct a _criteria_ argument like the following example, which returns the last name of the employee whose EmployeeID is 7:
```vb
=DLookup("[LastName]", "Employees", "[EmployeeID] = 7")
diff --git a/access/Concepts/Criteria-Expressions/numeric-criteria-from-a-control-on-a-form.md b/access/Concepts/Criteria-Expressions/numeric-criteria-from-a-control-on-a-form.md
index 85da3019d72..cd2fa4bebc2 100644
--- a/access/Concepts/Criteria-Expressions/numeric-criteria-from-a-control-on-a-form.md
+++ b/access/Concepts/Criteria-Expressions/numeric-criteria-from-a-control-on-a-form.md
@@ -1,15 +1,15 @@
---
-title: Numeric Criteria from a Control on a Form
+title: Numeric criteria from a control on a form
keywords: vbaac10.chm5187731
f1_keywords:
- vbaac10.chm5187731
ms.prod: access
ms.assetid: faa0806c-f349-09a2-1535-582264434233
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Numeric Criteria from a Control on a Form
+# Numeric criteria from a control on a form
If you want to change the _criteria_ argument for an operation based on a user's decision, you can specify that the criteria comes from a control on a form. For example, you could specify that the _criteria_ argument comes from a text box containing the EmployeeID number.
@@ -17,9 +17,6 @@ To specify numeric criteria coming from a control on a form, you can include in
Suppose that you are performing the [DLookup](../../../api/Access.Application.DLookup.md) function on an Employees table to find the last name of an employee based on the EmployeeID number. In the following example, the criteria is determined by the current value of the EmployeeID control on the Orders form. The expression referencing the control is evaluated each time the function is called, so that if the value of the control changes, the criteria argument will reflect that change.
-
-
-
```vb
=DLookup("[LastName]", "Employees", "[EmployeeID] = " _
& Forms!Orders!EmployeeID)
@@ -27,19 +24,16 @@ Suppose that you are performing the [DLookup](../../../api/Access.Application.DL
If the current value of the EmployeeID field is 7, the _criteria_ argument that is passed to the **DLookup** function is:
-
-
```vb
"[EmployeeID] = 7"
```
-
- **Tip** To troubleshoot an expression in the _criteria_ argument, break the expression into smaller components and test each individually in the Immediate window. When all of the components are working correctly, put them back together one at a time until the complete expression works correctly.
+> [!TIP]
+> To troubleshoot an expression in the _criteria_ argument, break the expression into smaller components and test each individually in the Immediate window. When all of the components are working correctly, put them back together one at a time until the complete expression works correctly.
You can also include a variable representing a numeric value in the _criteria_ argument. The variable should be separate from the string expression, so that Access will evaluate the variable first and then concatenate it with the rest of the string expression.
-The following example shows how to construct a _criteria_ argument that includes a variable:
-
+The following example shows how to construct a _criteria_ argument that includes a variable:
```vb
Dim intNum As Integer
diff --git a/access/Concepts/Criteria-Expressions/quotation-marks-in-strings.md b/access/Concepts/Criteria-Expressions/quotation-marks-in-strings.md
deleted file mode 100644
index 1373e82371f..00000000000
--- a/access/Concepts/Criteria-Expressions/quotation-marks-in-strings.md
+++ /dev/null
@@ -1,107 +0,0 @@
----
-title: Quotation Marks in Strings
-keywords: vbaac10.chm5187927
-f1_keywords:
-- vbaac10.chm5187927
-ms.prod: access
-ms.assetid: a25474eb-4451-1cb7-aa05-223bd83cf18c
-ms.date: 06/08/2017
----
-
-
-# Quotation Marks in Strings
-
-In situations where you must construct strings to be concatenated, you may need to embed a string within another string, or a string variable within a string. Situations in which you might need to nest one string within another include:
-
-
-- When specifying criteria for domain aggregate functions .
-
-- When specifying criteria for the **Find** methods.
-
-- When specifying criteria for the **Filter** or **ServerFilter** property of a form.
-
-- When building SQL strings.
-
-
-In all of these instances, Access must pass a string to the Microsoft Jet database engine. When you specify a _criteria_ argument for a domain aggregate function, for example, Access must evaluate any variables, concatenate them into a string, and then pass the entire string to the Jet database engine.
-
-If you embed a numeric variable, Access evaluates the variable and simply concatenates the value into the string. If the variable is a text string, however, the resulting criteria string will contain a string within a string. A string within a string must be identified by string delimiters. Otherwise, the Jet database engine won't be able to determine which part of the string is the value you want to use.
-The string delimiters aren't actually part of the variable itself, but they must be included in the string in the _criteria_ argument. There are three different ways to construct the string in the _criteria_ argument. Each method results in a _criteria_ argument that looks like one of the following examples.
-
-
-
-```vb
-"[LastName] = 'Smith'"
-```
-
-- or -
-
-
-
-```vb
-"[LastName] = ""Smith"""
-```
-
-
-## Include Single Quotation Marks
-
-You should include single quotation marks in the _criteria_ argument in such a way that when the value of the variable is concatenated into the string, it will be enclosed within the single quotation marks. For instance, suppose your _criteria_ argument must contain a string variable called . You could construct the _criteria_ argument as in the following example:
-
-
-```vb
-"[LastName] = '" & strName & "'"
-```
-
-When the variable is evaluated and concatenated into the _criteria_ string, the _criteria_ string becomes:
-
-
-
-
-```vb
-"[LastName] = 'Smith'"
-```
-
-
- **Note** This syntax does not permit the use of apostrophes (') within the value of the variable itself. If the value of the string variable includes an apostrophe, Access generates a run-time error. If your variable may represent values containing apostrophes, consider using one of the other syntax forms discussed in the following sections.
-
-
-## Include Double Quotation Marks
-
-You should include double quotation marks within the _criteria_ argument in such a way so that when the value of the variable is evaluated, it will be enclosed within the quotation marks. Within a string, you must use two sets of double quotation marks to represent a single set of double quotation marks. You could construct the _criteria_ argument as in the following example:
-
-
-```vb
-"[LastName] = """ & strName & """"
-```
-
-When the variable is evaluated and concatenated into the _criteria_ argument, each set of two double quotation marks is replaced by one single quotation mark. The _criteria_ argument becomes:
-
-
-
-
-```vb
-"[LastName] = 'Smith'"
-```
-
-This syntax may appear more complicated than the single quotation mark syntax, but it enables you to embed a string that contains an apostrophe within the _criteria_ argument. It also enables you to nest one or more strings within the embedded string.
-
-
-## Include a Variable Representing Quotation Marks
-
-You can create a string variable that represents double quotation marks, and concatenate this variable into the _criteria_ argument along with the value of the variable. The ANSI representation for double quotation marks is Chr$(34); you could assign this value to a string variable called . You could then construct the _criteria_ argument as in the following example:
-
-
-```vb
-"[LastName] = " & strQuote & strName & strQuote
-```
-
-When the variables are evaluated and concatenated into the _criteria_ argument, the _criteria_ argument becomes:
-
-
-
-
-```vb
-[LastName] = "Smith"
-```
-
-
diff --git a/access/Concepts/Criteria-Expressions/restrict-data-to-a-subset-of-records.md b/access/Concepts/Criteria-Expressions/restrict-data-to-a-subset-of-records.md
index 0af7006b311..412f49dacc5 100644
--- a/access/Concepts/Criteria-Expressions/restrict-data-to-a-subset-of-records.md
+++ b/access/Concepts/Criteria-Expressions/restrict-data-to-a-subset-of-records.md
@@ -1,21 +1,21 @@
---
-title: Restrict Data to a Subset of Records
+title: Restrict data to a subset of records
keywords: vbaac10.chm5187973
f1_keywords:
- vbaac10.chm5187973
ms.prod: access
ms.assetid: f3310e1f-9987-785a-9ae2-a2eb375a35c2
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Restrict Data to a Subset of Records
+# Restrict data to a subset of records
-When working with records you will often need to restrict your data to a specific set of records. Some procedures take a _criteria_ argument that enables you to specify what data should be returned. For example, you specify the _criteria_ argument to restrict which records are returned when you use domain aggregate functions . You may also specify criteria when you use the Find method of a **Recordset** object, set the **Filter** or **ServerFilter** property of a form, or construct a[SQL Statement](../Structured-Query-Language/build-sql-statements-that-include-variables-and-controls.md). Although each of these operations involves a different syntax, you construct the criteria expression in a similar manner for each.
-
-For example, you can use the **DSum** function, a domain aggregate function, to find the sum total of all freight costs in the Orders table. You could create a calculated control by entering the following expression in the **ControlSource** property:
+When working with records, you will often need to restrict your data to a specific set of records. Some procedures take a _criteria_ argument that enables you to specify what data should be returned. For example, you specify the _criteria_ argument to restrict which records are returned when you use domain aggregate functions.
+You may also specify criteria when you use the Find method of a **Recordset** object, set the **[Filter](../../../api/Access.Form.Filter(property).md)** or **[ServerFilter](../../../api/Access.Form.ServerFilter.md)** property of a form, or construct a [SQL statement](../Structured-Query-Language/build-sql-statements-that-include-variables-and-controls.md). Although each of these operations involves a different syntax, you construct the criteria expression in a similar manner for each.
+For example, you can use the **DSum** function, a domain aggregate function, to find the sum total of all freight costs in the Orders table. You could create a calculated control by entering the following expression in the **ControlSource** property:
```vb
=DSum("[Freight]", "Orders")
@@ -23,21 +23,23 @@ For example, you can use the **DSum** function, a domain aggregate function, to
If you specify the optional _criteria_ argument, the **DSum** function will be performed on a subset of _domain_. For example, you could find the sum total of all freight costs in the Orders table for only those orders being shipped to California:
-
-
```vb
=DSum("[Freight]", "Orders", "[ShipRegion] = 'CA'")
```
-When you supply a _criteria_ argument, Access first evaluates any expressions included in the argument to form a string expression. Then the string expression is passed to the domain function. The string expression is equivalent to an SQL WHERE clause, without the word WHERE.
+When you supply a _criteria_ argument, Access first evaluates any expressions included in the argument to form a string expression. The string expression is then passed to the domain function. The string expression is equivalent to an SQL WHERE clause, without the word WHERE.
+
You can specify numeric, textual, or date/time criteria. No matter what type of criteria you specify, the _criteria_ argument is always converted to a string before being passed to the domain aggregate function. Therefore, you must make certain that after any expressions have been evaluated, all parts of the argument are concatenated into a single string, the whole of which is enclosed in double quotation marks (").
+
Use caution when constructing criteria to ensure that the string will be properly concatenated.
+
The following list of topics outlines the different ways in which you can specify criteria:
-[Numeric Criteria Expressions](numeric-criteria-expressions.md)
-[Textual Criteria Expressions](textual-criteria-expressions.md)
-[Date and Time Criteria Expressions](date-and-time-criteria-expressions.md)
-[Change Numeric Criteria from a Control on a Form](numeric-criteria-from-a-control-on-a-form.md)
-[Change Textual Criteria from a Control on a Form](textual-criteria-from-a-control-on-a-form.md)
-[Change Date and Time Criteria from a Control on a Form](date-and-time-criteria-from-a-control-on-a-form.md)
-[Multiple Fields in Criteria Expressions](multiple-fields-in-criteria-expressions.md)
+
+- [Numeric criteria expressions](numeric-criteria-expressions.md)
+- [Textual criteria expressions](textual-criteria-expressions.md)
+- [Date and time criteria expressions](date-and-time-criteria-expressions.md)
+- [Change numeric criteria from a control on a form](numeric-criteria-from-a-control-on-a-form.md)
+- [Change textual criteria from a control on a form](textual-criteria-from-a-control-on-a-form.md)
+- [Change date and time criteria from a control on a form](date-and-time-criteria-from-a-control-on-a-form.md)
+- [Multiple fields in criteria expressions](multiple-fields-in-criteria-expressions.md)
diff --git a/access/Concepts/Criteria-Expressions/sort-records-in-case-sensitiveascii-order.md b/access/Concepts/Criteria-Expressions/sort-records-in-case-sensitiveascii-order.md
index a8ee8ce3c36..dc5c2e53f49 100644
--- a/access/Concepts/Criteria-Expressions/sort-records-in-case-sensitiveascii-order.md
+++ b/access/Concepts/Criteria-Expressions/sort-records-in-case-sensitiveascii-order.md
@@ -1,19 +1,18 @@
---
-title: Sort Records in Case-Sensitive ( ASCII) Order
+title: Sort records in case-sensitive (ASCII) order
ms.prod: access
ms.assetid: 92c74803-2ff3-82b3-ca20-8bef5bfd6004
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Sort Records in Case-Sensitive ( ASCII) Order
+# Sort records in case-sensitive (ASCII) order
Access sorts records in ascending or descending order without regard to case. However, you can use a user-defined function in a query to sort text data by its ASCII character values. This results in a case-sensitive order.
The following table demonstrates how the ascending order in Access differs from a case-sensitive order.
-
-|**Pre-Sort Order**|**Ascending Order**|**Case-Sensitive Order**|
+|**Pre-sort order**|**Ascending order**|**Case-sensitive order**|
|:-----|:-----|:-----|
|c|A|A|
|D|a|B|
@@ -24,10 +23,13 @@ The following table demonstrates how the ascending order in Access differs from
|A|D|c|
|b|d|d|
-Although the results in the Ascending Order column might at first appear somewhat unpredictable, they are not. In the Ascending Order column, "a" appears before "A," and " B" appears before "b." This occurs because, when evaluated as text values, "A" = "a" and "B" = "b," whether lowercase or uppercase. Access takes into account the original order of the values. In the Pre-Sort Order column, "a" precedes "A" and "B" precedes "b."
+Although the results in the **Ascending order** column might at first appear somewhat unpredictable, they are not. In the **Ascending order** column, "a" appears before "A," and " B" appears before "b." This occurs because, when evaluated as text values, "A" = "a" and "B" = "b," whether lowercase or uppercase. Access takes into account the original order of the values.
+
+In the **Pre-sort order** column, "a" precedes "A" and "B" precedes "b."
+
When the case-sensitive sort operation is performed, the text values are replaced with their ASCII values. For example, A = 65, a = 97, B = 66, b = 98, and so on.
-The following user-defined function can be used to sort data in case-sensitive order.
+The following user-defined function can be used to sort data in case-sensitive order.
```vb
@@ -48,21 +50,20 @@ End Function
```
-## Using the StrToHex Function
+## StrToHex function
The preceding user-defined function, StrToHex, can be called from a query. When you pass the name of the sort field to this function, it will sort the field values in case-sensitive order. The following steps illustrate how to use the function.
-
1. Create a query from which you will call this function.
-2. In the **Show Table** dialog box, click the table that you want to sort, and then click **Add**.
+2. In the **Show Table** dialog box, select the table that you want to sort, and then select **Add**.
-3. Drag the fields you want to the grid.
+3. Drag the fields that you want to the grid.
-4. In the first blank column, in the **Field** row, type **Expr1: StrToHex([ _SortField_ ])**.StrToHex is the user-defined function you created earlier. SortField is the name of the field that contains the case-sensitive values.
+4. In the first blank column, in the **Field** row, type **Expr1: StrToHex([ _SortField_ ])**. StrToHex is the user-defined function you created earlier. SortField is the name of the field that contains the case-sensitive values.
-5. In the **Sort** cell, click **Ascending** or **Descending**.If you choose ascending order, values beginning with uppercase letters will appear before those that begin with lowercase letters. Applying a descending-order sort does the opposite.
+5. In the **Sort** cell, select **Ascending** or **Descending**. If you choose ascending order, values beginning with uppercase letters will appear before those that begin with lowercase letters. Applying a descending-order sort does the opposite.
-6. Switch to Datasheet view.Access displays the records, sorted in case-sensitive order.
+6. Switch to Datasheet view. Access displays the records, sorted in case-sensitive order.
diff --git a/access/Concepts/Criteria-Expressions/stdev-stdevp-functions-microsoft-access-sql.md b/access/Concepts/Criteria-Expressions/stdev-stdevp-functions-microsoft-access-sql.md
index 9867a26b9c1..89eafd57b40 100644
--- a/access/Concepts/Criteria-Expressions/stdev-stdevp-functions-microsoft-access-sql.md
+++ b/access/Concepts/Criteria-Expressions/stdev-stdevp-functions-microsoft-access-sql.md
@@ -1,42 +1,39 @@
---
-title: StDev, StDevP Functions (Microsoft Access SQL)
+title: StDev, StDevP functions (Microsoft Access SQL)
keywords: jetsql40.chm5278827
f1_keywords:
- jetsql40.chm5278827
ms.prod: access
ms.assetid: 880875e9-75bc-da59-5554-810e15ce4d54
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# StDev, StDevP Functions (Microsoft Access SQL)
+# StDev, StDevP functions (Microsoft Access SQL)
**Applies to:** Access 2013 | Access 2016
Return estimates of the standard deviation for a population or a population sample represented as a set of values contained in a specified field on a query.
## Syntax
-
**StDev(_expr_)**
**StDevP(_expr_)**
-The _expr_ placeholder represents a string expression identifying the field that contains the numeric data you want to evaluate or an expression that performs a calculation using the data in that field. Operands in _expr_ can include the name of a table field, a constant, or a function (which can be either intrinsic or user-defined but not one of the other SQL aggregate functions).
+The _expr_ placeholder represents a string expression identifying the field that contains the numeric data that you want to evaluate or an expression that performs a calculation using the data in that field. Operands in _expr_ can include the name of a table field, a constant, or a function (which can be either intrinsic or user-defined but not one of the other SQL aggregate functions).
## Remarks
-
-The **StDevP** function evaluates a population, and the **StDev** function evaluates a population sample.
+The **StDevP** function evaluates a population, and the **StDev** function evaluates a population sample.
-If the underlying query contains fewer than two records (or no records, for the **StDevP** function), these functions return a **Null** value (which indicates that a standard deviation cannot be calculated).
+If the underlying query contains fewer than two records (or no records, for the **StDevP** function), these functions return a **Null** value (which indicates that a standard deviation cannot be calculated).
-You can use the **StDev** and **StDevP** functions in a query expression. You can also use this expression in the **SQL** property of a **QueryDef** object or when creating a **Recordset** object based on an SQL query.
+You can use the **StDev** and **StDevP** functions in a query expression. You can also use this expression in the **SQL** property of a **QueryDef** object or when creating a **Recordset** object based on an SQL query.
## Example
-
This example uses the Orders table to estimate the standard deviation of the freight charges for orders shipped to the United Kingdom.
@@ -87,14 +84,11 @@ End Sub
```
-## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
-- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
-- [Search for specific Access error codes on Bing](https://www.bing.com/)
-- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
-- [Access wiki on UtterAcess](https://www.utteraccess.com/forum/index.php?act=idx)
-- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
-- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
+## See also
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
+- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
+- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
+- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
\ No newline at end of file
diff --git a/access/Concepts/Criteria-Expressions/sum-function-microsoft-access-sql.md b/access/Concepts/Criteria-Expressions/sum-function-microsoft-access-sql.md
index 077ace7b16a..5cad9a84baf 100644
--- a/access/Concepts/Criteria-Expressions/sum-function-microsoft-access-sql.md
+++ b/access/Concepts/Criteria-Expressions/sum-function-microsoft-access-sql.md
@@ -1,22 +1,21 @@
---
-title: Sum Function (Microsoft Access SQL)
+title: Sum function (Microsoft Access SQL)
keywords: jetsql40.chm5278828
f1_keywords:
- jetsql40.chm5278828
ms.prod: access
ms.assetid: 02498420-f177-521c-ef81-e2f7ea02b231
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Sum Function (Microsoft Access SQL)
+# Sum function (Microsoft Access SQL)
**Applies to:** Access 2013 | Access 2016
Returns the sum of a set of values contained in a specified field on a query.
## Syntax
-
**Sum(_expr_)**
@@ -24,11 +23,10 @@ The _expr_ placeholder represents a string expression identifying the field tha
## Remarks
-
-The **Sum** function totals the values in a field. For example, you could use the **Sum** function to determine the total cost of freight charges.
+The **Sum** function totals the values in a field. For example, you could use the **Sum** function to determine the total cost of freight charges.
-The **Sum** function ignores records that contain **Null** fields. The following example shows how you can calculate the sum of the products of UnitPrice and Quantity fields:
+The **Sum** function ignores records that contain **Null** fields. The following example shows how you can calculate the sum of the products of UnitPrice and Quantity fields:
```sql
SELECT
@@ -36,11 +34,10 @@ Sum(UnitPrice * Quantity)
AS [Total Revenue] FROM [Order Details];
```
-You can use the **Sum** function in a query expression. You can also use this expression in the **SQL** property of a **QueryDef** object or when creating a **Recordset** based on an SQL query.
+You can use the **Sum** function in a query expression. You can also use this expression in the **SQL** property of a **QueryDef** object or when creating a **Recordset** based on an SQL query.
## Example
-
This example uses the Orders table to calculate the total sales for orders shipped to the United Kingdom.
@@ -77,14 +74,11 @@ Sub SumX()
End Sub
```
-## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
-- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
-- [Search for specific Access error codes on Bing](https://www.bing.com/)
-- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
-- [Access wiki on UtterAcess](https://www.utteraccess.com/forum/index.php?act=idx)
-- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
-- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
+## See also
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
+- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
+- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
+- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
\ No newline at end of file
diff --git a/access/Concepts/Criteria-Expressions/textual-criteria-expressions.md b/access/Concepts/Criteria-Expressions/textual-criteria-expressions.md
index 5942bea1ac8..321d5f88a09 100644
--- a/access/Concepts/Criteria-Expressions/textual-criteria-expressions.md
+++ b/access/Concepts/Criteria-Expressions/textual-criteria-expressions.md
@@ -1,32 +1,30 @@
---
-title: Textual Criteria Expressions
+title: Textual criteria expressions
keywords: vbaac10.chm10884
f1_keywords:
- vbaac10.chm10884
ms.prod: access
ms.assetid: c90dbb94-daab-5ccb-4cb1-c7771d8c4fc1
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Textual Criteria Expressions
+# Textual criteria expressions
To specify textual criteria for an operation, you supply a text string as part of the string expression that forms the _criteria_ argument. This text string must be enclosed in single quotation marks (').
-
- **Note** The single quotation marks indicate to Access that the _criteria_ argument contains a string within a string.
-
-
-Suppose that you are using the ADO **Find** method to find the first occurrence of a last name in an Employees table. You could construct the _criteria_ argument as in the following example, which moves the current record pointer to the first record in which an employee's last name is Buchanan. Note that the string literal is enclosed in single quotation marks and the entire string comprising the criteria argument must also be enclosed in double quotation marks (").
+> [!NOTE]
+> The single quotation marks indicate to Access that the _criteria_ argument contains a string within a string.
+Suppose that you are using the ADO **[Find](../../../api/overview/Access.md)** method to find the first occurrence of a last name in an Employees table. You could construct the _criteria_ argument as in the following example, which moves the current record pointer to the first record in which an employee's last name is Buchanan. Note that the string literal `Buchanan` is enclosed in single quotation marks and the entire string comprising the criteria argument must also be enclosed in double quotation marks (").
```vb
Dim rst As New ADODB.Connection
rst.open "Employees", CurrentProject.Connection,_
- dbOpenDynaset, adlockoptimistic)
+ dbOpenDynaset, adlockoptimistic)
rst.Find "[LastName] = 'Buchanan'"
```
diff --git a/access/Concepts/Criteria-Expressions/textual-criteria-from-a-control-on-a-form.md b/access/Concepts/Criteria-Expressions/textual-criteria-from-a-control-on-a-form.md
index 741b3e1a47a..c4c0e73b68b 100644
--- a/access/Concepts/Criteria-Expressions/textual-criteria-from-a-control-on-a-form.md
+++ b/access/Concepts/Criteria-Expressions/textual-criteria-from-a-control-on-a-form.md
@@ -1,15 +1,15 @@
---
-title: Textual Criteria from a Control on a Form
+title: Textual criteria from a control on a form
keywords: vbaac10.chm5188171
f1_keywords:
- vbaac10.chm5188171
ms.prod: access
ms.assetid: bb139d5e-0807-9492-442d-b7e569d8cecb
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Textual Criteria from a Control on a Form
+# Textual criteria from a control on a form
If you want to change the _criteria_ argument for an operation based on a user's decision, you can specify that the criteria comes from a control on a form. For example, you could specify that the _criteria_ argument comes from a list box containing the last names of all employees in an Employees table.
@@ -17,34 +17,30 @@ To specify textual criteria coming from a control on a form, you include in the
In addition to enclosing the entire string expression in double quotation marks ("), you must also ensure that the textual criteria within the string expression is enclosed in single quotation marks ('). The quotation marks must be included in the strings flanking the expression that references the control on the form.
-
- **Note** The single quotation marks indicate to Access that the _criteria_ argument contains a string within a string.
+> [!NOTE]
+> The single quotation marks indicate to Access that the _criteria_ argument contains a string within a string.
The following example performs a lookup on an Employees table and returns the region in which an employee lives, based on the employee's last name. The current value of a list box control called LastName on the Employees form determines the criteria. Note the placement of the single quotation marks.
-
-
```vb
=DLookup("[Region]", "Employees", "[LastName] = '" _
& Forms!Employees!LastName & "'")
```
-If the current value of the control is , the following _criteria_ argument is passed to the **DLookup** function after Access evaluates the expression and concatenates the strings:
-
-
+If the current value of the control is King, the following _criteria_ argument is passed to the **DLookup** function after Access evaluates the expression and concatenates the strings:
```vb
"[LastName] = 'King'"
```
-Keep in mind that the entire string comprising the criteria argument must also be enclosed in double quotation marks once the strings have been concatenated.
+Keep in mind that the entire string comprising the criteria argument must also be enclosed in double quotation marks after the strings have been concatenated.
- **Tip** To troubleshoot an expression in the _criteria_ argument, break the expression into smaller components and test each individually in the Immediate window. When all of the components are working correctly, put them back together one at a time until the complete expression works correctly.
+> [!TIP]
+> To troubleshoot an expression in the _criteria_ argument, break the expression into smaller components and test each individually in the Immediate window. When all of the components are working correctly, put them back together one at a time until the complete expression works correctly.
You can also include a variable representing a textual string in the _criteria_ argument. The variable should be separate from the string expression, so that Access will evaluate the variable first and then concatenate it with the rest of the string expression. The textual string must be enclosed in single or double quotation marks.
-The following example shows how to construct a _criteria_ argument that includes a variable representing a textual string:
-
+The following example shows how to construct a _criteria_ argument that includes a variable representing a textual string:
```vb
Dim strLastName As String
diff --git a/access/Concepts/Criteria-Expressions/use-multiple-fields-in-criteria-expressions.md b/access/Concepts/Criteria-Expressions/use-multiple-fields-in-criteria-expressions.md
deleted file mode 100644
index 1de824630f2..00000000000
--- a/access/Concepts/Criteria-Expressions/use-multiple-fields-in-criteria-expressions.md
+++ /dev/null
@@ -1,41 +0,0 @@
----
-title: Use Multiple Fields in Criteria Expressions
-ms.prod: access
-ms.assetid: b0bd588b-b25a-f433-3642-7b06936377e2
-ms.date: 06/08/2017
----
-
-
-# Use Multiple Fields in Criteria Expressions
-
-You can specify multiple fields in a _criteria_ argument.
-
-To specify multiple fields in the _criteria_ argument, you must ensure that multiple string expressions are concatenated correctly to form a valid SQL WHERE clause. In an SQL WHERE clause with multiple fields, fields may be joined with one of three keywords: **AND**, **OR**, or **NOT**. Your expression must evaluate to a string that includes one of these keywords.
-
-For example, suppose that you want to set the **[Filter](../../../api/Access.Form.Filter(property).md)** property of an Employees form to display records restricted by two sets of criteria. The following example filters the form so that it displays only those employees whose title is "Sales Representative" and who were hired since January 1, 1993:
-
-
-
-
-```vb
-Dim datHireDate As Date
-Dim strTitle As String
-
-datHireDate = #1/1/93#
-strTitle = "Sales Representative"
-
-Forms!Employees.Filter = "[HireDate] >= #" & _
- datHireDate & "# AND [Title] = '" & strTitle & "'"
-Forms!Employees.FilterOn = True
-```
-
-The _criteria_ argument evaluates to the following string:
-
-
-
-```sql
-"[HireDate] >= #1-1-93# AND [Title] = 'Sales Representative'"
-```
-
-To troubleshoot an expression in the _criteria_ argument, break the expression into smaller components and test each individually in the Immediate window. When all of the components are working correctly, put them back together one at a time until the complete expression works correctly.
-
diff --git a/access/Concepts/Criteria-Expressions/use-numeric-criteria-in-expressions.md b/access/Concepts/Criteria-Expressions/use-numeric-criteria-in-expressions.md
deleted file mode 100644
index e4c02aa627d..00000000000
--- a/access/Concepts/Criteria-Expressions/use-numeric-criteria-in-expressions.md
+++ /dev/null
@@ -1,21 +0,0 @@
----
-title: Use Numeric Criteria in Expressions
-ms.prod: access
-ms.assetid: c2055190-8d65-7342-19ef-582c05846b5b
-ms.date: 06/08/2017
----
-
-
-# Use Numeric Criteria in Expressions
-
-To specify numeric criteria for an operation, you supply a numeric value as part of the string expression that forms the _criteria_ argument.
-
-Suppose that you are performing the **[DLookup](../../../api/Access.Application.DLookup.md)** function on an Employees table to find the last name of a particular employee, and you want to use a value from the EmployeeID field in the function's _criteria_ argument. You could construct a _criteria_ argument like the following example, which returns the last name of the employee whose EmployeeID is 7:
-
-
-
-```vb
-=DLookup("[LastName]", "Employees", "[EmployeeID] = 7")
-```
-
-
diff --git a/access/Concepts/Criteria-Expressions/use-textual-criteria-expressions.md b/access/Concepts/Criteria-Expressions/use-textual-criteria-expressions.md
deleted file mode 100644
index fa89b277c39..00000000000
--- a/access/Concepts/Criteria-Expressions/use-textual-criteria-expressions.md
+++ /dev/null
@@ -1,30 +0,0 @@
----
-title: Use Textual Criteria Expressions
-ms.prod: access
-ms.assetid: 72ee596d-b08c-6af4-041a-6771ac8ce524
-ms.date: 06/08/2017
----
-
-
-# Use Textual Criteria Expressions
-
-To specify textual criteria for an operation, you supply a text string as part of the string expression that forms the _criteria_ argument. This text string must be enclosed in single quotation marks (').
-
-
- **Note** The single quotation marks indicate to Access that the _criteria_ argument contains a string within a string.
-
-
-Suppose that you are using the ADO **[Find](../../../api/overview/Access.md)** method to find the first occurrence of a last name in an Employees table. You could construct the _criteria_ argument as in the following example, which moves the current record pointer to the first record in which an employee's last name is Buchanan. Note that the string literal `Buchanan` is enclosed in single quotation marks and the entire string comprising the criteria argument must also be enclosed in double quotation marks (").
-
-
-
-
-```vb
-Dim rst As New ADODB.Connection
-
-rst.open "Employees", CurrentProject.Connection,_
- dbOpenDynaset, adlockoptimistic)
-rst.Find "[LastName] = 'Buchanan'"
-```
-
-
diff --git a/access/Concepts/Criteria-Expressions/var-varp-functions-microsoft-access-sql.md b/access/Concepts/Criteria-Expressions/var-varp-functions-microsoft-access-sql.md
index 4201be2cf25..2ad8134496b 100644
--- a/access/Concepts/Criteria-Expressions/var-varp-functions-microsoft-access-sql.md
+++ b/access/Concepts/Criteria-Expressions/var-varp-functions-microsoft-access-sql.md
@@ -1,22 +1,21 @@
---
-title: Var, VarP Functions (Microsoft Access SQL)
+title: Var, VarP functions (Microsoft Access SQL)
keywords: jetsql40.chm5278829
f1_keywords:
- jetsql40.chm5278829
ms.prod: access
ms.assetid: 2cac402d-8384-0b33-c203-f493281a95f1
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Var, VarP Functions (Microsoft Access SQL)
+# Var, VarP functions (Microsoft Access SQL)
**Applies to:** Access 2013 | Access 2016
Return estimates of the variance for a population or a population sample represented as a set of values contained in a specified field on a query.
## Syntax
-
**Var(_expr_)**
@@ -26,17 +25,15 @@ The _expr_ placeholder represents a string expression identifying the field tha
## Remarks
-
-The **VarP** function evaluates a population, and the **Var** function evaluates a population sample.
+The **VarP** function evaluates a population, and the **Var** function evaluates a population sample.
-If the underlying query contains fewer than two records, the **Var** and **VarP** functions return a **Null** value, which indicates that a variance cannot be calculated.
+If the underlying query contains fewer than two records, the **Var** and **VarP** functions return a **Null** value, which indicates that a variance cannot be calculated.
-You can use the **Var** and **VarP** functions in a query expression or in an SQL statement.
+You can use the **Var** and **VarP** functions in a query expression or in an SQL statement.
## Example
-
This example uses the Orders table to estimate the variance of freight costs for orders shipped to the United Kingdom.
@@ -87,14 +84,11 @@ End Sub
```
+
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
-- [Search for specific Access error codes on Bing](https://www.bing.com/)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
-- [Access wiki on UtterAcess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
-- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
-
+- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
\ No newline at end of file
diff --git a/access/Concepts/Data-Access-Objects/add-a-record-to-a-dao-recordset.md b/access/Concepts/Data-Access-Objects/add-a-record-to-a-dao-recordset.md
index 8454afc3b5e..f90b64eac1b 100644
--- a/access/Concepts/Data-Access-Objects/add-a-record-to-a-dao-recordset.md
+++ b/access/Concepts/Data-Access-Objects/add-a-record-to-a-dao-recordset.md
@@ -1,28 +1,25 @@
---
-title: Add a Record to a DAO Recordset
+title: Add a record to a DAO Recordset
ms.prod: access
ms.assetid: b6366906-4b37-0d35-cfd5-d38e7717131c
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Add a Record to a DAO Recordset
+# Add a record to a DAO Recordset
-You can add a new record to a table-type or dynaset-type **[Recordset](../../../api/overview/Access.md)** object by using the **[AddNew](../../../api/overview/Access.md)** method.
+You can add a new record to a table-type or dynaset-type **[Recordset](../../../api/overview/Access.md)** object by using the **[AddNew](../../../api/overview/Access.md)** method.
### To add a record to a table-type or dynaset-type Recordset object:
-
-1. Use the **AddNew** method to create a record you can edit.
+1. Use the **AddNew** method to create a record you can edit.
2. Assign values to each of the record's fields.
-3. Use the **[Update](../../../api/overview/Access.md)** method to save the new record.
+3. Use the **[Update](../../../api/overview/Access.md)** method to save the new record.
-The following code example adds a record to a table-type **Recordset** called Shippers.
-
-
+The following code example adds a record to a table-type **Recordset** called Shippers.
```vb
Dim dbsNorthwind As DAO.Database
@@ -41,10 +38,13 @@ Dim rstShippers As DAO.Recordset
```
-When you use the **AddNew** method, the Access database engine prepares a new, blank record and makes it the current record. When you use the **Update** method to save the new record, the record that was current before you used the **AddNew** method becomes the current record again.
-The new record's position in the **Recordset** depends on whether you added the record to a dynaset-type or a table-type **Recordset** object. If you add a record to a dynaset-type **Recordset**, the new record appears at the end of the **Recordset**, no matter how the **Recordset** is sorted. To force the new record to appear in its properly sorted position, you can either use the **[Requery](../../../api/overview/Access.md)** method or recreate the **Recordset** object.
-If you add a record to a table-type Recordset, the record appears positioned according to the current index, or at the end of the table if there is no current index. Because the Access databse engine allows multiple users to create records in a table simultaneously, your record may not appear at the end of the **Recordset**. Be sure to use the **[LastModified](../../../api/overview/Access.md)** property rather than the **[MoveLast](../../../api/overview/Access.md)** method to move to the record you just added.
+When you use the **AddNew** method, the Access database engine prepares a new, blank record and makes it the current record. When you use the **Update** method to save the new record, the record that was current before you used the **AddNew** method becomes the current record again.
+
+The new record's position in the **Recordset** depends on whether you added the record to a dynaset-type or a table-type **Recordset** object. If you add a record to a dynaset-type **Recordset**, the new record appears at the end of the **Recordset**, no matter how the **Recordset** is sorted. To force the new record to appear in its properly sorted position, you can either use the **[Requery](../../../api/overview/Access.md)** method or recreate the **Recordset** object.
+
+If you add a record to a table-type Recordset, the record appears positioned according to the current index, or at the end of the table if there is no current index. Because the Access database engine allows multiple users to create records in a table simultaneously, your record may not appear at the end of the **Recordset**. Be sure to use the **[LastModified](../../../api/overview/Access.md)** property rather than the **[MoveLast](../../../api/overview/Access.md)** method to move to the record you just added.
- **Note** If you use the **AddNew** method to add a record, and then move to another record or close the **Recordset** object without first using the **Update** method, your changes are lost without warning. For example, omitting the **Update** method from the preceding example results in no changes being made to the Shippers table.
+> [!NOTE]
+> If you use the **AddNew** method to add a record, and then move to another record or close the **Recordset** object without first using the **Update** method, your changes are lost without warning. For example, omitting the **Update** method from the preceding example results in no changes being made to the Shippers table.
diff --git a/access/Concepts/Data-Access-Objects/change-tables-involved-in-a-one-to-many-relationship-in-a-dao-recordset.md b/access/Concepts/Data-Access-Objects/change-tables-involved-in-a-one-to-many-relationship-in-a-dao-recordset.md
index 4f2fa37a966..0aebd5d8899 100644
--- a/access/Concepts/Data-Access-Objects/change-tables-involved-in-a-one-to-many-relationship-in-a-dao-recordset.md
+++ b/access/Concepts/Data-Access-Objects/change-tables-involved-in-a-one-to-many-relationship-in-a-dao-recordset.md
@@ -1,24 +1,24 @@
---
-title: Change Tables Involved in a One-to-Many Relationship in a DAO Recordset
+title: Change tables involved in a one-to-many relationship in a DAO Recordset
ms.prod: access
ms.assetid: d859066f-dfb5-e3b5-0cc8-fed38c3adb26
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Change Tables Involved in a One-to-Many Relationship in a DAO Recordset
-
-Dynaset-type **[Recordset](../../../api/overview/Access.md)** objects can be based on a multiple-table query containing tables with a one-to-many relationship. For example, suppose you want to create a multiple-table query that combines fields from the Orders and Order Details tables. Generally speaking, you cannot change values in the Orders table because it is on the "one" side of the relationship. Depending on your application, however, you may want to be able to make changes to the Orders table.
-
-To make it possible to freely change the values on the "one" side of a one-to-many relationship, use the **dbInconsistent** constant of the **[OpenRecordset](../../../api/overview/Access.md)** method to create an inconsistent dynaset. For example.
+# Change tables involved in a one-to-many relationship in a DAO Recordset
+Dynaset-type **[Recordset](../../../api/overview/Access.md)** objects can be based on a multiple-table query containing tables with a one-to-many relationship. For example, suppose you want to create a multiple-table query that combines fields from the Orders and Order Details tables. Generally speaking, you cannot change values in the Orders table because it is on the "one" side of the relationship. Depending on your application, however, you may want to be able to make changes to the Orders table.
+To make it possible to freely change the values on the "one" side of a one-to-many relationship, use the **dbInconsistent** constant of the **[OpenRecordset](../../../api/overview/Access.md)** method to create an inconsistent dynaset. For example:
```vb
Set rstTotalSales = dbs.OpenRecordset("Sales Totals" ,,dbInconsistent)
```
When you update an inconsistent dynaset, you can easily destroy the referential integrity of the data in the dynaset. You must take care to understand how the data is related across the one-to-many relationship and to update the values on both sides in a way that preserves data integrity.
-The **dbInconsistent** constant is available only for dynaset-type **Recordset** objects. It is ignored for table, snapshot, and forward-only-type **Recordset** objects, but no compile or run-time error is returned if the **dbInconsistent** constant is used with those types of **Recordset** objects.
-Even with an inconsistent **Recordset**, some fields may not be updatable. For example, you cannot change the value of an AutoNumber field, and a **Recordset** based on certain linked tables may not be updatable.
+
+The **dbInconsistent** constant is available only for dynaset-type **Recordset** objects. It is ignored for table, snapshot, and forward-only-type **Recordset** objects, but no compile or run-time error is returned if the **dbInconsistent** constant is used with those types of **Recordset** objects.
+
+Even with an inconsistent **Recordset**, some fields may not be updatable. For example, you cannot change the value of an AutoNumber field, and a **Recordset** based on certain linked tables may not be updatable.
diff --git a/access/Concepts/Data-Access-Objects/count-the-number-of-records-in-a-dao-recordset.md b/access/Concepts/Data-Access-Objects/count-the-number-of-records-in-a-dao-recordset.md
index 6fdc02c7e69..f3d48da0e11 100644
--- a/access/Concepts/Data-Access-Objects/count-the-number-of-records-in-a-dao-recordset.md
+++ b/access/Concepts/Data-Access-Objects/count-the-number-of-records-in-a-dao-recordset.md
@@ -1,23 +1,25 @@
---
-title: Count the Number of Records in a DAO Recordset
+title: Count the number of records in a DAO Recordset
ms.prod: access
ms.assetid: ea524046-4d04-b595-1a45-13b399745f44
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Count the Number of Records in a DAO Recordset
+# Count the number of records in a DAO Recordset
-You may want to know the number of records in a **[Recordset](../../../api/overview/Access.md)** object. For example, you may want to create a form that shows how many records are in each of the tables in a database. Or you may want to change the appearance of a form or report based on the number of records it includes.
+You may want to know the number of records in a **[Recordset](../../../api/overview/Access.md)** object. For example, you may want to create a form that shows how many records are in each of the tables in a database. Or you may want to change the appearance of a form or report based on the number of records it includes.
-The **[RecordCount](../../../api/overview/Access.md)** property contains the number of records in a table-type **Recordset** or the total number of records accessed in a dynaset- or snapshot-type **Recordset**. A **Recordset** object with no records has a **RecordCount** property value of 0.
+The **[RecordCount](../../../api/overview/Access.md)** property contains the number of records in a table-type **Recordset** or the total number of records accessed in a dynaset- or snapshot-type **Recordset**. A **Recordset** object with no records has a **RecordCount** property value of 0.
- **Note** The value of the **RecordCount** property equals the number of records that have actually been accessed. For example, when you first create a dynaset or snapshot, you have accessed (or visited) only one record. If you check the **RecordCount** property immediately after creating the dynaset or snapshot (assuming it has at least one record), the value is 1. To visit all the records, use the **[MoveLast](../../../api/overview/Access.md)** method immediately after opening the **Recordset**, then use **[MoveFirst](../../../api/overview/Access.md)** to return to the first record. This is not done automatically because it may be slow, especially for large result sets.
+> [!NOTE]
+> The value of the **RecordCount** property equals the number of records that have actually been accessed. For example, when you first create a dynaset or snapshot, you have accessed (or visited) only one record. If you check the **RecordCount** property immediately after creating the dynaset or snapshot (assuming it has at least one record), the value is 1. To visit all the records, use the **[MoveLast](../../../api/overview/Access.md)** method immediately after opening the **Recordset**, and then use **[MoveFirst](../../../api/overview/Access.md)** to return to the first record. This is not done automatically because it may be slow, especially for large result sets.
-When you open a table-type **Recordset** object, you effectively visit all of the records in the underlying table, and the value of the **RecordCount** property equals the number of records in the table as soon as the **Recordset** is opened. Canceled transactions may make the value of the **RecordCount** property out-of-date in some multiuser situations. Compacting the database restores the table's record count to the correct value.
-The following code example creates a snapshot-type **Recordset** object, and then determines the number of records in the **Recordset**.
+When you open a table-type **Recordset** object, you effectively visit all of the records in the underlying table, and the value of the **RecordCount** property equals the number of records in the table as soon as the **Recordset** is opened.
+Canceled transactions may make the value of the **RecordCount** property out-of-date in some multiuser situations. Compacting the database restores the table's record count to the correct value.
+The following code example creates a snapshot-type **Recordset** object, and then determines the number of records in the **Recordset**.
```vb
Function FindRecordCount(strSQL As String) As Long
@@ -51,6 +53,9 @@ ErrorHandler:
End Function
```
-As your application deletes records in a dynaset-type **Recordset**, the value of the **RecordCount** property decreases. However, in a multiuser environment, records deleted by other users are not reflected in the value of the **RecordCount** property until the current record is positioned on a deleted record. At that time, the setting of the **RecordCount** property decreases by one. Using the **[Requery](../../../api/overview/Access.md)** method on a **Recordset**, followed by the **MoveLast** method, sets the **RecordCount** property to the current total number of records in the **Recordset**.
-A snapshot-type **Recordset** object is static and the value of its **RecordCount** property does not change when you add or delete records in the snapshot's underlying table.
+As your application deletes records in a dynaset-type **Recordset**, the value of the **RecordCount** property decreases. However, in a multiuser environment, records deleted by other users are not reflected in the value of the **RecordCount** property until the current record is positioned on a deleted record. At that time, the setting of the **RecordCount** property decreases by one.
+
+Using the **[Requery](../../../api/overview/Access.md)** method on a **Recordset**, followed by the **MoveLast** method, sets the **RecordCount** property to the current total number of records in the **Recordset**.
+
+A snapshot-type **Recordset** object is static and the value of its **RecordCount** property does not change when you add or delete records in the snapshot's underlying table.
diff --git a/access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-form.md b/access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-form.md
index 28aa140593a..0c472db497e 100644
--- a/access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-form.md
+++ b/access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-form.md
@@ -1,18 +1,18 @@
---
-title: Create a DAO Recordset From a Form
+title: Create a DAO Recordset from a form
ms.prod: access
ms.assetid: d4bbe327-217d-ba7e-3d9f-3c89af1dcbc9
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Create a DAO Recordset From a Form
+# Create a DAO Recordset from a form
-You can create a **[Recordset](../../../api/overview/Access.md)** object based on an Access form. To do so, use the **[RecordsetClone](../../../api/Access.Form.RecordsetClone.md)** property of the form. This creates a dynaset-type **Recordset** that refers to the same underlying query or data as the form. If a form is based on a query, referring to the **RecordsetClone** property is the equivalent of creating a dynaset with the same query. You can use the **RecordsetClone** property when you want to apply a method that cannot be used with forms, such as the **[FindFirst](../../../api/overview/Access.md)** method. The **RecordsetClone** property provides access to all the methods and properties that you can use with a dynaset.
-
-The following example shows how to assign a **Recordset** object to the records in the Orders form.
+You can create a **[Recordset](../../../api/overview/Access.md)** object based on an Access form. To do so, use the **[RecordsetClone](../../../api/Access.Form.RecordsetClone.md)** property of the form. This creates a dynaset-type **Recordset** that refers to the same underlying query or data as the form.
+If a form is based on a query, referring to the **RecordsetClone** property is the equivalent of creating a dynaset with the same query. You can use the **RecordsetClone** property when you want to apply a method that cannot be used with forms, such as the **[FindFirst](../../../api/overview/Access.md)** method. The **RecordsetClone** property provides access to all the methods and properties that you can use with a dynaset.
+The following example shows how to assign a **Recordset** object to the records in the Orders form.
```vb
Dim rstOrders As DAO.Recordset
@@ -21,5 +21,5 @@ Set rstOrders = Forms!Orders.RecordsetClone
```
-This code always creates the type of **Recordset** being cloned (the type of **Recordset** on which the form is based); no other types are available. Note that the **Recordset** object is declared with the object library qualification. Because Access can use both DAO and ADO, it is better to fully qualify the data access variables by including the object library reference name.
+This code always creates the type of **Recordset** being cloned (the type of **Recordset** on which the form is based); no other types are available. Note that the **Recordset** object is declared with the object library qualification. Because Access can use both DAO and ADO, it is better to fully qualify the data access variables by including the object library reference name.
diff --git a/access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-query.md b/access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-query.md
index ff60041fc80..06ceec8d503 100644
--- a/access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-query.md
+++ b/access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-query.md
@@ -1,14 +1,14 @@
---
-title: Create a DAO Recordset From a Query
+title: Create a DAO Recordset from a query
ms.prod: access
ms.assetid: d84870d4-58e4-9d48-9951-72d928929002
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Create a DAO Recordset From a Query
+# Create a DAO Recordset from a query
-You can create a **[Recordset](../../../api/overview/Access.md)** object based on a stored select query. In the following code example, Current Product List is an existing select query stored in the current database.
+You can create a **[Recordset](../../../api/overview/Access.md)** object based on a stored select query. In the following code example, `Current Product List` is an existing select query stored in the current database.
```vb
@@ -21,10 +21,7 @@ Set rstProducts = dbsNorthwind.OpenRecordset("Current Product List")
```
-If a stored select query does not already exist, the **[OpenRecordset](../../../api/overview/Access.md)** method also accepts an SQL string instead of the name of a query. The previous example can be rewritten as follows.
-
-
-
+If a stored select query does not already exist, the **[OpenRecordset](../../../api/overview/Access.md)** method also accepts an SQL string instead of the name of a query. The previous example can be rewritten as follows.
```vb
Dim dbsNorthwind As DAO.Database
diff --git a/access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-table-in-the-current-database.md b/access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-table-in-the-current-database.md
index 3f6ec3ea77a..ecf87bf7f1e 100644
--- a/access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-table-in-the-current-database.md
+++ b/access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-table-in-the-current-database.md
@@ -1,14 +1,14 @@
---
-title: Create a DAO Recordset From a Table In the Current Database
+title: Create a DAO Recordset from a table in the current database
ms.prod: access
ms.assetid: b0507965-e6af-cda4-9d50-fbeb98b4ab89
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Create a DAO Recordset From a Table In the Current Database
+# Create a DAO Recordset from a table in the current database
-The following code example uses the **[OpenRecordset](../../../api/overview/Access.md)** method to create a table-type **[Recordset](../../../api/overview/Access.md)** object for a table in the current database.
+The following code example uses the **[OpenRecordset](../../../api/overview/Access.md)** method to create a table-type **[Recordset](../../../api/overview/Access.md)** object for a table in the current database.
```vb
diff --git a/access/Concepts/Data-Access-Objects/create-a-user-defined-property.md b/access/Concepts/Data-Access-Objects/create-a-user-defined-property.md
index ea78181e531..d17d376f497 100644
--- a/access/Concepts/Data-Access-Objects/create-a-user-defined-property.md
+++ b/access/Concepts/Data-Access-Objects/create-a-user-defined-property.md
@@ -1,14 +1,14 @@
---
-title: Create a User-Defined Property
+title: Create a user-defined property
ms.prod: access
ms.assetid: 49d2fede-2fb5-0b1b-42cd-6147756ea1ca
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Create a User-Defined Property
+# Create a user-defined property
-The following example attempts to set the value of a user-defined property. If the property does not exist, it uses the **[CreateProperty](../../../api/overview/Access.md)** method to create and set the value of the new property.
+The following example attempts to set the value of a user-defined property. If the property does not exist, it uses the **[CreateProperty](../../../api/overview/Access.md)** method to create and set the value of the new property.
```vb
diff --git a/access/Concepts/Data-Access-Objects/delete-a-record-from-a-dao-recordset.md b/access/Concepts/Data-Access-Objects/delete-a-record-from-a-dao-recordset.md
index ae0a48c959e..5ebb1f7be86 100644
--- a/access/Concepts/Data-Access-Objects/delete-a-record-from-a-dao-recordset.md
+++ b/access/Concepts/Data-Access-Objects/delete-a-record-from-a-dao-recordset.md
@@ -1,14 +1,14 @@
---
-title: Delete a Record From a DAO Recordset
+title: Delete a record from a DAO Recordset
ms.prod: access
ms.assetid: 7407b757-4c00-2ea7-c93f-303c09afff26
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Delete a Record From a DAO Recordset
+# Delete a record from a DAO Recordset
-You can delete an existing record in a table or dynaset-type **[Recordset](../../../api/overview/Access.md)** object by using the **[Delete](../../../api/overview/Access.md)** method. You cannot delete records from a snapshot-type **Recordset** object. The following code example deletes all the duplicate records in the Shippers table.
+You can delete an existing record in a table or dynaset-type **[Recordset](../../../api/overview/Access.md)** object by using the **[Delete](../../../api/overview/Access.md)** method. You cannot delete records from a snapshot-type **Recordset** object. The following code example deletes all the duplicate records in the Shippers table.
```vb
@@ -48,8 +48,9 @@ End Function
```
-When you use the **Delete** method, the Access database engine immediately deletes the current record without any warning or prompting. Deleting a record does not automatically cause the next record to become the current record; to move to the next record you must use the **[MoveNext](../../../api/overview/Access.md)** method. Be aware that after you have moved off the deleted record, you cannot move back to it.
+When you use the **Delete** method, the Access database engine immediately deletes the current record without any warning or prompting. Deleting a record does not automatically cause the next record to become the current record; to move to the next record you must use the **[MoveNext](../../../api/overview/Access.md)** method. Be aware that after you have moved off the deleted record, you cannot move back to it.
-If you try to access a record after deleting it on a table-type **Recordset**, you will see error 3167, "Record is deleted." On a dynaset, you will see error 3021, "No current record."
-If you have a **Recordset** clone positioned at the deleted record and you try to read its value, you will see error 3167 regardless of the type of **Recordset** object. Trying to use a bookmark to move to a deleted record will also result in error 3167.
+If you try to access a record after deleting it on a table-type **Recordset**, you will see error 3167, "Record is deleted." On a dynaset, you will see error 3021, "No current record."
+
+If you have a **Recordset** clone positioned at the deleted record, and you try to read its value, you will see error 3167 regardless of the type of **Recordset** object. Trying to use a bookmark to move to a deleted record will also result in error 3167.
diff --git a/access/Concepts/Data-Access-Objects/detect-the-limits-of-a-dao-recordset.md b/access/Concepts/Data-Access-Objects/detect-the-limits-of-a-dao-recordset.md
index cc3b557c342..7fd15bb9913 100644
--- a/access/Concepts/Data-Access-Objects/detect-the-limits-of-a-dao-recordset.md
+++ b/access/Concepts/Data-Access-Objects/detect-the-limits-of-a-dao-recordset.md
@@ -1,21 +1,20 @@
---
-title: Detect the Limits of a DAO Recordset
+title: Detect the limits of a DAO Recordset
ms.prod: access
ms.assetid: f4be9ea8-25af-1c5c-4cd7-43d57e5d4d8b
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Detect the Limits of a DAO Recordset
+# Detect the limits of a DAO Recordset
-In a **[Recordset](../../../api/overview/Access.md)** object, if you try to move beyond the beginning or ending record, a run-time error occurs. For example, if you try to use the **[MoveNext](../../../api/overview/Access.md)** method when you are already at the last record of the **Recordset**, a trappable error occurs. For this reason, it is helpful to know the limits of the **Recordset** object.
-
-The **[BOF](../../../api/overview/Access.md)** property indicates whether the current position is at the beginning of the **Recordset**. If **BOF** is **True**, the current position is before the first record in the **Recordset**. The **BOF** property is also **True** if there are no records in the **Recordset** when it is opened. Similarly, the **[EOF](../../../api/overview/Access.md)** property is **True** if the current position is after the last record in the **Recordset**, or if there are no records.
-
-The following code example shows how to use the **BOF** and **EOF** properties to detect the beginning and end of a **Recordset** object. This code fragment creates a table-type **Recordset** based on the Orders table from the current database. It moves through the records, first from the beginning of the **Recordset** to the end, and then from the end of the **Recordset** to the beginning.
+In a **[Recordset](../../../api/overview/Access.md)** object, if you try to move beyond the beginning or ending record, a run-time error occurs. For example, if you try to use the **[MoveNext](../../../api/overview/Access.md)** method when you are already at the last record of the **Recordset**, a trappable error occurs. For this reason, it is helpful to know the limits of the **Recordset** object.
+The **[BOF](../../../api/overview/Access.md)** property indicates whether the current position is at the beginning of the **Recordset**. If **BOF** is **True**, the current position is before the first record in the **Recordset**. The **BOF** property is also **True** if there are no records in the **Recordset** when it is opened.
+Similarly, the **[EOF](../../../api/overview/Access.md)** property is **True** if the current position is after the last record in the **Recordset**, or if there are no records.
+The following code example shows how to use the **BOF** and **EOF** properties to detect the beginning and end of a **Recordset** object. This code fragment creates a table-type **Recordset** based on the Orders table from the current database. It moves through the records, first from the beginning of the **Recordset** to the end, and then from the end of the **Recordset** to the beginning.
```vb
Dim dbsNorthwind As DAO.Database
@@ -44,18 +43,18 @@ Dim rstOrders As DAO.Recordset
```
-Be aware that there is no current record immediately following the first loop. The **BOF** and **EOF** properties both have the following characteristics.
+Be aware that there is no current record immediately following the first loop. The **BOF** and **EOF** properties both have the following characteristics.
-- If the **Recordset** contains no records when you open it, both **BOF** and **EOF** are **True**.
+- If the **Recordset** contains no records when you open it, both **BOF** and **EOF** are **True**.
-- When **BOF** or **EOF** is **True**, the property remains **True** until you move to an existing record, at which time the value of **BOF** or **EOF** becomes **False**.
+- When **BOF** or **EOF** is **True**, the property remains **True** until you move to an existing record, at which time the value of **BOF** or **EOF** becomes **False**.
-- When **BOF** or **EOF** is **False**, and the only record in a **Recordset** is deleted, the property remains **False** until you try to move to another record, at which time both **BOF** and **EOF** become **True**.
+- When **BOF** or **EOF** is **False**, and the only record in a **Recordset** is deleted, the property remains **False** until you try to move to another record, at which time both **BOF** and **EOF** become **True**.
-- At the moment you create or open a **Recordset** that contains at least one record, the first record is the current record, and both **BOF** and **EOF** are **False**.
+- At the moment you create or open a **Recordset** that contains at least one record, the first record is the current record, and both **BOF** and **EOF** are **False**.
-- If the first record is the current record when you use the **MovePrevious** method, **BOF** is set to **True**. If you use **MovePrevious** while **BOF** is **True**, a run-time error occurs. When this happens, **BOF** remains **True** and there is no current record.
+- If the first record is the current record when you use the **MovePrevious** method, **BOF** is set to **True**. If you use **MovePrevious** while **BOF** is **True**, a run-time error occurs. When this happens, **BOF** remains **True** and there is no current record.
-- Similarly, moving past the last record in the **Recordset** changes the value of the **EOF** property to **True**. If you use the **MoveNext** method while **EOF** is **True**, a run-time error occurs. When this happens, **EOF** remains **True** and there is no current record.
+- Similarly, moving past the last record in the **Recordset** changes the value of the **EOF** property to **True**. If you use the **MoveNext** method while **EOF** is **True**, a run-time error occurs. When this happens, **EOF** remains **True** and there is no current record.
diff --git a/access/Concepts/Data-Access-Objects/extract-data-from-a-record-in-a-dao-recordset.md b/access/Concepts/Data-Access-Objects/extract-data-from-a-record-in-a-dao-recordset.md
index 1950f3bc2df..7e07fe87455 100644
--- a/access/Concepts/Data-Access-Objects/extract-data-from-a-record-in-a-dao-recordset.md
+++ b/access/Concepts/Data-Access-Objects/extract-data-from-a-record-in-a-dao-recordset.md
@@ -1,19 +1,19 @@
---
-title: Extract Data from a Record in a DAO Recordset
+title: Extract data from a record in a DAO Recordset
ms.prod: access
ms.assetid: cd0d8c73-c9a7-3565-514d-6b379ac2d690
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Extract Data from a Record in a DAO Recordset
+# Extract data from a record in a DAO Recordset
After you have located a particular record or records, you may want to extract data to use in your application instead of modifying the underlying source table.
-## Copying a Single Field
+## Copy a single field
-You can copy a single field of a record to a variable of the appropriate data type. The following example extracts three fields from the first record in a **[Recordset](../../../api/overview/Access.md)** object.
+You can copy a single field of a record to a variable of the appropriate data type. The following example extracts three fields from the first record in a **[Recordset](../../../api/overview/Access.md)** object.
```vb
@@ -34,27 +34,21 @@ Dim strTitle As String
```
-## Copying Entire Records to an Array
+## Copy entire records to an array
To copy one or more records, you can create a two-dimensional array and copy records one at a time. You increment the first subscript for each field and the second subscript for each record.
-A fast way to do this is to use the **[GetRows](../../../api/overview/Access.md)** method, which returns a two-dimensional array. The first subscript identifies the field and the second identifies the row number, as follows.
-
-
-
+A fast way to do this is to use the **[GetRows](../../../api/overview/Access.md)** method, which returns a two-dimensional array. The first subscript identifies the field and the second identifies the row number, as follows.
```vb
varRecords(intField, intRecord)
```
-The following code example uses an SQL statement to retrieve three fields from a table called Employees into a **Recordset** object. It then uses the **GetRows** method to retrieve the first three records of the **Recordset**, and it stores the selected records in a two-dimensional array. It then prints each record, one field at a time, by using the two array indexes to select specific fields and records.
+The following code example uses an SQL statement to retrieve three fields from a table called Employees into a **Recordset** object. It then uses the **GetRows** method to retrieve the first three records of the **Recordset**, and it stores the selected records in a two-dimensional array. It then prints each record, one field at a time, by using the two array indexes to select specific fields and records.
To show how the array indexes are used, the following example uses a separate statement to identify and print each field of each record. In practice, it would be more reliable to use two loops, one nested in the other, and to provide integer variables for the indexes that step through both dimensions of the array.
-
-
-
```vb
Sub GetRowsTest()
@@ -96,12 +90,14 @@ ErrorHandler:
End Sub
```
-You can use subsequent calls to the **GetRows** method if more records are available. Because the array is filled as soon as you call the **GetRows** method, you can see why this approach is much faster than copying one field at a time.
+You can use subsequent calls to the **GetRows** method if more records are available. Because the array is filled as soon as you call the **GetRows** method, you can see why this approach is much faster than copying one field at a time.
+
+Notice also that you do not have to declare the Variant as an array, because this is done automatically when the **GetRows** method returns records. This enables you to use fixed-length array dimensions without knowing how many records or fields will be returned, instead of using variable-length dimensions that take up more memory.
-Notice also that you do not have to declare the Variant as an array, because this is done automatically when the **GetRows** method returns records. This enables you to use fixed-length array dimensions without knowing how many records or fields will be returned, instead of using variable-length dimensions that take up more memory.
+If you are trying to retrieve all the rows by using multiple **GetRows** calls, use the **[EOF](../../../api/overview/Access.md)** property to be sure that you are at the end of the **Recordset**. The **GetRows** method may return fewer rows than you request. If you request more than the remaining number of rows in a **Recordset**, for example, the **GetRows** method returns only the rows that remain. Similarly, if it cannot retrieve a row in the range requested, it does not return that row.
-If you are trying to retrieve all the rows by using multiple **GetRows** calls, use the **[EOF](../../../api/overview/Access.md)** property to be sure that you are at the end of the **Recordset**. The **GetRows** method may return fewer rows than you request. If you request more than the remaining number of rows in a **Recordset**, for example, the **GetRows** method returns only the rows that remain. Similarly, if it cannot retrieve a row in the range requested, it does not return that row. For example, if the fifth record cannot be retrieved in a group of 10 records that you are trying to retrieve, the **GetRows** method returns four records and leaves the current record position on the record that caused a problem, and does not generate a run-time error. This situation may occur if a record in a dynaset was deleted by another user. If it returns fewer records than the number requested and you are not at the end of the file, you need to read each field in the current record to determine what error the **GetRows** method encountered.
+For example, if the fifth record cannot be retrieved in a group of 10 records that you are trying to retrieve, the **GetRows** method returns four records and leaves the current record position on the record that caused a problem, and does not generate a run-time error. This situation may occur if a record in a dynaset was deleted by another user. If it returns fewer records than the number requested and you are not at the end of the file, you need to read each field in the current record to determine what error the **GetRows** method encountered.
-Because the **GetRows** method always returns all the fields in the **Recordset** object, you may want to create a query that returns just the fields that you need. This is especially important for OLE Object and Memo fields.
+Because the **GetRows** method always returns all the fields in the **Recordset** object, you may want to create a query that returns just the fields that you need. This is especially important for OLE Object and Memo fields.
diff --git a/access/Concepts/Data-Access-Objects/find-a-record-in-a-dynaset-type-or-snapshot-type-dao-recordset.md b/access/Concepts/Data-Access-Objects/find-a-record-in-a-dynaset-type-or-snapshot-type-dao-recordset.md
index c1d367f3124..e80146bdbbb 100644
--- a/access/Concepts/Data-Access-Objects/find-a-record-in-a-dynaset-type-or-snapshot-type-dao-recordset.md
+++ b/access/Concepts/Data-Access-Objects/find-a-record-in-a-dynaset-type-or-snapshot-type-dao-recordset.md
@@ -1,33 +1,34 @@
---
-title: Find a Record in a Dynaset-Type or Snapshot-Type DAO Recordset
+title: Find a record in a dynaset-type or snapshot-type DAO Recordset
ms.prod: access
ms.assetid: f79f47e1-63a9-774d-4d07-32759ac30c8b
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Find a Record in a Dynaset-Type or Snapshot-Type DAO Recordset
+# Find a record in a dynaset-type or snapshot-type DAO Recordset
-You can use the Find methods to locate a record in a dynaset-type or snapshot-type **[Recordset](../../../api/overview/Access.md)** object. DAO provides the following Find methods:
+You can use the Find methods to locate a record in a dynaset-type or snapshot-type **[Recordset](../../../api/overview/Access.md)** object. DAO provides the following Find methods:
-- The **[FindFirst](../../../api/overview/Access.md)** method finds the first record that satisfies the specified criteria.
+- The **[FindFirst](../../../api/overview/Access.md)** method finds the first record that satisfies the specified criteria.
-- The **[FindLast](../../../api/overview/Access.md)** method finds the last record that satisfies the specified criteria.
+- The **[FindLast](../../../api/overview/Access.md)** method finds the last record that satisfies the specified criteria.
-- The **[FindNext](../../../api/overview/Access.md)** method finds the next record that satisfies the specified criteria.
+- The **[FindNext](../../../api/overview/Access.md)** method finds the next record that satisfies the specified criteria.
-- The **[FindPrevious](../../../api/overview/Access.md)** method finds the previous record that satisfies the specified criteria.
+- The **[FindPrevious](../../../api/overview/Access.md)** method finds the previous record that satisfies the specified criteria.
When you use the Find methods, you specify the search criteria, which is typically an expression that equates a field name with a specific value.
-You can locate the matching records in reverse order by finding the last occurrence with the **FindLast** method and then using the **FindPrevious** method instead of the **FindNext** method.
-DAO sets the **[NoMatch](../../../api/overview/Access.md)** property to **True** when a Find method fails and the current record position is undefined. There may be a current record, but there is no way to tell which one. To return to the previous current record following a failed Find method, use a bookmark.
-The **NoMatch** property is **False** when the operation succeeds. In this case, the current record position is the record found by one of the Find methods.
-The following example illustrates how you can use the **FindNext** method to find all orders in the Orders table that have no corresponding records in the Order Details table. The function searches for missing orders and, if it finds one, it adds the value in the OrderID field to the array aryOrders().
+You can locate the matching records in reverse order by finding the last occurrence with the **FindLast** method and then using the **FindPrevious** method instead of the **FindNext** method.
+DAO sets the **[NoMatch](../../../api/overview/Access.md)** property to **True** when a Find method fails and the current record position is undefined. There may be a current record, but there is no way to tell which one. To return to the previous current record following a failed Find method, use a bookmark.
+The **NoMatch** property is **False** when the operation succeeds. In this case, the current record position is the record found by one of the Find methods.
+
+The following example illustrates how you can use the **FindNext** method to find all orders in the Orders table that have no corresponding records in the Order Details table. The function searches for missing orders and, if it finds one, it adds the value in the OrderID field to the array aryOrders().
```vb
Function FindOrders() As Variant
diff --git a/access/Concepts/Data-Access-Objects/find-a-record-in-a-table-type-dao-recordset.md b/access/Concepts/Data-Access-Objects/find-a-record-in-a-table-type-dao-recordset.md
index 0bb38e18cbf..5a205ba141f 100644
--- a/access/Concepts/Data-Access-Objects/find-a-record-in-a-table-type-dao-recordset.md
+++ b/access/Concepts/Data-Access-Objects/find-a-record-in-a-table-type-dao-recordset.md
@@ -1,20 +1,21 @@
---
-title: Find a Record in a Table-Type DAO Recordset
+title: Find a record in a table-type DAO Recordset
ms.prod: access
ms.assetid: b17f14db-9b3e-7f12-9fc8-f56c6dcbad09
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Find a Record in a Table-Type DAO Recordset
+# Find a record in a table-type DAO Recordset
-You use the **[Seek](../../../api/overview/Access.md)** method to locate a record in a table-type **[Recordset](../../../api/overview/Access.md)** object.
+You use the **[Seek](../../../api/overview/Access.md)** method to locate a record in a table-type **[Recordset](../../../api/overview/Access.md)** object.
-When you use the **Seek** method to locate a record, the Access database engine uses the table's current index, as defined by the **[Index](../../../api/overview/Access.md)** property.
+When you use the **Seek** method to locate a record, the Access database engine uses the table's current index, as defined by the **[Index](../../../api/overview/Access.md)** property.
- **Note** If you use the **Seek** method on a table-type **Recordset** object without first setting the current index, a run-time error occurs.
+> [!NOTE]
+> If you use the **Seek** method on a table-type **Recordset** object without first setting the current index, a run-time error occurs.
-The following example opens a table-type **Recordset** object called Employees, and uses the Seek method to locate the record containing a value of **lngEmpID** in the EmployeeID field. It returns the hire date for the specified employee.
+The following example opens a table-type **Recordset** object called Employees, and uses the Seek method to locate the record containing a value of **lngEmpID** in the EmployeeID field. It returns the hire date for the specified employee.
@@ -52,11 +53,11 @@ ErrorHandler:
End Function
```
-The **Seek** method always starts searching for records at the beginning of the **Recordset** object. If you use the **Seek** method with the same arguments more than once on the same **Recordset**, it finds the same record.
-You can use the **[NoMatch](../../../api/overview/Access.md)** property on the **Recordset** object to test whether a record matching the search criteria was found. If the record matching the criteria was found, the **NoMatch** property will be **False**; otherwise it will be **True**.
-The following code example shows how you can create a function that uses the **Seek** method to locate a record by using a multiple-field index.
+The **Seek** method always starts searching for records at the beginning of the **Recordset** object. If you use the **Seek** method with the same arguments more than once on the same **Recordset**, it finds the same record.
+You can use the **[NoMatch](../../../api/overview/Access.md)** property on the **Recordset** object to test whether a record matching the search criteria was found. If the record matching the criteria was found, the **NoMatch** property will be **False**; otherwise it will be **True**.
+The following code example shows how you can create a function that uses the **Seek** method to locate a record by using a multiple-field index.
```vb
Function GetFirstPrice(lngOrderID As Long, lngProductID As Long) As Variant
@@ -91,6 +92,7 @@ ErrorHandler:
End Function
```
-In this example, the table's primary key consists of two fields: OrderID and ProductID. When you call the GetFirstPrice function with a valid (existing) combination of OrderID and ProductID field values, the function returns the unit price from the found record. If it cannot find the combination of field values you want in the table, the function returns the **Null** value.
-If the current index is a multiple-field index, trailing key values can be omitted and are treated as **Null** values. That is, you can leave off any number of key values from the end of a **Seek** method's _key_ argument, but not from the beginning or the middle. However, if you do not specify all values in the index, you can use only the ">" or "<" comparison string with the **Seek** method.
+In this example, the table's primary key consists of two fields: OrderID and ProductID. When you call the GetFirstPrice function with a valid (existing) combination of OrderID and ProductID field values, the function returns the unit price from the found record. If it cannot find the combination of field values you want in the table, the function returns the **Null** value.
+
+If the current index is a multiple-field index, trailing key values can be omitted and are treated as **Null** values. That is, you can leave off any number of key values from the end of a **Seek** method's _key_ argument, but not from the beginning or the middle. However, if you do not specify all values in the index, you can use only the ">" or "<" comparison string with the **Seek** method.
diff --git a/access/Concepts/Data-Access-Objects/find-the-current-position-in-a-dao-recordset.md b/access/Concepts/Data-Access-Objects/find-the-current-position-in-a-dao-recordset.md
index d843a685035..faf082caa3a 100644
--- a/access/Concepts/Data-Access-Objects/find-the-current-position-in-a-dao-recordset.md
+++ b/access/Concepts/Data-Access-Objects/find-the-current-position-in-a-dao-recordset.md
@@ -1,25 +1,25 @@
---
-title: Find the Current Position in a DAO Recordset
+title: Find the current position in a DAO Recordset
ms.prod: access
ms.assetid: 1f08caa7-b671-b844-59a0-f924a5220cf4
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Find the Current Position in a DAO Recordset
+# Find the current position in a DAO Recordset
-In some situations, you need to determine how far through a **[Recordset](../../../api/overview/Access.md)** object you have moved the current record position, and perhaps indicate the current record position to a user. For example, you may want to indicate the current position on a dial, meter, or similar type of control. Two properties are available to indicate the current position: the **[AbsolutePosition](../../../api/overview/Access.md)** property and the **[PercentPosition](../../../api/overview/Access.md)** property.
+In some situations, you need to determine how far through a **[Recordset](../../../api/overview/Access.md)** object you have moved the current record position, and perhaps indicate the current record position to a user. For example, you may want to indicate the current position on a dial, meter, or similar type of control. Two properties are available to indicate the current position: the **[AbsolutePosition](../../../api/overview/Access.md)** property and the **[PercentPosition](../../../api/overview/Access.md)** property.
-The **AbsolutePosition** property value is the position of the current record relative to 0. However, do not think of this property as a record number; if the current record is undefined, the **AbsolutePosition** property returns 1. In addition, there is no assurance that a record will have the same absolute position if the **Recordset** object is recreated because the order of individual records within a **Recordset** object is not guaranteed unless it is created with an SQL statement that includes an ORDER BY clause.
+The **AbsolutePosition** property value is the position of the current record relative to 0. However, do not think of this property as a record number; if the current record is undefined, the **AbsolutePosition** property returns 1. In addition, there is no assurance that a record will have the same absolute position if the **Recordset** object is recreated because the order of individual records within a **Recordset** object is not guaranteed unless it is created with an SQL statement that includes an ORDER BY clause.
-The **PercentPosition** property shows the current position expressed as a percentage of the total number of records indicated by the **[RecordCount](../../../api/overview/Access.md)** property. Because the **RecordCount** property does not reflect the total number of records in the **Recordset** object until the **Recordset** has been fully populated, the **PercentPosition** property reflects only the current record position as a percentage of the number of records that have been accessed since the **Recordset** was opened. To make sure that the **PercentPosition** property reflects the current record position relative to the entire **Recordset**, use the **[MoveLast](../../../api/overview/Access.md)** and **[MoveFirst](../../../api/overview/Access.md)** methods immediately after opening the **Recordset**. This fully populates the **Recordset** object before you use the **PercentPosition** property. If you have a large result set, using the **MoveLast** method may take a long time for **Recordsets** that are not of type table.
+The **PercentPosition** property shows the current position expressed as a percentage of the total number of records indicated by the **[RecordCount](../../../api/overview/Access.md)** property. Because the **RecordCount** property does not reflect the total number of records in the **Recordset** object until the **Recordset** has been fully populated, the **PercentPosition** property reflects only the current record position as a percentage of the number of records that have been accessed since the **Recordset** was opened.
+To make sure that the **PercentPosition** property reflects the current record position relative to the entire **Recordset**, use the **[MoveLast](../../../api/overview/Access.md)** and **[MoveFirst](../../../api/overview/Access.md)** methods immediately after opening the **Recordset**. This fully populates the **Recordset** object before you use the **PercentPosition** property. If you have a large result set, using the **MoveLast** method may take a long time for **Recordsets** that are not of type table.
- **Note** The **PercentPosition** property is only an approximation and should not be used as a critical parameter. This property is best suited for driving an indicator that marks a user's progress while moving though a set of records. For example, you may want a control that indicates the percentage of records completed.
-
-The following example opens a **Recordset** object on a table called Employees. The procedure then moves through the Employees table and uses the **[SysCmd](../../../api/Access.Application.SysCmd.md)** method to display a progress bar showing the percentage of the table that has been processed. If the hire date of the employee is before Jan. 1, 1993, the text "Senior Staff" is appended to the Notes field.
-
+> [!NOTE]
+> The **PercentPosition** property is only an approximation and should not be used as a critical parameter. This property is best suited for driving an indicator that marks a user's progress while moving though a set of records. For example, you may want a control that indicates the percentage of records completed.
+The following example opens a **Recordset** object on a table called Employees. The procedure then moves through the Employees table and uses the **[SysCmd](../../../api/Access.Application.SysCmd.md)** method to display a progress bar showing the percentage of the table that has been processed. If the hire date of the employee is before Jan. 1, 1993, the text "Senior Staff" is appended to the Notes field.
```vb
Sub AddEmployeeNotes()
diff --git a/access/Concepts/Data-Access-Objects/make-bulk-changes-to-a-dao-recordset.md b/access/Concepts/Data-Access-Objects/make-bulk-changes-to-a-dao-recordset.md
index efbb47c9398..0cb59d305f3 100644
--- a/access/Concepts/Data-Access-Objects/make-bulk-changes-to-a-dao-recordset.md
+++ b/access/Concepts/Data-Access-Objects/make-bulk-changes-to-a-dao-recordset.md
@@ -1,18 +1,16 @@
---
-title: Make Bulk Changes to a DAO Recordset
+title: Make bulk changes to a DAO Recordset
ms.prod: access
ms.assetid: b66c857a-42ed-15c9-e01d-99c451651f3b
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Make Bulk Changes to a DAO Recordset
-
-After you have created a table-type or dynaset-type **[Recordset](../../../api/overview/Access.md)** object, you can change, delete, or add new records. You cannot change, delete, or add records to a snapshot-type or forward-only-type **Recordset** object.
-
-Many of the changes you may otherwise perform in a loop can be done more efficiently with an update or delete query using SQL. The following example creates a **[QueryDef](../../../api/overview/Access.md)** object to update the Employees table and then runs the query.
+# Make bulk changes to a DAO Recordset
+After you have created a table-type or dynaset-type **[Recordset](../../../api/overview/Access.md)** object, you can change, delete, or add new records. You cannot change, delete, or add records to a snapshot-type or forward-only-type **Recordset** object.
+Many of the changes you may otherwise perform in a loop can be done more efficiently with an update or delete query using SQL. The following example creates a **[QueryDef](../../../api/overview/Access.md)** object to update the Employees table and then runs the query.
```vb
Dim dbsNorthwind As DAO.Database
@@ -66,6 +64,7 @@ Dim strNew As String
```
- **Note** A delete query is much more efficient than code that loops through a **Recordset**, modifying or deleting one record at a time.
+> [!NOTE]
+> A delete query is much more efficient than code that loops through a **Recordset**, modifying or deleting one record at a time.
diff --git a/access/Concepts/Data-Access-Objects/manipulate-multivalued-fields-with-dao.md b/access/Concepts/Data-Access-Objects/manipulate-multivalued-fields-with-dao.md
index 699580d2df3..7ab827b4658 100644
--- a/access/Concepts/Data-Access-Objects/manipulate-multivalued-fields-with-dao.md
+++ b/access/Concepts/Data-Access-Objects/manipulate-multivalued-fields-with-dao.md
@@ -1,14 +1,14 @@
---
-title: Manipulate Multivalued Fields With DAO
+title: Manipulate multivalued fields with DAO
ms.prod: access
ms.assetid: a3c02fcd-ad48-c3fb-afa1-aabb43fc5bbf
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Manipulate Multivalued Fields With DAO
+# Manipulate multivalued fields with DAO
-Multivalued fields are represented as **[Recordset](../../../api/overview/Access.md)** objects in DAO. The recordset for a field is a child of the recordset for the table that contains the multivalued field. To instantiate the child recordset, use the **Value** property of the multivalued field as follows.
+Multivalued fields are represented as **[Recordset](../../../api/overview/Access.md)** objects in DAO. The recordset for a field is a child of the recordset for the table that contains the multivalued field. To instantiate the child recordset, use the **Value** property of the multivalued field as follows.
```vb
@@ -18,19 +18,15 @@ Set childRs = rs.
+The following table lists some Microsoft Access-defined properties that apply to DAO objects.
|**DAO object**|**Microsoft Access-defined properties**|
|:-----|:-----|
|**Database**|**AppTitle**, **AppIcon**, **StartupShowDBWindow**, **StartupShowStatusBar**, **AllowShortcutMenus**, **AllowFullMenus**, **AllowBuiltInToolbars**, **AllowToolbarChanges**, **AllowBreakIntoCode**, **AllowSpecialKeys**, **Replicable**, **ReplicationConflictFunction**|
-|SummaryInfo **Container**|**Title**, **Subject**, **Author**, **Manager**, **Company**, **Category**, **Keywords**, **Comments**, **Hyperlink Base** (See the **Summary** tab of the ** _DatabaseName_ Properties** dialog box, available by clicking **Database Properties** on the **File** menu.)|
-|UserDefined **Container**|(See the **Summary** tab of the ** _DatabaseName_ Properties** dialog box, available by clicking **Database Properties** on the **File** menu.)|
+|SummaryInfo **Container**|**Title**, **Subject**, **Author**, **Manager**, **Company**, **Category**, **Keywords**, **Comments**, **Hyperlink Base** (See the **Summary** tab of the **_DatabaseName_ Properties** dialog box, available by selecting **Database Properties** on the **File** menu.)|
+|UserDefined **Container**|(See the **Summary** tab of the **_DatabaseName_ Properties** dialog box, available by selecting **Database Properties** on the **File** menu.)|
|**TableDef**|**DatasheetBackColor**, **DatasheetCellsEffect**, **DatasheetFontHeight**, **DatasheetFontItalic**, **DatasheetFontName**, **DatasheetFontUnderline**, **DatasheetFontWeight**, **DatasheetForeColor**, **DatasheetGridlinesBehavior**, **DatasheetGridlinesColor**, **Description**, **FrozenColumns**, **RowHeight**, **ShowGrid**|
|**QueryDef**|**DatasheetBackColor**, **DatasheetCellsEffect**, **DatasheetFontHeight**, **DatasheetFontItalic**, **DatasheetFontName**, **DatasheetFontUnderline**, **DatasheetFontWeight**, **DatasheetForeColor**, **DatasheetGridlinesBehavior**, **DatasheetGridlinesColor**, **Description**, **FailOnError**, **FrozenColumns**, **LogMessages**, **MaxRecords**, **RecordLocks**, **RowHeight**, **ShowGrid, UseTransaction**|
|**Field**|**Caption**, **ColumnHidden**, **ColumnOrder**, **ColumnWidth**, **DecimalPlaces**, **Description**, **Format**, **InputMask**|
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
-- [Search for specific Access error codes on Bing](https://www.bing.com/)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
-- [Access wiki on UtterAcess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
-- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
\ No newline at end of file
+- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
+
diff --git a/access/Concepts/Data-Access-Objects/sort-data-in-a-dao-recordset.md b/access/Concepts/Data-Access-Objects/sort-data-in-a-dao-recordset.md
index 65fd2e75b13..17b3e05fb78 100644
--- a/access/Concepts/Data-Access-Objects/sort-data-in-a-dao-recordset.md
+++ b/access/Concepts/Data-Access-Objects/sort-data-in-a-dao-recordset.md
@@ -1,20 +1,20 @@
---
-title: Sort Data in a DAO Recordset
+title: Sort data in a DAO Recordset
ms.prod: access
ms.assetid: 900b0b00-34f5-dba6-5386-34360cee95a0
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Sort Data in a DAO Recordset
+# Sort data in a DAO Recordset
-Unless you open a table-type **[Recordset](../../../api/overview/Access.md)** object and set its **Index** property, you cannot be sure that records will appear in any specific order. However, you usually want to retrieve records in a specific order. For example, you may want to view invoices arranged by increasing invoice number, or retrieve employee records in alphabetical order by their last names. To see records in a specific order, sort them.
+Unless you open a table-type **[Recordset](../../../api/overview/Access.md)** object and set its **Index** property, you cannot be sure that records will appear in any specific order. However, you usually want to retrieve records in a specific order. For example, you may want to view invoices arranged by increasing invoice number, or retrieve employee records in alphabetical order by their last names. To see records in a specific order, sort them.
-To sort data in a **Recordset** object that is not a table, use an SQL ORDER BY clause in the query that constructs the **Recordset**. You can specify an SQL string when you create a **[QueryDef](../../../api/overview/Access.md)** object, when you create a stored query in a database, or when you use the **[OpenRecordset](../../../api/overview/Access.md)** method.
+To sort data in a **Recordset** object that is not a table, use an SQL ORDER BY clause in the query that constructs the **Recordset**. You can specify an SQL string when you create a **[QueryDef](../../../api/overview/Access.md)** object, when you create a stored query in a database, or when you use the **[OpenRecordset](../../../api/overview/Access.md)** method.
-You can also filter data, which means you restrict the result set returned by a query to records that meet some criteria. With any type of **OpenRecordset** object, use an SQL WHERE clause in the original query to filter data.
+You can also filter data, which means you restrict the result set returned by a query to records that meet some criteria. With any type of **OpenRecordset** object, use an SQL WHERE clause in the original query to filter data.
-The following code example opens a dynaset-type **Recordset** object, and uses an SQL statement to retrieve, filter, and sort records.
+The following code example opens a dynaset-type **Recordset** object, and uses an SQL statement to retrieve, filter, and sort records.
@@ -29,7 +29,7 @@ Set rstManagers = dbsNorthwind.OpenRecordset("SELECT FirstName, " & _
```
-One limitation of running an SQL query in an **OpenRecordset** method is that it has to be recompiled every time you run it. If this query is used frequently, you can improve performance by first creating a stored query using the same SQL statement, and then opening a **Recordset** object against the query, as shown in the following code example.
+One limitation of running an SQL query in an **OpenRecordset** method is that it has to be recompiled every time you run it. If this query is used frequently, you can improve performance by first creating a stored query using the same SQL statement, and then opening a **Recordset** object against the query, as shown in the following code example.
diff --git a/access/Concepts/Data-Access-Objects/synchronize-a-dao-recordset-s-record-with-a-form-s-current-record.md b/access/Concepts/Data-Access-Objects/synchronize-a-dao-recordset-s-record-with-a-form-s-current-record.md
index 2b7e311e3f5..623f8c4c54b 100644
--- a/access/Concepts/Data-Access-Objects/synchronize-a-dao-recordset-s-record-with-a-form-s-current-record.md
+++ b/access/Concepts/Data-Access-Objects/synchronize-a-dao-recordset-s-record-with-a-form-s-current-record.md
@@ -1,14 +1,16 @@
---
-title: Synchronize a DAO Recordset's Record with a Form's Current Record
+title: Synchronize a DAO Recordset's record with a form's current record
ms.prod: access
ms.assetid: 2960dd7d-4c60-4148-ef58-dd44f1042851
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Synchronize a DAO Recordset's Record with a Form's Current Record
+# Synchronize a DAO Recordset's record with a form's current record
-The following code example uses the **[RecordsetClone](../../../api/Access.Form.RecordsetClone.md)** property and the **[Recordset](../../../api/overview/Access.md)** object to synchronize a recordset's record with the form's current record. When a company name is selected from a combo box, the **[FindFirst](../../../api/overview/Access.md)** method is used to locate the record for that company and the **Recordset** object's **[Bookmark](../../../api/overview/Access.md)** property is assigned to the form's **[Bookmark](../../../api/Access.Form.Bookmark.md)** property, causing the form to display the found record.
+The following code example uses the **[RecordsetClone](../../../api/Access.Form.RecordsetClone.md)** property and the **[Recordset](../../../api/overview/Access.md)** object to synchronize a recordset's record with the form's current record.
+
+When a company name is selected from a combo box, the **[FindFirst](../../../api/overview/Access.md)** method is used to locate the record for that company, and the **Recordset** object's **[Bookmark](../../../api/overview/Access.md)** property is assigned to the form's **[Bookmark](../../../api/Access.Form.Bookmark.md)** property, causing the form to display the found record.
```vb
diff --git a/access/Concepts/Data-Access-Objects/track-design-changes-to-a-table-type-dao-recordset.md b/access/Concepts/Data-Access-Objects/track-design-changes-to-a-table-type-dao-recordset.md
index b50b03e47fc..86d94f8cf22 100644
--- a/access/Concepts/Data-Access-Objects/track-design-changes-to-a-table-type-dao-recordset.md
+++ b/access/Concepts/Data-Access-Objects/track-design-changes-to-a-table-type-dao-recordset.md
@@ -1,16 +1,16 @@
---
-title: Track Design Changes to a Table-Type DAO Recordset
+title: Track design changes to a table-type DAO Recordset
ms.prod: access
ms.assetid: 540bfd6d-14f1-e0a2-8a2e-e09cb1a31d52
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Track Design Changes to a Table-Type DAO Recordset
+# Track design changes to a table-type DAO Recordset
-You may need to determine when the underlying **[TableDef](../../../api/overview/Access.md)** object of a table-type **[Recordset](../../../api/overview/Access.md)** was created, or the last time it was modified. The **[DateCreated](../../../api/overview/Access.md)** and **[LastUpdated](../../../api/overview/Access.md)** properties, respectively, give you this information. Both properties return the date stamp applied to the table by the machine on which the table resided at the time it was stamped. These properties are updated only when the table's design changes; they are not affected by changes to records in the table.
+You may need to determine when the underlying **[TableDef](../../../api/overview/Access.md)** object of a table-type **[Recordset](../../../api/overview/Access.md)** was created, or the last time it was modified. The **[DateCreated](../../../api/overview/Access.md)** and **[LastUpdated](../../../api/overview/Access.md)** properties, respectively, give you this information. Both properties return the date stamp applied to the table by the machine on which the table resided at the time it was stamped. These properties are updated only when the table's design changes; they are not affected by changes to records in the table.
-The following code example shows the **DateCreated** and **LastUpdated** properties by adding a new **[Field](../../../api/overview/Access.md)** to an existing **TableDef** and by creating a new **TableDef**. The **DateOutput** function is required for this procedure to run.
+The following code example shows the **DateCreated** and **LastUpdated** properties by adding a new **[Field](../../../api/overview/Access.md)** to an existing **TableDef** and by creating a new **TableDef**. The **DateOutput** function is required for this procedure to run.
diff --git a/access/Concepts/Data-Access-Objects/use-transactions-in-a-dao-recordset.md b/access/Concepts/Data-Access-Objects/use-transactions-in-a-dao-recordset.md
index 12541085593..af49a47eb2e 100644
--- a/access/Concepts/Data-Access-Objects/use-transactions-in-a-dao-recordset.md
+++ b/access/Concepts/Data-Access-Objects/use-transactions-in-a-dao-recordset.md
@@ -1,12 +1,12 @@
---
-title: Use Transactions in a DAO Recordset
+title: Use transactions in a DAO Recordset
ms.prod: access
ms.assetid: 7d565770-37b6-5650-c998-9ff3b30d54cb
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Use Transactions in a DAO Recordset
+# Use transactions in a DAO Recordset
A transaction is a set of operations bundled together and handled as a single unit of work. The work in a transaction must be completed as a whole; if any part of the transaction fails, the entire transaction fails. Transactions offer the developer the ability to enforce data integrity. With multiple database operations bundled into a single unit that must succeed or fail as a whole, the database cannot reach an inconsistent state. Transactions are common to most database management systems.
@@ -14,11 +14,12 @@ The most common example of transaction processing involves a bank's automated te
You should consider using transactions if you want to make sure that each operation in a group of operations is successful before all operations are committed. Keep in mind that all transactions are invisible to other transactions. That is, no transaction can see another transaction's updates to the database until the transaction is committed.
+> [!NOTE]
+> The behavior of transactions with Access databases differs from the behavior of ODBC data sources, such as SQL Server. For example, if a database is connected to a file server, and the file server stops before a transaction has had time to commit its changes, then your database could be left in an inconsistent state. If you require true transaction support with respect to durability, you should investigate using a client/server architecture.
- **Note** The behavior of transactions with Access databases differs from the behavior of ODBC data sources, such as SQL Server. For example, if a database is connected to a file server, and the file server stops before a transaction has had time to commit its changes, then your database could be left in an inconsistent state. If you require true transaction support with respect to durability, you should investigate using a client/server architecture.
+The Access databse engine supports transactions through the DAO **[BeginTrans](../../../api/overview/Access.md)**, **[CommitTrans](../../../api/overview/Access.md)**, and **[Rollback](../../../api/overview/Access.md)** methods of the **[Workspace](../../../api/overview/Access.md)** object.
-The Access databse engine supports transactions through the DAO **[BeginTrans](../../../api/overview/Access.md)**, **[CommitTrans](../../../api/overview/Access.md)**, and **[Rollback](../../../api/overview/Access.md)** methods of the **[Workspace](../../../api/overview/Access.md)** object.
-The following code example changes the job title of all sales representatives in the Employees table. After the **BeginTrans** method starts a transaction that isolates all of the changes made to the Employees table, the **CommitTrans** method saves the changes. Be aware that you can use the **Rollback** method to undo changes that you saved with the **[Update](../../../api/overview/Access.md)** method.
+The following code example changes the job title of all sales representatives in the Employees table. After the **BeginTrans** method starts a transaction that isolates all of the changes made to the Employees table, the **CommitTrans** method saves the changes. Be aware that you can use the **Rollback** method to undo changes that you saved with the **[Update](../../../api/overview/Access.md)** method.
@@ -66,6 +67,7 @@ ErrorHandler:
End Sub
```
-When you use transactions, all databases and **[Recordset](../../../api/overview/Access.md)** objects in the specified **Workspace** object are affected; transactions are global to the workspace, not to a specific database or **Recordset**. If you perform operations on more than one database or within a workspace transaction, the **Commit** and **Rollback** methods affect all the objects changed within that workspace during the transaction.
-You can also use the **[BeginTrans](../../../api/overview/Access.md)**, **[CommitTrans](../../../api/overview/Access.md)**, and **[Rollback](../../../api/overview/Access.md)** methods with the **[DBEngine](../../../api/overview/Access.md)** object. In this case, the transaction is applied to the default workspace, which is `DBEngine.Workspaces(0)`.
+When you use transactions, all databases and **[Recordset](../../../api/overview/Access.md)** objects in the specified **Workspace** object are affected; transactions are global to the workspace, not to a specific database or **Recordset**. If you perform operations on more than one database or within a workspace transaction, the **Commit** and **Rollback** methods affect all the objects changed within that workspace during the transaction.
+
+You can also use the **[BeginTrans](../../../api/overview/Access.md)**, **[CommitTrans](../../../api/overview/Access.md)**, and **[Rollback](../../../api/overview/Access.md)** methods with the **[DBEngine](../../../api/overview/Access.md)** object. In this case, the transaction is applied to the default workspace, which is `DBEngine.Workspaces(0)`.
diff --git a/access/Concepts/Data-Access-Objects/work-with-attachments-in-dao.md b/access/Concepts/Data-Access-Objects/work-with-attachments-in-dao.md
index d495d69d439..c73fa206f0d 100644
--- a/access/Concepts/Data-Access-Objects/work-with-attachments-in-dao.md
+++ b/access/Concepts/Data-Access-Objects/work-with-attachments-in-dao.md
@@ -1,31 +1,29 @@
---
-title: Work With Attachments In DAO
+title: Work with attachments in DAO
ms.prod: access
ms.assetid: e175a47a-4d97-b93b-c152-809314ac5ba0
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Work With Attachments In DAO
+# Work with attachments in DAO
-In DAO, Attachment fields function just like other multi-valued fields. The field that contains the attachment contains a recordset that is a child to the table's recordset. There are two new DAO methods, **[LoadFromFile](../../../api/overview/Access.md)** and **[SaveToFile](../../../api/overview/Access.md)**, that deal exclusively with attachments.
+In DAO, Attachment fields function just like other multi-valued fields. The field that contains the attachment contains a recordset that is a child to the table's recordset. There are two new DAO methods, **[LoadFromFile](../../../api/overview/Access.md)** and **[SaveToFile](../../../api/overview/Access.md)**, that deal exclusively with attachments.
-## Add an Attachment to a Record
+## Add an attachment to a record
-The **LoadFromFile** method loads a file from disk and adds the file as an attachment to the specified record. The following code example shows the syntax of the **LoadFromFile** method.
+The **LoadFromFile** method loads a file from disk and adds the file as an attachment to the specified record. The following code example shows the syntax of the **LoadFromFile** method.
```vb
Recordset.Fields("FileData").LoadFromFile(
|
+
+> [!NOTE]
+> - Access itself doesn't use the BINARY data type. It's recognized only for use in queries on linked tables from other database products that support the BINARY data type.
+> - The INTEGER data type in the Access database engine SQL doesn't correspond to the **Integer** data type for table fields, query parameters, or Visual Basic. Instead, in SQL, the INTEGER data type corresponds to a **Long Integer** data type for table fields and query parameters and to a **Long** data type in Visual Basic.
+> - The VALUE reserved word doesn't represent a data type defined by the Access database engine. However, in Access or SQL queries, the VALUE reserved word can be considered a valid synonym for the Visual Basic **Variant** data type.
+> - If you are setting the data type for a DAO object in Visual Basic code, you must set the object's **Type** property.
diff --git a/access/Concepts/Error-Codes/custom-methods-and-properties.md b/access/Concepts/Error-Codes/custom-methods-and-properties.md
index 18fe7ae494d..b7031a6527a 100644
--- a/access/Concepts/Error-Codes/custom-methods-and-properties.md
+++ b/access/Concepts/Error-Codes/custom-methods-and-properties.md
@@ -1,21 +1,21 @@
---
-title: Custom Methods and Properties
+title: Custom methods and properties
keywords: vbaac10.chm5187125
f1_keywords:
- vbaac10.chm5187125
ms.prod: access
ms.assetid: 2915eacb-240f-6876-0afb-1db038c4ecba
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Custom Methods and Properties
+# Custom methods and properties
You can use a class module to create a definition for a new custom object. When you create a new instance of a class, you create a new object and return a reference to it.
-Any public procedures defined within the class module become methods of the new object. The **Sub** statement defines a method that doesn't return a value; the **Function** statement defines a method that may return a value of a specified type.
+Any public procedures defined within the class module become methods of the new object. The **Sub** statement defines a method that doesn't return a value; the **Function** statement defines a method that may return a value of a specified type.
-Any **Property Let**, **Property Get** or **Property Set** procedures you define become properties of the new object. **Property Get** procedures retrieve the value of a property. **Property Let** procedures set the value of a nonobject property. **Property Set** procedures set the value of an object property.
+Any **Property Let**, **Property Get** or **Property Set** procedures you define become properties of the new object. **Property Get** procedures retrieve the value of a property. **Property Let** procedures set the value of a nonobject property. **Property Set** procedures set the value of an object property.
For example, you can use a class module to create an interface layer between your application and a set of Windows application programming interface (API) functions that it calls. To do this, you create a set of simple procedures that call more complicated procedures in a DLL. When you create an instance of this class, the procedures you've created become methods of the new object. You can apply these methods as you would the methods of any object, and in doing so you also call the API functions.
diff --git a/access/Concepts/Error-Codes/elements-of-run-time-error-handling.md b/access/Concepts/Error-Codes/elements-of-run-time-error-handling.md
index 00af136cb6e..4c730f4fbfc 100644
--- a/access/Concepts/Error-Codes/elements-of-run-time-error-handling.md
+++ b/access/Concepts/Error-Codes/elements-of-run-time-error-handling.md
@@ -1,40 +1,38 @@
---
-title: Elements of Run-Time Error Handling
+title: Elements of run-time error handling
keywords: vbaac10.chm5186924
f1_keywords:
- vbaac10.chm5186924
ms.prod: access
ms.assetid: a0e06a1e-2709-aa51-92d0-340788a31a8a
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Elements of Run-Time Error Handling
+# Elements of run-time error handling
-## Errors and Error Handling
+## Errors and error handling
When you're programming an application, you need to consider what happens when an error occurs. An error can occur in your application for one of two of reasons. First, some condition at the time the application is running makes otherwise valid code fail. For example, if your code attempts to open a table that the user has deleted, an error occurs. Second, your code may contain improper logic that prevents it from doing what you intended. For example, an error occurs if your code attempts to divide a value by zero.
If you've implemented no error handling, then Visual Basic halts execution and displays an error message when an error occurs in your code. The user of your application is likely to be confused and frustrated when this happens. You can forestall many problems by including thorough error-handling routines in your code to handle any error that may occur.
-When adding error handling to a procedure, you should consider how the procedure will route execution when an error occurs. The first step in routing execution to an error handler is to enable an error handler by including some form of the **On Error** statement within the procedure. The **On Error** statement directs execution in event of an error. If there's no **On Error** statement, Visual Basic simply halts execution and displays an error message when an error occurs.
+When adding error handling to a procedure, you should consider how the procedure will route execution when an error occurs. The first step in routing execution to an error handler is to enable an error handler by including some form of the **On Error** statement within the procedure. The **On Error** statement directs execution in event of an error. If there's no **On Error** statement, Visual Basic simply halts execution and displays an error message when an error occurs.
-When an error occurs in a procedure with an enabled error handler, Visual Basic doesn't display the normal error message. Instead it routes execution to an error handler, if one exists. When execution passes to an enabled error handler, that error handler becomes active. Within the active error handler, you can determine the type of error that occurred and address it in the manner that you choose. Access provides three objects that contain information about errors that have occurred, the ADO **Error** object, the Visual Basic[Err Object](../../../language/reference/User-Interface-Help/err-object.md) **Err** object, and the DAO **Error** object.
+When an error occurs in a procedure with an enabled error handler, Visual Basic doesn't display the normal error message. Instead it routes execution to an error handler, if one exists. When execution passes to an enabled error handler, that error handler becomes active. Within the active error handler, you can determine the type of error that occurred and address it in the manner that you choose. Access provides three objects that contain information about errors that have occurred, the ADO **Error** object, the Visual Basic **[Err](../../../language/reference/User-Interface-Help/err-object.md)** object, and the DAO **Error** object.
-## Routing Execution When an Error Occurs
+## Routing execution when an error occurs
-An error handler specifies what happens within a procedure when an error occurs. For example, you may want the procedure to end if a certain error occurs, or you may want to correct the condition that caused the error and resume execution. The **On Error** and **Resume** statements determine how execution proceeds in the event of an error.
+An error handler specifies what happens within a procedure when an error occurs. For example, you may want the procedure to end if a certain error occurs, or you may want to correct the condition that caused the error and resume execution. The **On Error** and **Resume** statements determine how execution proceeds in the event of an error.
- _The On Error Statement_
+### On Error statement
-The **On Error** statement enables or disables an error-handling routine. If an error-handling routine is enabled, execution passes to the error-handling routine when an error occurs.
-
-There are three forms of the **On Error** statement: **On Error GoTo** _label_, **On Error GoTo 0**, and **On Error Resume Next**. The **On Error GoTo** _label_ statement enables an error-handling routine, beginning with the line on which the statement is found. You should enable the error-handling routine before the first line at which an error could occur. When the error handler is active and an error occurs, execution passes to the line specified by the _label_ argument.
-
-The line specified by the _label_ argument should be the beginning of the error-handling routine. For example, the following procedure specifies that if an error occurs, execution passes to the line labeled :
+The **On Error** statement enables or disables an error-handling routine. If an error-handling routine is enabled, execution passes to the error-handling routine when an error occurs.
+There are three forms of the **On Error** statement: **On Error GoTo** _label_, **On Error GoTo 0**, and **On Error Resume Next**. The **On Error GoTo** _label_ statement enables an error-handling routine, beginning with the line on which the statement is found. You should enable the error-handling routine before the first line at which an error could occur. When the error handler is active and an error occurs, execution passes to the line specified by the _label_ argument.
+The line specified by the _label_ argument should be the beginning of the error-handling routine. For example, the following procedure specifies that if an error occurs, execution passes to the line labeled:
```vb
@@ -52,28 +50,25 @@ Error_MayCauseAnError:
End Function
```
-The **On Error GoTo 0** statement disables error handling within a procedure. It doesn't specify line 0 as the start of the error-handling code, even if the procedure contains a line numbered 0. If there's no **On Error GoTo 0** statement in your code, the error handler is automatically disabled when the procedure has run completely. The **On Error GoTo 0** statement resets the properties of the **Err** object, having the same effect as the **Clear** method of the **Err** object.
+The **On Error GoTo 0** statement disables error handling within a procedure. It doesn't specify line 0 as the start of the error-handling code, even if the procedure contains a line numbered 0. If there's no **On Error GoTo 0** statement in your code, the error handler is automatically disabled when the procedure has run completely. The **On Error GoTo 0** statement resets the properties of the **Err** object, having the same effect as the **Clear** method of the **Err** object.
-The **On Error Resume Next** statement ignores the line that causes an error and routes execution to the line following the line that caused the error. Execution isn't interrupted. You can use the **On Error Resume Next** statement if you want to check the properties of the **Err** object immediately after a line at which you anticipate an error will occur, and handle the error within the procedure rather than in an error handler.
+The **On Error Resume Next** statement ignores the line that causes an error and routes execution to the line following the line that caused the error. Execution isn't interrupted. You can use the **On Error Resume Next** statement if you want to check the properties of the **Err** object immediately after a line at which you anticipate an error will occur, and handle the error within the procedure rather than in an error handler.
- _The Resume Statement_
+### Resume statement
-The **Resume** statement directs execution back to the body of the procedure from within an error-handling routine. You can include a **Resume** statement within an error-handling routine if you want execution to continue at a particular point in a procedure. However, a **Resume** statement isn't necessary; you can also end the procedure after the error-handling routine.
+The **Resume** statement directs execution back to the body of the procedure from within an error-handling routine. You can include a **Resume** statement within an error-handling routine if you want execution to continue at a particular point in a procedure. However, a **Resume** statement isn't necessary; you can also end the procedure after the error-handling routine.
-There are three forms of the **Resume** statement. The **Resume** or **Resume 0** statement returns execution to the line at which the error occurred. The **Resume Next** statement returns execution to the line immediately following the line at which the error occurred. The **Resume** _label_ statement returns execution to the line specified by the _label_ argument. The _label_ argument must indicate either a line label or a line number.
+There are three forms of the **Resume** statement. The **Resume** or **Resume 0** statement returns execution to the line at which the error occurred. The **Resume Next** statement returns execution to the line immediately following the line at which the error occurred. The **Resume** _label_ statement returns execution to the line specified by the _label_ argument. The _label_ argument must indicate either a line label or a line number.
-You typically use the **Resume** or **Resume 0** statement when the user must make a correction. For example, if you prompt the user for the name of a table to open, and the user enters the name of a table that doesn't exist, you can prompt the user again and resume execution with the statement that caused the error.
+You typically use the **Resume** or **Resume 0** statement when the user must make a correction. For example, if you prompt the user for the name of a table to open, and the user enters the name of a table that doesn't exist, you can prompt the user again and resume execution with the statement that caused the error.
-You use the **Resume Next** statement when your code corrects for the error within an error handler, and you want to continue execution without rerunning the line that caused the error. You use the **Resume** _label_ statement when you want to continue execution at another point in the procedure, specified by the _label_ argument. For example, you might want to resume execution at an exit routine, as described in the following section.
+You use the **Resume Next** statement when your code corrects for the error within an error handler, and you want to continue execution without rerunning the line that caused the error. You use the **Resume** _label_ statement when you want to continue execution at another point in the procedure, specified by the _label_ argument. For example, you might want to resume execution at an exit routine, as described in the following section.
- _Exiting a Procedure_
+### Exiting a procedure
When you include an error-handling routine in a procedure, you should also include an exit routine, so that the error-handling routine will run only if an error occurs. You can specify an exit routine with a line label in the same way that you specify an error-handling routine.
-For example, you can add an exit routine to the example in the previous section. If an error doesn't occur, the exit routine runs after the body of the procedure. If an error occurs, then execution passes to the exit routine after the code in the error-handling routine has run. The exit routine contains an **Exit** statement.
-
-
-
+For example, you can add an exit routine to the example in the previous section. If an error doesn't occur, the exit routine runs after the body of the procedure. If an error occurs, then execution passes to the exit routine after the code in the error-handling routine has run. The exit routine contains an **Exit** statement.
```vb
Function MayCauseAnError()
@@ -95,11 +90,11 @@ Error_MayCauseAnError:
End Function
```
- _Handling Errors in Nested Procedures_
+### Handling errors in nested procedures
When an error occurs in a nested procedure that doesn't have an enabled error handler, Visual Basic searches backward through the calls list for an enabled error handler in another procedure, rather than simply halting execution. This provides your code with an opportunity to correct the error within another procedure. For example, suppose Procedure A calls Procedure B, and Procedure B calls Procedure C. If an error occurs in Procedure C and there's no enabled error handler, Visual Basic checks Procedure B, then Procedure A, for an enabled error handler. If one exists, execution passes to that error handler. If not, execution halts and an error message is displayed.
-Visual Basic also searches backward through the calls list for an enabled error handler when an error occurs within an active error handler. You can force Visual Basic to search backward through the calls list by raising an error within an active error handler with the **Raise** method of the **Err** object. This is useful for handling errors that you don't anticipate within an error handler. If an unanticipated error occurs, and you regenerate that error within the error handler, then execution passes back up the calls list to find another error handler, which may be set up to handle the error.
+Visual Basic also searches backward through the calls list for an enabled error handler when an error occurs within an active error handler. You can force Visual Basic to search backward through the calls list by raising an error within an active error handler with the **Raise** method of the **Err** object. This is useful for handling errors that you don't anticipate within an error handler. If an unanticipated error occurs, and you regenerate that error within the error handler, then execution passes back up the calls list to find another error handler, which may be set up to handle the error.
For example, suppose Procedure C has an enabled error handler, but the error handler doesn't correct for the error that has occurred. Once the error handler has checked for all the errors that you've anticipated, it can regenerate the original error. Execution then passes back up the calls list to the error handler in Procedure B, if one exists, providing an opportunity for this error handler to correct the error. If no error handler exists in Procedure B, or if it fails to correct for the error and regenerates it again, then execution passes to the error handler in Procedure A, assuming one exists.
@@ -107,39 +102,34 @@ To illustrate this concept in another way, suppose that you have a nested proced
In summary, Visual Basic searches back up the calls list for an enabled error handler if:
-
- An error occurs in a procedure that doesn't include an enabled error handler.
-- An error occurs within an active error handler. If you use the **Raise** method of the **Err** object to raise an error, you can force Visual Basic to search backward through the calls list for an enabled error handler.
+- An error occurs within an active error handler. If you use the **Raise** method of the **Err** object to raise an error, you can force Visual Basic to search backward through the calls list for an enabled error handler.
-## Getting Information About an Error
+## Getting information about an error
-Once execution has passed to the error-handling routine, your code must determine which error has occurred and address it. Visual Basic and Access provide several language elements that you can use to get information about a specific error. Each is suited to different types of errors. Since errors can occur in different parts of your application, you need to determine which to use in your code based on what errors you expect.
+After execution has passed to the error-handling routine, your code must determine which error has occurred and address it. Visual Basic and Access provide several language elements that you can use to get information about a specific error. Each is suited to different types of errors. Since errors can occur in different parts of your application, you need to determine which to use in your code based on what errors you expect.
The language elements available for error handling include:
-
-- The **Err** object.
+- **Err** object
-- The ADO **Error** object and **Errors** collection
+- ADO **Error** object and **Errors** collection
-- The DAO **Error** object and **Errors** collection.
+- DAO **Error** object and **Errors** collection
-- The **AccessError** method.
+- **AccessError** method
-- The **Error** event.
+- **Error** event
- _The Err Object_
-
-The **Err** object is provided by Visual Basic. When a Visual Basic error occurs, information about that error is stored in the **Err** object. The **Err** object maintains information about only one error at a time. When a new error occurs, the **Err** object is updated to include information about that error instead.
-
-To get information about a particular error, you can use the properties and methods of the **Err** object. The **Number** property is the default property of the **Err** object; it returns the identifying number of the error that occurred. The **Err** object's **Description** property returns the descriptive string associated with a Visual Basic error. The **Clear** method clears the current error information from the **Err** object. The **Raise** method generates a specific error and populates the properties of the **Err** object with information about that error.
-
-The following example shows how to use the **Err** object in a procedure that may cause a type mismatch error:
+### Err object
+The **Err** object is provided by Visual Basic. When a Visual Basic error occurs, information about that error is stored in the **Err** object. The **Err** object maintains information about only one error at a time. When a new error occurs, the **Err** object is updated to include information about that error instead.
+To get information about a particular error, you can use the properties and methods of the **Err** object. The **Number** property is the default property of the **Err** object; it returns the identifying number of the error that occurred. The **Err** object's **Description** property returns the descriptive string associated with a Visual Basic error. The **Clear** method clears the current error information from the **Err** object. The **Raise** method generates a specific error and populates the properties of the **Err** object with information about that error.
+The following example shows how to use the **Err** object in a procedure that may cause a type mismatch error:
```vb
Function MayCauseAnError()
@@ -172,38 +162,41 @@ Error_MayCauseAnError:
End Function
```
-Note that in the preceding example, the **Raise** method is used to regenerate the original error. If an error other than a type mismatch error occurs, execution will be passed back up the calls list to another enabled error handler, if one exists.
+Note that in the preceding example, the **Raise** method is used to regenerate the original error. If an error other than a type mismatch error occurs, execution will be passed back up the calls list to another enabled error handler, if one exists.
-The **Err** object provides you with all the information you need about Visual Basic errors. However, it doesn't give you complete information about Access errors or Access database engine errors. Access and Data Access Objects (DAO)) provide additional language elements to assist you with those errors.
+The **Err** object provides you with all the information you need about Visual Basic errors. However, it doesn't give you complete information about Access errors or Access database engine errors. Access and Data Access Objects (DAO)) provide additional language elements to assist you with those errors.
- _The Error Object and Errors Collection_
+### Error object and Errors collection
-The **Error** object and **Errors** collection are provided by ADO and DAO. The **Error** object represents an ADO or DAO error. A single ADO or DAO operation may cause several errors, especially if you are performing DAO ODBC operations. Each error that occurs during a particular data access operation has an associated **Error** object. All the **Error** objects associated with a particular ADO or DAO operation are stored in the **Errors** collection, the lowest-level error being the first object in the collection and the highest-level error being the last object in the collection.
+The **Error** object and **Errors** collection are provided by ADO and DAO. The **Error** object represents an ADO or DAO error. A single ADO or DAO operation may cause several errors, especially if you are performing DAO ODBC operations. Each error that occurs during a particular data access operation has an associated **Error** object. All the **Error** objects associated with a particular ADO or DAO operation are stored in the **Errors** collection, the lowest-level error being the first object in the collection and the highest-level error being the last object in the collection.
-When a ADO or DAO error occurs, the Visual Basic **Err** object contains the error number for the first object in the **Errors** collection. To determine whether additional ADO or DAO errors have occurred, check the **Errors** collection. The values of the ADO **Number** or DAO **Number** properties and the ADO **Description** or DAO **Description** properties of the first **Error** object in the **Errors** collection should match the values of the **Number** and **Description** properties of the Visual Basic **Err** object.
+When a ADO or DAO error occurs, the Visual Basic **Err** object contains the error number for the first object in the **Errors** collection. To determine whether additional ADO or DAO errors have occurred, check the **Errors** collection. The values of the ADO **Number** or DAO **Number** properties and the ADO **Description** or DAO **Description** properties of the first **Error** object in the **Errors** collection should match the values of the **Number** and **Description** properties of the Visual Basic **Err** object.
- _The AccessError Method_
+### AccessError method
-You can use the **Raise** method of the **Err** object to generate a Visual Basic error that hasn't actually occurred and determine the descriptive string associated with that error. However, you can't use the **Raise** method to generate a Access error, an ADO error, or a DAO error. To determine the descriptive string associated with an Access error, an ADO error, or a DAO error that hasn't actually occurred, use the **AccessError** method.
+You can use the **Raise** method of the **Err** object to generate a Visual Basic error that hasn't actually occurred and determine the descriptive string associated with that error. However, you can't use the **Raise** method to generate a Access error, an ADO error, or a DAO error. To determine the descriptive string associated with an Access error, an ADO error, or a DAO error that hasn't actually occurred, use the **AccessError** method.
- _The Error Event_
+### Error event
You can use the Error event to trap errors that occur on an Access form or report. For example, if a user tries to enter text in a field whose data type is Date/Time, the Error event occurs. If you add an Error event procedure to an Employees form, then try to enter a text value in the HireDate field, the Error event procedure runs.
-The Error event procedure takes an integer argument, DataErr. When an Error event procedure runs, the DataErr argument contains the number of the Access error that occurred. Checking the value of the DataErr argument within the event procedure is the only way to determine the number of the error that occurred. The **Err** object isn't populated with error information after the Error event occurs. You can use the value of the DataErr argument together with the **AccessError** method to determine the number of the error and its descriptive string.
+The Error event procedure takes an integer argument, DataErr. When an Error event procedure runs, the DataErr argument contains the number of the Access error that occurred. Checking the value of the DataErr argument within the event procedure is the only way to determine the number of the error that occurred. The **Err** object isn't populated with error information after the Error event occurs. You can use the value of the DataErr argument together with the **AccessError** method to determine the number of the error and its descriptive string.
+> [!NOTE]
+> The **Error** statement and **Error** function are provided for backward compatibility only. When writing new code, use the **Err** and **Error** objects, the **AccessError** function, and the Error event for getting information about an error.
- **Note** The **Error** statement and **Error** function are provided for backward compatibility only. When writing new code, use the **Err** and **Error** objects, the **AccessError** function, and the Error event for getting information about an error.
-
- **Link provided by:** The[UtterAccess](https://www.utteraccess.com) community
+### About the contributors
+**Link provided by**  the [UtterAccess](https://www.utteraccess.com) community.
- [Handling Access Errors with VBA](https://www.utteraccess.com/wiki/index.php/Error_Handling)
-
-
-## About the Contributors
-
-UtterAccess is the premier Microsoft Access wiki and help forum. Click here to join.
+UtterAccess is the premier Microsoft Access wiki and help forum.
+## See also
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
+- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
+- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
+- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Error-Codes/error-trapping.md b/access/Concepts/Error-Codes/error-trapping.md
index eb9a3914e38..25d6b17b7d6 100644
--- a/access/Concepts/Error-Codes/error-trapping.md
+++ b/access/Concepts/Error-Codes/error-trapping.md
@@ -1,28 +1,23 @@
---
-title: Error Trapping
+title: Error trapping
keywords: vbaac10.chm5186626
f1_keywords:
- vbaac10.chm5186626
ms.prod: access
ms.assetid: 41d8de92-55ed-8537-eb31-6d72ba69c165
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Error Trapping
-
-You can use the **On Error GoTo** statement to trap errors and direct procedure flow to the location of error-handling statements within a procedure. For example, the following statement directs the flow to the label line:
+# Error trapping
+You can use the **On Error GoTo** statement to trap errors and direct procedure flow to the location of error-handling statements within a procedure. For example, the following statement directs the flow to the label line:
```vb
On Error GoTo ErrorHandler
```
-
-Be sure to give each error handler label in a procedure a unique name that will not conflict with any other element in the procedure, and make sure you append a colon to the name. Within the procedure, place the **Exit Sub** or **Exit Function** statement in front of the error handler label so that the procedure doesn't run the error-checking code if no error occurs.
-
-
-
+Be sure to give each error handler label in a procedure a unique name that will not conflict with any other element in the procedure, and make sure you append a colon to the name. Within the procedure, place the **Exit Sub** or **Exit Function** statement in front of the error handler label so that the procedure doesn't run the error-checking code if no error occurs.
```vb
Sub CausesAnError()
@@ -40,13 +35,12 @@ ErrorHandler:
End Sub
```
-The **Raise** method of the **Err** object generates the specified error. The **Number** property of the **Err** object returns the number corresponding to the most recent run-time error; the **Description** property returns the corresponding message text for a given error.
-
- **Note**
-
-* In versions 1.x and 2.0 of Access, you might have used the Error statement to generate the error, the Err function to return the error number, and the Error function to return a description of the error. Existing error-handling code that relies on the Error statement and the Error function will continue to work. However, it's better to use the Err object and its properties and methods when writing new code.
-
-* Versions 1.x and 2.0 of Access returned only one error for all Automation, (formerly called OLE Automation) errors. The COM component application that generated the error now returns the same error information that you would receive if you were working in that application. You may need to rewrite existing error-handling code to handle new Automation errors properly.
+The **Raise** method of the **Err** object generates the specified error. The **Number** property of the **Err** object returns the number corresponding to the most recent run-time error; the **Description** property returns the corresponding message text for a given error.
-* If you wish to return the descriptive string associated with a Access error or a Data Access Objects (DAO) error, but the error has not actually occurred in your code, you can use the AccessError method to return the string.
+> [!NOTE]
+> - In versions 1.x and 2.0 of Access, you might have used the Error statement to generate the error, the Err function to return the error number, and the Error function to return a description of the error. Existing error-handling code that relies on the Error statement and the Error function will continue to work. However, it's better to use the Err object and its properties and methods when writing new code.
+>
+> - Versions 1.x and 2.0 of Access returned only one error for all Automation, (formerly called OLE Automation) errors. The COM component application that generated the error now returns the same error information that you would receive if you were working in that application. You may need to rewrite existing error-handling code to handle new Automation errors properly.
+>
+> - If you wish to return the descriptive string associated with a Access error or a Data Access Objects (DAO) error, but the error has not actually occurred in your code, you can use the AccessError method to return the string.
diff --git a/access/Concepts/Error-Codes/improvements-in-compilation-performance.md b/access/Concepts/Error-Codes/improvements-in-compilation-performance.md
index d6f1459ee24..813e87506f3 100644
--- a/access/Concepts/Error-Codes/improvements-in-compilation-performance.md
+++ b/access/Concepts/Error-Codes/improvements-in-compilation-performance.md
@@ -1,29 +1,29 @@
---
-title: Improvements in Compilation Performance
+title: Improvements in compilation performance
keywords: vbaac10.chm5187335
f1_keywords:
- vbaac10.chm5187335
ms.prod: access
ms.assetid: 122a8429-ad31-4e4b-2f68-d9d07c1deeeb
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Improvements in Compilation Performance
+# Improvements in compilation performance
Access includes improvements to module loading and compilation performance to make your code compile and run faster.
-## Form and Report Modules Created on Demand
+## Form and report modules created on demand
-When you create a form or report in Access 2002 or later, the form or report doesn't automatically have an associated module. When you click **Code** on the toolbar to view the form's or report's module, the module is created. You can also create the module from Visual Basic by referring to the form's **[Module](../../../api/Access.Form.Module.md)** property while the form or report is in Design view, or by setting the **[HasModule](../../../api/Access.Form.HasModule.md)** property to **True**.
+When you create a form or report in Access 2002 or later, the form or report doesn't automatically have an associated module. When you click **Code** on the toolbar to view the form's or report's module, the module is created. You can also create the module from Visual Basic by referring to the form's **[Module](../../../api/Access.Form.Module.md)** property while the form or report is in Design view, or by setting the **[HasModule](../../../api/Access.Form.HasModule.md)** property to **True**.
-The setting of the **HasModule** property indicates whether a form or report currently has an associated module.
+The setting of the **HasModule** property indicates whether a form or report currently has an associated module.
Since a form or report module isn't created until you need to add code to it, your project may have fewer modules to compile, resulting in improved compilation performance. Also, forms and reports without modules load more quickly than those with modules.
-## Compiling on Demand
+## Compiling on demand
It's a good idea to explicitly compile the modules in your project by using the commands described above, but it's not necessary. Access compiles a module before running a procedure in it if the module hasn't already been compiled.
diff --git a/access/Concepts/Error-Codes/macro-actions-and-methods-of-the-docmd-object.md b/access/Concepts/Error-Codes/macro-actions-and-methods-of-the-docmd-object.md
index 75cfeee43ea..232806a1cf2 100644
--- a/access/Concepts/Error-Codes/macro-actions-and-methods-of-the-docmd-object.md
+++ b/access/Concepts/Error-Codes/macro-actions-and-methods-of-the-docmd-object.md
@@ -1,26 +1,26 @@
---
-title: Macro Actions and Methods of the DoCmd Object
+title: Macro actions and methods of the DoCmd object
keywords: vbaac10.chm5187441
f1_keywords:
- vbaac10.chm5187441
ms.prod: access
ms.assetid: aab25fbe-8ec3-5c45-dd70-a0e8c885406a
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Macro Actions and Methods of the DoCmd Object
+# Macro actions and methods of the DoCmd object
-To carry out macro actions from code in Access, use the [DoCmd](../../../api/Access.DoCmd.md)object and its methods. This object replaces the **DoCmd** statement that you used in versions 1. _x_ and 2.0 of Access to carry out a macro action.
+To carry out macro actions from code in Access, use the [DoCmd](../../../api/Access.DoCmd.md)object and its methods. This object replaces the **DoCmd** statement that you used in versions 1. _x_ and 2.0 of Access to carry out a macro action.
-When you convert a database, Access automatically converts any **DoCmd** statements and the actions that they carried out in your Access Basic code to methods of the **DoCmd** object by replacing the space with the . (dot) operator.
+When you convert a database, Access automatically converts any **DoCmd** statements and the actions that they carried out in your Access Basic code to methods of the **DoCmd** object by replacing the space with the . (dot) operator.
Some macro actions work differently in Access 9.0 and later than in version 1. _x_, 2.0, or 7.0; these differences are detailed below.
-## Databases Created with Access 95
+## Databases created with Access 95
- _The DoMenuItem Action_
+### DoMenuItem action
The DoMenuItem action is no longer used in Access. The RunCommand action can be used to accomplish the tasks for which you used to use the DoMenuItem action.
@@ -29,20 +29,20 @@ When you enable a database created with a prior version of Access, the DoMenuIte
When you convert a database created with a prior version of Access, all DoMenuItem actions in macros are replaced with RunCommand actions the first time that the macros are saved after conversion. DoMenuItem methods used in Visual Basic procedures aren't changed.
-## Databases Created with Access Version 1.
+## Databases created with Access version 1
- _The TransferSpreadsheet Action_
+### TransferSpreadsheet action
Access can't import Excel version 2.0 spreadsheets or Lotus 1-2-3 version 1.0 spreadsheets. If your converted database contains a macro that provided this functionality by using the TransferSpreadsheet action in Access version 1. _x_ or 2.0, converting the database will change the Spreadsheet Type argument to Excel version 3.0 (if you originally specified Excel version 2.0), or causes an error if you originally specified Lotus 1-2-3 version 1.0 format.
To work around this problem, convert the spreadsheets to a later version of Excel or Lotus 1-2-3 before importing them into Access.
- _The TransferText and TransferSpreadsheet Actions_
+### TransferText and TransferSpreadsheet actions
In Access, you can't use a SQL statement to specify data to export when you're using the TransferText action or the TransferSpreadsheet action. Instead of using a SQL statement, you must first create a query and then specify the name of the query in the Table Name argument.
- _Comparisons Involving Null Values_
+### Comparisons involving Null values
-In Access versions 1.x and 2.0, if you compare two expressions within a macro condition by using a comparison operator and one of the expressions is **Null**, Access Basic will return **True** or **False** for the comparison, depending on which comparison operator you use. In Access 2000 and later, Visual Basic returns **Null** for a comparison in which one expression is **Null**. To determine whether the comparison evaluates to **Null**, use the **IsNull** function to check the result of the comparison.
+In Access versions 1.x and 2.0, if you compare two expressions within a macro condition by using a comparison operator and one of the expressions is **Null**, Access Basic will return **True** or **False** for the comparison, depending on which comparison operator you use. In Access 2000 and later, Visual Basic returns **Null** for a comparison in which one expression is **Null**. To determine whether the comparison evaluates to **Null**, use the **IsNull** function to check the result of the comparison.
diff --git a/access/Concepts/Error-Codes/program-with-class-modules.md b/access/Concepts/Error-Codes/program-with-class-modules.md
index 18cd34fa32e..491426d5376 100644
--- a/access/Concepts/Error-Codes/program-with-class-modules.md
+++ b/access/Concepts/Error-Codes/program-with-class-modules.md
@@ -1,27 +1,23 @@
---
-title: Program with Class Modules
+title: Program with class modules
keywords: vbaac10.chm5187902
f1_keywords:
- vbaac10.chm5187902
ms.prod: access
ms.assetid: 6b10be38-bfe6-dea2-4aa5-4859722c1869
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Program with Class Modules
+# Program with class modules
-In Access, there were two types of modules: standard modules and class modules. In Access 95, class modules existed only in association with a form or report. In Access 97, they also existed on the **Modules** tab of the Database window.
-
-
-## Creating Custom Objects with Class Modules
-
-You can use a class module to create a definition for a custom object. The name with which you save the class module becomes the name of your custom object. Public **Sub** and **Function** procedures that you define within a class module become custom methods of the object. Public **Property Let**, **Property Get**, and **Property Set** procedures become properties of the object.
-
-Once you've defined procedures within the class module, you can create the new object by creating a new instance of the class. To create a new instance of a class, you declare a variable of the type defined by that class. For example, if the name of your class is ABasicClass, you would create a new instance of it in the following manner:
+In Access, there were two types of modules: standard modules and class modules. In Access 95, class modules existed only in association with a form or report. In Access 97, they also existed on the **Modules** tab of the Database window.
+## Create custom objects with class modules
+You can use a class module to create a definition for a custom object. The name with which you save the class module becomes the name of your custom object. Public **Sub** and **Function** procedures that you define within a class module become custom methods of the object. Public **Property Let**, **Property Get**, and **Property Set** procedures become properties of the object.
+After you've defined procedures within the class module, you can create the new object by creating a new instance of the class. To create a new instance of a class, you declare a variable of the type defined by that class. For example, if the name of your class is ABasicClass, you would create a new instance of it in the following manner:
```vb
Dim abc As New ABasicClass
@@ -29,24 +25,18 @@ Dim abc As New ABasicClass
When you run the code containing this declaration, Visual Basic creates the new instance. You can then apply its methods and properties by using the variable . For example, if you've defined a custom method called ListNames, you could apply it as follows:
-
-
-
```vb
abc.ListNames
```
-## New in Access 95: Creating the Default Instance of a Form Class
+## Create the default instance of a form class (Access 95)
When you open a form in Form view, whether from the user interface or from Visual Basic, you create an instance of that form's class module. In other words, you designate space in memory where the object now exists, and you can then call its methods and set or return its properties from code, as you would for any built-in object. The same is true when you open a report in Print Preview.
When you refer to a form in Visual Basic code, you're usually working with the default instance of the form's class. A form's class has only one default instance. You can also create multiple instances of the same form's class from Visual Basic. When you create multiple instances of a form's class, you create nondefault instances.
-There are four ways to create the default instance of a form. You can open an existing form by using the user interface, by executing the **[OpenForm](../../../api/Access.DoCmd.OpenForm.md)** method of the **[DoCmd](../../../api/Access.DoCmd.md)** object, by calling the **[CreateForm](../../../api/Access.Application.CreateForm.md)** method and switching the new form into Form view, or by using Visual Basic to create a variable of type **Form** to refer to the default instance. The following example opens an Employees form and points a **Form** object variable to it:
-
-
-
+There are four ways to create the default instance of a form. You can open an existing form by using the user interface, by executing the **[OpenForm](../../../api/Access.DoCmd.OpenForm.md)** method of the **[DoCmd](../../../api/Access.DoCmd.md)** object, by calling the **[CreateForm](../../../api/Access.Application.CreateForm.md)** method and switching the new form into Form view, or by using Visual Basic to create a variable of type **Form** to refer to the default instance. The following example opens an Employees form and points a **Form** object variable to it:
```vb
Dim frm As Form
@@ -56,40 +46,34 @@ Set frm = Forms!Employees
Access also provides a shortcut that enables you to open a form and refer to a method or property of that form or one of its controls in one step. You refer to the form's class module as shown in the following example:
-
-
-
```vb
Form_Employees.Visible = True
Form_Employees.Caption = "New Employees"
```
-When you run this code, Access opens the Employees form in Form view if it's not already open and sets the form's caption to "New Employees." The form isn't visible until you explicitly set its **[Visible](../../../api/Access.Form.Visible.md)** property to **True**. When the procedure that calls this code has finished executing, this instance of the form is destroyed; that is, the form is closed.
+When you run this code, Access opens the Employees form in Form view if it's not already open and sets the form's caption to "New Employees." The form isn't visible until you explicitly set its **[Visible](../../../api/Access.Form.Visible.md)** property to **True**. When the procedure that calls this code has finished executing, this instance of the form is destroyed; that is, the form is closed.
If you try to run this code when the Employees form is open in Design view, Access generates a run-time error. The form must either be open in Form view or not open at all.
If you use this syntax to change a property of the form or one of its controls, that change is lost when the instance of the form is destroyed. This holds true any time you change a property setting for a form in Form view. You must change the property in Design view and save the change with the form.
-## Creating Multiple Nondefault Instances of Forms
+## Create multiple nondefault instances of forms
You can create multiple nondefault instances of a form's class if you want to display more than one instance of a form at a time. For example, you might want to display the records for an employee and the employee's manager at the same time. You can create one instance of the Employees form's class to display the employee's record, and one to display the manager's record.
-To create new, nondefault instances of a form's class from Visual Basic, declare a variable for which the type is the name of the form class module. You must include the **New** keyword in the variable declaration. For example, the following code creates a new instance of the Employees form and assigns it to a variable of type **Form**:
-
-
-
+To create new, nondefault instances of a form's class from Visual Basic, declare a variable for which the type is the name of the form class module. You must include the **New** keyword in the variable declaration. For example, the following code creates a new instance of the Employees form and assigns it to a variable of type **Form**:
```vb
Dim frm As New Form_Employees
```
-This nondefault instance of the form isn't visible until you explicitly set its **Visible** property.
+This nondefault instance of the form isn't visible until you explicitly set its **Visible** property.
-When the procedure that creates this instance has finished executing, the instance is removed from memory unless you've declared the variable representing it as a module-level variable. Since module-level variables retain their values until they are reset with the **Reset** command on the **Run** menu or the **Reset** button on the toolbar, the form will stay open if the variable has been declared as a module-level variable.
+When the procedure that creates this instance has finished executing, the instance is removed from memory unless you've declared the variable representing it as a module-level variable. Since module-level variables retain their values until they are reset with the **Reset** command on the **Run** menu or the **Reset** button on the toolbar, the form will stay open if the variable has been declared as a module-level variable.
Any properties that you set will affect this instance of the form's class, but won't be saved with the form. Also, a new instance of the form's class can't be created if the form is open in Design view.
-A nondefault instance of a form's class can't be referred to by name in the **[Forms](../../../api/Access.Forms.md)** collection. You can refer to it by index number only. Since you can create multiple nondefault instances of a form, and each instance has the same name, you can have more than one form with the same name in the **Forms** collection, without any means of distinguishing them other than by index number.
+A nondefault instance of a form's class can't be referred to by name in the **[Forms](../../../api/Access.Forms.md)** collection. You can refer to it by index number only. Since you can create multiple nondefault instances of a form, and each instance has the same name, you can have more than one form with the same name in the **Forms** collection, without any means of distinguishing them other than by index number.
diff --git a/access/Concepts/Error-Codes/scoping-and-object-naming-compatibility.md b/access/Concepts/Error-Codes/scoping-and-object-naming-compatibility.md
index 5b6b1a684a5..244c463e59f 100644
--- a/access/Concepts/Error-Codes/scoping-and-object-naming-compatibility.md
+++ b/access/Concepts/Error-Codes/scoping-and-object-naming-compatibility.md
@@ -1,27 +1,27 @@
---
-title: Scoping and Object-Naming Compatibility
+title: Scoping and object-naming compatibility
keywords: vbaac10.chm5188026
f1_keywords:
- vbaac10.chm5188026
ms.prod: access
ms.assetid: 50e86279-78d0-c509-1598-250517153fe7
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Scoping and Object-Naming Compatibility
+# Scoping and object-naming compatibility
-Visual Basic scoping rules affect the names you choose for your objects, modules, and procedures.
+Visual Basic scoping rules affect the names that you choose for your objects, modules, and procedures.
-## Modules and Other Objects with the Same Name
+## Modules and other objects with the same name
When you name a module, avoid prefacing module names with "Form_" or "Report_". Naming a module in this way could conflict with existing code you've written behind forms and reports.
If you have a module in an application created with version 1. _x_ or 2.0 of Access that doesn't follow these naming rules, Access generates an error when you try to convert your application. For example, a module named Form_Orders in an Access version 1. _x_ or 2.0 database would generate an error and you would be asked to rename the module before attempting to convert it.
-## Modules and Procedures with the Same Name
+## Modules and procedures with the same name
Although it is not suggested, you can have a procedure with the same name as a module. To call that procedure from an expression anywhere in your application, you must use a fully qualified name for the procedure, including both the module name and the procedure name, as in the following example:
@@ -31,31 +31,28 @@ IsLoaded.IsLoaded("Orders")
```
- **Note** This will not work with the **Runcode** action in macros. Accessing procedures with the same name as a module is not possible with macros.
+> [!NOTE]
+> This will not work with the **Runcode** action in macros. Accessing procedures with the same name as a module is not possible with macros.
-## Procedures and Controls with the Same Name
+## Procedures and controls with the same name
If you call a procedure from a form, and that procedure has the same name as a control on the form, you must fully qualify the procedure call with the name of the module in which it resides. For example, if you want to call a procedure named PrintInvoice that resides in a standard module named Utilities, and there's also a button on the same form named PrintInvoice, use the fully qualified name when you call the procedure from your form or form module.
-## Controls with Similar Names
+## Controls with similar names
You can't have a control with a name that differs from an existing control's name by only a space or a symbol. For example, if you have a control named [Last_Name], you can't have a control named [Last Name] or [Last+Name].
-## Modules with the Same Names as Type Libraries
+## Modules with the same names as type libraries
You can't save a module with the same name as a type library. If you try to save a module with the name "ADO", "Access", "DAO" or "VBA", you'll get an error stating that the name conflicts with an existing module, project, or object library. Similarly, if you've set a reference to another type library, such as the Excel type library, you can't save a module with the name "Excel".
-## Fields with the Same Names as Methods
-
-If a field in the table has the same name as an ActiveX Data Objects (ADO) method on an ADO **Recordset** object, or a Data Access Object (DAO) method on a DAO **Recordset** object, you can't refer to the corresponding field in the recordset with the . (dot) syntax. You must use the ! (exclamation point) syntax, or Access will generate an error. The following example shows how to refer to a field called AddNew in a recordset opened on a table called Contacts:
-
-
-
+## Fields with the same names as methods
+If a field in the table has the same name as an ActiveX Data Objects (ADO) method on an ADO **Recordset** object, or a Data Access Object (DAO) method on a DAO **Recordset** object, you can't refer to the corresponding field in the recordset with the . (dot) syntax. You must use the ! (exclamation point) syntax, or Access will generate an error. The following example shows how to refer to a field called AddNew in a recordset opened on a table called Contacts:
```vb
Dim rst As New ADODB.Recordset
@@ -66,9 +63,6 @@ Debug.Print rst!AddNew
```
-
-
-
```vb
Dim dbs As Database, rst As DAO.Recordset
Set dbs = CurrentDb
@@ -77,30 +71,30 @@ Debug.Print rst!AddNew
```
-## Modules with the Same Names as Visual Basic Functions
+## Modules with the same names as Visual Basic functions
-If you save a module with the same name as an intrinsic Visual Basic function, Access will generate an error when you try to run that function. For example, if you save a module named MsgBox, and then try to run a procedure that calls the **MsgBox** function, Access generates the error "Expected variable or procedure, not module."
+If you save a module with the same name as an intrinsic Visual Basic function, Access will generate an error when you try to run that function. For example, if you save a module named MsgBox, and then try to run a procedure that calls the **MsgBox** function, Access generates the error "Expected variable or procedure, not module."
-## Modules with the Same Names as Objects
+## Modules with the same names as objects
If a database created with a previous version of Access includes a module that has the same name as an Access object, an ADO object, or a DAO object, you may encounter compilation errors when you convert your database. For example, a module named "Form" or "Database" may generate a compilation error. To avoid these errors, rename the module.
-## Naming Fields Used in Expressions or Bound to Controls on Forms and Reports
+## Naming fields used in expressions or bound to controls on forms and reports
-When you create a field in a table that will be bound to a control on a report or used in an expression in the **ControlSource** property of a control or a report, avoid assigning the field a name that's the same name as a method of the **[Application](../../../api/Access.Application.md)** object. To see a list of methods of the **Application** object, click **Object Browser** on the **View** menu while in module Design view. Click **Access** in the **Project/Library** box, click **Application** in the **Classes** box, and view the methods of the **Application** object in the **Members Of** box.
+When you create a field in a table that will be bound to a control on a report or used in an expression in the **ControlSource** property of a control or a report, avoid assigning the field a name that's the same name as a method of the **[Application](../../../api/Access.Application.md)** object. To see a list of methods of the **Application** object, click **Object Browser** on the **View** menu while in module Design view. Click **Access** in the **Project/Library** box, click **Application** in the **Classes** box, and view the methods of the **Application** object in the **Members Of** box.
When you create a field in a table that will be bound to a control on a form or report, avoid assigning the field any of the following names: AddRef, GetIDsOfNames, GetTypeInfo, GetTypeInfoCount, Invoke, QueryInterface, or Release.
-## Identifiers with Same Names as Visual Basic Keywords
+## Identifiers with the same names as Visual Basic keywords
-The version of Visual Basic that's used by Access 97 (and later) contains some new Visual Basic keywords, so you can no longer use these keywords as identifiers. These keywords are: **AddressOf**, **Assert**, **Decimal**, **DefDec**, **Enum**, **Event**, **Friend**, **Implements**, **RaiseEvent**, and **WithEvents**. When you convert a database developed with a prior version of Access, existing identifiers that are the same as a new Visual Basic keyword will cause a compile error. To correct this problem, rename the identifiers.
+The version of Visual Basic that's used by Access 97 (and later) contains some new Visual Basic keywords, so you can no longer use these keywords as identifiers. These keywords are: **AddressOf**, **Assert**, **Decimal**, **DefDec**, **Enum**, **Event**, **Friend**, **Implements**, **RaiseEvent**, and **WithEvents**. When you convert a database developed with a prior version of Access, existing identifiers that are the same as a new Visual Basic keyword will cause a compile error. To correct this problem, rename the identifiers.
-## Project Names the Same as Access Objects
+## Project names that are the same as Access objects
-A project name is the string that is the name of your Access application. In prior versions of Access, the project name was the name of the database. Beginning in Access 2000, the project name is specified by the **ProjectName** property setting and its default setting is the name of the database. If you convert a database with a name that is the same as a class of objects, for example, "application," "form," or "report," Access will append an underscore character to the database name to create a project name that does not conflict with existing objects.
+A project name is the string that is the name of your Access application. In prior versions of Access, the project name was the name of the database. Beginning in Access 2000, the project name is specified by the **ProjectName** property setting, and its default setting is the name of the database. If you convert a database with a name that is the same as a class of objects, for example, "application," "form," or "report," Access will append an underscore character to the database name to create a project name that does not conflict with existing objects.
diff --git a/access/Concepts/Error-Codes/using-enumerated-constants-in-microsoft-access-2002-and-later.md b/access/Concepts/Error-Codes/using-enumerated-constants-in-microsoft-access-2002-and-later.md
index 38c91502d5d..5b90def0307 100644
--- a/access/Concepts/Error-Codes/using-enumerated-constants-in-microsoft-access-2002-and-later.md
+++ b/access/Concepts/Error-Codes/using-enumerated-constants-in-microsoft-access-2002-and-later.md
@@ -1,25 +1,29 @@
---
-title: Using Enumerated Constants in Microsoft Access 2002 and Later
+title: Using enumerated constants in Microsoft Access 2002 and later
keywords: vbaac10.chm113266
f1_keywords:
- vbaac10.chm113266
ms.prod: access
ms.assetid: 7eb8fb08-76e5-a59f-5d6d-64c7081470e6
-ms.date: 06/08/2017
+ms.date: 09/21/2018
---
-# Using Enumerated Constants in Microsoft Access 2002 and Later
+# Using enumerated constants in Microsoft Access 2002 and later
-In Access 2002, a number of intrinsic constants were added or changed. This was done to create lists of "enumerated" constants that are displayed in the **Auto List Members** list in the Module window for the arguments of various Access methods, functions, and properties, or as the setting of various Access properties. You can select the appropriate constant from the list in the Module window, instead of having to remember the constant or look it up in the Help topic.
+In Access 2002, a number of intrinsic constants were added or changed. This was done to create lists of "enumerated" constants that are displayed in the **Auto List Members** list in the Module window for the arguments of various Access methods, functions, and properties, or as the setting of various Access properties. You can select the appropriate constant from the list in the Module window, instead of having to remember the constant or look it up in the Help topic.
The following information applies to enumerated constants:
-- The set of enumerated constants for each method, function, or property argument has a name, which is displayed in the syntax line for the method, function, or property in the Module window when the **Auto Quick Info** option is selected in the **Editor** tab of the **Options** dialog box, available by clicking **Options** on the **Tools** menu. (For property settings, the name isn't displayed, just the list of constants.) For example, the syntax line for the **[OpenForm](../../../api/Access.DoCmd.OpenForm.md)** method of the **[DoCmd](../../../api/Access.DoCmd.md)** object shows **[View As AcFormView = acNormal]** for the _view_ argument of this method. **AcFormView** is the name of this set of enumerated constants, and **acNormal** is the default setting for the argument. The Object Browser also lists the names of the sets of enumerated constants in the **Classes** box and lists the intrinsic constants contained in each of these sets in the **Members Of** box.
+- The set of enumerated constants for each method, function, or property argument has a name, which is displayed in the syntax line for the method, function, or property in the Module window when the **Auto Quick Info** option is selected in the **Editor** tab of the **Options** dialog box, available by selecting **Options** on the **Tools** menu. (For property settings, the name isn't displayed, just the list of constants.)
+
+ For example, the syntax line for the **[OpenForm](../../../api/Access.DoCmd.OpenForm.md)** method of the **[DoCmd](../../../api/Access.DoCmd.md)** object shows **[View As AcFormView = acNormal]** for the _view_ argument of this method. **AcFormView** is the name of this set of enumerated constants, and **acNormal** is the default setting for the argument. The Object Browser also lists the names of the sets of enumerated constants in the **Classes** box, and lists the intrinsic constants contained in each of these sets in the **Members Of** box.
- For constant names that have changed, the old constants will still work. For example, one of the intrinsic constants for the _save_ argument of the **Close** method of the **DoCmd** object was **acPrompt**. It's now **acSavePrompt**, but **acPrompt** will still work.
-- In a number of cases in previous versions of Access, you could leave an argument setting blank, and Access would perform the default action for that argument. For example, you could leave the _objecttype_ (and _objectname_ ) arguments of the **Close** method blank, and Access would close the active window. For the new sets of enumerated constants, the blank setting has been replaced with a new default constant. For example, the _objecttype_ argument of the **Close** method now has a new default constant, **acDefault**. Setting this argument to the new constant has the same effect as leaving the argument blank. In addition, you can still leave such arguments blank, and Access will assume the new default constant.
+- In a number of cases in previous versions of Access, you could leave an argument setting blank, and Access would perform the default action for that argument. For example, you could leave the _objecttype_ (and _objectname_ ) arguments of the **Close** method blank, and Access would close the active window.
+
+ For the new sets of enumerated constants, the blank setting has been replaced with a new default constant. For example, the _objecttype_ argument of the **Close** method now has a new default constant, **acDefault**. Setting this argument to the new constant has the same effect as leaving the argument blank. In addition, you can still leave such arguments blank, and Access will assume the new default constant.
- There's one exception to this. If you run Visual Basic code from previous versions of Visual Basic in Access by using Automation, blank arguments will cause an error for those arguments that have the new default constants. This problem doesn't occur for old Visual Basic for Applications or Visual Basic code run directly in Access.
diff --git a/access/Concepts/Structured-Query-Language/order-by-clause-microsoft-access-sql.md b/access/Concepts/Structured-Query-Language/order-by-clause-microsoft-access-sql.md
index 110a92093ab..6aff64d9f1a 100644
--- a/access/Concepts/Structured-Query-Language/order-by-clause-microsoft-access-sql.md
+++ b/access/Concepts/Structured-Query-Language/order-by-clause-microsoft-access-sql.md
@@ -58,12 +58,6 @@ If you specify a field containing Memo or OLE Object data in the ORDER BY clause
ORDER BY is usually the last item in an SQL statement.
You can include additional fields in the ORDER BY clause. Records are sorted first by the first field listed after ORDER BY. Records that have equal values in that field are then sorted by the value in the second field listed, and so on.
-
-**Link provided by:**
- The [UtterAccess](https://www.utteraccess.com) community |[About the contributors](#AboutContributors)
-
-
-- [Record Order](https://www.utteraccess.com/wiki/index.php/Record_Order)
## Example
@@ -97,10 +91,12 @@ Sub OrderByX()
End Sub
```
-
-
### About the contributors
+**Link provided by**  the [UtterAccess](https://www.utteraccess.com) community.
+
+- [Record Order](https://www.utteraccess.com/wiki/index.php/Record_Order)
+
UtterAccess is the premier Microsoft Access wiki and help forum.
## See also
diff --git a/api/Access.ComboBox.md b/api/Access.ComboBox.md
index 2d1039000a6..1d86907ed9a 100644
--- a/api/Access.ComboBox.md
+++ b/api/Access.ComboBox.md
@@ -32,23 +32,16 @@ The setting of the **LimitToList** property determines whether you can enter va
The list can be single- or multiple-column, and the columns can appear with or without headings.
- **Link provided by:** Luke Chung, [FMS, Inc.](https://www.fmsinc.com/)
-
+**Link provided by** Luke Chung, [FMS, Inc.](https://www.fmsinc.com/).
- [Tips and Techniques for Using and Validating Combo Boxes](https://www.fmsinc.com/free/NewTips/Access/ComboBox/AccessComboBox.asp)
- **Links provided by:**
- The [UtterAccess](https://www.utteraccess.com) community
-
+**Links provided by** the [UtterAccess](https://www.utteraccess.com) community.
-- [Combo Box](https://www.utteraccess.com/wiki/index.php/Combo_Box)
-
-- [Cascading Combo Boxes](https://www.utteraccess.com/wiki/index.php/Cascading_Combo_Boxes)
-
-- [Cascading Combo Boxes: Demo](https://www.utteraccess.com/wiki/index.php/Cascading_Combo_Boxes:_Demo)
-
-- [Cascading Combo Boxes - Leaving Null Values](https://www.utteraccess.com/wiki/index.php/Cascade_Combo_Leaving_Null_Values)
-
+- [Combo Box](https://www.utteraccess.com/wiki/index.php/Combo_Box)
+- [Cascading Combo Boxes](https://www.utteraccess.com/wiki/index.php/Cascading_Combo_Boxes)
+- [Cascading Combo Boxes: Demo](https://www.utteraccess.com/wiki/index.php/Cascading_Combo_Boxes:_Demo)
+- [Cascading Combo Boxes - Leaving Null Values](https://www.utteraccess.com/wiki/index.php/Cascade_Combo_Leaving_Null_Values)
- [Forms: Populate Controls/Text Boxes Based on Combobox Selection](https://www.utteraccess.com/wiki/index.php/Forms:_Populate_Controls/Text_Boxes_Based_on_Combobox_Selection)
@@ -56,8 +49,7 @@ The list can be single- or multiple-column, and the columns can appear with or w
The following example shows how to use multiple **ComboBox** controls to supply criteria for a query.
- **Sample code provided by:**
- The [UtterAccess](https://www.utteraccess.com) community
+**Sample code provided by** the [UtterAccess](https://www.utteraccess.com) community.
UtterAccess members can download a database that contains this example from [here](https://www.utteraccess.com/forum/Dynamic-Query-Examples-t1405533.html).
@@ -103,8 +95,7 @@ End Sub
The following example shows how to set the **RowSource** property of a combo box when a form is loaded. When the form is displayed, the items stored in the **Departments** field of the **tblDepartment** combo box are displayed in the **cboDept** combo box.
- **Sample code provided by:**
- Bill Jelen,[MrExcel.com](https://www.mrexcel.com/)
+**Sample code provided by**  Bill Jelen, [MrExcel.com](https://www.mrexcel.com/).
@@ -127,8 +118,7 @@ The following example show how to create a combo box that is bound to one column
The **ColumnWidths** property specifies the width of the two columns. By setting the width of the first column to **0in.**, the first column is not displayed in the combo box.
- **Sample code provided by:**
- Bill Jelen,[MrExcel.com](https://www.mrexcel.com/)
+**Sample code provided by**  Bill Jelen, [MrExcel.com](https://www.mrexcel.com/).
@@ -146,7 +136,7 @@ End Sub
The following example shows how to add an item to a bound combo box.
- **Sample code provided by:** The [Microsoft Access 2010 Programmer's Reference](https://www.wrox.com/WileyCDA/WroxTitle/Access-2010-Programmer-s-Reference.productCd-0470591668.html)
+**Sample code provided by** The [Microsoft Access 2010 Programmer's Reference](https://www.wrox.com/WileyCDA/WroxTitle/Access-2010-Programmer-s-Reference.productCd-0470591668.html).
```vb
@@ -379,11 +369,12 @@ End Sub
|[Visible](Access.ComboBox.Visible.md)|
|[Width](Access.ComboBox.Width.md)|
+
### About the contributors
Luke Chung is the founder and president of FMS, Inc., a leading provider of custom database solutions and developer tools.
-UtterAccess is the premier Microsoft Access wiki and help forum. Click here to join.
+UtterAccess is the premier Microsoft Access wiki and help forum.
Holy Macro! Books publishes entertaining books for people who use Microsoft Office. See the complete catalog at MrExcel.com.
@@ -392,10 +383,6 @@ Wrox Press is driven by the Programmer to Programmer philosophy. Wrox books are
## See also
-
-
-
-
-[Access Object Model Reference](overview/Access/object-model.md)
-[ComboBox Object Members](overview/Access.md)
+- [Access Object Model Reference](overview/Access/object-model.md)
+- [ComboBox Object Members](overview/Access.md)
diff --git a/api/Access.DoCmd.SendObject.md b/api/Access.DoCmd.SendObject.md
index be7612a7983..ce0041590d7 100644
--- a/api/Access.DoCmd.SendObject.md
+++ b/api/Access.DoCmd.SendObject.md
@@ -64,12 +64,12 @@ Modules can be sent only in MS-DOS Text format, so if you specify **acSendModule
> [!NOTE]
> You can save as a PDF or XPS file from a 2007 Microsoft Office system program only after you install an add-in. For more information, search for "Enable support for other file formats, such as PDF and XPS" on the Office Web site.
-**Link provided by:**  Luke Chung, [FMS, Inc.](https://www.fmsinc.com/)
+**Link provided by** Luke Chung, [FMS, Inc.](https://www.fmsinc.com/).
- [Features and Limits of Using the SendObject Method to Send Emails](https://www.fmsinc.com/microsoftaccess/email/sendobject.html)
-**Link provided by:**  The [UtterAccess](https://www.utteraccess.com) community
+**Link provided by** the [UtterAccess](https://www.utteraccess.com) community.
- [Email from Access](https://www.utteraccess.com/forum/Email-Access-t130485.html)
@@ -87,7 +87,7 @@ DoCmd.SendObject acSendTable, "Employees", acFormatXLS, _
The following example shows how to create an email message with Microsoft Outlook and display it to the user.
-**Sample code provided by:** The [Microsoft Access 2010 Programmer's Reference](https://www.wrox.com/WileyCDA/WroxTitle/Access-2010-Programmer-s-Reference.productCd-0470591668.html)
+**Sample code provided by** the [Microsoft Access 2010 Programmer's Reference](https://www.wrox.com/WileyCDA/WroxTitle/Access-2010-Programmer-s-Reference.productCd-0470591668.html).
```vb
@@ -155,11 +155,11 @@ Luke Chung is the founder and president of FMS, Inc., a leading provider of cust
Wrox Press is driven by the Programmer to Programmer philosophy. Wrox books are written by programmers for programmers, and the Wrox brand means authoritative solutions to real-world programming problems.
-UtterAccess is the premier Microsoft Access wiki and help forum. Click here to join.
+UtterAccess is the premier Microsoft Access wiki and help forum.
## See also
-[DoCmd Object](Access.DoCmd.md)
+- [DoCmd Object](Access.DoCmd.md)
diff --git a/api/Access.Form.md b/api/Access.Form.md
index feab6ee29f6..b8a98f20789 100644
--- a/api/Access.Form.md
+++ b/api/Access.Form.md
@@ -63,26 +63,17 @@ Forms!OrderForm.ctlSubForm.Form!Controls.NewData
Forms!OrderForm.ctlSubForm!NewData
```
- **Links provided by:**
- Luke Chung, [FMS, Inc.](https://www.fmsinc.com/)
+**Links provided by** Luke Chung, [FMS, Inc.](https://www.fmsinc.com/).
-
-- [Microsoft Access Form Tips and Avoiding Common Mistakes](https://www.fmsinc.com/tpapers/genaccess/formtips.html)
-
+- [Microsoft Access Form Tips and Avoiding Common Mistakes](https://www.fmsinc.com/tpapers/genaccess/formtips.html)
- [Microsoft Office Access 2007 Form Design Tips](https://www.fmsinc.com/tpapers/access/Forms/Access2007FormTips.html)
- **Links provided by:**
- The [UtterAccess](https://www.utteraccess.com) community
+**Links provided by** the [UtterAccess](https://www.utteraccess.com) community.
-
-- [Display Pictures on a Form](https://www.utteraccess.com/wiki/index.php/Display_Pictures_on_a_Form)
-
-- [Display Related Data](https://www.utteraccess.com/wiki/index.php/Display_Related_Data)
-
-- [Opening a Detail Form to Related Information](https://www.utteraccess.com/wiki/index.php/Forms:_Open_a_Detail_Form_to_Related_Information)
-
-- [Forms: Populate Controls/Text Boxes Based on Combobox Selection](https://www.utteraccess.com/wiki/index.php/Forms:_Populate_Controls/Text_Boxes_Based_on_Combobox_Selection)
-
+- [Display Pictures on a Form](https://www.utteraccess.com/wiki/index.php/Display_Pictures_on_a_Form)
+- [Display Related Data](https://www.utteraccess.com/wiki/index.php/Display_Related_Data)
+- [Opening a Detail Form to Related Information](https://www.utteraccess.com/wiki/index.php/Forms:_Open_a_Detail_Form_to_Related_Information)
+- [Forms: Populate Controls/Text Boxes Based on Combobox Selection](https://www.utteraccess.com/wiki/index.php/Forms:_Populate_Controls/Text_Boxes_Based_on_Combobox_Selection)
- [Referring To Properties And Controls On Subforms](https://www.utteraccess.com/wiki/index.php/Referring_To_Properties_And_Controls_On_Subforms)
@@ -92,8 +83,7 @@ The following example shows how to use **TextBox** controls to supply date crit
UtterAccess members can download a database that contains this example from [here](https://www.utteraccess.com/forum/Dynamic-Query-Examples-t1405533.html).
- **Sample code provided by:**
- The [UtterAccess](https://www.utteraccess.com) community
+**Sample code provided by** the [UtterAccess](https://www.utteraccess.com) community.
@@ -146,7 +136,7 @@ End Sub
The following example shows how to use the **BeforeUpdate** event of a form to require that a value be entered into one control when another control also has data.
- **Sample code provided by:** The [Microsoft Access 2010 Programmer's Reference](https://www.wrox.com/WileyCDA/WroxTitle/Access-2010-Programmer-s-Reference.productCd-0470591668.html)
+**Sample code provided by** the [Microsoft Access 2010 Programmer's Reference](https://www.wrox.com/WileyCDA/WroxTitle/Access-2010-Programmer-s-Reference.productCd-0470591668.html).
@@ -483,7 +473,8 @@ Wrox Press is driven by the Programmer to Programmer philosophy. Wrox books are
## See also
-[Access Object Model Reference](overview/Access/object-model.md)
+
+- [Access Object Model Reference](overview/Access/object-model.md)
diff --git a/api/Access.ListBox.md b/api/Access.ListBox.md
index 1ca0c1b35fe..0e2fad7f05e 100644
--- a/api/Access.ListBox.md
+++ b/api/Access.ListBox.md
@@ -37,10 +37,7 @@ You can use an unbound list box to store a value that you can use with another c
If you don't have room on your form to display a list box, or if you want to be able to type new values as well as select values from a list, use a combo box instead of a list box.
- **Links provided by:**
- The[UtterAccess](https://www.utteraccess.com) community
-
-
+ **Links provided by** the [UtterAccess](https://www.utteraccess.com) community.
- [Create a Query that uses a Multi-select Listbox as Criteria](https://www.utteraccess.com/forum/Creating-Query-Multi-t414388.html)
@@ -59,8 +56,7 @@ In this example, a list box named ColorID displays a list of colors stored in th
To do this, use the Change event of the text box to build a SQL statement that will serve as the new RowSource of the list box.
- **Sample code provided by:**
- The [UtterAccess](https://www.utteraccess.com) community
+**Sample code provided by** the [UtterAccess](https://www.utteraccess.com) community.
@@ -249,14 +245,19 @@ End Sub
|[Visible](Access.ListBox.Visible.md)|
|[Width](Access.ListBox.Width.md)|
-### About the contributors
+### About the contributors
-UtterAccess is the premier Microsoft Access wiki and help forum. Click here to join.
-
+UtterAccess is the premier Microsoft Access wiki and help forum.
## See also
-[Access Object Model Reference](overview/Access/object-model.md)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
+- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
+- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
+- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
+- [Access object model reference](overview/Access/object-model.md)
+- [SubForm object members](overview/Access.md)
diff --git a/api/Access.SubForm.md b/api/Access.SubForm.md
index 6c4bf1a45a1..230069f68d6 100644
--- a/api/Access.SubForm.md
+++ b/api/Access.SubForm.md
@@ -28,14 +28,6 @@ This object corresponds to a subform control. The subform control embeds a form
> For example, you can use a form with a subform to present one-to-many relationships, such as one product category with the items that fall into that category. In this case, the main form can display the category ID, name, and description; the subform can display the available products in that category.
Instead of creating the main form, and then adding the subform control to it, you can simultaneously create the main form and subform with a wizard . You can also create a subform by dragging an existing form or report from the Database window to the main form.
-
- **Links provided by:**
- The [UtterAccess](https://www.utteraccess.com) community
-
-
-- [Create a Subform with Alternating Color Rows](https://www.utteraccess.com/wiki/index.php/Create_a_Subform_with_Alternating_Color_Rows)
-
-- [Referring To Properties And Controls On Subforms](https://www.utteraccess.com/wiki/index.php/Referring_To_Properties_And_Controls_On_Subforms)
## Events
@@ -130,18 +122,26 @@ Instead of creating the main form, and then adding the subform control to it, yo
|[Visible](Access.SubForm.Visible.md)|
|[Width](Access.SubForm.Width.md)|
-### About the contributors
-
-UtterAccess is the premier Microsoft Access wiki and help forum. Click here to join.
+### About the contributors
-## See also
+**Links provided by** the [UtterAccess](https://www.utteraccess.com) community.
+- [Create a Subform with Alternating Color Rows](https://www.utteraccess.com/wiki/index.php/Create_a_Subform_with_Alternating_Color_Rows)
+
+- [Referring To Properties And Controls On Subforms](https://www.utteraccess.com/wiki/index.php/Referring_To_Properties_And_Controls_On_Subforms)
+UtterAccess is the premier Microsoft Access wiki and help forum.
+## See also
-[Access Object Model Reference](overview/Access/object-model.md)
-[SubForm Object Members](overview/Access.md)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
+- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
+- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
+- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
+- [Access object model reference](overview/Access/object-model.md)
+- [SubForm object members](overview/Access.md)
diff --git a/api/TOC.md b/api/TOC.md
index 3c32a816b68..99ce639143f 100644
--- a/api/TOC.md
+++ b/api/TOC.md
@@ -1,5 +1,5 @@
# [Office VBA Reference](./overview/Index.md)
-## [Access](./overview/Access.md)
+## [Access](./overview/Access.md)
### Concepts
#### Settings
##### [ActiveX Data Objects (ADO)](../access/Concepts/Settings/activex-data-objects-ado.md)
@@ -19,31 +19,27 @@
##### [Functions (alphabetical list)](../access/Concepts/Criteria-Expressions/functions-alphabetical-list.md)
##### [Functions (category list)](../access/Concepts/Criteria-Expressions/functions-category-list.md)
##### [Min, Max functions (Access SQL)](../access/Concepts/Criteria-Expressions/min-max-functions-microsoft-access-sql.md)
-##### [Include quotation marks in string expressions](../access/Concepts/Criteria-Expressions/include-quotation-marks-in-string-expressions.md)
##### [Multiple fields in criteria expressions](../access/Concepts/Criteria-Expressions/multiple-fields-in-criteria-expressions.md)
##### [Numeric criteria expressions](../access/Concepts/Criteria-Expressions/numeric-criteria-expressions.md)
##### [Numeric criteria from a control on a form](../access/Concepts/Criteria-Expressions/numeric-criteria-from-a-control-on-a-form.md)
-##### [Quotation marks in strings](../access/Concepts/Criteria-Expressions/quotation-marks-in-strings.md)
+##### [Quotation marks in string expressions](../access/Concepts/Criteria-Expressions/include-quotation-marks-in-string-expressions.md)
##### [Restrict data to a subset of records](../access/Concepts/Criteria-Expressions/restrict-data-to-a-subset-of-records.md)
##### [Sort records in case-sensitive (ASCII) order](../access/Concepts/Criteria-Expressions/sort-records-in-case-sensitiveascii-order.md)
##### [StDev, StDevP functions (Access SQL)](../access/Concepts/Criteria-Expressions/stdev-stdevp-functions-microsoft-access-sql.md)
##### [Sum function (Access SQL)](../access/Concepts/Criteria-Expressions/sum-function-microsoft-access-sql.md)
##### [Textual criteria expressions](../access/Concepts/Criteria-Expressions/textual-criteria-expressions.md)
##### [Textual criteria from a control on a form](../access/Concepts/Criteria-Expressions/textual-criteria-from-a-control-on-a-form.md)
-##### [Use multiple fields in criteria expressions](../access/Concepts/Criteria-Expressions/use-multiple-fields-in-criteria-expressions.md)
-##### [Use numeric criteria in expressions](../access/Concepts/Criteria-Expressions/use-numeric-criteria-in-expressions.md)
-##### [Use textual criteria expressions](../access/Concepts/Criteria-Expressions/use-textual-criteria-expressions.md)
##### [Var, VarP functions (Access SQL)](../access/Concepts/Criteria-Expressions/var-varp-functions-microsoft-access-sql.md)
#### Error codes
-##### [Error trapping](../access/Concepts/Error-Codes/error-trapping.md)
-##### [Elements of run-time error handling](../access/Concepts/Error-Codes/elements-of-run-time-error-handling.md)
-##### [Scoping and object-naming compatibility](../access/Concepts/Error-Codes/scoping-and-object-naming-compatibility.md)
+##### [Comparison of data types](../access/Concepts/Error-Codes/comparison-of-data-types.md)
##### [Custom methods and properties](../access/Concepts/Error-Codes/custom-methods-and-properties.md)
+##### [Elements of run-time error handling](../access/Concepts/Error-Codes/elements-of-run-time-error-handling.md)
+##### [Error trapping](../access/Concepts/Error-Codes/error-trapping.md)
##### [Improvements in compilation performance](../access/Concepts/Error-Codes/improvements-in-compilation-performance.md)
##### [Macro actions and methods of the DoCmd object](../access/Concepts/Error-Codes/macro-actions-and-methods-of-the-docmd-object.md)
-##### [Use enumerated constants in Access 2002 and later](../access/Concepts/Error-Codes/using-enumerated-constants-in-microsoft-access-2002-and-later.md)
-##### [Comparison of data types](../access/Concepts/Error-Codes/comparison-of-data-types.md)
-##### [Program with class modules](../access/Concepts/Error-Codes/program-with-class-modules.md)
+##### [Programming with class modules](../access/Concepts/Error-Codes/program-with-class-modules.md)
+##### [Scoping and object-naming compatibility](../access/Concepts/Error-Codes/scoping-and-object-naming-compatibility.md)
+##### [Using enumerated constants in Access 2002 and later](../access/Concepts/Error-Codes/using-enumerated-constants-in-microsoft-access-2002-and-later.md)
#### Structured Query Language (Access SQL)
##### Clauses
###### [FROM](../access/Concepts/Structured-Query-Language/from-clause-microsoft-access-sql.md)
@@ -95,37 +91,37 @@
##### [Retrieve records](../access/Concepts/Structured-Query-Language/retrieve-records-using-access-sql.md)
##### [Use international date formats in SQL statements](../access/Concepts/Structured-Query-Language/use-international-date-formats-in-sql-statements.md)
#### Data Access Objects (DAO)
-##### [Add a record to a DAO recordset](../access/Concepts/Data-Access-Objects/add-a-record-to-a-dao-recordset.md)
-##### [Change tables involved in a one-to-many relationship in a DAO recordset](../access/Concepts/Data-Access-Objects/change-tables-involved-in-a-one-to-many-relationship-in-a-dao-recordset.md)
-##### [Count the number of records in a DAO recordset](../access/Concepts/Data-Access-Objects/count-the-number-of-records-in-a-dao-recordset.md)
-##### [Create a DAO recordset from a form](../access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-form.md)
-##### [Create a DAO recordset from a query](../access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-query.md)
-##### [Create a DAO recordset from a table in the current database](../access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-table-in-the-current-database.md)
+##### [Add a record to a DAO Recordset](../access/Concepts/Data-Access-Objects/add-a-record-to-a-dao-recordset.md)
+##### [Change tables involved in a one-to-many relationship in a DAO Recordset](../access/Concepts/Data-Access-Objects/change-tables-involved-in-a-one-to-many-relationship-in-a-dao-recordset.md)
+##### [Count the number of records in a DAO Recordset](../access/Concepts/Data-Access-Objects/count-the-number-of-records-in-a-dao-recordset.md)
+##### [Create a DAO Recordset from a form](../access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-form.md)
+##### [Create a DAO Recordset from a query](../access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-query.md)
+##### [Create a DAO Recordset from a table in the current database](../access/Concepts/Data-Access-Objects/create-a-dao-recordset-from-a-table-in-the-current-database.md)
##### [Create a user-defined property](../access/Concepts/Data-Access-Objects/create-a-user-defined-property.md)
-##### [Delete a record from a DAO recordset](../access/Concepts/Data-Access-Objects/delete-a-record-from-a-dao-recordset.md)
-##### [Detect the limits of a DAO recordset](../access/Concepts/Data-Access-Objects/detect-the-limits-of-a-dao-recordset.md)
-##### [Extract data from a record in a DAO recordset](../access/Concepts/Data-Access-Objects/extract-data-from-a-record-in-a-dao-recordset.md)
-##### [Find a record in a dynaset-type or snapshot-type DAO recordset](../access/Concepts/Data-Access-Objects/find-a-record-in-a-dynaset-type-or-snapshot-type-dao-recordset.md)
-##### [Find a record in a table-type DAO recordset](../access/Concepts/Data-Access-Objects/find-a-record-in-a-table-type-dao-recordset.md)
-##### [Find the current position in a DAO recordset](../access/Concepts/Data-Access-Objects/find-the-current-position-in-a-dao-recordset.md)
-##### [Make bulk changes to a DAO recordset](../access/Concepts/Data-Access-Objects/make-bulk-changes-to-a-dao-recordset.md)
+##### [Delete a record from a DAO Recordset](../access/Concepts/Data-Access-Objects/delete-a-record-from-a-dao-recordset.md)
+##### [Detect the limits of a DAO Recordset](../access/Concepts/Data-Access-Objects/detect-the-limits-of-a-dao-recordset.md)
+##### [Extract data from a record in a DAO Recordset](../access/Concepts/Data-Access-Objects/extract-data-from-a-record-in-a-dao-recordset.md)
+##### [Find a record in a dynaset-type or snapshot-type DAO Recordset](../access/Concepts/Data-Access-Objects/find-a-record-in-a-dynaset-type-or-snapshot-type-dao-recordset.md)
+##### [Find a record in a table-type DAO Recordset](../access/Concepts/Data-Access-Objects/find-a-record-in-a-table-type-dao-recordset.md)
+##### [Find the current position in a DAO Recordset](../access/Concepts/Data-Access-Objects/find-the-current-position-in-a-dao-recordset.md)
+##### [Make bulk changes to a DAO Recordset](../access/Concepts/Data-Access-Objects/make-bulk-changes-to-a-dao-recordset.md)
##### [Manipulate multivalued fields with DAO](../access/Concepts/Data-Access-Objects/manipulate-multivalued-fields-with-dao.md)
-##### [Mark a position in a DAO recordset](../access/Concepts/Data-Access-Objects/mark-a-position-in-a-dao-recordset.md)
-##### [Modify a query from a DAO recordset](../access/Concepts/Data-Access-Objects/modify-a-query-from-a-dao-recordset.md)
-##### [Modify an existing record in a DAO recordset](../access/Concepts/Data-Access-Objects/modify-an-existing-record-in-a-dao-recordset.md)
-##### [Move through a DAO recordset](../access/Concepts/Data-Access-Objects/move-through-a-dao-recordset.md)
-##### [Read from and write to a field in a DAO recordset](../access/Concepts/Data-Access-Objects/read-from-and-write-to-a-field-in-a-dao-recordset.md)
-##### [Return a random record from a DAO recordset](../access/Concepts/Data-Access-Objects/return-a-random-record-from-a-dao-recordset.md)
+##### [Mark a position in a DAO Recordset](../access/Concepts/Data-Access-Objects/mark-a-position-in-a-dao-recordset.md)
+##### [Modify a query from a DAO Recordset](../access/Concepts/Data-Access-Objects/modify-a-query-from-a-dao-recordset.md)
+##### [Modify an existing record in a DAO Recordset](../access/Concepts/Data-Access-Objects/modify-an-existing-record-in-a-dao-recordset.md)
+##### [Move through a DAO Recordset](../access/Concepts/Data-Access-Objects/move-through-a-dao-recordset.md)
+##### [Read from and write to a field in a DAO Recordset](../access/Concepts/Data-Access-Objects/read-from-and-write-to-a-field-in-a-dao-recordset.md)
+##### [Return a random record from a DAO Recordset](../access/Concepts/Data-Access-Objects/return-a-random-record-from-a-dao-recordset.md)
##### [Set properties of Data Access Objects in Visual Basic](../access/Concepts/Data-Access-Objects/set-properties-of-data-access-objects-in-visual-basic.md)
-##### [Sort data in a DAO recordset](../access/Concepts/Data-Access-Objects/sort-data-in-a-dao-recordset.md)
-##### [Synchronize a DAO recordset's record with a form's current record](../access/Concepts/Data-Access-Objects/synchronize-a-dao-recordset-s-record-with-a-form-s-current-record.md)
-##### [Track design changes to a table-type DAO recordset](../access/Concepts/Data-Access-Objects/track-design-changes-to-a-table-type-dao-recordset.md)
+##### [Sort data in a DAO Recordset](../access/Concepts/Data-Access-Objects/sort-data-in-a-dao-recordset.md)
+##### [Synchronize a DAO Recordset's record with a form's current record](../access/Concepts/Data-Access-Objects/synchronize-a-dao-recordset-s-record-with-a-form-s-current-record.md)
+##### [Track design changes to a table-type DAO Recordset](../access/Concepts/Data-Access-Objects/track-design-changes-to-a-table-type-dao-recordset.md)
+##### [Use transactions in a DAO Recordset](../access/Concepts/Data-Access-Objects/use-transactions-in-a-dao-recordset.md)
##### [Work with attachments in DAO](../access/Concepts/Data-Access-Objects/work-with-attachments-in-dao.md)
-##### [Use transactions in a DAO recordset](../access/Concepts/Data-Access-Objects/use-transactions-in-a-dao-recordset.md)
#### ActiveX Data Objects (ADO)
-##### [Bind a form to an ADO recordset](../access/Concepts/ActiveX-Data-Objects/bind-a-form-to-an-ado-recordset.md)
-##### [Set properties of ActiveX Data Objects in Visual Basic](../access/Concepts/ActiveX-Data-Objects/set-properties-of-activex-data-objects-in-visual-basic.md)
+##### [Bind a form to an ADO Recordset](../access/Concepts/ActiveX-Data-Objects/bind-a-form-to-an-ado-recordset.md)
##### [Create an ADO connection string](../access/Concepts/ActiveX-Data-Objects/create-an-ado-connection-string.md)
+##### [Set properties of ActiveX Data Objects in Visual Basic](../access/Concepts/ActiveX-Data-Objects/set-properties-of-activex-data-objects-in-visual-basic.md)
#### XML
##### [Export a report to XML](../access/Concepts/XML/export-a-report-to-xml.md)
##### [Export data, schema, and related tables to XML](../access/Concepts/XML/export-data-schema-and-related-tables-to-xml.md)
From 415b50543da7a803b4a0e2590decef935f740e9f Mon Sep 17 00:00:00 2001
From: Dmitry Yudakov <37324682+tdkkdt@users.noreply.github.com>
Date: Mon, 24 Sep 2018 18:24:58 +0300
Subject: [PATCH 03/22] Fix incorrect reference. (#198)
* Fix incorrect reference.
There is incorrect reference to MsoWarpFormat.
* Edit pass
The path does not need a "./"
---
api/Excel.TextFrame2.WarpFormat.md | 16 ++++++----------
1 file changed, 6 insertions(+), 10 deletions(-)
diff --git a/api/Excel.TextFrame2.WarpFormat.md b/api/Excel.TextFrame2.WarpFormat.md
index 2bfa6e507d5..959e0d7bc48 100644
--- a/api/Excel.TextFrame2.WarpFormat.md
+++ b/api/Excel.TextFrame2.WarpFormat.md
@@ -1,27 +1,23 @@
---
-title: TextFrame2.WarpFormat Property (Excel)
+title: TextFrame2.WarpFormat property (Excel)
ms.prod: excel
api_name:
- Excel.TextFrame2.WarpFormat
ms.assetid: 20710bdc-981f-b61d-4be5-f8c760bb9f4c
-ms.date: 06/08/2017
+ms.date: 09/24/2018
---
-# TextFrame2.WarpFormat Property (Excel)
+# TextFrame2.WarpFormat property (Excel)
-Returns or sets the warp type for the specified text frame. Read/write **[MsoWarpFormat](Excel.TextFrame2.WarpFormat.md)** .
+Returns or sets the warp type for the specified text frame. Read/write **[MsoWarpFormat](Office.MsoWarpFormat.md)**.
## Syntax
- _expression_. `WarpFormat`
+_expression_. `WarpFormat`
- _expression_ A variable that represents a [TextFrame2](./Excel.TextFrame2.md) object.
+_expression_ A variable that represents a [TextFrame2](Excel.TextFrame2.md) object.
-## See also
-
-
-[TextFrame2 Object](Excel.TextFrame2.md)
From 779b9f12483fb1dc9b5f9343309f4a2fa3a034e2 Mon Sep 17 00:00:00 2001
From: David Chesnut
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-open-a-database-created-with-a-previous-version-of-your-applicationerror.md b/access/Concepts/Miscellaneous/cannot-open-a-database-created-with-a-previous-version-of-your-applicationerror.md
index 6030b29cbff..f00442a7e57 100644
--- a/access/Concepts/Miscellaneous/cannot-open-a-database-created-with-a-previous-version-of-your-applicationerror.md
+++ b/access/Concepts/Miscellaneous/cannot-open-a-database-created-with-a-previous-version-of-your-applicationerror.md
@@ -24,9 +24,9 @@ For information about how to compact and repair Access databases, see the follow
- [Compact and Repair a Database](http://msdn.microsoft.com/library/5ad4e6b1-abfd-3f89-5c80-9e41397a96e8%28Office.15%29.aspx)
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-open-a-form-whose-underlying-query-contains-a-user-defined-function-that.md b/access/Concepts/Miscellaneous/cannot-open-a-form-whose-underlying-query-contains-a-user-defined-function-that.md
index 0b93642f1f7..6286faa2c9c 100644
--- a/access/Concepts/Miscellaneous/cannot-open-a-form-whose-underlying-query-contains-a-user-defined-function-that.md
+++ b/access/Concepts/Miscellaneous/cannot-open-a-form-whose-underlying-query-contains-a-user-defined-function-that.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error can occur in Microsoft Access if you execute a query that includes a user-defined function in its output and then create a form based on that query.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-open-action-query-nameerror-3064.md b/access/Concepts/Miscellaneous/cannot-open-action-query-nameerror-3064.md
index 09109e89685..94811f34bcc 100644
--- a/access/Concepts/Miscellaneous/cannot-open-action-query-nameerror-3064.md
+++ b/access/Concepts/Miscellaneous/cannot-open-action-query-nameerror-3064.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to open an action query using the **OpenQueryDef** method, which is an obsolete method originally valid only with select queries. The preferred method for executing an action query is to use the **Execute** method of the **QueryDef** object.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-open-any-more-databaseserror-3048.md b/access/Concepts/Miscellaneous/cannot-open-any-more-databaseserror-3048.md
index 8045d1416d5..67f4e8c1146 100644
--- a/access/Concepts/Miscellaneous/cannot-open-any-more-databaseserror-3048.md
+++ b/access/Concepts/Miscellaneous/cannot-open-any-more-databaseserror-3048.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You have reached the limit on the number of databases that can be opened at one time. Close one or more databases and try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-open-any-more-fileserror-3025.md b/access/Concepts/Miscellaneous/cannot-open-any-more-fileserror-3025.md
index 03ec4d29075..0eeee5f8c4e 100644
--- a/access/Concepts/Miscellaneous/cannot-open-any-more-fileserror-3025.md
+++ b/access/Concepts/Miscellaneous/cannot-open-any-more-fileserror-3025.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You have reached the limit on the number of files that can be opened at one time. Close one or more files, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-open-any-more-tables-or-querieserror-3037.md b/access/Concepts/Miscellaneous/cannot-open-any-more-tables-or-querieserror-3037.md
index 864e5cf2511..501ea2a9467 100644
--- a/access/Concepts/Miscellaneous/cannot-open-any-more-tables-or-querieserror-3037.md
+++ b/access/Concepts/Miscellaneous/cannot-open-any-more-tables-or-querieserror-3037.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You have reached the limit on the number of tables and queries that can be opened at one time. Close one or more tables or queries, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-open-any-more-tableserror-3014.md b/access/Concepts/Miscellaneous/cannot-open-any-more-tableserror-3014.md
index 7a170ab4717..9f5453184f7 100644
--- a/access/Concepts/Miscellaneous/cannot-open-any-more-tableserror-3014.md
+++ b/access/Concepts/Miscellaneous/cannot-open-any-more-tableserror-3014.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You have reached the limit on the number of tables that can be opened at one time. Close one or more tables, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-open-database-nameit-may-not-be-a-database-that-your-application-recogniz.md b/access/Concepts/Miscellaneous/cannot-open-database-nameit-may-not-be-a-database-that-your-application-recogniz.md
index f4a669c53ef..7d13913cd6f 100644
--- a/access/Concepts/Miscellaneous/cannot-open-database-nameit-may-not-be-a-database-that-your-application-recogniz.md
+++ b/access/Concepts/Miscellaneous/cannot-open-database-nameit-may-not-be-a-database-that-your-application-recogniz.md
@@ -27,9 +27,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-open-library-database-nameerror-3007.md b/access/Concepts/Miscellaneous/cannot-open-library-database-nameerror-3007.md
index 5206d06dec8..8acf33ef681 100644
--- a/access/Concepts/Miscellaneous/cannot-open-library-database-nameerror-3007.md
+++ b/access/Concepts/Miscellaneous/cannot-open-library-database-nameerror-3007.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The specified database is an internal Microsoft Access database engine library database, which you cannot open.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-open-replication-system-table-name-because-the-table-is-already-in-useerr.md b/access/Concepts/Miscellaneous/cannot-open-replication-system-table-name-because-the-table-is-already-in-useerr.md
index 69091d40b00..ffbb23cd049 100644
--- a/access/Concepts/Miscellaneous/cannot-open-replication-system-table-name-because-the-table-is-already-in-useerr.md
+++ b/access/Concepts/Miscellaneous/cannot-open-replication-system-table-name-because-the-table-is-already-in-useerr.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The system table needed to complete this operation is already in use. Wait a few minutes and try your operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-open-tablenameanother-user-has-the-table-open-using-a-different-network-c.md b/access/Concepts/Miscellaneous/cannot-open-tablenameanother-user-has-the-table-open-using-a-different-network-c.md
index e6eec960cf9..fa3192b2958 100644
--- a/access/Concepts/Miscellaneous/cannot-open-tablenameanother-user-has-the-table-open-using-a-different-network-c.md
+++ b/access/Concepts/Miscellaneous/cannot-open-tablenameanother-user-has-the-table-open-using-a-different-network-c.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The Microsoft Access database engine cannot open an external Paradox table because of inconsistencies between your initialization settings and those of another user who currently has the table open. The **ParadoxNetPath** and the **ParadoxNetStyle** settings in the **HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\14.0\Access Connectivity Engine\Engines\Paradox** key of the Microsoft Windows Registry must be consistent for all users sharing a database. Make sure your initialization settings match those of all other users sharing the database, and then try opening the table again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-open-the-log-file-name-for-writingerror-3474.md b/access/Concepts/Miscellaneous/cannot-open-the-log-file-name-for-writingerror-3474.md
index 62ea7a3bd3d..6c4177f592f 100644
--- a/access/Concepts/Miscellaneous/cannot-open-the-log-file-name-for-writingerror-3474.md
+++ b/access/Concepts/Miscellaneous/cannot-open-the-log-file-name-for-writingerror-3474.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Make sure you have permission to write to the log file.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-open-the-microsoft-jet-engine-workgroup-information-fileerror-3358.md b/access/Concepts/Miscellaneous/cannot-open-the-microsoft-jet-engine-workgroup-information-fileerror-3358.md
index bb8c9054216..eeedfe4e373 100644
--- a/access/Concepts/Miscellaneous/cannot-open-the-microsoft-jet-engine-workgroup-information-fileerror-3358.md
+++ b/access/Concepts/Miscellaneous/cannot-open-the-microsoft-jet-engine-workgroup-information-fileerror-3358.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You attempted to perform a security-related task, but the workgroup information file (typically System.mdw) required for the task cannot be found.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-open-this-paradox-4-x-or-5-x-table-because-paradoxnetstyle-is-set-to-3-x.md b/access/Concepts/Miscellaneous/cannot-open-this-paradox-4-x-or-5-x-table-because-paradoxnetstyle-is-set-to-3-x.md
index 6269ee94ed0..162e7bc2ab9 100644
--- a/access/Concepts/Miscellaneous/cannot-open-this-paradox-4-x-or-5-x-table-because-paradoxnetstyle-is-set-to-3-x.md
+++ b/access/Concepts/Miscellaneous/cannot-open-this-paradox-4-x-or-5-x-table-because-paradoxnetstyle-is-set-to-3-x.md
@@ -36,9 +36,9 @@ To correct the problem
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-cause-field-name-to-become-a-zero-le.md b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-cause-field-name-to-become-a-zero-le.md
index 74f1a0c5008..d33bf0e45bb 100644
--- a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-cause-field-name-to-become-a-zero-le.md
+++ b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-cause-field-name-to-become-a-zero-le.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The cascade operation you are attempting would result in a zero-length string in the indicated field, which is set up to not allow zero-length strings. Check the values you are attempting to update and fix them so they do not result in zero-length strings in this field.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-cause-field-name-to-become-null-whic.md b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-cause-field-name-to-become-null-whic.md
index 5494dbfadaa..0a07552a538 100644
--- a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-cause-field-name-to-become-null-whic.md
+++ b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-cause-field-name-to-become-null-whic.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The cascade operation you are attempting would result in a **Null** value in the indicated field, which has been set up to not allow **Null** values. Check the values you are attempting to update and fix them so they do not result in **Null** values in this field.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-result-in-a-duplicate-key-in-table-n.md b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-result-in-a-duplicate-key-in-table-n.md
index b8da13558b3..dbda5b955ec 100644
--- a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-result-in-a-duplicate-key-in-table-n.md
+++ b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-result-in-a-duplicate-key-in-table-n.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The cascade operation you are attempting would result in a duplicate key in the indicated table, which is set up to not allow duplicate primary keys. Check the values you are attempting to update and fix them so they do not result in duplicate keys.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-result-in-a-null-key-in-table-nameer.md b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-result-in-a-null-key-in-table-nameer.md
index 8c25b47fbe7..098ed49a9ff 100644
--- a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-result-in-a-null-key-in-table-nameer.md
+++ b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-result-in-a-null-key-in-table-nameer.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The cascade operation you are attempting would result in a **Null** value in a primary key field in the indicated table, which has been set up not to allow **Null** values. Check the values you are attempting to update and fix them so they do not result in **Null** values.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-result-in-two-updates-to-field-name.md b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-result-in-two-updates-to-field-name.md
index a9abfbabb19..a1ec93cfada 100644
--- a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-result-in-two-updates-to-field-name.md
+++ b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-it-would-result-in-two-updates-to-field-name.md
@@ -25,9 +25,9 @@ The cascade operation you are attempting cannot be completed because it would re
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-on-table-name-because-it-is-currently-in-usee.md b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-on-table-name-because-it-is-currently-in-usee.md
index 84e0813312d..641c37274d5 100644
--- a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-on-table-name-because-it-is-currently-in-usee.md
+++ b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-on-table-name-because-it-is-currently-in-usee.md
@@ -20,9 +20,9 @@ You are trying to save a value to a primary key field that is included in a rela
In Microsoft Access, the **Cascade Update Related Fields** option is selected for the relationship, or in DAO code, the **dbRelationUpdateCascade** option is specified for the **Relation** object's **Attributes** property. Therefore, your application is attempting to update the matching field in the related table.
The matching field cannot be updated because you have it open or locked on your computer. To save the record, you must first close the related table.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-on-table-nameerror-3413.md b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-on-table-nameerror-3413.md
index 88d9c1b52aa..21797fa6131 100644
--- a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-on-table-nameerror-3413.md
+++ b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-on-table-nameerror-3413.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when referential integrity is defined with one of the following actions: CASCADE DELETE, UPDATE or NULL. The error occurs when making a change to a table that contains a referenced primary key and one or more of the foreign key tables is opened in a mode that prevents the foreign key tables from being opened in a shared read/write mode.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-since-related-records-exist-in-table-namerefe.md b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-since-related-records-exist-in-table-namerefe.md
index cf939944337..fd7337fb3b8 100644
--- a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-since-related-records-exist-in-table-namerefe.md
+++ b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-since-related-records-exist-in-table-namerefe.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The cascade operation you are attempting violates referential integrity rules with the indicated table. Check the values you are attempting to update or delete, and fix them so they comply with the referential integrity rules.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-the-value-entered-is-prohibited-by-the-valida.md b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-the-value-entered-is-prohibited-by-the-valida.md
index 7f7d4f8b0f8..f029c3129c2 100644
--- a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-the-value-entered-is-prohibited-by-the-valida.md
+++ b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-the-value-entered-is-prohibited-by-the-valida.md
@@ -13,5 +13,5 @@ ms.date: 06/08/2017
The cascade operation you are attempting would result in an invalid value in the indicated field, as established by the field's validation rule. Check the values you are attempting to update and fix them so they comply with the validation rule.
- **ACCESS SUPPORT RESOURCES**[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)[Access help on support.office.com](https://support.office.com/search/results?query=Access)[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)[Search for specific Access error codes on Bing](http://www.bing.com/)[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)[Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)[Access posts on StackOverflow](http://stackoverflow.com/questions/tagged/ms-access)
+ **ACCESS SUPPORT RESOURCES**[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev) [Access help on support.office.com](https://support.office.com/search/results?query=Access) [Access help on answers.microsoft.com](https://answers.microsoft.com/) [Search for specific Access error codes on Bing](http://www.bing.com/) [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx) [Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx) [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/) [Access posts on StackOverflow](http://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-there-must-be-a-related-record-in-table-namee.md b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-there-must-be-a-related-record-in-table-namee.md
index dc2536a5744..61f0a4d7dd8 100644
--- a/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-there-must-be-a-related-record-in-table-namee.md
+++ b/access/Concepts/Miscellaneous/cannot-perform-cascading-operation-there-must-be-a-related-record-in-table-namee.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The cascade operation you are attempting violates a referential integrity rule that requires a related record in the indicated table. Check the values you are attempting to update or delete, and fix them so they comply with the referential integrity rule.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-perform-cascading-operationvalidation-texterror-3403.md b/access/Concepts/Miscellaneous/cannot-perform-cascading-operationvalidation-texterror-3403.md
index a90d6f97a59..2233e5bb257 100644
--- a/access/Concepts/Miscellaneous/cannot-perform-cascading-operationvalidation-texterror-3403.md
+++ b/access/Concepts/Miscellaneous/cannot-perform-cascading-operationvalidation-texterror-3403.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The cascade operation you are attempting would result in invalid data. Check the values you are attempting to update and fix them so they comply with the validation rules.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-perform-cascading-update-on-the-table-because-it-is-currently-in-use-by-a.md b/access/Concepts/Miscellaneous/cannot-perform-cascading-update-on-the-table-because-it-is-currently-in-use-by-a.md
index da23382b835..40bf987864e 100644
--- a/access/Concepts/Miscellaneous/cannot-perform-cascading-update-on-the-table-because-it-is-currently-in-use-by-a.md
+++ b/access/Concepts/Miscellaneous/cannot-perform-cascading-update-on-the-table-because-it-is-currently-in-use-by-a.md
@@ -20,9 +20,9 @@ You are trying to save a value into a primary key field that is included in a re
In Microsoft Access, the **Cascade Update Related Fields** option is selected for the relationship, or in DAO code, the **dbRelationUpdateCascade** option is specified for the **Relation** object's **Attributes** property. Your application is attempting to update the matching field in the related table.
The matching field cannot be updated because of a locking conflict with another user. To save the record, you must wait until the related table is no longer in use.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-perform-join-group-sort-or-indexed-restriction-a-value-being-searched-or.md b/access/Concepts/Miscellaneous/cannot-perform-join-group-sort-or-indexed-restriction-a-value-being-searched-or.md
index 17d7eacfef1..5d86c8fddd3 100644
--- a/access/Concepts/Miscellaneous/cannot-perform-join-group-sort-or-indexed-restriction-a-value-being-searched-or.md
+++ b/access/Concepts/Miscellaneous/cannot-perform-join-group-sort-or-indexed-restriction-a-value-being-searched-or.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The maximum combined length of fields used to join, group, or sort is 255 bytes. Reduce the number of fields in your join, group, or sort, or use shorter data types and field sizes for the fields.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-perform-this-operation-features-in-this-version-are-not-available-in-data.md b/access/Concepts/Miscellaneous/cannot-perform-this-operation-features-in-this-version-are-not-available-in-data.md
index cd3511b8ec9..bdea4b93263 100644
--- a/access/Concepts/Miscellaneous/cannot-perform-this-operation-features-in-this-version-are-not-available-in-data.md
+++ b/access/Concepts/Miscellaneous/cannot-perform-this-operation-features-in-this-version-are-not-available-in-data.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The database was stored in an earlier version of the Microsoft Access database engine that does not support this feature. Either the database needs to be converted to the latest file format or this particular operation needs to be revised to avoid using the unsupported feature.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-perform-this-operationerror-3032.md b/access/Concepts/Miscellaneous/cannot-perform-this-operationerror-3032.md
index be1579b3b47..567ebfb0572 100644
--- a/access/Concepts/Miscellaneous/cannot-perform-this-operationerror-3032.md
+++ b/access/Concepts/Miscellaneous/cannot-perform-this-operationerror-3032.md
@@ -25,9 +25,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-place-this-validation-expression-on-this-fielderror-3313.md b/access/Concepts/Miscellaneous/cannot-place-this-validation-expression-on-this-fielderror-3313.md
index 37538f692e7..6d5dc8b3c91 100644
--- a/access/Concepts/Miscellaneous/cannot-place-this-validation-expression-on-this-fielderror-3313.md
+++ b/access/Concepts/Miscellaneous/cannot-place-this-validation-expression-on-this-fielderror-3313.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You are trying to set validation properties on a field (such as an AutoNumber or OLE Object field) that does not allow this type of property. Use a different field to validate data or, if you have not added data to the table, redefine the data type for the field.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-populate-the-replica-or-change-the-replica-s-filter-because-the-replica-h.md b/access/Concepts/Miscellaneous/cannot-populate-the-replica-or-change-the-replica-s-filter-because-the-replica-h.md
index 875c0975623..d00ca6b1db3 100644
--- a/access/Concepts/Miscellaneous/cannot-populate-the-replica-or-change-the-replica-s-filter-because-the-replica-h.md
+++ b/access/Concepts/Miscellaneous/cannot-populate-the-replica-or-change-the-replica-s-filter-because-the-replica-h.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You are attempting to change a partial replica's filter or populate a partial replica, and that replica has conflicts or data errors. You need to resolve the conflicts or errors before proceeding. This prevents inadvertent loss of conflict information and ensures that errors are corrected properly.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-repeat-table-name-name-in-from-clauseerror-3074.md b/access/Concepts/Miscellaneous/cannot-repeat-table-name-name-in-from-clauseerror-3074.md
index 2c8d92305ef..d0c29c81232 100644
--- a/access/Concepts/Miscellaneous/cannot-repeat-table-name-name-in-from-clauseerror-3074.md
+++ b/access/Concepts/Miscellaneous/cannot-repeat-table-name-name-in-from-clauseerror-3074.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You cannot list the table name more than once. Remove the extra occurrences of the table name or use an alias. If you are trying to join a table to itself, use an alias to change the second reference to the table.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-replicate-the-table-the-number-of-columns-exceeds-the-maximum-allowederro.md b/access/Concepts/Miscellaneous/cannot-replicate-the-table-the-number-of-columns-exceeds-the-maximum-allowederro.md
index d90c46d973d..90e5501bf76 100644
--- a/access/Concepts/Miscellaneous/cannot-replicate-the-table-the-number-of-columns-exceeds-the-maximum-allowederro.md
+++ b/access/Concepts/Miscellaneous/cannot-replicate-the-table-the-number-of-columns-exceeds-the-maximum-allowederro.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The table has exceeded the maximum number of columns allowed. If the table has less than 251 columns, compacting the database may retrieve any available columns that are still counting toward the limit.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-retrieve-the-full-path-information-for-a-member-of-the-replica-seterror-3.md b/access/Concepts/Miscellaneous/cannot-retrieve-the-full-path-information-for-a-member-of-the-replica-seterror-3.md
index edb68cbb950..110c5dd7f9f 100644
--- a/access/Concepts/Miscellaneous/cannot-retrieve-the-full-path-information-for-a-member-of-the-replica-seterror-3.md
+++ b/access/Concepts/Miscellaneous/cannot-retrieve-the-full-path-information-for-a-member-of-the-replica-seterror-3.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected warning. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-save-property-property-is-a-schema-propertyerror-3394.md b/access/Concepts/Miscellaneous/cannot-save-property-property-is-a-schema-propertyerror-3394.md
index 2dd49f39d82..43f23c64734 100644
--- a/access/Concepts/Miscellaneous/cannot-save-property-property-is-a-schema-propertyerror-3394.md
+++ b/access/Concepts/Miscellaneous/cannot-save-property-property-is-a-schema-propertyerror-3394.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to set or change a schema property. When you create a new schema property, specify **True** as the fourth argument to the **CreateProperty** method in order to set or delete this property.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-set-field-name-in-join-key-to-nullerror-3100.md b/access/Concepts/Miscellaneous/cannot-set-field-name-in-join-key-to-nullerror-3100.md
index b2a7a550449..afb7d34e45f 100644
--- a/access/Concepts/Miscellaneous/cannot-set-field-name-in-join-key-to-nullerror-3100.md
+++ b/access/Concepts/Miscellaneous/cannot-set-field-name-in-join-key-to-nullerror-3100.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You have a join, and you tried to set a field on either side of the join to a **Null** value. Either select different fields or enter data in the fields, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-set-multiple-null-not-null-attributeserror-3806.md b/access/Concepts/Miscellaneous/cannot-set-multiple-null-not-null-attributeserror-3806.md
index 9eccb74ff1e..cb56f9fedc4 100644
--- a/access/Concepts/Miscellaneous/cannot-set-multiple-null-not-null-attributeserror-3806.md
+++ b/access/Concepts/Miscellaneous/cannot-set-multiple-null-not-null-attributeserror-3806.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for more information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-set-the-specified-registry-parameter-for-the-synchronizererror-3493.md b/access/Concepts/Miscellaneous/cannot-set-the-specified-registry-parameter-for-the-synchronizererror-3493.md
index 74310775f17..17e0a7f1a31 100644
--- a/access/Concepts/Miscellaneous/cannot-set-the-specified-registry-parameter-for-the-synchronizererror-3493.md
+++ b/access/Concepts/Miscellaneous/cannot-set-the-specified-registry-parameter-for-the-synchronizererror-3493.md
@@ -28,9 +28,9 @@ You need to reconfigure the Synchronizer on your computer.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-set-this-property-for-remote-objectserror-3365.md b/access/Concepts/Miscellaneous/cannot-set-this-property-for-remote-objectserror-3365.md
index df82b6711ca..6ad05441e12 100644
--- a/access/Concepts/Miscellaneous/cannot-set-this-property-for-remote-objectserror-3365.md
+++ b/access/Concepts/Miscellaneous/cannot-set-this-property-for-remote-objectserror-3365.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This property is not available for objects associated with ODBC databases.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-set-this-property-once-the-object-is-part-of-a-collectionerror-3268.md b/access/Concepts/Miscellaneous/cannot-set-this-property-once-the-object-is-part-of-a-collectionerror-3268.md
index 5eea9403fa7..f886c58fa27 100644
--- a/access/Concepts/Miscellaneous/cannot-set-this-property-once-the-object-is-part-of-a-collectionerror-3268.md
+++ b/access/Concepts/Miscellaneous/cannot-set-this-property-once-the-object-is-part-of-a-collectionerror-3268.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
An attempt was made to change the value of a property of an object ( **TableDef**, **Field**, and so on) that is already appended to a collection.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-set-valueerror-2448.md b/access/Concepts/Miscellaneous/cannot-set-valueerror-2448.md
index c04c5927be0..25e948ab98d 100644
--- a/access/Concepts/Miscellaneous/cannot-set-valueerror-2448.md
+++ b/access/Concepts/Miscellaneous/cannot-set-valueerror-2448.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You are trying to assign a value to an object that is read-only or does not have a value.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-sort-on-memo-or-ole-object-clauseerror-3117.md b/access/Concepts/Miscellaneous/cannot-sort-on-memo-or-ole-object-clauseerror-3117.md
index 0c0679fd068..9daa5580208 100644
--- a/access/Concepts/Miscellaneous/cannot-sort-on-memo-or-ole-object-clauseerror-3117.md
+++ b/access/Concepts/Miscellaneous/cannot-sort-on-memo-or-ole-object-clauseerror-3117.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The ORDER BY clause of an SQL statement cannot include Memo or OLE Object fields.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-specify-fixed-column-heading-value-in-a-crosstab-query-more-than-onceerro.md b/access/Concepts/Miscellaneous/cannot-specify-fixed-column-heading-value-in-a-crosstab-query-more-than-onceerro.md
index c0e00f5d46d..76d2a502aca 100644
--- a/access/Concepts/Miscellaneous/cannot-specify-fixed-column-heading-value-in-a-crosstab-query-more-than-onceerro.md
+++ b/access/Concepts/Miscellaneous/cannot-specify-fixed-column-heading-value-in-a-crosstab-query-more-than-onceerro.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
When you create a crosstab query with fixed column headings, the values you specify must be unique. Change one or more of the duplicate column headings, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-start-your-application-the-workgroup-information-file-is-missing-or-opene.md b/access/Concepts/Miscellaneous/cannot-start-your-application-the-workgroup-information-file-is-missing-or-opene.md
index 874c792356d..3a74333feb7 100644
--- a/access/Concepts/Miscellaneous/cannot-start-your-application-the-workgroup-information-file-is-missing-or-opene.md
+++ b/access/Concepts/Miscellaneous/cannot-start-your-application-the-workgroup-information-file-is-missing-or-opene.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
To ensure referential integrity in databases created by the Microsoft Access database engine, your application must read the database's System.mdw file. Make sure the file is in the location specified in the **SystemDB** value in the Windows Registry.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-synchronize-a-partial-replica-with-another-partial-replicaerror-3648.md b/access/Concepts/Miscellaneous/cannot-synchronize-a-partial-replica-with-another-partial-replicaerror-3648.md
index caff9786d21..368bd95a34e 100644
--- a/access/Concepts/Miscellaneous/cannot-synchronize-a-partial-replica-with-another-partial-replicaerror-3648.md
+++ b/access/Concepts/Miscellaneous/cannot-synchronize-a-partial-replica-with-another-partial-replicaerror-3648.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The database you are trying to synchronize with is a partial replica. You cannot synchronize a partial replica with another partial replica, because the other partial replica may not contain all records that satisfy your partial replica's filter.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-update-database-or-object-is-read-onlyerror-3027.md b/access/Concepts/Miscellaneous/cannot-update-database-or-object-is-read-onlyerror-3027.md
index 05720b07a59..35ad3efb899 100644
--- a/access/Concepts/Miscellaneous/cannot-update-database-or-object-is-read-onlyerror-3027.md
+++ b/access/Concepts/Miscellaneous/cannot-update-database-or-object-is-read-onlyerror-3027.md
@@ -35,9 +35,9 @@ The database is read-only for one of these reasons:
Close the database, resolve the read-only condition, and then reopen the file for read/write access.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-update-field-namefield-not-updatableerror-3113.md b/access/Concepts/Miscellaneous/cannot-update-field-namefield-not-updatableerror-3113.md
index 757f8b760ed..ada3cd5b7fe 100644
--- a/access/Concepts/Miscellaneous/cannot-update-field-namefield-not-updatableerror-3113.md
+++ b/access/Concepts/Miscellaneous/cannot-update-field-namefield-not-updatableerror-3113.md
@@ -25,9 +25,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-update-replication-system-columnerror-3577.md b/access/Concepts/Miscellaneous/cannot-update-replication-system-columnerror-3577.md
index 4e7ba154510..0000f069cdf 100644
--- a/access/Concepts/Miscellaneous/cannot-update-replication-system-columnerror-3577.md
+++ b/access/Concepts/Miscellaneous/cannot-update-replication-system-columnerror-3577.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The column you are attempting to update is a system column and is read-only.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-use-having-clause-in-transform-statementerror-3092.md b/access/Concepts/Miscellaneous/cannot-use-having-clause-in-transform-statementerror-3092.md
index 1d735c16b8c..0d79031a381 100644
--- a/access/Concepts/Miscellaneous/cannot-use-having-clause-in-transform-statementerror-3092.md
+++ b/access/Concepts/Miscellaneous/cannot-use-having-clause-in-transform-statementerror-3092.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
If you want to specify selection criteria, use a WHERE clause.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-use-in-crosstab-queryerror-3123.md b/access/Concepts/Miscellaneous/cannot-use-in-crosstab-queryerror-3123.md
index 6b44dd46614..14cf4d5bcb4 100644
--- a/access/Concepts/Miscellaneous/cannot-use-in-crosstab-queryerror-3123.md
+++ b/access/Concepts/Miscellaneous/cannot-use-in-crosstab-queryerror-3123.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to execute a query that groups or totals fields selected with an asterisk ( * ). Choose specific fields, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-use-internal-report-queryerror-3083.md b/access/Concepts/Miscellaneous/cannot-use-internal-report-queryerror-3083.md
index 62f312c2438..77eed905db5 100644
--- a/access/Concepts/Miscellaneous/cannot-use-internal-report-queryerror-3083.md
+++ b/access/Concepts/Miscellaneous/cannot-use-internal-report-queryerror-3083.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to use an SQL statement that includes an explicit reference to a disallowed internal report query. Remove the invalid reference and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-use-memo-or-ole-object-field-name-in-the-select-clause-of-a-union-queryer.md b/access/Concepts/Miscellaneous/cannot-use-memo-or-ole-object-field-name-in-the-select-clause-of-a-union-queryer.md
index 3530cbe1964..06b1cd3abf5 100644
--- a/access/Concepts/Miscellaneous/cannot-use-memo-or-ole-object-field-name-in-the-select-clause-of-a-union-queryer.md
+++ b/access/Concepts/Miscellaneous/cannot-use-memo-or-ole-object-field-name-in-the-select-clause-of-a-union-queryer.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
A field you specified in the SELECT part of a union query in the SQL statement for the query has a field data type of Memo or OLE object. You cannot specify a field of either of these types.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/cannot-use-the-crosstab-of-a-non-fixed-column-as-a-subqueryerror-3637.md b/access/Concepts/Miscellaneous/cannot-use-the-crosstab-of-a-non-fixed-column-as-a-subqueryerror-3637.md
index 50a60a61b6b..250bb45e08d 100644
--- a/access/Concepts/Miscellaneous/cannot-use-the-crosstab-of-a-non-fixed-column-as-a-subqueryerror-3637.md
+++ b/access/Concepts/Miscellaneous/cannot-use-the-crosstab-of-a-non-fixed-column-as-a-subqueryerror-3637.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You have attempted to sort on a variable column crosstab. You should save the results of the query, and then sort the results with the Sort Ascending or Sort Descending button.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/catalog-example-vb.md b/access/Concepts/Miscellaneous/catalog-example-vb.md
index 29f395d0b82..baf11c9f309 100644
--- a/access/Concepts/Miscellaneous/catalog-example-vb.md
+++ b/access/Concepts/Miscellaneous/catalog-example-vb.md
@@ -411,9 +411,9 @@ End Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/cellset-example-vb.md b/access/Concepts/Miscellaneous/cellset-example-vb.md
index 2d1f17d825c..2124dc55cf5 100644
--- a/access/Concepts/Miscellaneous/cellset-example-vb.md
+++ b/access/Concepts/Miscellaneous/cellset-example-vb.md
@@ -110,9 +110,9 @@ End Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/characters-found-after-end-of-sql-statementerror-3142.md b/access/Concepts/Miscellaneous/characters-found-after-end-of-sql-statementerror-3142.md
index cd48883fd83..858f1a97ed8 100644
--- a/access/Concepts/Miscellaneous/characters-found-after-end-of-sql-statementerror-3142.md
+++ b/access/Concepts/Miscellaneous/characters-found-after-end-of-sql-statementerror-3142.md
@@ -19,9 +19,9 @@ You entered data after using a semicolon (;) in the SQL statement. For example,
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/check-constraint-name-already-existserror-3756.md b/access/Concepts/Miscellaneous/check-constraint-name-already-existserror-3756.md
index f09dc809bd9..a044f40fcfc 100644
--- a/access/Concepts/Miscellaneous/check-constraint-name-already-existserror-3756.md
+++ b/access/Concepts/Miscellaneous/check-constraint-name-already-existserror-3756.md
@@ -19,9 +19,9 @@ This error occurs when, using the ALTER TABLE ALTER COLUMN syntax, you try to us
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/check-constraint-name-does-not-existerror-3755.md b/access/Concepts/Miscellaneous/check-constraint-name-does-not-existerror-3755.md
index be4a7788891..ef42cc19399 100644
--- a/access/Concepts/Miscellaneous/check-constraint-name-does-not-existerror-3755.md
+++ b/access/Concepts/Miscellaneous/check-constraint-name-does-not-existerror-3755.md
@@ -19,9 +19,9 @@ This error occurs when, using the ALTER TABLE ALTER COLUMN syntax, you try to DR
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/check-constraints-are-not-allowed-in-replicable-databaseserror-3798.md b/access/Concepts/Miscellaneous/check-constraints-are-not-allowed-in-replicable-databaseserror-3798.md
index 7772bccb829..314c7ab79c9 100644
--- a/access/Concepts/Miscellaneous/check-constraints-are-not-allowed-in-replicable-databaseserror-3798.md
+++ b/access/Concepts/Miscellaneous/check-constraints-are-not-allowed-in-replicable-databaseserror-3798.md
@@ -19,9 +19,9 @@ Remove any CHECK constraint prior to making the database or table replicable.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/check-constraints-on-table-name-will-not-be-transferred-to-this-table-check-cons.md b/access/Concepts/Miscellaneous/check-constraints-on-table-name-will-not-be-transferred-to-this-table-check-cons.md
index 6a660492063..f35f7672264 100644
--- a/access/Concepts/Miscellaneous/check-constraints-on-table-name-will-not-be-transferred-to-this-table-check-cons.md
+++ b/access/Concepts/Miscellaneous/check-constraints-on-table-name-will-not-be-transferred-to-this-table-check-cons.md
@@ -19,9 +19,9 @@ This is an unexpected error. Please contact Microsoft Product Support Services f
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/circular-reference-caused-by-alias-name-in-query-definition-s-select-listerror-3.md b/access/Concepts/Miscellaneous/circular-reference-caused-by-alias-name-in-query-definition-s-select-listerror-3.md
index b0e37cc6dbb..f53fa13d360 100644
--- a/access/Concepts/Miscellaneous/circular-reference-caused-by-alias-name-in-query-definition-s-select-listerror-3.md
+++ b/access/Concepts/Miscellaneous/circular-reference-caused-by-alias-name-in-query-definition-s-select-listerror-3.md
@@ -36,9 +36,9 @@ SELECT week1 + week2 as hours, hours + overtime as gross, gross + ytdpay as week
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/circular-reference-caused-by-query-referenceerror-3102.md b/access/Concepts/Miscellaneous/circular-reference-caused-by-query-referenceerror-3102.md
index cb5f985327d..cad160955aa 100644
--- a/access/Concepts/Miscellaneous/circular-reference-caused-by-query-referenceerror-3102.md
+++ b/access/Concepts/Miscellaneous/circular-reference-caused-by-query-referenceerror-3102.md
@@ -38,9 +38,9 @@ SELECT * FROM Query1;
Redesign the queries to eliminate the dependency.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/client-has-asked-the-synchronizer-to-terminate-operationerror-3535.md b/access/Concepts/Miscellaneous/client-has-asked-the-synchronizer-to-terminate-operationerror-3535.md
index ac0b91f7434..2036c61b544 100644
--- a/access/Concepts/Miscellaneous/client-has-asked-the-synchronizer-to-terminate-operationerror-3535.md
+++ b/access/Concepts/Miscellaneous/client-has-asked-the-synchronizer-to-terminate-operationerror-3535.md
@@ -19,9 +19,9 @@ This is an unexpected error. Please contact Microsoft Product Support Services f
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/collections-ado-for-visual-c-plus-plus-syntax.md b/access/Concepts/Miscellaneous/collections-ado-for-visual-c-plus-plus-syntax.md
index 14bee1b0b0e..838ee07c9b7 100644
--- a/access/Concepts/Miscellaneous/collections-ado-for-visual-c-plus-plus-syntax.md
+++ b/access/Concepts/Miscellaneous/collections-ado-for-visual-c-plus-plus-syntax.md
@@ -20,20 +20,20 @@ ms.date: 06/08/2017
**Parameters**
**Methods**
-[Append](http://msdn.microsoft.com/library/cca133af-2b95-877d-0488-0d99631623f2%28Office.15%29.aspx)(IDispatch * _Object_ )[Delete](http://msdn.microsoft.com/library/03ffc24d-fea2-30fa-c8e9-43eb524fd51f%28Office.15%29.aspx)(VARIANT _Index_ )[Refresh](http://msdn.microsoft.com/library/f1c8829f-9c7d-12b6-7470-727ff38d663e%28Office.15%29.aspx)(void)
+[Append](http://msdn.microsoft.com/library/cca133af-2b95-877d-0488-0d99631623f2%28Office.15%29.aspx)(IDispatch * _Object_ ) [Delete](http://msdn.microsoft.com/library/03ffc24d-fea2-30fa-c8e9-43eb524fd51f%28Office.15%29.aspx)(VARIANT _Index_ ) [Refresh](http://msdn.microsoft.com/library/f1c8829f-9c7d-12b6-7470-727ff38d663e%28Office.15%29.aspx)(void)
**Properties**
-[get_Count](http://msdn.microsoft.com/library/b59f9581-ffd1-471d-44fa-3c1bb812e140%28Office.15%29.aspx)(long * _c_ )[get_Item](http://msdn.microsoft.com/library/793c305f-0e5b-a529-e21f-b7ab0843ed49%28Office.15%29.aspx)(VARIANT _Index,_ _ADOParameter ** _ppvObject_ )
+[get_Count](http://msdn.microsoft.com/library/b59f9581-ffd1-471d-44fa-3c1bb812e140%28Office.15%29.aspx)(long * _c_ ) [get_Item](http://msdn.microsoft.com/library/793c305f-0e5b-a529-e21f-b7ab0843ed49%28Office.15%29.aspx)(VARIANT _Index,_ _ADOParameter ** _ppvObject_ )
## Fields
**Methods**
-[Append](http://msdn.microsoft.com/library/cca133af-2b95-877d-0488-0d99631623f2%28Office.15%29.aspx)(BSTR _bstrName,_ DataTypeEnum _Type,_ long _DefinedSize,_ FieldAttributeEnum _Attrib_ )[Delete](http://msdn.microsoft.com/library/adc66365-703f-4491-fc5b-dbc9bca2ac53%28Office.15%29.aspx)(VARIANT _Index_ )[Refresh](http://msdn.microsoft.com/library/f1c8829f-9c7d-12b6-7470-727ff38d663e%28Office.15%29.aspx)(void)
+[Append](http://msdn.microsoft.com/library/cca133af-2b95-877d-0488-0d99631623f2%28Office.15%29.aspx)(BSTR _bstrName,_ DataTypeEnum _Type,_ long _DefinedSize,_ FieldAttributeEnum _Attrib_ ) [Delete](http://msdn.microsoft.com/library/adc66365-703f-4491-fc5b-dbc9bca2ac53%28Office.15%29.aspx)(VARIANT _Index_ ) [Refresh](http://msdn.microsoft.com/library/f1c8829f-9c7d-12b6-7470-727ff38d663e%28Office.15%29.aspx)(void)
**Properties**
-[get_Count](http://msdn.microsoft.com/library/b59f9581-ffd1-471d-44fa-3c1bb812e140%28Office.15%29.aspx)(long * _c_ )[get_Item](http://msdn.microsoft.com/library/793c305f-0e5b-a529-e21f-b7ab0843ed49%28Office.15%29.aspx)(VARIANT _Index,_ ADOField ** _ppvObject_ )
+[get_Count](http://msdn.microsoft.com/library/b59f9581-ffd1-471d-44fa-3c1bb812e140%28Office.15%29.aspx)(long * _c_ ) [get_Item](http://msdn.microsoft.com/library/793c305f-0e5b-a529-e21f-b7ab0843ed49%28Office.15%29.aspx)(VARIANT _Index,_ ADOField ** _ppvObject_ )
## Errors
@@ -41,11 +41,11 @@ ms.date: 06/08/2017
**Methods**
-[Clear](http://msdn.microsoft.com/library/5d51f42c-147b-1fcf-d05b-123e5714ecb7%28Office.15%29.aspx)(void)[Refresh](http://msdn.microsoft.com/library/f1c8829f-9c7d-12b6-7470-727ff38d663e%28Office.15%29.aspx)(void)
+[Clear](http://msdn.microsoft.com/library/5d51f42c-147b-1fcf-d05b-123e5714ecb7%28Office.15%29.aspx)(void) [Refresh](http://msdn.microsoft.com/library/f1c8829f-9c7d-12b6-7470-727ff38d663e%28Office.15%29.aspx)(void)
**Properties**
-[get_Count](http://msdn.microsoft.com/library/b59f9581-ffd1-471d-44fa-3c1bb812e140%28Office.15%29.aspx)(long * _c_ )[get_Item](http://msdn.microsoft.com/library/793c305f-0e5b-a529-e21f-b7ab0843ed49%28Office.15%29.aspx)(VARIANT _Index,_ ADOError ** _ppvObject_ )
+[get_Count](http://msdn.microsoft.com/library/b59f9581-ffd1-471d-44fa-3c1bb812e140%28Office.15%29.aspx)(long * _c_ ) [get_Item](http://msdn.microsoft.com/library/793c305f-0e5b-a529-e21f-b7ab0843ed49%28Office.15%29.aspx)(VARIANT _Index,_ ADOError ** _ppvObject_ )
## Properties
@@ -57,13 +57,13 @@ ms.date: 06/08/2017
**Properties**
-[get_Count](http://msdn.microsoft.com/library/b59f9581-ffd1-471d-44fa-3c1bb812e140%28Office.15%29.aspx)(long * _c_ )[get_Item](http://msdn.microsoft.com/library/793c305f-0e5b-a529-e21f-b7ab0843ed49%28Office.15%29.aspx)(VARIANT _Index_, ADOProperty ** _ppvObject_ )
+[get_Count](http://msdn.microsoft.com/library/b59f9581-ffd1-471d-44fa-3c1bb812e140%28Office.15%29.aspx)(long * _c_ ) [get_Item](http://msdn.microsoft.com/library/793c305f-0e5b-a529-e21f-b7ab0843ed49%28Office.15%29.aspx)(VARIANT _Index_, ADOProperty ** _ppvObject_ )
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/collections-ado-wfc-syntax.md b/access/Concepts/Miscellaneous/collections-ado-wfc-syntax.md
index b3efd12f902..c85673a3b45 100644
--- a/access/Concepts/Miscellaneous/collections-ado-wfc-syntax.md
+++ b/access/Concepts/Miscellaneous/collections-ado-wfc-syntax.md
@@ -73,9 +73,9 @@ public int Invalid DDUE based on source, error:link not allowed in code, link fi
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/collections-visual-c-plus-plus-syntax-index-with-import.md b/access/Concepts/Miscellaneous/collections-visual-c-plus-plus-syntax-index-with-import.md
index f32d908779a..ee8e7f6cd1c 100644
--- a/access/Concepts/Miscellaneous/collections-visual-c-plus-plus-syntax-index-with-import.md
+++ b/access/Concepts/Miscellaneous/collections-visual-c-plus-plus-syntax-index-with-import.md
@@ -107,9 +107,9 @@ __declspec(property(get=GetItem)) PropertyPtr Invalid DDUE based on source, erro
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/color-builder.md b/access/Concepts/Miscellaneous/color-builder.md
index dc3f355cc02..437179e61d0 100644
--- a/access/Concepts/Miscellaneous/color-builder.md
+++ b/access/Concepts/Miscellaneous/color-builder.md
@@ -21,9 +21,9 @@ To run this builder, click the **Build** button next to the appropriate propert
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/command-ado-for-visual-c-plus-plus-syntax.md b/access/Concepts/Miscellaneous/command-ado-for-visual-c-plus-plus-syntax.md
index de234979295..e48265be62c 100644
--- a/access/Concepts/Miscellaneous/command-ado-for-visual-c-plus-plus-syntax.md
+++ b/access/Concepts/Miscellaneous/command-ado-for-visual-c-plus-plus-syntax.md
@@ -14,15 +14,15 @@ ms.date: 06/08/2017
**Methods**
-[Cancel](http://msdn.microsoft.com/library/747edc04-a5cc-3631-2d0b-82e7e41a76b7%28Office.15%29.aspx)(void)[CreateParameter](http://msdn.microsoft.com/library/cf080a0b-75d2-dcdf-2715-10af147358e9%28Office.15%29.aspx)(BSTR _Name,_ DataTypeEnum _Type,_ ParameterDirectionEnum _Direction,_ long _Size,_ VARIANT _Value,_ _ADOParameter ** _ppiprm_ )[Execute](execute-method-ado-command.md)(VARIANT * _RecordsAffected,_ VARIANT * _Parameters,_ long _Options,_ _ADORecordset ** _ppirs_ )
+[Cancel](http://msdn.microsoft.com/library/747edc04-a5cc-3631-2d0b-82e7e41a76b7%28Office.15%29.aspx)(void) [CreateParameter](http://msdn.microsoft.com/library/cf080a0b-75d2-dcdf-2715-10af147358e9%28Office.15%29.aspx)(BSTR _Name,_ DataTypeEnum _Type,_ ParameterDirectionEnum _Direction,_ long _Size,_ VARIANT _Value,_ _ADOParameter ** _ppiprm_ ) [Execute](execute-method-ado-command.md)(VARIANT * _RecordsAffected,_ VARIANT * _Parameters,_ long _Options,_ _ADORecordset ** _ppirs_ )
**Properties**
-[get_ActiveConnection](http://msdn.microsoft.com/library/5501b2d7-b62c-5fff-1edd-2b7efb3f8c4a%28Office.15%29.aspx)(_ADOConnection ** _ppvObject_ ) **put_ActiveConnection** (VARIANT _vConn_ ) **putref_ActiveConnection** (_ADOConnection * _pCon_ )[get_CommandText](http://msdn.microsoft.com/library/0debec1c-068f-0aea-fce8-e61aa39c5907%28Office.15%29.aspx)(BSTR * _pbstr_ ) **put_CommandText** (BSTR _bstr_ )[get_CommandTimeout](http://msdn.microsoft.com/library/a0b6209c-9feb-08ae-002a-15d1d20734a8%28Office.15%29.aspx)(LONG * _pl_ ) **put_CommandTimeout** (LONG _Timeout_ )[get_CommandType](http://msdn.microsoft.com/library/c8d4fc1c-502b-11f3-af9d-605a03b6f056%28Office.15%29.aspx)(CommandTypeEnum * _plCmdType_ ) **put_CommandType** (CommandTypeEnum _lCmdType_ )[get_Name](http://msdn.microsoft.com/library/4b19bd08-ac3c-86f0-471d-06a37a0d4f89%28Office.15%29.aspx)(BSTR * _pbstrName_ ) **put_Name** (BSTR _bstrName_ )[get_Prepared](http://msdn.microsoft.com/library/33becda2-faab-5000-8904-6ffd8c5805f2%28Office.15%29.aspx)(VARIANT_BOOL * _pfPrepared_ ) **put_Prepared** (VARIANT_BOOL _fPrepared_ )[get_State](http://msdn.microsoft.com/library/ade0a50c-e2d8-23ac-4ea9-b012fedcd5db%28Office.15%29.aspx)(LONG * _plObjState_ )[get_Parameters](http://msdn.microsoft.com/library/554387c3-3572-5391-3b24-c7d3443844cd%28Office.15%29.aspx)(ADOParameters ** _ppvObject_ )
+[get_ActiveConnection](http://msdn.microsoft.com/library/5501b2d7-b62c-5fff-1edd-2b7efb3f8c4a%28Office.15%29.aspx)(_ADOConnection ** _ppvObject_ ) **put_ActiveConnection** (VARIANT _vConn_ ) **putref_ActiveConnection** (_ADOConnection * _pCon_ ) [get_CommandText](http://msdn.microsoft.com/library/0debec1c-068f-0aea-fce8-e61aa39c5907%28Office.15%29.aspx)(BSTR * _pbstr_ ) **put_CommandText** (BSTR _bstr_ ) [get_CommandTimeout](http://msdn.microsoft.com/library/a0b6209c-9feb-08ae-002a-15d1d20734a8%28Office.15%29.aspx)(LONG * _pl_ ) **put_CommandTimeout** (LONG _Timeout_ ) [get_CommandType](http://msdn.microsoft.com/library/c8d4fc1c-502b-11f3-af9d-605a03b6f056%28Office.15%29.aspx)(CommandTypeEnum * _plCmdType_ ) **put_CommandType** (CommandTypeEnum _lCmdType_ ) [get_Name](http://msdn.microsoft.com/library/4b19bd08-ac3c-86f0-471d-06a37a0d4f89%28Office.15%29.aspx)(BSTR * _pbstrName_ ) **put_Name** (BSTR _bstrName_ ) [get_Prepared](http://msdn.microsoft.com/library/33becda2-faab-5000-8904-6ffd8c5805f2%28Office.15%29.aspx)(VARIANT_BOOL * _pfPrepared_ ) **put_Prepared** (VARIANT_BOOL _fPrepared_ ) [get_State](http://msdn.microsoft.com/library/ade0a50c-e2d8-23ac-4ea9-b012fedcd5db%28Office.15%29.aspx)(LONG * _plObjState_ ) [get_Parameters](http://msdn.microsoft.com/library/554387c3-3572-5391-3b24-c7d3443844cd%28Office.15%29.aspx)(ADOParameters ** _ppvObject_ )
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/command-ado-wfc-syntax.md b/access/Concepts/Miscellaneous/command-ado-wfc-syntax.md
index a856b3dd633..07a35e238a2 100644
--- a/access/Concepts/Miscellaneous/command-ado-wfc-syntax.md
+++ b/access/Concepts/Miscellaneous/command-ado-wfc-syntax.md
@@ -60,9 +60,9 @@ public AdoProperties Invalid DDUE based on source, error:link not allowed in cod
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/command-visual-c-plus-plus-syntax-index-with-import.md b/access/Concepts/Miscellaneous/command-visual-c-plus-plus-syntax-index-with-import.md
index 65121956b69..0e24d4f9190 100644
--- a/access/Concepts/Miscellaneous/command-visual-c-plus-plus-syntax-index-with-import.md
+++ b/access/Concepts/Miscellaneous/command-visual-c-plus-plus-syntax-index-with-import.md
@@ -68,9 +68,9 @@ __declspec(property(get=GetState)) long Invalid DDUE based on source, error:link
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/concurrent-schema-changes-caused-the-create-replica-operation-to-fail-try-againe.md b/access/Concepts/Miscellaneous/concurrent-schema-changes-caused-the-create-replica-operation-to-fail-try-againe.md
index 0fce8010c0c..f375e3d1814 100644
--- a/access/Concepts/Miscellaneous/concurrent-schema-changes-caused-the-create-replica-operation-to-fail-try-againe.md
+++ b/access/Concepts/Miscellaneous/concurrent-schema-changes-caused-the-create-replica-operation-to-fail-try-againe.md
@@ -19,9 +19,9 @@ During the create replica operation new objects that did not allow the operation
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/conflict-tables-cannot-be-renamederror-3769.md b/access/Concepts/Miscellaneous/conflict-tables-cannot-be-renamederror-3769.md
index 48af0410072..b224bbf6bde 100644
--- a/access/Concepts/Miscellaneous/conflict-tables-cannot-be-renamederror-3769.md
+++ b/access/Concepts/Miscellaneous/conflict-tables-cannot-be-renamederror-3769.md
@@ -19,9 +19,9 @@ A conflict table is a system table that cannot be renamed. To remove conflicts f
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/connect-property-example-vbscript.md b/access/Concepts/Miscellaneous/connect-property-example-vbscript.md
index 858bc75b753..6858694f6c1 100644
--- a/access/Concepts/Miscellaneous/connect-property-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/connect-property-example-vbscript.md
@@ -68,9 +68,9 @@ End Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/connection-ado-for-visual-c-plus-plus-syntax.md b/access/Concepts/Miscellaneous/connection-ado-for-visual-c-plus-plus-syntax.md
index 274ddc9ed1a..b40523ef1ce 100644
--- a/access/Concepts/Miscellaneous/connection-ado-for-visual-c-plus-plus-syntax.md
+++ b/access/Concepts/Miscellaneous/connection-ado-for-visual-c-plus-plus-syntax.md
@@ -14,17 +14,17 @@ ms.date: 06/08/2017
**Methods**
-[BeginTrans](http://msdn.microsoft.com/library/9a0415f0-9424-8d1c-4779-92e932292d46%28Office.15%29.aspx)(long * _TransactionLevel_ )[CommitTrans](http://msdn.microsoft.com/library/9a0415f0-9424-8d1c-4779-92e932292d46%28Office.15%29.aspx)(void)[RollbackTrans](http://msdn.microsoft.com/library/9a0415f0-9424-8d1c-4779-92e932292d46%28Office.15%29.aspx)(void)[Cancel](http://msdn.microsoft.com/library/747edc04-a5cc-3631-2d0b-82e7e41a76b7%28Office.15%29.aspx)(void)[Close](http://msdn.microsoft.com/library/26a7cced-ebeb-70be-f5de-96a35711bc37%28Office.15%29.aspx)(void)[Execute](execute-method-ado-connection.md)(BSTR _CommandText,_ VARIANT * _RecordsAffected,_ long _Options,_ _ADORecordset ** _ppiRset_ )[Open](http://msdn.microsoft.com/library/1adaa17d-dfe1-22e0-3415-720516d138f8%28Office.15%29.aspx)(BSTR _ConnectionString,_ BSTR _UserID,_ BSTR _Password,_ long _Options_ )[OpenSchema](http://msdn.microsoft.com/library/57771163-a14e-207a-2942-849acb79a9a1%28Office.15%29.aspx)(SchemaEnum _Schema,_ VARIANT _Restrictions,_ VARIANT _SchemaID,_ _ADORecordset ** _pprset_ )
+[BeginTrans](http://msdn.microsoft.com/library/9a0415f0-9424-8d1c-4779-92e932292d46%28Office.15%29.aspx)(long * _TransactionLevel_ ) [CommitTrans](http://msdn.microsoft.com/library/9a0415f0-9424-8d1c-4779-92e932292d46%28Office.15%29.aspx)(void) [RollbackTrans](http://msdn.microsoft.com/library/9a0415f0-9424-8d1c-4779-92e932292d46%28Office.15%29.aspx)(void) [Cancel](http://msdn.microsoft.com/library/747edc04-a5cc-3631-2d0b-82e7e41a76b7%28Office.15%29.aspx)(void) [Close](http://msdn.microsoft.com/library/26a7cced-ebeb-70be-f5de-96a35711bc37%28Office.15%29.aspx)(void) [Execute](execute-method-ado-connection.md)(BSTR _CommandText,_ VARIANT * _RecordsAffected,_ long _Options,_ _ADORecordset ** _ppiRset_ ) [Open](http://msdn.microsoft.com/library/1adaa17d-dfe1-22e0-3415-720516d138f8%28Office.15%29.aspx)(BSTR _ConnectionString,_ BSTR _UserID,_ BSTR _Password,_ long _Options_ ) [OpenSchema](http://msdn.microsoft.com/library/57771163-a14e-207a-2942-849acb79a9a1%28Office.15%29.aspx)(SchemaEnum _Schema,_ VARIANT _Restrictions,_ VARIANT _SchemaID,_ _ADORecordset ** _pprset_ )
**Properties**
-[get_Attributes](http://msdn.microsoft.com/library/4cc1f036-606e-7d4b-d270-af374e9d99fa%28Office.15%29.aspx)(long * _plAttr_ ) **put_Attributes** (long _lAttr_ )[get_CommandTimeout](http://msdn.microsoft.com/library/a0b6209c-9feb-08ae-002a-15d1d20734a8%28Office.15%29.aspx)(LONG * _plTimeout_ ) **put_CommandTimeout** (LONG _lTimeout_ )[get_ConnectionString](http://msdn.microsoft.com/library/c67a7daf-258f-d99d-6475-a4aa98d1e99d%28Office.15%29.aspx)(BSTR * _pbstr_ ) **put_ConnectionString** (BSTR _bstr_ )[get_ConnectionTimeout](http://msdn.microsoft.com/library/efc39fd8-afce-5ac0-2fff-cbb55c1a444d%28Office.15%29.aspx)(LONG * _plTimeout_ ) **put_ConnectionTimeout** (LONG _lTimeout_ )[get_CursorLocation](http://msdn.microsoft.com/library/8a048bd4-ae25-a555-1c07-14364b7e6560%28Office.15%29.aspx)(CursorLocationEnum * _plCursorLoc_ ) **put_CursorLocation** (CursorLocationEnum _lCursorLoc_ )[get_DefaultDatabase](http://msdn.microsoft.com/library/a35c5631-f9d9-e51f-950b-e52169830d94%28Office.15%29.aspx)(BSTR * _pbstr_ ) **put_DefaultDatabase** (BSTR _bstr_ )[get_IsolationLevel](http://msdn.microsoft.com/library/19461be5-c94b-4b61-ce08-7abdf702c3dc%28Office.15%29.aspx)(IsolationLevelEnum * _Level_ ) **put_IsolationLevel** (IsolationLevelEnum _Level_ )[get_Mode](http://msdn.microsoft.com/library/62086f4f-8624-16c4-dae1-a17475d1864d%28Office.15%29.aspx)(ConnectModeEnum * _plMode_ ) **put_Mode** (ConnectModeEnum _lMode_ )[get_Provider](http://msdn.microsoft.com/library/1b795f51-93d7-431c-b1fe-0db95f69a56a%28Office.15%29.aspx)(BSTR * _pbstr_ ) **put_Provider** (BSTR _Provider_ )[get_State](http://msdn.microsoft.com/library/ade0a50c-e2d8-23ac-4ea9-b012fedcd5db%28Office.15%29.aspx)(LONG * _plObjState_ )[get_Version](http://msdn.microsoft.com/library/61466895-0a6c-533c-bd93-0ab6af654f24%28Office.15%29.aspx)(BSTR * _pbstr_ )[get_Errors](http://msdn.microsoft.com/library/76c234b8-7fec-11c5-275e-864d5d880ee7%28Office.15%29.aspx)(ADOErrors ** _ppvObject_ )
+[get_Attributes](http://msdn.microsoft.com/library/4cc1f036-606e-7d4b-d270-af374e9d99fa%28Office.15%29.aspx)(long * _plAttr_ ) **put_Attributes** (long _lAttr_ ) [get_CommandTimeout](http://msdn.microsoft.com/library/a0b6209c-9feb-08ae-002a-15d1d20734a8%28Office.15%29.aspx)(LONG * _plTimeout_ ) **put_CommandTimeout** (LONG _lTimeout_ ) [get_ConnectionString](http://msdn.microsoft.com/library/c67a7daf-258f-d99d-6475-a4aa98d1e99d%28Office.15%29.aspx)(BSTR * _pbstr_ ) **put_ConnectionString** (BSTR _bstr_ ) [get_ConnectionTimeout](http://msdn.microsoft.com/library/efc39fd8-afce-5ac0-2fff-cbb55c1a444d%28Office.15%29.aspx)(LONG * _plTimeout_ ) **put_ConnectionTimeout** (LONG _lTimeout_ ) [get_CursorLocation](http://msdn.microsoft.com/library/8a048bd4-ae25-a555-1c07-14364b7e6560%28Office.15%29.aspx)(CursorLocationEnum * _plCursorLoc_ ) **put_CursorLocation** (CursorLocationEnum _lCursorLoc_ ) [get_DefaultDatabase](http://msdn.microsoft.com/library/a35c5631-f9d9-e51f-950b-e52169830d94%28Office.15%29.aspx)(BSTR * _pbstr_ ) **put_DefaultDatabase** (BSTR _bstr_ ) [get_IsolationLevel](http://msdn.microsoft.com/library/19461be5-c94b-4b61-ce08-7abdf702c3dc%28Office.15%29.aspx)(IsolationLevelEnum * _Level_ ) **put_IsolationLevel** (IsolationLevelEnum _Level_ ) [get_Mode](http://msdn.microsoft.com/library/62086f4f-8624-16c4-dae1-a17475d1864d%28Office.15%29.aspx)(ConnectModeEnum * _plMode_ ) **put_Mode** (ConnectModeEnum _lMode_ ) [get_Provider](http://msdn.microsoft.com/library/1b795f51-93d7-431c-b1fe-0db95f69a56a%28Office.15%29.aspx)(BSTR * _pbstr_ ) **put_Provider** (BSTR _Provider_ ) [get_State](http://msdn.microsoft.com/library/ade0a50c-e2d8-23ac-4ea9-b012fedcd5db%28Office.15%29.aspx)(LONG * _plObjState_ ) [get_Version](http://msdn.microsoft.com/library/61466895-0a6c-533c-bd93-0ab6af654f24%28Office.15%29.aspx)(BSTR * _pbstr_ ) [get_Errors](http://msdn.microsoft.com/library/76c234b8-7fec-11c5-275e-864d5d880ee7%28Office.15%29.aspx)(ADOErrors ** _ppvObject_ )
**Events**
-[BeginTransComplete](http://msdn.microsoft.com/library/9d0ae38e-530a-7a89-a344-f3ab401c2e35%28Office.15%29.aspx)(LONG _TransactionLevel,_ ADOError * _pError,_ EventStatusEnum * _adStatus,_ _ADOConnection * _pConnection_ )[CommitTransComplete](http://msdn.microsoft.com/library/9d0ae38e-530a-7a89-a344-f3ab401c2e35%28Office.15%29.aspx)(ADOError * _pError,_ EventStatusEnum * _adStatus,_ _ADOConnection * _pConnection_ )[ConnectComplete](http://msdn.microsoft.com/library/8ecb080b-7fc9-7565-25bd-bd57b983750d%28Office.15%29.aspx)(ADOError * _pError,_ EventStatusEnum * _adStatus,_ _ADOConnection * _pConnection_ )[Disconnect](http://msdn.microsoft.com/library/8ecb080b-7fc9-7565-25bd-bd57b983750d%28Office.15%29.aspx)(EventStatusEnum * _adStatus,_ _ADOConnection * _pConnection_ )[ExecuteComplete](http://msdn.microsoft.com/library/47317d97-e373-32f4-9438-2dff46b8d367%28Office.15%29.aspx)(LONG _RecordsAffected,_ ADOError * _pError,_ EventStatusEnum * _adStatus,_ _ADOCommand * _pCommand,_ _ADORecordset * _pRecordset,_ _ADOConnection * _pConnection_ )[InfoMessage](http://msdn.microsoft.com/library/5d4f487f-96c8-4cf6-60ab-583510d3096f%28Office.15%29.aspx)(ADOError * _pError,_ EventStatusEnum * _adStatus,_ _ADOConnection * _pConnection_ )[RollbackTransComplete](http://msdn.microsoft.com/library/9d0ae38e-530a-7a89-a344-f3ab401c2e35%28Office.15%29.aspx)(ADOError * _pError,_ EventStatusEnum * _adStatus,_ _ADOConnection * _pConnection_ )[WillConnect](http://msdn.microsoft.com/library/8b0e9955-4e7a-7af8-ce6c-7a4ba569a5bb%28Office.15%29.aspx)(BSTR * _ConnectionString,_ BSTR * _UserID,_ BSTR * _Password,_ long * _Options,_ EventStatusEnum * _adStatus,_ _ADOConnection * _pConnection_ )[WillExecute](http://msdn.microsoft.com/library/9f516bfd-246d-9817-4ca3-64598ab466f7%28Office.15%29.aspx)(BSTR * _Source,_ CursorTypeEnum * _CursorType,_ LockTypeEnum * _LockType,_ long * _Options,_ EventStatusEnum * _adStatus,_ _ADOCommand * _pCommand,_ _ADORecordset * _pRecordset,_ _ADOConnection * _pConnection_ )
+[BeginTransComplete](http://msdn.microsoft.com/library/9d0ae38e-530a-7a89-a344-f3ab401c2e35%28Office.15%29.aspx)(LONG _TransactionLevel,_ ADOError * _pError,_ EventStatusEnum * _adStatus,_ _ADOConnection * _pConnection_ ) [CommitTransComplete](http://msdn.microsoft.com/library/9d0ae38e-530a-7a89-a344-f3ab401c2e35%28Office.15%29.aspx)(ADOError * _pError,_ EventStatusEnum * _adStatus,_ _ADOConnection * _pConnection_ ) [ConnectComplete](http://msdn.microsoft.com/library/8ecb080b-7fc9-7565-25bd-bd57b983750d%28Office.15%29.aspx)(ADOError * _pError,_ EventStatusEnum * _adStatus,_ _ADOConnection * _pConnection_ ) [Disconnect](http://msdn.microsoft.com/library/8ecb080b-7fc9-7565-25bd-bd57b983750d%28Office.15%29.aspx)(EventStatusEnum * _adStatus,_ _ADOConnection * _pConnection_ ) [ExecuteComplete](http://msdn.microsoft.com/library/47317d97-e373-32f4-9438-2dff46b8d367%28Office.15%29.aspx)(LONG _RecordsAffected,_ ADOError * _pError,_ EventStatusEnum * _adStatus,_ _ADOCommand * _pCommand,_ _ADORecordset * _pRecordset,_ _ADOConnection * _pConnection_ ) [InfoMessage](http://msdn.microsoft.com/library/5d4f487f-96c8-4cf6-60ab-583510d3096f%28Office.15%29.aspx)(ADOError * _pError,_ EventStatusEnum * _adStatus,_ _ADOConnection * _pConnection_ ) [RollbackTransComplete](http://msdn.microsoft.com/library/9d0ae38e-530a-7a89-a344-f3ab401c2e35%28Office.15%29.aspx)(ADOError * _pError,_ EventStatusEnum * _adStatus,_ _ADOConnection * _pConnection_ ) [WillConnect](http://msdn.microsoft.com/library/8b0e9955-4e7a-7af8-ce6c-7a4ba569a5bb%28Office.15%29.aspx)(BSTR * _ConnectionString,_ BSTR * _UserID,_ BSTR * _Password,_ long * _Options,_ EventStatusEnum * _adStatus,_ _ADOConnection * _pConnection_ ) [WillExecute](http://msdn.microsoft.com/library/9f516bfd-246d-9817-4ca3-64598ab466f7%28Office.15%29.aspx)(BSTR * _Source,_ CursorTypeEnum * _CursorType,_ LockTypeEnum * _LockType,_ long * _Options,_ EventStatusEnum * _adStatus,_ _ADOCommand * _pCommand,_ _ADORecordset * _pRecordset,_ _ADOConnection * _pConnection_ )
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/connection-ado-wfc-syntax.md b/access/Concepts/Miscellaneous/connection-ado-wfc-syntax.md
index 4f38f3df3c3..38a98c420d3 100644
--- a/access/Concepts/Miscellaneous/connection-ado-wfc-syntax.md
+++ b/access/Concepts/Miscellaneous/connection-ado-wfc-syntax.md
@@ -103,9 +103,9 @@ public void removeOnWillExecute(ConnectionEventHandler handler )
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/connection-visual-c-plus-plus-syntax-index-with-import.md b/access/Concepts/Miscellaneous/connection-visual-c-plus-plus-syntax-index-with-import.md
index a614615f0dc..9280b951165 100644
--- a/access/Concepts/Miscellaneous/connection-visual-c-plus-plus-syntax-index-with-import.md
+++ b/access/Concepts/Miscellaneous/connection-visual-c-plus-plus-syntax-index-with-import.md
@@ -94,9 +94,9 @@ __declspec(property(get=GetState)) long Invalid DDUE based on source, error:link
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/connectionevents-visual-c-plus-plus-syntax-index-with-import.md b/access/Concepts/Miscellaneous/connectionevents-visual-c-plus-plus-syntax-index-with-import.md
index 3379fff31e3..217fd72e6f0 100644
--- a/access/Concepts/Miscellaneous/connectionevents-visual-c-plus-plus-syntax-index-with-import.md
+++ b/access/Concepts/Miscellaneous/connectionevents-visual-c-plus-plus-syntax-index-with-import.md
@@ -51,9 +51,9 @@ HRESULT Invalid DDUE based on source, error:link not allowed in code, link filen
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/constants-enumeration-access.md b/access/Concepts/Miscellaneous/constants-enumeration-access.md
index 03992b080c4..5a31eaa2a2f 100644
--- a/access/Concepts/Miscellaneous/constants-enumeration-access.md
+++ b/access/Concepts/Miscellaneous/constants-enumeration-access.md
@@ -253,9 +253,9 @@ ms.date: 06/08/2017
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/convert-library-databases-and-add-ins.md b/access/Concepts/Miscellaneous/convert-library-databases-and-add-ins.md
index 554413e1321..f116fc79e71 100644
--- a/access/Concepts/Miscellaneous/convert-library-databases-and-add-ins.md
+++ b/access/Concepts/Miscellaneous/convert-library-databases-and-add-ins.md
@@ -30,9 +30,9 @@ In versions 1. _x_ and 2.0 of Access, you can make circular library references.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/converttostring-method-example-vbscript.md b/access/Concepts/Miscellaneous/converttostring-method-example-vbscript.md
index e099e5a3690..7ea7ba0aa36 100644
--- a/access/Concepts/Miscellaneous/converttostring-method-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/converttostring-method-example-vbscript.md
@@ -46,9 +46,9 @@ CLASSID="clsid:BD96C556-65A3-11D0-983A-00C04FC29E33">
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/could-not-add-rows-needed-to-make-the-database-replicableerror-3580.md b/access/Concepts/Miscellaneous/could-not-add-rows-needed-to-make-the-database-replicableerror-3580.md
index 41331194526..236618a2761 100644
--- a/access/Concepts/Miscellaneous/could-not-add-rows-needed-to-make-the-database-replicableerror-3580.md
+++ b/access/Concepts/Miscellaneous/could-not-add-rows-needed-to-make-the-database-replicableerror-3580.md
@@ -19,9 +19,9 @@ This is an unexpected error. Please contact Microsoft Product Support Services f
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/could-not-build-keyerror-3250.md b/access/Concepts/Miscellaneous/could-not-build-keyerror-3250.md
index 2b8bc8906b2..0f0f1c5e418 100644
--- a/access/Concepts/Miscellaneous/could-not-build-keyerror-3250.md
+++ b/access/Concepts/Miscellaneous/could-not-build-keyerror-3250.md
@@ -28,9 +28,9 @@ rstEmployees.Seek "=", "Smith", "Joe"
The Microsoft Access database engine will try to construct a primary key from two fields, but because one field is indexed, the attempt will fail and this error results.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-create-index-too-many-indexes-already-definederror-3039.md b/access/Concepts/Miscellaneous/could-not-create-index-too-many-indexes-already-definederror-3039.md
index b1cbffc15a0..0d25e892d93 100644
--- a/access/Concepts/Miscellaneous/could-not-create-index-too-many-indexes-already-definederror-3039.md
+++ b/access/Concepts/Miscellaneous/could-not-create-index-too-many-indexes-already-definederror-3039.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You cannot create another index for this table. Consider deleting an existing index to make room for the new index. The limit is 32 indexes per table.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-create-no-modify-design-permission-for-table-or-query-nameerror-3111.md b/access/Concepts/Miscellaneous/could-not-create-no-modify-design-permission-for-table-or-query-nameerror-3111.md
index 4b2a4ba07d0..660f01a184b 100644
--- a/access/Concepts/Miscellaneous/could-not-create-no-modify-design-permission-for-table-or-query-nameerror-3111.md
+++ b/access/Concepts/Miscellaneous/could-not-create-no-modify-design-permission-for-table-or-query-nameerror-3111.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to create the specified table or query, but you do not have the required modify design permission. To change your permission assignments, see your system administrator or the query's creator.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-create-replication-system-tables-needed-to-make-the-database-replicabl.md b/access/Concepts/Miscellaneous/could-not-create-replication-system-tables-needed-to-make-the-database-replicabl.md
index d91960e4bde..c00e0e33099 100644
--- a/access/Concepts/Miscellaneous/could-not-create-replication-system-tables-needed-to-make-the-database-replicabl.md
+++ b/access/Concepts/Miscellaneous/could-not-create-replication-system-tables-needed-to-make-the-database-replicabl.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-decrypt-fileerror-3161.md b/access/Concepts/Miscellaneous/could-not-decrypt-fileerror-3161.md
index e9e19e10c66..516d047ef2d 100644
--- a/access/Concepts/Miscellaneous/could-not-decrypt-fileerror-3161.md
+++ b/access/Concepts/Miscellaneous/could-not-decrypt-fileerror-3161.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to access an encrypted Btrieve or Paradox table, but the password you provided is not correct. Try the operation again and enter the correct password.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-delete-from-specified-tableserror-3086.md b/access/Concepts/Miscellaneous/could-not-delete-from-specified-tableserror-3086.md
index c8ac3ae8596..3a92d11cfce 100644
--- a/access/Concepts/Miscellaneous/could-not-delete-from-specified-tableserror-3086.md
+++ b/access/Concepts/Miscellaneous/could-not-delete-from-specified-tableserror-3086.md
@@ -40,9 +40,9 @@ Possible causes:
To delete the data, close the database, resolve the read-only condition, and then reopen the file for read/write access.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-execute-query-could-not-find-linked-tableerror-3184.md b/access/Concepts/Miscellaneous/could-not-execute-query-could-not-find-linked-tableerror-3184.md
index 69dfa527f71..8dc24572654 100644
--- a/access/Concepts/Miscellaneous/could-not-execute-query-could-not-find-linked-tableerror-3184.md
+++ b/access/Concepts/Miscellaneous/could-not-execute-query-could-not-find-linked-tableerror-3184.md
@@ -25,9 +25,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-find-a-valid-transport-for-this-synchronizererror-3509.md b/access/Concepts/Miscellaneous/could-not-find-a-valid-transport-for-this-synchronizererror-3509.md
index 13f82c05c76..38a9c523736 100644
--- a/access/Concepts/Miscellaneous/could-not-find-a-valid-transport-for-this-synchronizererror-3509.md
+++ b/access/Concepts/Miscellaneous/could-not-find-a-valid-transport-for-this-synchronizererror-3509.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-find-field-nameerror-3799.md b/access/Concepts/Miscellaneous/could-not-find-field-nameerror-3799.md
index e3a36fbc423..761465ad875 100644
--- a/access/Concepts/Miscellaneous/could-not-find-field-nameerror-3799.md
+++ b/access/Concepts/Miscellaneous/could-not-find-field-nameerror-3799.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
A column name that does not exist is being referenced.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-find-fielderror-3018.md b/access/Concepts/Miscellaneous/could-not-find-fielderror-3018.md
index 485992343e9..fd6fedf837a 100644
--- a/access/Concepts/Miscellaneous/could-not-find-fielderror-3018.md
+++ b/access/Concepts/Miscellaneous/could-not-find-fielderror-3018.md
@@ -29,9 +29,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-find-file-nameerror-3024.md b/access/Concepts/Miscellaneous/could-not-find-file-nameerror-3024.md
index fe7a2b1c33f..dc3452ee059 100644
--- a/access/Concepts/Miscellaneous/could-not-find-file-nameerror-3024.md
+++ b/access/Concepts/Miscellaneous/could-not-find-file-nameerror-3024.md
@@ -27,9 +27,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-find-installable-isamerror-3170.md b/access/Concepts/Miscellaneous/could-not-find-installable-isamerror-3170.md
index 99b16bd65f4..3c7a50e33e1 100644
--- a/access/Concepts/Miscellaneous/could-not-find-installable-isamerror-3170.md
+++ b/access/Concepts/Miscellaneous/could-not-find-installable-isamerror-3170.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-find-network-path-or-user-nameerror-3171.md b/access/Concepts/Miscellaneous/could-not-find-network-path-or-user-nameerror-3171.md
index be5c877e21f..31821802be7 100644
--- a/access/Concepts/Miscellaneous/could-not-find-network-path-or-user-nameerror-3171.md
+++ b/access/Concepts/Miscellaneous/could-not-find-network-path-or-user-nameerror-3171.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
One or more entries in the \ **HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\14.0\Access Connectivity Engine\Engines\Paradox** key of the Microsoft Windows Registry is invalid. Correct the invalid entries, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-find-output-table-nameerror-3192.md b/access/Concepts/Miscellaneous/could-not-find-output-table-nameerror-3192.md
index ea35f38c00c..6966411b9a7 100644
--- a/access/Concepts/Miscellaneous/could-not-find-output-table-nameerror-3192.md
+++ b/access/Concepts/Miscellaneous/could-not-find-output-table-nameerror-3192.md
@@ -19,9 +19,9 @@ You tried to use an INSERT INTO statement with the specified table, which does n
If you are attempting to execute a make-table query that creates the table for you, use the SELECT INTO syntax instead.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-find-referenceerror-3199.md b/access/Concepts/Miscellaneous/could-not-find-referenceerror-3199.md
index 5f97c03b918..e7c0a151cf9 100644
--- a/access/Concepts/Miscellaneous/could-not-find-referenceerror-3199.md
+++ b/access/Concepts/Miscellaneous/could-not-find-referenceerror-3199.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You entered a file, table, or field reference that could not be found. Check the spelling and punctuation to make sure you entered the reference correctly, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-find-synchronizer-in-the-msystranspaddress-tableerror-3518.md b/access/Concepts/Miscellaneous/could-not-find-synchronizer-in-the-msystranspaddress-tableerror-3518.md
index 1a598a81c1e..4771a500c8a 100644
--- a/access/Concepts/Miscellaneous/could-not-find-synchronizer-in-the-msystranspaddress-tableerror-3518.md
+++ b/access/Concepts/Miscellaneous/could-not-find-synchronizer-in-the-msystranspaddress-tableerror-3518.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-import-table-or-query-no-records-found-or-all-records-contain-errorser.md b/access/Concepts/Miscellaneous/could-not-import-table-or-query-no-records-found-or-all-records-contain-errorser.md
index 5edc7a72a4d..d00cab41070 100644
--- a/access/Concepts/Miscellaneous/could-not-import-table-or-query-no-records-found-or-all-records-contain-errorser.md
+++ b/access/Concepts/Miscellaneous/could-not-import-table-or-query-no-records-found-or-all-records-contain-errorser.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The Microsoft Access database engine could not find the table or query you tried to import, or no records were found at the specified source, or all records contained errors. Check the path you specified and try it again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-lock-fileerror-3050.md b/access/Concepts/Miscellaneous/could-not-lock-fileerror-3050.md
index 02ce9fe1ea5..56f68009ce9 100644
--- a/access/Concepts/Miscellaneous/could-not-lock-fileerror-3050.md
+++ b/access/Concepts/Miscellaneous/could-not-lock-fileerror-3050.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The operating system will not allow the Microsoft Access database engine to create a lock file (.LDB) in the same directory where the database file resides. You need to have write privileges to the directory that contains the database you are trying to open. This error can also occur if you are trying to use the passive shut down/connection control feature while the database is opened exclusively.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-lock-table-namecurrently-in-use-by-user-name-on-machine-nameerror-3212.md b/access/Concepts/Miscellaneous/could-not-lock-table-namecurrently-in-use-by-user-name-on-machine-nameerror-3212.md
index 888a6f26106..6226c285bbf 100644
--- a/access/Concepts/Miscellaneous/could-not-lock-table-namecurrently-in-use-by-user-name-on-machine-nameerror-3212.md
+++ b/access/Concepts/Miscellaneous/could-not-lock-table-namecurrently-in-use-by-user-name-on-machine-nameerror-3212.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The table cannot be locked because it is currently in use. Wait for the other user's transaction to complete, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-lock-table-namecurrently-in-use-by-user-name-on-machine-nameerror-3262.md b/access/Concepts/Miscellaneous/could-not-lock-table-namecurrently-in-use-by-user-name-on-machine-nameerror-3262.md
index a70abd86348..7f1b1398cb7 100644
--- a/access/Concepts/Miscellaneous/could-not-lock-table-namecurrently-in-use-by-user-name-on-machine-nameerror-3262.md
+++ b/access/Concepts/Miscellaneous/could-not-lock-table-namecurrently-in-use-by-user-name-on-machine-nameerror-3262.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to lock a table while opening it, but the table cannot be locked because it is currently in use. Wait a moment, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-open-file-nameerror-3176.md b/access/Concepts/Miscellaneous/could-not-open-file-nameerror-3176.md
index 3193856a971..371118b3ebc 100644
--- a/access/Concepts/Miscellaneous/could-not-open-file-nameerror-3176.md
+++ b/access/Concepts/Miscellaneous/could-not-open-file-nameerror-3176.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The specified text or spreadsheet file could not be opened. The specified file specification may be invalid, another user may be accessing the file, or you may not have read privileges for the file. Wait for the other user to finish using the file and then try the operation again, or contact your system administrator or network administrator.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-open-inf-fileerror-3165.md b/access/Concepts/Miscellaneous/could-not-open-inf-fileerror-3165.md
index 00d05d9d75a..cbc6d682919 100644
--- a/access/Concepts/Miscellaneous/could-not-open-inf-fileerror-3165.md
+++ b/access/Concepts/Miscellaneous/could-not-open-inf-fileerror-3165.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-open-paradox-neterror-3172.md b/access/Concepts/Miscellaneous/could-not-open-paradox-neterror-3172.md
index e29dfec6956..9a92398c110 100644
--- a/access/Concepts/Miscellaneous/could-not-open-paradox-neterror-3172.md
+++ b/access/Concepts/Miscellaneous/could-not-open-paradox-neterror-3172.md
@@ -25,9 +25,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-open-table-msysaccounts-in-the-workgroup-information-fileerror-3173.md b/access/Concepts/Miscellaneous/could-not-open-table-msysaccounts-in-the-workgroup-information-fileerror-3173.md
index 59ec8bb05b6..ca88fcefd2b 100644
--- a/access/Concepts/Miscellaneous/could-not-open-table-msysaccounts-in-the-workgroup-information-fileerror-3173.md
+++ b/access/Concepts/Miscellaneous/could-not-open-table-msysaccounts-in-the-workgroup-information-fileerror-3173.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This operation requires the System.mdw file, which contains the security and option settings for Microsoft Access database tables.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-open-table-msysgroups-in-the-workgroup-information-fileerror-3174.md b/access/Concepts/Miscellaneous/could-not-open-table-msysgroups-in-the-workgroup-information-fileerror-3174.md
index c23eb4d5fdb..11f5fa160dc 100644
--- a/access/Concepts/Miscellaneous/could-not-open-table-msysgroups-in-the-workgroup-information-fileerror-3174.md
+++ b/access/Concepts/Miscellaneous/could-not-open-table-msysgroups-in-the-workgroup-information-fileerror-3174.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This operation requires the System.mdw file, which contains the security and option settings for Microsoft Access database tables.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-parse-field-names-from-the-first-row-of-the-import-tableerror-3245.md b/access/Concepts/Miscellaneous/could-not-parse-field-names-from-the-first-row-of-the-import-tableerror-3245.md
index 6788d03bf0d..bd17d1d7338 100644
--- a/access/Concepts/Miscellaneous/could-not-parse-field-names-from-the-first-row-of-the-import-tableerror-3245.md
+++ b/access/Concepts/Miscellaneous/could-not-parse-field-names-from-the-first-row-of-the-import-tableerror-3245.md
@@ -28,9 +28,9 @@ The first row of data contains invalid field names, such as quoted and unquoted
The first two fields are valid, but the third and fourth are not because they contain nonspace characters outside the quotation marks.
Check the import table for properly matched quotation marks, and then try the import operation again
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-read-currently-locked-by-user-name-on-machine-nameerror-3187.md b/access/Concepts/Miscellaneous/could-not-read-currently-locked-by-user-name-on-machine-nameerror-3187.md
index d76e98af89e..e6a453c5518 100644
--- a/access/Concepts/Miscellaneous/could-not-read-currently-locked-by-user-name-on-machine-nameerror-3187.md
+++ b/access/Concepts/Miscellaneous/could-not-read-currently-locked-by-user-name-on-machine-nameerror-3187.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to read information on a database page that is currently locked by the specified user. Wait for the other user to finish, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-read-definitions-no-read-definitions-permission-for-table-or-query-nam.md b/access/Concepts/Miscellaneous/could-not-read-definitions-no-read-definitions-permission-for-table-or-query-nam.md
index 09bb4462ed5..9963b83a65e 100644
--- a/access/Concepts/Miscellaneous/could-not-read-definitions-no-read-definitions-permission-for-table-or-query-nam.md
+++ b/access/Concepts/Miscellaneous/could-not-read-definitions-no-read-definitions-permission-for-table-or-query-nam.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You must have read definitions permission for the specified table or query to read its definition. To change your permission assignments, see your system administrator or the table or query's creator.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-read-the-record-currently-locked-by-another-usererror-3624.md b/access/Concepts/Miscellaneous/could-not-read-the-record-currently-locked-by-another-usererror-3624.md
index f24539e1541..fb0863ecdc0 100644
--- a/access/Concepts/Miscellaneous/could-not-read-the-record-currently-locked-by-another-usererror-3624.md
+++ b/access/Concepts/Miscellaneous/could-not-read-the-record-currently-locked-by-another-usererror-3624.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to read a record on a 2K database page that is currently locked by another user. Wait for the other user to finish working with the record, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-rename-installable-isam-fileerror-3013.md b/access/Concepts/Miscellaneous/could-not-rename-installable-isam-fileerror-3013.md
index 9ef4741b791..39416598916 100644
--- a/access/Concepts/Miscellaneous/could-not-rename-installable-isam-fileerror-3013.md
+++ b/access/Concepts/Miscellaneous/could-not-rename-installable-isam-fileerror-3013.md
@@ -23,9 +23,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-repair-this-databaseerror-3056.md b/access/Concepts/Miscellaneous/could-not-repair-this-databaseerror-3056.md
index 72164a22118..7718a821e24 100644
--- a/access/Concepts/Miscellaneous/could-not-repair-this-databaseerror-3056.md
+++ b/access/Concepts/Miscellaneous/could-not-repair-this-databaseerror-3056.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This database is corrupted or it is not a Microsoft Access database engine database. Restore the corrupted Microsoft Access database engine database from a backup copy or create a new database.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-save-currently-locked-by-another-usererror-3046.md b/access/Concepts/Miscellaneous/could-not-save-currently-locked-by-another-usererror-3046.md
index 6d567357713..152f5cfbfb8 100644
--- a/access/Concepts/Miscellaneous/could-not-save-currently-locked-by-another-usererror-3046.md
+++ b/access/Concepts/Miscellaneous/could-not-save-currently-locked-by-another-usererror-3046.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You tried to save information on a database page that is currently locked by another user. To save your changes, wait for the other user to finish, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-save-currently-locked-by-another-usererror-3202.md b/access/Concepts/Miscellaneous/could-not-save-currently-locked-by-another-usererror-3202.md
index dde57071db1..7ad678a0282 100644
--- a/access/Concepts/Miscellaneous/could-not-save-currently-locked-by-another-usererror-3202.md
+++ b/access/Concepts/Miscellaneous/could-not-save-currently-locked-by-another-usererror-3202.md
@@ -23,9 +23,9 @@ Possible cause:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-save-currently-locked-by-user-name-on-machine-nameerror-3186.md b/access/Concepts/Miscellaneous/could-not-save-currently-locked-by-user-name-on-machine-nameerror-3186.md
index ae1173fd5ef..7080e20486a 100644
--- a/access/Concepts/Miscellaneous/could-not-save-currently-locked-by-user-name-on-machine-nameerror-3186.md
+++ b/access/Concepts/Miscellaneous/could-not-save-currently-locked-by-user-name-on-machine-nameerror-3186.md
@@ -23,9 +23,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-save-record-currently-locked-by-another-usererror-3158.md b/access/Concepts/Miscellaneous/could-not-save-record-currently-locked-by-another-usererror-3158.md
index 267bd4665e7..90b3ff514aa 100644
--- a/access/Concepts/Miscellaneous/could-not-save-record-currently-locked-by-another-usererror-3158.md
+++ b/access/Concepts/Miscellaneous/could-not-save-record-currently-locked-by-another-usererror-3158.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You tried to save a record that is on a database page currently locked by another user. To save your changes, wait for the other user to finish working with the record, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-start-session-too-many-sessions-already-activeerror-3198.md b/access/Concepts/Miscellaneous/could-not-start-session-too-many-sessions-already-activeerror-3198.md
index a0d6530482b..cd84df1a98e 100644
--- a/access/Concepts/Miscellaneous/could-not-start-session-too-many-sessions-already-activeerror-3198.md
+++ b/access/Concepts/Miscellaneous/could-not-start-session-too-many-sessions-already-activeerror-3198.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to perform an operation that would have started a new session, but too many sessions are already active. Wait for one or more sessions to finish, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-start-sessionerror-3002.md b/access/Concepts/Miscellaneous/could-not-start-sessionerror-3002.md
index bbf542c5250..66198a67a6e 100644
--- a/access/Concepts/Miscellaneous/could-not-start-sessionerror-3002.md
+++ b/access/Concepts/Miscellaneous/could-not-start-sessionerror-3002.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You tried to initiate an operation that requires a new session, but you have reached the limit of sessions that can be active at one time. Wait for other operations to finish or stop other operations, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-start-transaction-too-many-transactions-already-nestederror-3003.md b/access/Concepts/Miscellaneous/could-not-start-transaction-too-many-transactions-already-nestederror-3003.md
index 616c2f02438..90f4cde55b0 100644
--- a/access/Concepts/Miscellaneous/could-not-start-transaction-too-many-transactions-already-nestederror-3003.md
+++ b/access/Concepts/Miscellaneous/could-not-start-transaction-too-many-transactions-already-nestederror-3003.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to nest a transaction more than five levels deep. Use the **CommitTrans** or **Rollback** method to save or roll back the current before you begin another one.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-update-currently-locked-by-another-session-on-this-machineerror-3188.md b/access/Concepts/Miscellaneous/could-not-update-currently-locked-by-another-session-on-this-machineerror-3188.md
index 4d44fd7f2c4..993d33fada2 100644
--- a/access/Concepts/Miscellaneous/could-not-update-currently-locked-by-another-session-on-this-machineerror-3188.md
+++ b/access/Concepts/Miscellaneous/could-not-update-currently-locked-by-another-session-on-this-machineerror-3188.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to update information that is currently locked by another session. Wait for the other session to finish or close the other session, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-update-currently-locked-by-user-name-on-machine-nameerror-3260.md b/access/Concepts/Miscellaneous/could-not-update-currently-locked-by-user-name-on-machine-nameerror-3260.md
index 76a7517f166..2b3f992f15b 100644
--- a/access/Concepts/Miscellaneous/could-not-update-currently-locked-by-user-name-on-machine-nameerror-3260.md
+++ b/access/Concepts/Miscellaneous/could-not-update-currently-locked-by-user-name-on-machine-nameerror-3260.md
@@ -23,9 +23,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-update-currently-lockederror-3218.md b/access/Concepts/Miscellaneous/could-not-update-currently-lockederror-3218.md
index 20448615572..db25547194b 100644
--- a/access/Concepts/Miscellaneous/could-not-update-currently-lockederror-3218.md
+++ b/access/Concepts/Miscellaneous/could-not-update-currently-lockederror-3218.md
@@ -23,9 +23,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-use-namefile-already-in-useerror-3045.md b/access/Concepts/Miscellaneous/could-not-use-namefile-already-in-useerror-3045.md
index 67af011aa07..dfab7bb4caf 100644
--- a/access/Concepts/Miscellaneous/could-not-use-namefile-already-in-useerror-3045.md
+++ b/access/Concepts/Miscellaneous/could-not-use-namefile-already-in-useerror-3045.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The specified file is currently being used by another user or session. Wait for the other user or session to finish working with the file, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/could-not-write-to-file-nameerror-3180.md b/access/Concepts/Miscellaneous/could-not-write-to-file-nameerror-3180.md
index 0a0c114c520..3bbfc39c163 100644
--- a/access/Concepts/Miscellaneous/could-not-write-to-file-nameerror-3180.md
+++ b/access/Concepts/Miscellaneous/could-not-write-to-file-nameerror-3180.md
@@ -29,9 +29,9 @@ Possible causes:
You may need to contact your system administrator or network administrator.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/counter-definition-not-in-valid-rangeerror-3770.md b/access/Concepts/Miscellaneous/counter-definition-not-in-valid-rangeerror-3770.md
index 0defb6ad50e..bdb0f1c5fd7 100644
--- a/access/Concepts/Miscellaneous/counter-definition-not-in-valid-rangeerror-3770.md
+++ b/access/Concepts/Miscellaneous/counter-definition-not-in-valid-rangeerror-3770.md
@@ -19,9 +19,9 @@ This error occurs when trying to create a column that is an IDENTITY or COUNTER
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/createrecordset-method-example-vbscript.md b/access/Concepts/Miscellaneous/createrecordset-method-example-vbscript.md
index 8b53ab34e1a..95009075c60 100644
--- a/access/Concepts/Miscellaneous/createrecordset-method-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/createrecordset-method-example-vbscript.md
@@ -83,9 +83,9 @@ Set DC1.SourceRecordset = NewRSEnd Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/creating-a-portion-in-your-application-s-registry-tree-to-manage-the-settings.md b/access/Concepts/Miscellaneous/creating-a-portion-in-your-application-s-registry-tree-to-manage-the-settings.md
index 528d290d223..ecb8cda9933 100644
--- a/access/Concepts/Miscellaneous/creating-a-portion-in-your-application-s-registry-tree-to-manage-the-settings.md
+++ b/access/Concepts/Miscellaneous/creating-a-portion-in-your-application-s-registry-tree-to-manage-the-settings.md
@@ -25,9 +25,9 @@ For your application to load the appropriate portion of the Windows Registry key
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/crosstab-query-contains-one-or-more-invalid-fixed-column-headingserror-3322.md b/access/Concepts/Miscellaneous/crosstab-query-contains-one-or-more-invalid-fixed-column-headingserror-3322.md
index a4ce4ee0aa0..85d25a07b9a 100644
--- a/access/Concepts/Miscellaneous/crosstab-query-contains-one-or-more-invalid-fixed-column-headingserror-3322.md
+++ b/access/Concepts/Miscellaneous/crosstab-query-contains-one-or-more-invalid-fixed-column-headingserror-3322.md
@@ -28,9 +28,9 @@ Correct the PIVOT clause and execute the query again.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/crosstab-query.md b/access/Concepts/Miscellaneous/crosstab-query.md
index f81fe76c871..9f7d012ad33 100644
--- a/access/Concepts/Miscellaneous/crosstab-query.md
+++ b/access/Concepts/Miscellaneous/crosstab-query.md
@@ -19,9 +19,9 @@ A crosstab query computes summary totals based on values for each row and column
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/cubedef-example-vbscript.md b/access/Concepts/Miscellaneous/cubedef-example-vbscript.md
index d00a15341ac..929155f44a5 100644
--- a/access/Concepts/Miscellaneous/cubedef-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/cubedef-example-vbscript.md
@@ -186,9 +186,9 @@ Response.Write ""
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/data-type-conversion-errorerror-3421.md b/access/Concepts/Miscellaneous/data-type-conversion-errorerror-3421.md
index 938d83ce675..f496f64a3fd 100644
--- a/access/Concepts/Miscellaneous/data-type-conversion-errorerror-3421.md
+++ b/access/Concepts/Miscellaneous/data-type-conversion-errorerror-3421.md
@@ -16,9 +16,9 @@ The Microsoft Access database engine was unable to convert data into the type re
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/data-type-mismatch-in-criteria-expressionerror-3464.md b/access/Concepts/Miscellaneous/data-type-mismatch-in-criteria-expressionerror-3464.md
index dfbbd47a0e6..e166f3d53ed 100644
--- a/access/Concepts/Miscellaneous/data-type-mismatch-in-criteria-expressionerror-3464.md
+++ b/access/Concepts/Miscellaneous/data-type-mismatch-in-criteria-expressionerror-3464.md
@@ -21,9 +21,9 @@ For more information about this error, see [Type mismatch (Error 13)](http://msd
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/database-already-existserror-3204.md b/access/Concepts/Miscellaneous/database-already-existserror-3204.md
index f59502cdab9..4b452281054 100644
--- a/access/Concepts/Miscellaneous/database-already-existserror-3204.md
+++ b/access/Concepts/Miscellaneous/database-already-existserror-3204.md
@@ -16,9 +16,9 @@ You tried to create or rename a database using a name that already exists. Enter
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/database-has-reached-maximum-sizeerror-3036.md b/access/Concepts/Miscellaneous/database-has-reached-maximum-sizeerror-3036.md
index 688525eb866..b93d5782279 100644
--- a/access/Concepts/Miscellaneous/database-has-reached-maximum-sizeerror-3036.md
+++ b/access/Concepts/Miscellaneous/database-has-reached-maximum-sizeerror-3036.md
@@ -16,9 +16,9 @@ To add data to this database, you must first reduce its size by deleting data. T
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/database-is-already-replicableerror-3784.md b/access/Concepts/Miscellaneous/database-is-already-replicableerror-3784.md
index 9f8ca3c6e20..55758a95a2c 100644
--- a/access/Concepts/Miscellaneous/database-is-already-replicableerror-3784.md
+++ b/access/Concepts/Miscellaneous/database-is-already-replicableerror-3784.md
@@ -16,9 +16,9 @@ The database is already replicable and cannot be made replicable again. If, in t
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/database-name-is-exclusively-lockederror-3006.md b/access/Concepts/Miscellaneous/database-name-is-exclusively-lockederror-3006.md
index 98c23e99b0a..89c264bc04c 100644
--- a/access/Concepts/Miscellaneous/database-name-is-exclusively-lockederror-3006.md
+++ b/access/Concepts/Miscellaneous/database-name-is-exclusively-lockederror-3006.md
@@ -16,9 +16,9 @@ You tried to use a database that is currently open for exclusive access by anoth
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/database-name-is-not-a-valid-database-nameerror-3005.md b/access/Concepts/Miscellaneous/database-name-is-not-a-valid-database-nameerror-3005.md
index 47b916dc3ea..815909adc91 100644
--- a/access/Concepts/Miscellaneous/database-name-is-not-a-valid-database-nameerror-3005.md
+++ b/access/Concepts/Miscellaneous/database-name-is-not-a-valid-database-nameerror-3005.md
@@ -19,9 +19,9 @@ The specified database name does not follow the standard naming conventions for
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/datacontrol-object-example-vbscript.md b/access/Concepts/Miscellaneous/datacontrol-object-example-vbscript.md
index 56fe52e07a3..25102a7f5a2 100644
--- a/access/Concepts/Miscellaneous/datacontrol-object-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/datacontrol-object-example-vbscript.md
@@ -98,9 +98,9 @@ End Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/datafactory-object-query-method-and-createobject-method-example-vbscript.md b/access/Concepts/Miscellaneous/datafactory-object-query-method-and-createobject-method-example-vbscript.md
index a85e93e0cf0..bb5483c4c51 100644
--- a/access/Concepts/Miscellaneous/datafactory-object-query-method-and-createobject-method-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/datafactory-object-query-method-and-createobject-method-example-vbscript.md
@@ -131,9 +131,9 @@ End Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/dataspace-ado-wfc-syntax.md b/access/Concepts/Miscellaneous/dataspace-ado-wfc-syntax.md
index d8214b650ba..aeadc7d71aa 100644
--- a/access/Concepts/Miscellaneous/dataspace-ado-wfc-syntax.md
+++ b/access/Concepts/Miscellaneous/dataspace-ado-wfc-syntax.md
@@ -12,7 +12,7 @@ ms.date: 06/08/2017
**Applies to:** Access 2013 | Access 2016
-The **createObject** method of the **DataSpace** class specifies both a business object to process client application requests ( _progid_ ) and the communications protocol and server ( _connection_ ). **createObject** returns an[ObjectProxy](objectproxy-ado-wfc-syntax.md) object that represents the server.
+The **createObject** method of the **DataSpace** class specifies both a business object to process client application requests ( _progid_ ) and the communications protocol and server ( _connection_ ). **createObject** returns an [ObjectProxy](objectproxy-ado-wfc-syntax.md) object that represents the server.
**package com.ms.wfc.data**
**Constructor**
@@ -49,9 +49,9 @@ public static void setInternetTimeout(int plInetTimeout )
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/dataspace-object-and-createobject-method-example-vbscript.md b/access/Concepts/Miscellaneous/dataspace-object-and-createobject-method-example-vbscript.md
index 3bc79c998dd..3dc77f22904 100644
--- a/access/Concepts/Miscellaneous/dataspace-object-and-createobject-method-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/dataspace-object-and-createobject-method-example-vbscript.md
@@ -79,9 +79,9 @@ End Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/datatype-property.md b/access/Concepts/Miscellaneous/datatype-property.md
index 642defc7c1c..484c83cbc04 100644
--- a/access/Concepts/Miscellaneous/datatype-property.md
+++ b/access/Concepts/Miscellaneous/datatype-property.md
@@ -58,9 +58,9 @@ Set the **Format** property to specify a predefined display format for Number, D
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/date-is-out-of-range-or-is-in-an-invalid-formaterror-3175.md b/access/Concepts/Miscellaneous/date-is-out-of-range-or-is-in-an-invalid-formaterror-3175.md
index 5c38eb4fc72..5d696201b5c 100644
--- a/access/Concepts/Miscellaneous/date-is-out-of-range-or-is-in-an-invalid-formaterror-3175.md
+++ b/access/Concepts/Miscellaneous/date-is-out-of-range-or-is-in-an-invalid-formaterror-3175.md
@@ -27,9 +27,9 @@ Possible causes:
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/ddl-cannot-be-completed-on-this-table-because-it-is-referenced-by-constraint-nam.md b/access/Concepts/Miscellaneous/ddl-cannot-be-completed-on-this-table-because-it-is-referenced-by-constraint-nam.md
index bc04074aced..9849ffc62ac 100644
--- a/access/Concepts/Miscellaneous/ddl-cannot-be-completed-on-this-table-because-it-is-referenced-by-constraint-nam.md
+++ b/access/Concepts/Miscellaneous/ddl-cannot-be-completed-on-this-table-because-it-is-referenced-by-constraint-nam.md
@@ -16,9 +16,9 @@ This is an unexpected error. Please contact Microsoft Product Support Services f
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/delete-ri-conflicterror-3717.md b/access/Concepts/Miscellaneous/delete-ri-conflicterror-3717.md
index dfecdc07093..8756d23faee 100644
--- a/access/Concepts/Miscellaneous/delete-ri-conflicterror-3717.md
+++ b/access/Concepts/Miscellaneous/delete-ri-conflicterror-3717.md
@@ -16,9 +16,9 @@ The primary key record has been deleted by another replica, therefore this refer
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/deleting-data-in-a-linked-table-is-not-supported-by-this-isamerror-3617.md b/access/Concepts/Miscellaneous/deleting-data-in-a-linked-table-is-not-supported-by-this-isamerror-3617.md
index 6b9532374d2..18e37ef0fba 100644
--- a/access/Concepts/Miscellaneous/deleting-data-in-a-linked-table-is-not-supported-by-this-isamerror-3617.md
+++ b/access/Concepts/Miscellaneous/deleting-data-in-a-linked-table-is-not-supported-by-this-isamerror-3617.md
@@ -19,9 +19,9 @@ The installable ISAM you are using does not allow you to delete records in exter
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/description-property-access.md b/access/Concepts/Miscellaneous/description-property-access.md
index ccb3d9aa92a..6c02116f69c 100644
--- a/access/Concepts/Miscellaneous/description-property-access.md
+++ b/access/Concepts/Miscellaneous/description-property-access.md
@@ -39,9 +39,9 @@ If you create controls by dragging a field from the field list, Microsoft Access
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/destconnectstr-destinationdb-destinationtable-properties.md b/access/Concepts/Miscellaneous/destconnectstr-destinationdb-destinationtable-properties.md
index 6fc723e735e..17c2b66b20c 100644
--- a/access/Concepts/Miscellaneous/destconnectstr-destinationdb-destinationtable-properties.md
+++ b/access/Concepts/Miscellaneous/destconnectstr-destinationdb-destinationtable-properties.md
@@ -61,9 +61,9 @@ You don't need to set the **DestinationDB** property for ODBC databases.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/destination-synchronizer-is-not-configured-to-support-indirect-synchronization-a.md b/access/Concepts/Miscellaneous/destination-synchronizer-is-not-configured-to-support-indirect-synchronization-a.md
index ba5e82999e2..1ab59c0a450 100644
--- a/access/Concepts/Miscellaneous/destination-synchronizer-is-not-configured-to-support-indirect-synchronization-a.md
+++ b/access/Concepts/Miscellaneous/destination-synchronizer-is-not-configured-to-support-indirect-synchronization-a.md
@@ -16,9 +16,9 @@ This is an unexpected error. Please contact Microsoft Product Support Services f
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/disk-failure-accessing-dropbox-folder-nameerror-3470.md b/access/Concepts/Miscellaneous/disk-failure-accessing-dropbox-folder-nameerror-3470.md
index 43bf44e5871..e9149fef686 100644
--- a/access/Concepts/Miscellaneous/disk-failure-accessing-dropbox-folder-nameerror-3470.md
+++ b/access/Concepts/Miscellaneous/disk-failure-accessing-dropbox-folder-nameerror-3470.md
@@ -16,9 +16,9 @@ The disk might have a corrupted sector.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/disk-failure-while-accessing-log-file-nameerror-3473.md b/access/Concepts/Miscellaneous/disk-failure-while-accessing-log-file-nameerror-3473.md
index ae48a95b3c8..054216abf85 100644
--- a/access/Concepts/Miscellaneous/disk-failure-while-accessing-log-file-nameerror-3473.md
+++ b/access/Concepts/Miscellaneous/disk-failure-while-accessing-log-file-nameerror-3473.md
@@ -16,9 +16,9 @@ The disk drive for the log file may have a bad sector.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/disk-full-for-path-nameerror-3472.md b/access/Concepts/Miscellaneous/disk-full-for-path-nameerror-3472.md
index dfdd87d5cb6..fc658725ef6 100644
--- a/access/Concepts/Miscellaneous/disk-full-for-path-nameerror-3472.md
+++ b/access/Concepts/Miscellaneous/disk-full-for-path-nameerror-3472.md
@@ -19,9 +19,9 @@ Remove files from the disk drive to free up space.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/disk-i-o-error-at-destination-dropbox-foldererror-3558.md b/access/Concepts/Miscellaneous/disk-i-o-error-at-destination-dropbox-foldererror-3558.md
index cfdf646f2a5..9b33a7dbbbd 100644
--- a/access/Concepts/Miscellaneous/disk-i-o-error-at-destination-dropbox-foldererror-3558.md
+++ b/access/Concepts/Miscellaneous/disk-i-o-error-at-destination-dropbox-foldererror-3558.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/disk-i-o-error-during-readerror-3040.md b/access/Concepts/Miscellaneous/disk-i-o-error-during-readerror-3040.md
index cd6adb08c30..90263403d0a 100644
--- a/access/Concepts/Miscellaneous/disk-i-o-error-during-readerror-3040.md
+++ b/access/Concepts/Miscellaneous/disk-i-o-error-during-readerror-3040.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/disk-or-network-errorerror-3043.md b/access/Concepts/Miscellaneous/disk-or-network-errorerror-3043.md
index a32573655fe..d9256e2569e 100644
--- a/access/Concepts/Miscellaneous/disk-or-network-errorerror-3043.md
+++ b/access/Concepts/Miscellaneous/disk-or-network-errorerror-3043.md
@@ -23,9 +23,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/displaycontrol-property.md b/access/Concepts/Miscellaneous/displaycontrol-property.md
index 718e9a973a5..9baf715a4b0 100644
--- a/access/Concepts/Miscellaneous/displaycontrol-property.md
+++ b/access/Concepts/Miscellaneous/displaycontrol-property.md
@@ -33,9 +33,9 @@ Setting this property and any related control type properties will affect the fi
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/do-you-have-feedback-about-mdac-documentation.md b/access/Concepts/Miscellaneous/do-you-have-feedback-about-mdac-documentation.md
index a9fa36d10de..59c851b0c1c 100644
--- a/access/Concepts/Miscellaneous/do-you-have-feedback-about-mdac-documentation.md
+++ b/access/Concepts/Miscellaneous/do-you-have-feedback-about-mdac-documentation.md
@@ -37,9 +37,9 @@ The MDAC documentation now includes a **Documentation Feedback** button at the
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/dropbox-address-name-is-syntactically-invaliderror-3477.md b/access/Concepts/Miscellaneous/dropbox-address-name-is-syntactically-invaliderror-3477.md
index f8b9648bfb7..7bd964c040b 100644
--- a/access/Concepts/Miscellaneous/dropbox-address-name-is-syntactically-invaliderror-3477.md
+++ b/access/Concepts/Miscellaneous/dropbox-address-name-is-syntactically-invaliderror-3477.md
@@ -19,9 +19,9 @@ Reset your dropbox folder.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/duplicate-output-alias-nameerror-3062.md b/access/Concepts/Miscellaneous/duplicate-output-alias-nameerror-3062.md
index 0c9895db234..33c19870ea6 100644
--- a/access/Concepts/Miscellaneous/duplicate-output-alias-nameerror-3062.md
+++ b/access/Concepts/Miscellaneous/duplicate-output-alias-nameerror-3062.md
@@ -29,9 +29,9 @@ Rename one or more of the aliases, and then try the operation again.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/duplicate-output-destination-nameerror-3063.md b/access/Concepts/Miscellaneous/duplicate-output-destination-nameerror-3063.md
index d8dfaec6d94..05506d58717 100644
--- a/access/Concepts/Miscellaneous/duplicate-output-destination-nameerror-3063.md
+++ b/access/Concepts/Miscellaneous/duplicate-output-destination-nameerror-3063.md
@@ -24,9 +24,9 @@ Remove the duplicate fields or alias the destination field names, and try the op
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/encountered-unexpected-end-of-fileerror-3179.md b/access/Concepts/Miscellaneous/encountered-unexpected-end-of-fileerror-3179.md
index aacbba71d0d..fa78b2e72df 100644
--- a/access/Concepts/Miscellaneous/encountered-unexpected-end-of-fileerror-3179.md
+++ b/access/Concepts/Miscellaneous/encountered-unexpected-end-of-fileerror-3179.md
@@ -24,9 +24,9 @@ Possible causes:
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/error-3072.md b/access/Concepts/Miscellaneous/error-3072.md
index 13487742161..56c3b45f161 100644
--- a/access/Concepts/Miscellaneous/error-3072.md
+++ b/access/Concepts/Miscellaneous/error-3072.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
For example, a table level validation rule that references a numeric data type must have a numeric validation clause. If a string validation clause is used, then this error will be returned.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/error-ado-for-visual-c-plus-plus-syntax.md b/access/Concepts/Miscellaneous/error-ado-for-visual-c-plus-plus-syntax.md
index 99af40d281e..194b6ace74b 100644
--- a/access/Concepts/Miscellaneous/error-ado-for-visual-c-plus-plus-syntax.md
+++ b/access/Concepts/Miscellaneous/error-ado-for-visual-c-plus-plus-syntax.md
@@ -14,14 +14,14 @@ ms.date: 06/08/2017
**Properties**
-[get_Description](http://msdn.microsoft.com/library/31df5e36-641c-d213-31fc-6244e2983327%28Office.15%29.aspx)(BSTR * _pbstr_ )[get_NativeError](http://msdn.microsoft.com/library/9f4d4064-5ee7-20f8-fd54-2cb2eae64d7b%28Office.15%29.aspx)(long * _pl_ )[get_Number](http://msdn.microsoft.com/library/b5103af5-356b-ec74-cd62-86e59467d491%28Office.15%29.aspx)(long * _pl_ )[get_Source](http://msdn.microsoft.com/library/ffc6c77f-1494-d63a-d832-416faa4c6f07%28Office.15%29.aspx)(BSTR * _pbstr_ )[get_SQLState](http://msdn.microsoft.com/library/cf3b078a-849e-1ad2-cba4-a26160080868%28Office.15%29.aspx)(BSTR * _pbstr_ )
+[get_Description](http://msdn.microsoft.com/library/31df5e36-641c-d213-31fc-6244e2983327%28Office.15%29.aspx)(BSTR * _pbstr_ ) [get_NativeError](http://msdn.microsoft.com/library/9f4d4064-5ee7-20f8-fd54-2cb2eae64d7b%28Office.15%29.aspx)(long * _pl_ ) [get_Number](http://msdn.microsoft.com/library/b5103af5-356b-ec74-cd62-86e59467d491%28Office.15%29.aspx)(long * _pl_ ) [get_Source](http://msdn.microsoft.com/library/ffc6c77f-1494-d63a-d832-416faa4c6f07%28Office.15%29.aspx)(BSTR * _pbstr_ ) [get_SQLState](http://msdn.microsoft.com/library/cf3b078a-849e-1ad2-cba4-a26160080868%28Office.15%29.aspx)(BSTR * _pbstr_ )
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/error-ado-wfc-syntax.md b/access/Concepts/Miscellaneous/error-ado-wfc-syntax.md
index 21f997e26cb..7ffe3e9f9ad 100644
--- a/access/Concepts/Miscellaneous/error-ado-wfc-syntax.md
+++ b/access/Concepts/Miscellaneous/error-ado-wfc-syntax.md
@@ -30,9 +30,9 @@ public String Invalid DDUE based on source, error:link not allowed in code, link
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/error-error-text-in-validation-ruleerror-3405.md b/access/Concepts/Miscellaneous/error-error-text-in-validation-ruleerror-3405.md
index 57d0ae250e3..dc5334fdc2e 100644
--- a/access/Concepts/Miscellaneous/error-error-text-in-validation-ruleerror-3405.md
+++ b/access/Concepts/Miscellaneous/error-error-text-in-validation-ruleerror-3405.md
@@ -19,9 +19,9 @@ The expression cannot be evaluated correctly for the reason given in the alert.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/error-evaluating-name-check-constraintadditional-informationerror-3802.md b/access/Concepts/Miscellaneous/error-evaluating-name-check-constraintadditional-informationerror-3802.md
index 97c8921aff2..24eed72a296 100644
--- a/access/Concepts/Miscellaneous/error-evaluating-name-check-constraintadditional-informationerror-3802.md
+++ b/access/Concepts/Miscellaneous/error-evaluating-name-check-constraintadditional-informationerror-3802.md
@@ -13,5 +13,5 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for more information.
- **ACCESS SUPPORT RESOURCES**[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)[Access help on support.office.com](https://support.office.com/search/results?query=Access)[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)[Search for specific Access error codes on Bing](http://www.bing.com/)[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)[Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)[Access posts on StackOverflow](http://stackoverflow.com/questions/tagged/ms-access)
+ **ACCESS SUPPORT RESOURCES**[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev) [Access help on support.office.com](https://support.office.com/search/results?query=Access) [Access help on answers.microsoft.com](https://answers.microsoft.com/) [Search for specific Access error codes on Bing](http://www.bing.com/) [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx) [Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx) [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/) [Access posts on StackOverflow](http://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/error-in-evaluating-a-partial-expressionerror-3656.md b/access/Concepts/Miscellaneous/error-in-evaluating-a-partial-expressionerror-3656.md
index 54f4080a209..68d364caed5 100644
--- a/access/Concepts/Miscellaneous/error-in-evaluating-a-partial-expressionerror-3656.md
+++ b/access/Concepts/Miscellaneous/error-in-evaluating-a-partial-expressionerror-3656.md
@@ -22,9 +22,9 @@ You have entered an invalid expression in a Boolean filter used to determine whi
|True|Replicate all records.|
|False|(Default) Do not replicate any records.|
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/error-in-evaluating-the-boolean-filter-expression-for-table-nameerror-3657.md b/access/Concepts/Miscellaneous/error-in-evaluating-the-boolean-filter-expression-for-table-nameerror-3657.md
index a855b2a3e14..ff8d6bd113b 100644
--- a/access/Concepts/Miscellaneous/error-in-evaluating-the-boolean-filter-expression-for-table-nameerror-3657.md
+++ b/access/Concepts/Miscellaneous/error-in-evaluating-the-boolean-filter-expression-for-table-nameerror-3657.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for more information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/error-in-table-level-validation-expressionerror-3320.md b/access/Concepts/Miscellaneous/error-in-table-level-validation-expressionerror-3320.md
index 0324560d84c..cfcc2d85ff4 100644
--- a/access/Concepts/Miscellaneous/error-in-table-level-validation-expressionerror-3320.md
+++ b/access/Concepts/Miscellaneous/error-in-table-level-validation-expressionerror-3320.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
An error occurred in a table-level validation rule expression or its default value expression. This could be a syntax error or some other kind of error.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/error-opening-a-microsoft-excel-5-0-fileerror-3432.md b/access/Concepts/Miscellaneous/error-opening-a-microsoft-excel-5-0-fileerror-3432.md
index 79b7c4db70c..1316d69c079 100644
--- a/access/Concepts/Miscellaneous/error-opening-a-microsoft-excel-5-0-fileerror-3432.md
+++ b/access/Concepts/Miscellaneous/error-opening-a-microsoft-excel-5-0-fileerror-3432.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
An OLE error occurred while opening a Microsoft Excel version 5.0 file.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/error-visual-c-plus-plus-syntax-index-with-import.md b/access/Concepts/Miscellaneous/error-visual-c-plus-plus-syntax-index-with-import.md
index 4a4de9b9df4..dbec034eaad 100644
--- a/access/Concepts/Miscellaneous/error-visual-c-plus-plus-syntax-index-with-import.md
+++ b/access/Concepts/Miscellaneous/error-visual-c-plus-plus-syntax-index-with-import.md
@@ -38,9 +38,9 @@ __declspec(property(get=GetSQLState)) _bstr_t Invalid DDUE based on source, erro
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/error-when-evaluating-the-partial-filter-expressionerror-3588.md b/access/Concepts/Miscellaneous/error-when-evaluating-the-partial-filter-expressionerror-3588.md
index 4d20cb85df1..703e4c25cc6 100644
--- a/access/Concepts/Miscellaneous/error-when-evaluating-the-partial-filter-expressionerror-3588.md
+++ b/access/Concepts/Miscellaneous/error-when-evaluating-the-partial-filter-expressionerror-3588.md
@@ -19,9 +19,9 @@ This is an unexpected error. Please contact Microsoft Product Support Services f
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/event-properties.md b/access/Concepts/Miscellaneous/event-properties.md
index ec40afbe976..214769efbf1 100644
--- a/access/Concepts/Miscellaneous/event-properties.md
+++ b/access/Concepts/Miscellaneous/event-properties.md
@@ -65,9 +65,9 @@ End Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/exceptions-table-could-not-be-created-on-import-exporterror-3618.md b/access/Concepts/Miscellaneous/exceptions-table-could-not-be-created-on-import-exporterror-3618.md
index 664db4560b3..512b0e19081 100644
--- a/access/Concepts/Miscellaneous/exceptions-table-could-not-be-created-on-import-exporterror-3618.md
+++ b/access/Concepts/Miscellaneous/exceptions-table-could-not-be-created-on-import-exporterror-3618.md
@@ -19,9 +19,9 @@ A problem was encountered while importing or exporting to an external file. The
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/execute-method-ado-command.md b/access/Concepts/Miscellaneous/execute-method-ado-command.md
index d921911d714..c08c61dd447 100644
--- a/access/Concepts/Miscellaneous/execute-method-ado-command.md
+++ b/access/Concepts/Miscellaneous/execute-method-ado-command.md
@@ -56,9 +56,9 @@ An [ExecuteComplete](http://msdn.microsoft.com/library/47317d97-e373-32f4-9438-2
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/execute-method-ado-connection.md b/access/Concepts/Miscellaneous/execute-method-ado-connection.md
index c776a38e1b8..ec8487e7a4c 100644
--- a/access/Concepts/Miscellaneous/execute-method-ado-connection.md
+++ b/access/Concepts/Miscellaneous/execute-method-ado-connection.md
@@ -62,9 +62,9 @@ An [ExecuteComplete](http://msdn.microsoft.com/library/47317d97-e373-32f4-9438-2
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/executeoptions-and-fetchoptions-properties-example-vbscript.md b/access/Concepts/Miscellaneous/executeoptions-and-fetchoptions-properties-example-vbscript.md
index dea87a45c95..9eaf8f7a344 100644
--- a/access/Concepts/Miscellaneous/executeoptions-and-fetchoptions-properties-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/executeoptions-and-fetchoptions-properties-example-vbscript.md
@@ -90,9 +90,9 @@ RDS.RefreshEnd Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/expected-query-name-after-execute-error-3732.md b/access/Concepts/Miscellaneous/expected-query-name-after-execute-error-3732.md
index aeb3784d4c7..df0299d05df 100644
--- a/access/Concepts/Miscellaneous/expected-query-name-after-execute-error-3732.md
+++ b/access/Concepts/Miscellaneous/expected-query-name-after-execute-error-3732.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when using the EXECUTE statement. A valid stored query (view or procedure) is needed after the EXECUTE statement.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/expression-too-complexerror-2445.md b/access/Concepts/Miscellaneous/expression-too-complexerror-2445.md
index a215c31b96d..1ff4777d7e7 100644
--- a/access/Concepts/Miscellaneous/expression-too-complexerror-2445.md
+++ b/access/Concepts/Miscellaneous/expression-too-complexerror-2445.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This expression is too complex for the Microsoft Access database engine. Try to simplify the expression.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/external-table-is-not-in-the-expected-formaterror-3274.md b/access/Concepts/Miscellaneous/external-table-is-not-in-the-expected-formaterror-3274.md
index 9ada61a7485..c273a423fc2 100644
--- a/access/Concepts/Miscellaneous/external-table-is-not-in-the-expected-formaterror-3274.md
+++ b/access/Concepts/Miscellaneous/external-table-is-not-in-the-expected-formaterror-3274.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The format of the table has changed since it was linked. Link the table again, and then retry the operation.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/extra-error-2435.md b/access/Concepts/Miscellaneous/extra-error-2435.md
index 2b56e96ac44..dabdee861c6 100644
--- a/access/Concepts/Miscellaneous/extra-error-2435.md
+++ b/access/Concepts/Miscellaneous/extra-error-2435.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You entered an expression that has too many closing parentheses. Delete any parenthesis that does not have a matching opening parenthesis.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failed-to-load-rdocurs-dllerror-3672.md b/access/Concepts/Miscellaneous/failed-to-load-rdocurs-dllerror-3672.md
index 536bd1fa371..fad07d5b1ab 100644
--- a/access/Concepts/Miscellaneous/failed-to-load-rdocurs-dllerror-3672.md
+++ b/access/Concepts/Miscellaneous/failed-to-load-rdocurs-dllerror-3672.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for more information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failed-to-read-the-dropbox-foldererror-3512.md b/access/Concepts/Miscellaneous/failed-to-read-the-dropbox-foldererror-3512.md
index 9331140587c..409a8e08c0d 100644
--- a/access/Concepts/Miscellaneous/failed-to-read-the-dropbox-foldererror-3512.md
+++ b/access/Concepts/Miscellaneous/failed-to-read-the-dropbox-foldererror-3512.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failed-to-send-a-messageerror-3519.md b/access/Concepts/Miscellaneous/failed-to-send-a-messageerror-3519.md
index bb956d55ff2..b8dedd0918f 100644
--- a/access/Concepts/Miscellaneous/failed-to-send-a-messageerror-3519.md
+++ b/access/Concepts/Miscellaneous/failed-to-send-a-messageerror-3519.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failed-to-write-to-the-dropbox-foldererror-3513.md b/access/Concepts/Miscellaneous/failed-to-write-to-the-dropbox-foldererror-3513.md
index 405b9cf285b..b7cf3dc3e37 100644
--- a/access/Concepts/Miscellaneous/failed-to-write-to-the-dropbox-foldererror-3513.md
+++ b/access/Concepts/Miscellaneous/failed-to-write-to-the-dropbox-foldererror-3513.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failure-creating-fileerror-3436.md b/access/Concepts/Miscellaneous/failure-creating-fileerror-3436.md
index 9e266659527..854496833c4 100644
--- a/access/Concepts/Miscellaneous/failure-creating-fileerror-3436.md
+++ b/access/Concepts/Miscellaneous/failure-creating-fileerror-3436.md
@@ -23,9 +23,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failure-in-getting-a-file-from-the-server-using-ftperror-3680.md b/access/Concepts/Miscellaneous/failure-in-getting-a-file-from-the-server-using-ftperror-3680.md
index e8c25318358..5aaeeabeda6 100644
--- a/access/Concepts/Miscellaneous/failure-in-getting-a-file-from-the-server-using-ftperror-3680.md
+++ b/access/Concepts/Miscellaneous/failure-in-getting-a-file-from-the-server-using-ftperror-3680.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Unable to get a file from the internet server. Make sure the server is running and the FTP share folder is configured properly with read/write access. The file you are trying to retrieve might have been deleted.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failure-in-putting-a-file-to-the-server-using-ftperror-3681.md b/access/Concepts/Miscellaneous/failure-in-putting-a-file-to-the-server-using-ftperror-3681.md
index 732ad604d8b..1d15a0dc404 100644
--- a/access/Concepts/Miscellaneous/failure-in-putting-a-file-to-the-server-using-ftperror-3681.md
+++ b/access/Concepts/Miscellaneous/failure-in-putting-a-file-to-the-server-using-ftperror-3681.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
Unable to put a file on the internet server. Make sure the server is running and the FTP share folder is configured properly with read/write access.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failure-to-connect-to-the-ftp-serviceerror-3678.md b/access/Concepts/Miscellaneous/failure-to-connect-to-the-ftp-serviceerror-3678.md
index 177dd44bd26..47ab80d4de0 100644
--- a/access/Concepts/Miscellaneous/failure-to-connect-to-the-ftp-serviceerror-3678.md
+++ b/access/Concepts/Miscellaneous/failure-to-connect-to-the-ftp-serviceerror-3678.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Unable to open FTP connection. Make sure the internet server and FTP service are running and that your FTP service supports an anonymous connection.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failure-to-delete-a-file-on-the-server-using-ftperror-3682.md b/access/Concepts/Miscellaneous/failure-to-delete-a-file-on-the-server-using-ftperror-3682.md
index 2407ceb8226..f570af8229d 100644
--- a/access/Concepts/Miscellaneous/failure-to-delete-a-file-on-the-server-using-ftperror-3682.md
+++ b/access/Concepts/Miscellaneous/failure-to-delete-a-file-on-the-server-using-ftperror-3682.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Unabe to delete a file on the internet server. Make sure the server is running and the FTP share folder is configured properly with read/write access.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failure-to-do-open-file-using-ftp-serviceerror-3679.md b/access/Concepts/Miscellaneous/failure-to-do-open-file-using-ftp-serviceerror-3679.md
index db47f25cb2b..6ed5ceefab1 100644
--- a/access/Concepts/Miscellaneous/failure-to-do-open-file-using-ftp-serviceerror-3679.md
+++ b/access/Concepts/Miscellaneous/failure-to-do-open-file-using-ftp-serviceerror-3679.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
Unable to open a file in the internet server. Make sure the server is running and the FTP share folder is configured properly with read/write access.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failure-to-execute-the-http-requesterror-3677.md b/access/Concepts/Miscellaneous/failure-to-execute-the-http-requesterror-3677.md
index ddd33aba234..db43d9e05b7 100644
--- a/access/Concepts/Miscellaneous/failure-to-execute-the-http-requesterror-3677.md
+++ b/access/Concepts/Miscellaneous/failure-to-execute-the-http-requesterror-3677.md
@@ -24,9 +24,9 @@ Failed attempting to send a request to the internet server. The request could ha
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failure-to-load-a-dllerror-3462.md b/access/Concepts/Miscellaneous/failure-to-load-a-dllerror-3462.md
index cda374cc0d9..86bb7c496ff 100644
--- a/access/Concepts/Miscellaneous/failure-to-load-a-dllerror-3462.md
+++ b/access/Concepts/Miscellaneous/failure-to-load-a-dllerror-3462.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failure-to-read-from-an-internet-handle-try-the-operation-againerror-3675.md b/access/Concepts/Miscellaneous/failure-to-read-from-an-internet-handle-try-the-operation-againerror-3675.md
index 6e40cd4baae..eea63fc9e35 100644
--- a/access/Concepts/Miscellaneous/failure-to-read-from-an-internet-handle-try-the-operation-againerror-3675.md
+++ b/access/Concepts/Miscellaneous/failure-to-read-from-an-internet-handle-try-the-operation-againerror-3675.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
An internet error occurred when reading a file or reading a response from an internet operation.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failure-to-replicate-database-cannot-determine-whether-the-database-is-open-in-e.md b/access/Concepts/Miscellaneous/failure-to-replicate-database-cannot-determine-whether-the-database-is-open-in-e.md
index 4a63104d5fb..1427860b885 100644
--- a/access/Concepts/Miscellaneous/failure-to-replicate-database-cannot-determine-whether-the-database-is-open-in-e.md
+++ b/access/Concepts/Miscellaneous/failure-to-replicate-database-cannot-determine-whether-the-database-is-open-in-e.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failure-to-write-because-destination-disk-is-fullerror-3559.md b/access/Concepts/Miscellaneous/failure-to-write-because-destination-disk-is-fullerror-3559.md
index c96180e77ad..bbd88e03f5a 100644
--- a/access/Concepts/Miscellaneous/failure-to-write-because-destination-disk-is-fullerror-3559.md
+++ b/access/Concepts/Miscellaneous/failure-to-write-because-destination-disk-is-fullerror-3559.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failure-to-write-to-an-internet-handle-try-the-operation-againerror-3676.md b/access/Concepts/Miscellaneous/failure-to-write-to-an-internet-handle-try-the-operation-againerror-3676.md
index 80078e19974..08313aadef4 100644
--- a/access/Concepts/Miscellaneous/failure-to-write-to-an-internet-handle-try-the-operation-againerror-3676.md
+++ b/access/Concepts/Miscellaneous/failure-to-write-to-an-internet-handle-try-the-operation-againerror-3676.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
An internet error occurred writing to a file.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failure-to-write-to-the-synchronizer-log-fileerror-3471.md b/access/Concepts/Miscellaneous/failure-to-write-to-the-synchronizer-log-fileerror-3471.md
index 437c73bf41c..57923d469e9 100644
--- a/access/Concepts/Miscellaneous/failure-to-write-to-the-synchronizer-log-fileerror-3471.md
+++ b/access/Concepts/Miscellaneous/failure-to-write-to-the-synchronizer-log-fileerror-3471.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/failure-writing-to-the-synchronizer-logerror-3507.md b/access/Concepts/Miscellaneous/failure-writing-to-the-synchronizer-logerror-3507.md
index 6cb6f63b123..16afa0e6457 100644
--- a/access/Concepts/Miscellaneous/failure-writing-to-the-synchronizer-logerror-3507.md
+++ b/access/Concepts/Miscellaneous/failure-writing-to-the-synchronizer-logerror-3507.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/fastfind-cannot-search-on-non-column-references-error-3768.md b/access/Concepts/Miscellaneous/fastfind-cannot-search-on-non-column-references-error-3768.md
index c45fb205771..2e2abf762cc 100644
--- a/access/Concepts/Miscellaneous/fastfind-cannot-search-on-non-column-references-error-3768.md
+++ b/access/Concepts/Miscellaneous/fastfind-cannot-search-on-non-column-references-error-3768.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
DAO's FIND method cannot reference columns that are based on a parameter or an expression.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/fatal-error-accessing-a-local-dropbox-foldererror-3563.md b/access/Concepts/Miscellaneous/fatal-error-accessing-a-local-dropbox-foldererror-3563.md
index 446cfdc1af0..5e21613c945 100644
--- a/access/Concepts/Miscellaneous/fatal-error-accessing-a-local-dropbox-foldererror-3563.md
+++ b/access/Concepts/Miscellaneous/fatal-error-accessing-a-local-dropbox-foldererror-3563.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/field-ado-for-visual-c-plus-plus-syntax.md b/access/Concepts/Miscellaneous/field-ado-for-visual-c-plus-plus-syntax.md
index aaf8dad294a..ab6ddb0e5bd 100644
--- a/access/Concepts/Miscellaneous/field-ado-for-visual-c-plus-plus-syntax.md
+++ b/access/Concepts/Miscellaneous/field-ado-for-visual-c-plus-plus-syntax.md
@@ -50,9 +50,9 @@ ms.date: 06/08/2017
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/field-ado-wfc-syntax.md b/access/Concepts/Miscellaneous/field-ado-wfc-syntax.md
index e4d52311555..8cca699da12 100644
--- a/access/Concepts/Miscellaneous/field-ado-wfc-syntax.md
+++ b/access/Concepts/Miscellaneous/field-ado-wfc-syntax.md
@@ -94,9 +94,9 @@ public void setObject(Object value )
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/field-name-already-exists-in-table-nameerror-3380.md b/access/Concepts/Miscellaneous/field-name-already-exists-in-table-nameerror-3380.md
index 5af99c30cc1..8c1c6404438 100644
--- a/access/Concepts/Miscellaneous/field-name-already-exists-in-table-nameerror-3380.md
+++ b/access/Concepts/Miscellaneous/field-name-already-exists-in-table-nameerror-3380.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You have entered the same field name twice. Rewrite your code, giving each field a unique name. You should also check to see if the field name exists in the **Fields** collection.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/field-name-cannot-be-a-zero-length-stringerror-3315.md b/access/Concepts/Miscellaneous/field-name-cannot-be-a-zero-length-stringerror-3315.md
index 2181f904aee..36d74f7444b 100644
--- a/access/Concepts/Miscellaneous/field-name-cannot-be-a-zero-length-stringerror-3315.md
+++ b/access/Concepts/Miscellaneous/field-name-cannot-be-a-zero-length-stringerror-3315.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
The **AllowZeroLength** property for this field is set to **False**, prohibiting the entry of a zero-length string in the field. Enter a different value in the field.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/field-name-is-based-on-an-expression-and-cannot-be-editederror-3327.md b/access/Concepts/Miscellaneous/field-name-is-based-on-an-expression-and-cannot-be-editederror-3327.md
index 5605c32a500..31893219b99 100644
--- a/access/Concepts/Miscellaneous/field-name-is-based-on-an-expression-and-cannot-be-editederror-3327.md
+++ b/access/Concepts/Miscellaneous/field-name-is-based-on-an-expression-and-cannot-be-editederror-3327.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
For example, if a stored query or view with a column made up of an expression was created, you would not be able to update that column. The following would return this error: CREATE VIEW VCustomer AS SELECT (FirstName &; LastName) AS Test FROM Customer followed by UPDATE Test FROM VCustomer
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/field-visual-c-plus-plus-syntax-index-with-import.md b/access/Concepts/Miscellaneous/field-visual-c-plus-plus-syntax-index-with-import.md
index cb4a1c1e51f..285f7fa4ffd 100644
--- a/access/Concepts/Miscellaneous/field-visual-c-plus-plus-syntax-index-with-import.md
+++ b/access/Concepts/Miscellaneous/field-visual-c-plus-plus-syntax-index-with-import.md
@@ -70,9 +70,9 @@ __declspec(property(get=GetValue,put=PutValue)) _variant_t Invalid DDUE based on
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/field-will-not-fit-in-recorderror-3016.md b/access/Concepts/Miscellaneous/field-will-not-fit-in-recorderror-3016.md
index b77b07a59cb..ef41190e9a8 100644
--- a/access/Concepts/Miscellaneous/field-will-not-fit-in-recorderror-3016.md
+++ b/access/Concepts/Miscellaneous/field-will-not-fit-in-recorderror-3016.md
@@ -16,9 +16,9 @@ You tried to import or paste a field that is too large. Consider breaking the fi
Records are limited to just under 2K in size, excluding Memo and OLE Object fields.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/fieldsize-property.md b/access/Concepts/Miscellaneous/fieldsize-property.md
index c61bc091207..3d702def562 100644
--- a/access/Concepts/Miscellaneous/fieldsize-property.md
+++ b/access/Concepts/Miscellaneous/fieldsize-property.md
@@ -59,9 +59,9 @@ You can't undo changes to data that result from a change to the **FieldSize** pr
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/file-sharing-lock-count-exceedederror-3052.md b/access/Concepts/Miscellaneous/file-sharing-lock-count-exceedederror-3052.md
index ea891471b6a..5a0823c14c7 100644
--- a/access/Concepts/Miscellaneous/file-sharing-lock-count-exceedederror-3052.md
+++ b/access/Concepts/Miscellaneous/file-sharing-lock-count-exceedederror-3052.md
@@ -28,9 +28,9 @@ Some other factors that may cause an application to reach this threshold include
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/filtercolumn-filtercriterion-filtervalue-sortcolumn-and-sortdirection-properties.md b/access/Concepts/Miscellaneous/filtercolumn-filtercriterion-filtervalue-sortcolumn-and-sortdirection-properties.md
index 7966171e867..82b79f4f6f5 100644
--- a/access/Concepts/Miscellaneous/filtercolumn-filtercriterion-filtervalue-sortcolumn-and-sortdirection-properties.md
+++ b/access/Concepts/Miscellaneous/filtercolumn-filtercriterion-filtervalue-sortcolumn-and-sortdirection-properties.md
@@ -101,9 +101,9 @@ RDS.Reset(FALSE)End Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/first-last-functions-microsoft-access-sql.md b/access/Concepts/Miscellaneous/first-last-functions-microsoft-access-sql.md
index 13e27aa3f18..0abf2578f35 100644
--- a/access/Concepts/Miscellaneous/first-last-functions-microsoft-access-sql.md
+++ b/access/Concepts/Miscellaneous/first-last-functions-microsoft-access-sql.md
@@ -120,9 +120,9 @@ End Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/foreign-key-violationerror-3719.md b/access/Concepts/Miscellaneous/foreign-key-violationerror-3719.md
index 74014822d66..7add085390c 100644
--- a/access/Concepts/Miscellaneous/foreign-key-violationerror-3719.md
+++ b/access/Concepts/Miscellaneous/foreign-key-violationerror-3719.md
@@ -19,9 +19,9 @@ This foreign key violation results from an invalid primary key record that was i
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/form-section.md b/access/Concepts/Miscellaneous/form-section.md
index 9ac9fd0d268..c67be6c2d6a 100644
--- a/access/Concepts/Miscellaneous/form-section.md
+++ b/access/Concepts/Miscellaneous/form-section.md
@@ -21,9 +21,9 @@ You can set section properties which are attributes of a form that affect the ap
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/format-of-memo-file-does-not-match-specified-external-database-formaterror-3286.md b/access/Concepts/Miscellaneous/format-of-memo-file-does-not-match-specified-external-database-formaterror-3286.md
index 6b4aefdff76..e58da515d95 100644
--- a/access/Concepts/Miscellaneous/format-of-memo-file-does-not-match-specified-external-database-formaterror-3286.md
+++ b/access/Concepts/Miscellaneous/format-of-memo-file-does-not-match-specified-external-database-formaterror-3286.md
@@ -16,9 +16,9 @@ Your application cannot read the memo file associated with the database you are
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/function-is-not-available-in-expressionserror-2426.md b/access/Concepts/Miscellaneous/function-is-not-available-in-expressionserror-2426.md
index 362c3d3d482..ad7625de17d 100644
--- a/access/Concepts/Miscellaneous/function-is-not-available-in-expressionserror-2426.md
+++ b/access/Concepts/Miscellaneous/function-is-not-available-in-expressionserror-2426.md
@@ -16,9 +16,9 @@ You have entered a function that cannot be used in this expression. The function
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/getting-help-from-microsoft-help-and-support.md b/access/Concepts/Miscellaneous/getting-help-from-microsoft-help-and-support.md
index 9941dbaccae..d8903178269 100644
--- a/access/Concepts/Miscellaneous/getting-help-from-microsoft-help-and-support.md
+++ b/access/Concepts/Miscellaneous/getting-help-from-microsoft-help-and-support.md
@@ -18,9 +18,9 @@ For additional technical resources and information about developing with Microso
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/guid-not-allowed-in-find-method-criteria-expressionerror-3614.md b/access/Concepts/Miscellaneous/guid-not-allowed-in-find-method-criteria-expressionerror-3614.md
index 46068bd531c..c2c797aa935 100644
--- a/access/Concepts/Miscellaneous/guid-not-allowed-in-find-method-criteria-expressionerror-3614.md
+++ b/access/Concepts/Miscellaneous/guid-not-allowed-in-find-method-criteria-expressionerror-3614.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The criteria expression in a Find method cannot reference a GUID.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/guidelines-for-naming-fields-controls-and-objects.md b/access/Concepts/Miscellaneous/guidelines-for-naming-fields-controls-and-objects.md
index 509e7127830..f47f2e6c629 100644
--- a/access/Concepts/Miscellaneous/guidelines-for-naming-fields-controls-and-objects.md
+++ b/access/Concepts/Miscellaneous/guidelines-for-naming-fields-controls-and-objects.md
@@ -34,9 +34,9 @@ Another way to avoid unexpected results is to always use the `!` operator instea
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/guids-do-not-match-or-the-requested-guid-could-not-be-founderror-3548.md b/access/Concepts/Miscellaneous/guids-do-not-match-or-the-requested-guid-could-not-be-founderror-3548.md
index 1d9d17970ca..e2d29ef37e8 100644
--- a/access/Concepts/Miscellaneous/guids-do-not-match-or-the-requested-guid-could-not-be-founderror-3548.md
+++ b/access/Concepts/Miscellaneous/guids-do-not-match-or-the-requested-guid-could-not-be-founderror-3548.md
@@ -16,9 +16,9 @@ This is an unexpected error. Please contact Microsoft Product Support Services f
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/handler-property-example-vb.md b/access/Concepts/Miscellaneous/handler-property-example-vb.md
index 936368e2450..53f1fbacdad 100644
--- a/access/Concepts/Miscellaneous/handler-property-example-vb.md
+++ b/access/Concepts/Miscellaneous/handler-property-example-vb.md
@@ -47,9 +47,9 @@ End IfEnd Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/handler-property-example-vc-plus-plus.md b/access/Concepts/Miscellaneous/handler-property-example-vc-plus-plus.md
index d1d98628f1b..2494841d1e8 100644
--- a/access/Concepts/Miscellaneous/handler-property-example-vc-plus-plus.md
+++ b/access/Concepts/Miscellaneous/handler-property-example-vc-plus-plus.md
@@ -83,9 +83,9 @@ printf("\tSource = %s\n", (LPCSTR) bstrSource);printf("\tDescription = %s\n", (L
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/handler-property-example-vj-plus-plus.md b/access/Concepts/Miscellaneous/handler-property-example-vj-plus-plus.md
index 0fa7c7fcf81..17a5a37a514 100644
--- a/access/Concepts/Miscellaneous/handler-property-example-vj-plus-plus.md
+++ b/access/Concepts/Miscellaneous/handler-property-example-vj-plus-plus.md
@@ -86,9 +86,9 @@ System.out.println("\tDescription = " + je.getMessage() + "\n");}
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/handline-errors-in-visual-j-plus-plus.md b/access/Concepts/Miscellaneous/handline-errors-in-visual-j-plus-plus.md
index 5576493eb4f..d5305be1c8d 100644
--- a/access/Concepts/Miscellaneous/handline-errors-in-visual-j-plus-plus.md
+++ b/access/Concepts/Miscellaneous/handline-errors-in-visual-j-plus-plus.md
@@ -112,9 +112,9 @@ public class ErrorExample
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/having-clause-name-without-grouping-or-aggregationerror-3091.md b/access/Concepts/Miscellaneous/having-clause-name-without-grouping-or-aggregationerror-3091.md
index 18864edbbab..c34b1882cad 100644
--- a/access/Concepts/Miscellaneous/having-clause-name-without-grouping-or-aggregationerror-3091.md
+++ b/access/Concepts/Miscellaneous/having-clause-name-without-grouping-or-aggregationerror-3091.md
@@ -16,9 +16,9 @@ This error occurs when the query evaluates the identifiers in the SELECT stateme
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/ignore-nulls-property.md b/access/Concepts/Miscellaneous/ignore-nulls-property.md
index cc692de2663..12fbbeddf7d 100644
--- a/access/Concepts/Miscellaneous/ignore-nulls-property.md
+++ b/access/Concepts/Miscellaneous/ignore-nulls-property.md
@@ -35,9 +35,9 @@ You can define an index for a field to facilitate faster searches for records in
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/iif-function-without-error-2440.md b/access/Concepts/Miscellaneous/iif-function-without-error-2440.md
index a15c7936ff3..1422014d316 100644
--- a/access/Concepts/Miscellaneous/iif-function-without-error-2440.md
+++ b/access/Concepts/Miscellaneous/iif-function-without-error-2440.md
@@ -21,9 +21,9 @@ The **IIf** function requires parentheses around its arguments, as shown in the
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/illegal-column-level-constrainterror-3789.md b/access/Concepts/Miscellaneous/illegal-column-level-constrainterror-3789.md
index a74dff8a50f..fffb9acf127 100644
--- a/access/Concepts/Miscellaneous/illegal-column-level-constrainterror-3789.md
+++ b/access/Concepts/Miscellaneous/illegal-column-level-constrainterror-3789.md
@@ -19,9 +19,9 @@ This error occurs when using the CREATE TABLE or ALTER TABLE ALTER COLUMN syntax
CREATE TABLE Orders (OrderId IDENTITY (100,10) CONSTRAINT pkOrders PRIMARY KEY, CustId LONG CONSTRAINT fkCustomersCustId REFERENCES Customers (CustId), Balance DOUBLE, CONSTRAINT CustomerExceededCreditLimit CHECK (CustId IN (SELECT CustId FROM Customers C WHERE C.CustId = Orders.CustId AND C.CreditLimit >= (SELECT SUM(Balance)FROM Orders O WHERE O.CustId = Orders.CustId))));.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/illegal-operation-performed-on-a-sql-server-replicaerror-3777.md b/access/Concepts/Miscellaneous/illegal-operation-performed-on-a-sql-server-replicaerror-3777.md
index 1cced0881b7..16e3e379262 100644
--- a/access/Concepts/Miscellaneous/illegal-operation-performed-on-a-sql-server-replicaerror-3777.md
+++ b/access/Concepts/Miscellaneous/illegal-operation-performed-on-a-sql-server-replicaerror-3777.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
Many operations cannot be executed from Microsoft SQL replicas. For example, you cannot delete or rename a table, add, delete, or rename a column in a table, make a local table replicable, exchange with another Jet Subscriber in the SQL replica set, or execute an exchange with the SQL Publication in any manner other than a Direct synchronization.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/illegal-reference-in-queryerror-3451.md b/access/Concepts/Miscellaneous/illegal-reference-in-queryerror-3451.md
index 8e862a4a06e..60c6cd67302 100644
--- a/access/Concepts/Miscellaneous/illegal-reference-in-queryerror-3451.md
+++ b/access/Concepts/Miscellaneous/illegal-reference-in-queryerror-3451.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This error occurs when parameters are defined with unrecognized data types.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/in-clause-microsoft-access-sql.md b/access/Concepts/Miscellaneous/in-clause-microsoft-access-sql.md
index cf788825288..5016920a230 100644
--- a/access/Concepts/Miscellaneous/in-clause-microsoft-access-sql.md
+++ b/access/Concepts/Miscellaneous/in-clause-microsoft-access-sql.md
@@ -128,9 +128,9 @@ ORDER BY CustomerID;
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/in-operator-microsoft-access-sql.md b/access/Concepts/Miscellaneous/in-operator-microsoft-access-sql.md
index 22ae7f58087..93163136ef2 100644
--- a/access/Concepts/Miscellaneous/in-operator-microsoft-access-sql.md
+++ b/access/Concepts/Miscellaneous/in-operator-microsoft-access-sql.md
@@ -74,9 +74,9 @@ End Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/in-operator-without-error-2429.md b/access/Concepts/Miscellaneous/in-operator-without-error-2429.md
index a3f99ca1976..98996da34b9 100644
--- a/access/Concepts/Miscellaneous/in-operator-without-error-2429.md
+++ b/access/Concepts/Miscellaneous/in-operator-without-error-2429.md
@@ -29,9 +29,9 @@ This code tests to see if the Region field contains any of the above abbreviatio
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/in-the-fixed-width-specification-namecolumn-column-does-not-specify-a-widtherror.md b/access/Concepts/Miscellaneous/in-the-fixed-width-specification-namecolumn-column-does-not-specify-a-widtherror.md
index b604cf1e62a..2cc6f654291 100644
--- a/access/Concepts/Miscellaneous/in-the-fixed-width-specification-namecolumn-column-does-not-specify-a-widtherror.md
+++ b/access/Concepts/Miscellaneous/in-the-fixed-width-specification-namecolumn-column-does-not-specify-a-widtherror.md
@@ -15,9 +15,9 @@ No column width parameter is specified in the text file specification for the Te
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/in-the-text-file-specification-namethe-name-option-is-invaliderror-3442.md b/access/Concepts/Miscellaneous/in-the-text-file-specification-namethe-name-option-is-invaliderror-3442.md
index e27a5a73a7d..3beec36ad77 100644
--- a/access/Concepts/Miscellaneous/in-the-text-file-specification-namethe-name-option-is-invaliderror-3442.md
+++ b/access/Concepts/Miscellaneous/in-the-text-file-specification-namethe-name-option-is-invaliderror-3442.md
@@ -21,9 +21,9 @@ One of the options in the text file specification for the Text ISAM is invalid.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/incompatible-version-of-an-installable-isamerror-3429.md b/access/Concepts/Miscellaneous/incompatible-version-of-an-installable-isamerror-3429.md
index 19974cbee51..8fdc116c526 100644
--- a/access/Concepts/Miscellaneous/incompatible-version-of-an-installable-isamerror-3429.md
+++ b/access/Concepts/Miscellaneous/incompatible-version-of-an-installable-isamerror-3429.md
@@ -19,9 +19,9 @@ You attempted to use an older version of an installable ISAM with the current ve
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/incorrect-collating-sequenceerror-3220.md b/access/Concepts/Miscellaneous/incorrect-collating-sequenceerror-3220.md
index 85be26e33b3..b37f2030b29 100644
--- a/access/Concepts/Miscellaneous/incorrect-collating-sequenceerror-3220.md
+++ b/access/Concepts/Miscellaneous/incorrect-collating-sequenceerror-3220.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You tried to link a Paradox table that was created with an international sort order that is not the same as the one you are using.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/incorrect-version-of-the-dll-file-name-was-founderror-3445.md b/access/Concepts/Miscellaneous/incorrect-version-of-the-dll-file-name-was-founderror-3445.md
index e012809bdf9..b830896d187 100644
--- a/access/Concepts/Miscellaneous/incorrect-version-of-the-dll-file-name-was-founderror-3445.md
+++ b/access/Concepts/Miscellaneous/incorrect-version-of-the-dll-file-name-was-founderror-3445.md
@@ -17,9 +17,9 @@ For Microsoft Access Database Engine databases, the installed Microsoft Access D
For ODBCDirect databases, the installed Remote Data Objects (RDO) DLL (msrdo32.dll) must be version 1.0 or later.
Try reinstalling the application that returned the error.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/index-already-existserror-3284.md b/access/Concepts/Miscellaneous/index-already-existserror-3284.md
index 47ce98f5492..b0125c28679 100644
--- a/access/Concepts/Miscellaneous/index-already-existserror-3284.md
+++ b/access/Concepts/Miscellaneous/index-already-existserror-3284.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You cannot have two indexes with the same name in a table. Rename one of the indexes.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/index-definition.md b/access/Concepts/Miscellaneous/index-definition.md
index 791e0aaca8c..a953d5c3056 100644
--- a/access/Concepts/Miscellaneous/index-definition.md
+++ b/access/Concepts/Miscellaneous/index-definition.md
@@ -23,9 +23,9 @@ An index is a Microsoft Access feature that speeds up searching and sorting in a
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/index-file-not-founderror-3256.md b/access/Concepts/Miscellaneous/index-file-not-founderror-3256.md
index 0f09caacca1..184b4b3299b 100644
--- a/access/Concepts/Miscellaneous/index-file-not-founderror-3256.md
+++ b/access/Concepts/Miscellaneous/index-file-not-founderror-3256.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to access a dBASE table, but one of the indexes listed in the table's associated .inf file could not be found. The index may have been renamed, moved, or deleted. Either relink the table, or use Microsoft Windows Notepad or another text editor to update the .inf file.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/index-not-founderror-3015.md b/access/Concepts/Miscellaneous/index-not-founderror-3015.md
index 76b3ea89bca..c1c2933300c 100644
--- a/access/Concepts/Miscellaneous/index-not-founderror-3015.md
+++ b/access/Concepts/Miscellaneous/index-not-founderror-3015.md
@@ -19,9 +19,9 @@ You tried to use a value that is not an index. You can determine the valid index
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/index-or-primary-key-cannot-contain-a-null-valueerror-3058.md b/access/Concepts/Miscellaneous/index-or-primary-key-cannot-contain-a-null-valueerror-3058.md
index c11c94887e9..ca2083449aa 100644
--- a/access/Concepts/Miscellaneous/index-or-primary-key-cannot-contain-a-null-valueerror-3058.md
+++ b/access/Concepts/Miscellaneous/index-or-primary-key-cannot-contain-a-null-valueerror-3058.md
@@ -41,9 +41,9 @@ To solve this problem, you must enter a value in the primary key field before mo
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/indexed-property.md b/access/Concepts/Miscellaneous/indexed-property.md
index db0ebebac13..90fc2763615 100644
--- a/access/Concepts/Miscellaneous/indexed-property.md
+++ b/access/Concepts/Miscellaneous/indexed-property.md
@@ -53,9 +53,9 @@ If you want to create multiple-field indexes, use the Indexes window.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/input-and-inputb-functions-differences-in-string-function-operations.md b/access/Concepts/Miscellaneous/input-and-inputb-functions-differences-in-string-function-operations.md
index df8a0a70dba..fae3669fd5c 100644
--- a/access/Concepts/Miscellaneous/input-and-inputb-functions-differences-in-string-function-operations.md
+++ b/access/Concepts/Miscellaneous/input-and-inputb-functions-differences-in-string-function-operations.md
@@ -30,9 +30,9 @@ Name Address Telephone
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/insufficient-memory-to-complete-operationerror-3584.md b/access/Concepts/Miscellaneous/insufficient-memory-to-complete-operationerror-3584.md
index f4b0d29f367..fbee0ef69af 100644
--- a/access/Concepts/Miscellaneous/insufficient-memory-to-complete-operationerror-3584.md
+++ b/access/Concepts/Miscellaneous/insufficient-memory-to-complete-operationerror-3584.md
@@ -19,9 +19,9 @@ Your computer ran out of memory while trying to replicate the database. Close ot
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/internet-dll-wininet-dll-could-not-be-found-or-loadederror-3674.md b/access/Concepts/Miscellaneous/internet-dll-wininet-dll-could-not-be-found-or-loadederror-3674.md
index 4b7db785edd..3bc2b2e6ff2 100644
--- a/access/Concepts/Miscellaneous/internet-dll-wininet-dll-could-not-be-found-or-loadederror-3674.md
+++ b/access/Concepts/Miscellaneous/internet-dll-wininet-dll-could-not-be-found-or-loadederror-3674.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The wininet.dll could not be found in your path. Please re-run setup.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/internet-is-too-slowerror-3650.md b/access/Concepts/Miscellaneous/internet-is-too-slowerror-3650.md
index ad52cce0b84..025ddcc1a15 100644
--- a/access/Concepts/Miscellaneous/internet-is-too-slowerror-3650.md
+++ b/access/Concepts/Miscellaneous/internet-is-too-slowerror-3650.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
There has been a failure due to Internet transmission speed.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/internet-login-failureerror-3652.md b/access/Concepts/Miscellaneous/internet-login-failureerror-3652.md
index 813f6117e48..ff6c838d175 100644
--- a/access/Concepts/Miscellaneous/internet-login-failureerror-3652.md
+++ b/access/Concepts/Miscellaneous/internet-login-failureerror-3652.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
The server did not recognize the login information you entered.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/internet-not-set-uperror-3653.md b/access/Concepts/Miscellaneous/internet-not-set-uperror-3653.md
index b22aed4f5bf..439b09b5388 100644
--- a/access/Concepts/Miscellaneous/internet-not-set-uperror-3653.md
+++ b/access/Concepts/Miscellaneous/internet-not-set-uperror-3653.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
There is a problem with the Internet setup.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/internet-synchronizer-exited-unexpectedlyerror-3683.md b/access/Concepts/Miscellaneous/internet-synchronizer-exited-unexpectedlyerror-3683.md
index 37f1f9d4942..1f920f95fcf 100644
--- a/access/Concepts/Miscellaneous/internet-synchronizer-exited-unexpectedlyerror-3683.md
+++ b/access/Concepts/Miscellaneous/internet-synchronizer-exited-unexpectedlyerror-3683.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
The internet server replied with an invalid response. Retry the operation.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/internettimeout-property-example-vb.md b/access/Concepts/Miscellaneous/internettimeout-property-example-vb.md
index 056d7951145..4f5e0188195 100644
--- a/access/Concepts/Miscellaneous/internettimeout-property-example-vb.md
+++ b/access/Concepts/Miscellaneous/internettimeout-property-example-vb.md
@@ -40,9 +40,9 @@ End Sub'EndInternetTimeoutVB
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/internettimeout-property-example-vc-plus-plus.md b/access/Concepts/Miscellaneous/internettimeout-property-example-vc-plus-plus.md
index 70817120245..5559bdba646 100644
--- a/access/Concepts/Miscellaneous/internettimeout-property-example-vc-plus-plus.md
+++ b/access/Concepts/Miscellaneous/internettimeout-property-example-vc-plus-plus.md
@@ -76,9 +76,9 @@ printf("\tSource = %s\n", (LPCSTR) bstrSource);printf("\tDescription = %s\n", (L
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/internettimeout-property-example-vj-plus-plus.md b/access/Concepts/Miscellaneous/internettimeout-property-example-vj-plus-plus.md
index a0cb2781067..be9f8bf8a70 100644
--- a/access/Concepts/Miscellaneous/internettimeout-property-example-vj-plus-plus.md
+++ b/access/Concepts/Miscellaneous/internettimeout-property-example-vj-plus-plus.md
@@ -82,9 +82,9 @@ System.out.println("\tDescription = " + je.getMessage() + "\n");}
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/intrinsic-constants-as-bit-masks.md b/access/Concepts/Miscellaneous/intrinsic-constants-as-bit-masks.md
index d81206bbcd0..d9e0e7843f4 100644
--- a/access/Concepts/Miscellaneous/intrinsic-constants-as-bit-masks.md
+++ b/access/Concepts/Miscellaneous/intrinsic-constants-as-bit-masks.md
@@ -40,9 +40,9 @@ You can use the constants to test for any combination of buttons and keys withou
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/invalid-address-for-destination-dropbox-foldererror-3557.md b/access/Concepts/Miscellaneous/invalid-address-for-destination-dropbox-foldererror-3557.md
index 87508a82ad8..5409dd3aff2 100644
--- a/access/Concepts/Miscellaneous/invalid-address-for-destination-dropbox-foldererror-3557.md
+++ b/access/Concepts/Miscellaneous/invalid-address-for-destination-dropbox-foldererror-3557.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-argumenterror-3001.md b/access/Concepts/Miscellaneous/invalid-argumenterror-3001.md
index 868da6da284..e2b6a54918b 100644
--- a/access/Concepts/Miscellaneous/invalid-argumenterror-3001.md
+++ b/access/Concepts/Miscellaneous/invalid-argumenterror-3001.md
@@ -16,9 +16,9 @@ You tried to perform an operation that involves a routine in a DLL, and one of t
This error also occurs when you attempt to use mutually exclusive constants in an argument to a method, such as specifying both **dbConsistent** and **dbInconsistent** in the _options_ argument to the **OpenRecordset** method.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-arguments-used-with-domain-functionerror-2428.md b/access/Concepts/Miscellaneous/invalid-arguments-used-with-domain-functionerror-2428.md
index 801171605a1..a625ae24c66 100644
--- a/access/Concepts/Miscellaneous/invalid-arguments-used-with-domain-functionerror-2428.md
+++ b/access/Concepts/Miscellaneous/invalid-arguments-used-with-domain-functionerror-2428.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You have entered an invalid argument in an aggregate function. For information on the function's arguments, see SQL Aggregate Functions, and then choose the name of the function.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-bracketing-of-name-nameerror-3126.md b/access/Concepts/Miscellaneous/invalid-bracketing-of-name-nameerror-3126.md
index 4769c693a41..1ecf52217d2 100644
--- a/access/Concepts/Miscellaneous/invalid-bracketing-of-name-nameerror-3126.md
+++ b/access/Concepts/Miscellaneous/invalid-bracketing-of-name-nameerror-3126.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The specified name either cannot have brackets around it or the brackets are mismatched. Check your entry to make sure the brackets are properly matched, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-century-setting-in-the-xbase-key-of-the-windows-registryerror-3227.md b/access/Concepts/Miscellaneous/invalid-century-setting-in-the-xbase-key-of-the-windows-registryerror-3227.md
index 48439224078..a738e302e72 100644
--- a/access/Concepts/Miscellaneous/invalid-century-setting-in-the-xbase-key-of-the-windows-registryerror-3227.md
+++ b/access/Concepts/Miscellaneous/invalid-century-setting-in-the-xbase-key-of-the-windows-registryerror-3227.md
@@ -29,9 +29,9 @@ To fix the Century setting
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-connection-string-in-pass-through-queryerror-3305.md b/access/Concepts/Miscellaneous/invalid-connection-string-in-pass-through-queryerror-3305.md
index 3bd74d58f68..b4911acb4cf 100644
--- a/access/Concepts/Miscellaneous/invalid-connection-string-in-pass-through-queryerror-3305.md
+++ b/access/Concepts/Miscellaneous/invalid-connection-string-in-pass-through-queryerror-3305.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
The connection string for a pass-through query should begin with .
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-database-object-referenceerror-3276.md b/access/Concepts/Miscellaneous/invalid-database-object-referenceerror-3276.md
index 0f8a297ca79..8651761bf52 100644
--- a/access/Concepts/Miscellaneous/invalid-database-object-referenceerror-3276.md
+++ b/access/Concepts/Miscellaneous/invalid-database-object-referenceerror-3276.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
The **Database** object specified is not the result of the **OpenDatabase** method, or it has been modified and is no longer valid.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-database-objecterror-3263.md b/access/Concepts/Miscellaneous/invalid-database-objecterror-3263.md
index a2f5efbee8c..199e044e6e1 100644
--- a/access/Concepts/Miscellaneous/invalid-database-objecterror-3263.md
+++ b/access/Concepts/Miscellaneous/invalid-database-objecterror-3263.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The **Database** object specified is not the result of the **OpenDatabase** method, or it has been modified and is no longer valid.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-datacodepage-option-in-initialization-settingerror-3337.md b/access/Concepts/Miscellaneous/invalid-datacodepage-option-in-initialization-settingerror-3337.md
index d957cc3dedb..b337d9ee4d3 100644
--- a/access/Concepts/Miscellaneous/invalid-datacodepage-option-in-initialization-settingerror-3337.md
+++ b/access/Concepts/Miscellaneous/invalid-datacodepage-option-in-initialization-settingerror-3337.md
@@ -23,9 +23,9 @@ Valid settings are:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-date-setting-in-the-xbase-key-of-the-windows-registryerror-3213.md b/access/Concepts/Miscellaneous/invalid-date-setting-in-the-xbase-key-of-the-windows-registryerror-3213.md
index 8e75eefe832..d629343c219 100644
--- a/access/Concepts/Miscellaneous/invalid-date-setting-in-the-xbase-key-of-the-windows-registryerror-3213.md
+++ b/access/Concepts/Miscellaneous/invalid-date-setting-in-the-xbase-key-of-the-windows-registryerror-3213.md
@@ -32,9 +32,9 @@ There is an invalid **Date** setting in the **Xbase** key of the Microsoft Wind
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-deleted-setting-in-the-xbase-key-of-the-windows-registryerror-3208.md b/access/Concepts/Miscellaneous/invalid-deleted-setting-in-the-xbase-key-of-the-windows-registryerror-3208.md
index 1233a5286a0..33063f836dc 100644
--- a/access/Concepts/Miscellaneous/invalid-deleted-setting-in-the-xbase-key-of-the-windows-registryerror-3208.md
+++ b/access/Concepts/Miscellaneous/invalid-deleted-setting-in-the-xbase-key-of-the-windows-registryerror-3208.md
@@ -29,9 +29,9 @@ There is an invalid **Deleted** setting in the **Xbase** key of the Microsoft W
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-dropbox-path-nameerror-3476.md b/access/Concepts/Miscellaneous/invalid-dropbox-path-nameerror-3476.md
index ed5b1e8d92b..ed60468c02b 100644
--- a/access/Concepts/Miscellaneous/invalid-dropbox-path-nameerror-3476.md
+++ b/access/Concepts/Miscellaneous/invalid-dropbox-path-nameerror-3476.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
Make sure the dropbox path is correct.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-entry-cannot-perform-cascading-operation-in-table-name-because-the-value.md b/access/Concepts/Miscellaneous/invalid-entry-cannot-perform-cascading-operation-in-table-name-because-the-value.md
index 9fcadc25b68..74327a4622e 100644
--- a/access/Concepts/Miscellaneous/invalid-entry-cannot-perform-cascading-operation-in-table-name-because-the-value.md
+++ b/access/Concepts/Miscellaneous/invalid-entry-cannot-perform-cascading-operation-in-table-name-because-the-value.md
@@ -17,9 +17,9 @@ You are trying to save a value to a primary key field that is included in a rela
In Microsoft Access, the **Cascade Update Related Fields** option is selected for the relationship; or, in DAO code, the **dbRelationUpdateCascade** option is specified for the **Relation** object's **Attributes** property. Setting either one of these options will cause your application to attempt to update the matching field in the related table.
To save your changes to this field, the text you enter must be no longer than the field size of the related field that your application is trying to update for you. In this case, the related field has a shorter field size than the field you are updating. To avoid this problem in the future, set the **Size** property for both of the matching fields to the same value.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-expression-in-the-replicafilter-propertyerror-3587.md b/access/Concepts/Miscellaneous/invalid-expression-in-the-replicafilter-propertyerror-3587.md
index 3b6f3a9ade0..90fdae85890 100644
--- a/access/Concepts/Miscellaneous/invalid-expression-in-the-replicafilter-propertyerror-3587.md
+++ b/access/Concepts/Miscellaneous/invalid-expression-in-the-replicafilter-propertyerror-3587.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
The **ReplicaFilter** string contains an invalid word. Check the syntax for any misspelled or missing words.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-field-data-typeerror-3259.md b/access/Concepts/Miscellaneous/invalid-field-data-typeerror-3259.md
index 897441f3b77..6641495c32a 100644
--- a/access/Concepts/Miscellaneous/invalid-field-data-typeerror-3259.md
+++ b/access/Concepts/Miscellaneous/invalid-field-data-typeerror-3259.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
The data type specified in the **Field** object's **Type** property is not valid. Choose one of the valid types as shown in the **Type** property Help topic.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-field-name-name-in-definition-of-index-or-relationshiperror-3409.md b/access/Concepts/Miscellaneous/invalid-field-name-name-in-definition-of-index-or-relationshiperror-3409.md
index 7f46d8470f4..34be84e375e 100644
--- a/access/Concepts/Miscellaneous/invalid-field-name-name-in-definition-of-index-or-relationshiperror-3409.md
+++ b/access/Concepts/Miscellaneous/invalid-field-name-name-in-definition-of-index-or-relationshiperror-3409.md
@@ -25,9 +25,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-file-formaterror-3182.md b/access/Concepts/Miscellaneous/invalid-file-formaterror-3182.md
index b9d5c9b3957..0cd235f9939 100644
--- a/access/Concepts/Miscellaneous/invalid-file-formaterror-3182.md
+++ b/access/Concepts/Miscellaneous/invalid-file-formaterror-3182.md
@@ -22,9 +22,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-http-addresserror-3685.md b/access/Concepts/Miscellaneous/invalid-http-addresserror-3685.md
index 2ba2478a9fe..10261212705 100644
--- a/access/Concepts/Miscellaneous/invalid-http-addresserror-3685.md
+++ b/access/Concepts/Miscellaneous/invalid-http-addresserror-3685.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The HTTP address specified is not valid for this replica set. The HTTP address supplied did not match any values in the field InternetAddress in the system table MSysTranspAddress.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-index-definitionerror-3285.md b/access/Concepts/Miscellaneous/invalid-index-definitionerror-3285.md
index 4155bf9a939..ba6ea56d0c3 100644
--- a/access/Concepts/Miscellaneous/invalid-index-definitionerror-3285.md
+++ b/access/Concepts/Miscellaneous/invalid-index-definitionerror-3285.md
@@ -20,9 +20,9 @@ Possible causes:
You are using the same field twice in an index or relationship, which the Microsoft Access database engine does not permit.
You are creating a relationship using fields with data types that do not match. In Microsoft Access database engine databases, you can only relate fields with identical data types or a AutoNumber field with a Number field set to a Long Integer.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-inf-fileerror-3168.md b/access/Concepts/Miscellaneous/invalid-inf-fileerror-3168.md
index f0f4fc55018..22ebf65ae49 100644
--- a/access/Concepts/Miscellaneous/invalid-inf-fileerror-3168.md
+++ b/access/Concepts/Miscellaneous/invalid-inf-fileerror-3168.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You tried to access a dBASE table, but its associated .inf file is invalid or has become corrupted. Relink the table, making sure you specify the correct indexes.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-internet-addresserror-3651.md b/access/Concepts/Miscellaneous/invalid-internet-addresserror-3651.md
index 324104dc0ce..7ff2cb878b4 100644
--- a/access/Concepts/Miscellaneous/invalid-internet-addresserror-3651.md
+++ b/access/Concepts/Miscellaneous/invalid-internet-addresserror-3651.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You have requested an Internet address which is not valid or not available. Check the address, and if it is valid, try again later.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-mark-setting-in-the-xbase-key-of-the-windows-registryerror-3214.md b/access/Concepts/Miscellaneous/invalid-mark-setting-in-the-xbase-key-of-the-windows-registryerror-3214.md
index 87f0eda36c9..a91e2d71e03 100644
--- a/access/Concepts/Miscellaneous/invalid-mark-setting-in-the-xbase-key-of-the-windows-registryerror-3214.md
+++ b/access/Concepts/Miscellaneous/invalid-mark-setting-in-the-xbase-key-of-the-windows-registryerror-3214.md
@@ -29,9 +29,9 @@ There is an invalid **Mark** setting in the **Xbase** key of the Microsoft Wind
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-memo-or-ole-object-in-subquery-nameerror-3342.md b/access/Concepts/Miscellaneous/invalid-memo-or-ole-object-in-subquery-nameerror-3342.md
index d4fbc35c444..62de30fb2d6 100644
--- a/access/Concepts/Miscellaneous/invalid-memo-or-ole-object-in-subquery-nameerror-3342.md
+++ b/access/Concepts/Miscellaneous/invalid-memo-or-ole-object-in-subquery-nameerror-3342.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
A subquery cannot return a Memo or OLE Object, and it cannot be compared to a Memo or OLE Object in an expression.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-networkaccess-setting-in-the-windows-registryerror-3248.md b/access/Concepts/Miscellaneous/invalid-networkaccess-setting-in-the-windows-registryerror-3248.md
index aeaa6778dd6..02c1893c495 100644
--- a/access/Concepts/Miscellaneous/invalid-networkaccess-setting-in-the-windows-registryerror-3248.md
+++ b/access/Concepts/Miscellaneous/invalid-networkaccess-setting-in-the-windows-registryerror-3248.md
@@ -29,9 +29,9 @@ There is an invalid **NetworkAccess** setting in the Microsoft Windows Registry
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-operationerror-3219.md b/access/Concepts/Miscellaneous/invalid-operationerror-3219.md
index 6c4cd2c50a3..ed4955d33b3 100644
--- a/access/Concepts/Miscellaneous/invalid-operationerror-3219.md
+++ b/access/Concepts/Miscellaneous/invalid-operationerror-3219.md
@@ -29,9 +29,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-pagetimeout-setting-in-the-windows-registryerror-3249.md b/access/Concepts/Miscellaneous/invalid-pagetimeout-setting-in-the-windows-registryerror-3249.md
index 8ad38044fd4..13be6e91650 100644
--- a/access/Concepts/Miscellaneous/invalid-pagetimeout-setting-in-the-windows-registryerror-3249.md
+++ b/access/Concepts/Miscellaneous/invalid-pagetimeout-setting-in-the-windows-registryerror-3249.md
@@ -32,9 +32,9 @@ There is an invalid **PageTimeout** setting in the Microsoft Windows Registry.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-partner-synchronizererror-3741.md b/access/Concepts/Miscellaneous/invalid-partner-synchronizererror-3741.md
index 2ed057533b4..c5548fa7e9f 100644
--- a/access/Concepts/Miscellaneous/invalid-partner-synchronizererror-3741.md
+++ b/access/Concepts/Miscellaneous/invalid-partner-synchronizererror-3741.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The synchronizer specified is not valid for this replica set or is not the hub synchronizer for a Local or Anonymous replica. You can only synchronize a Local or Anonymous replica with the Global hub replica that created it.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-partner-synchronizererror-3741ado-error.md b/access/Concepts/Miscellaneous/invalid-partner-synchronizererror-3741ado-error.md
index 7d10e90f502..ec140e7fdf0 100644
--- a/access/Concepts/Miscellaneous/invalid-partner-synchronizererror-3741ado-error.md
+++ b/access/Concepts/Miscellaneous/invalid-partner-synchronizererror-3741ado-error.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
The synchronizer specified is not valid for this replica set or is not the hub synchronizer for a Local or Anonymous replica. You can only synchronize a Local or Anonymous replica with the Global hub replica that created it.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-path-for-destination-dropbox-foldererror-3556.md b/access/Concepts/Miscellaneous/invalid-path-for-destination-dropbox-foldererror-3556.md
index 1df85a6937d..f5b57ee742c 100644
--- a/access/Concepts/Miscellaneous/invalid-path-for-destination-dropbox-foldererror-3556.md
+++ b/access/Concepts/Miscellaneous/invalid-path-for-destination-dropbox-foldererror-3556.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-precision-for-decimal-data-typeerror-3700.md b/access/Concepts/Miscellaneous/invalid-precision-for-decimal-data-typeerror-3700.md
index 91408d39209..dff012d9073 100644
--- a/access/Concepts/Miscellaneous/invalid-precision-for-decimal-data-typeerror-3700.md
+++ b/access/Concepts/Miscellaneous/invalid-precision-for-decimal-data-typeerror-3700.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
The precision and scale for a DECIMAL data type must be between 0 and 28. For example, the following SQL statement would return this error: CREATE TABLE foo (foo DECIMAL(38,0));
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-property-valueerror-3271.md b/access/Concepts/Miscellaneous/invalid-property-valueerror-3271.md
index 6c9a48f2924..f1a4249bea7 100644
--- a/access/Concepts/Miscellaneous/invalid-property-valueerror-3271.md
+++ b/access/Concepts/Miscellaneous/invalid-property-valueerror-3271.md
@@ -24,9 +24,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-rangeerror-3181.md b/access/Concepts/Miscellaneous/invalid-rangeerror-3181.md
index 9c5df264dc1..2b0b46fd60a 100644
--- a/access/Concepts/Miscellaneous/invalid-rangeerror-3181.md
+++ b/access/Concepts/Miscellaneous/invalid-rangeerror-3181.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You attempted to import an invalid range of spreadsheet cells.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-reference-in-select-statementerror-3242.md b/access/Concepts/Miscellaneous/invalid-reference-in-select-statementerror-3242.md
index 67ee73ea8e5..dfffe594e25 100644
--- a/access/Concepts/Miscellaneous/invalid-reference-in-select-statementerror-3242.md
+++ b/access/Concepts/Miscellaneous/invalid-reference-in-select-statementerror-3242.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You entered an invalid field or table reference in the SELECT statement. For example, the reference may be misspelled or does not exist.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-replica-path-or-nameerror-3686.md b/access/Concepts/Miscellaneous/invalid-replica-path-or-nameerror-3686.md
index 86191017417..f1a84e22b84 100644
--- a/access/Concepts/Miscellaneous/invalid-replica-path-or-nameerror-3686.md
+++ b/access/Concepts/Miscellaneous/invalid-replica-path-or-nameerror-3686.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
The synchronizer identified by the HTTP address does not manage the database name specified in the URL.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-scale-for-decimal-data-typeerror-3701.md b/access/Concepts/Miscellaneous/invalid-scale-for-decimal-data-typeerror-3701.md
index accf7e3d9a0..d1be5407de8 100644
--- a/access/Concepts/Miscellaneous/invalid-scale-for-decimal-data-typeerror-3701.md
+++ b/access/Concepts/Miscellaneous/invalid-scale-for-decimal-data-typeerror-3701.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The scale of a DECIMAL data type must always be less or equal to the precision. For example, the following SQL statement would return this error: CREATE TABLE foo (foo DECIMAL(10,12));
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-setting-in-excel-key-of-the-engines-section-of-the-windows-registryerror.md b/access/Concepts/Miscellaneous/invalid-setting-in-excel-key-of-the-engines-section-of-the-windows-registryerror.md
index 301f7687962..4eb1c2438b3 100644
--- a/access/Concepts/Miscellaneous/invalid-setting-in-excel-key-of-the-engines-section-of-the-windows-registryerror.md
+++ b/access/Concepts/Miscellaneous/invalid-setting-in-excel-key-of-the-engines-section-of-the-windows-registryerror.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
One of the settings in the **HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\14.0\Access Connectivity Engine\Engines\Excel** key of the Microsoft Windows Registry is not valid. Edit the Windows Registry to be sure all the parameters are valid.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-sql-statement-expected-deleteinsertprocedureselector-updateerror-3129.md b/access/Concepts/Miscellaneous/invalid-sql-statement-expected-deleteinsertprocedureselector-updateerror-3129.md
index 749d5489320..d22844ea7cb 100644
--- a/access/Concepts/Miscellaneous/invalid-sql-statement-expected-deleteinsertprocedureselector-updateerror-3129.md
+++ b/access/Concepts/Miscellaneous/invalid-sql-statement-expected-deleteinsertprocedureselector-updateerror-3129.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
Your SQL statement could not be recognized because it does not begin with one of the specified reserved words.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-actionerror-3762.md b/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-actionerror-3762.md
index f100dd2c537..2a15631f914 100644
--- a/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-actionerror-3762.md
+++ b/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-actionerror-3762.md
@@ -16,9 +16,9 @@ This error occurs when defining referential integrity constraints through the CR
CREATE TABLE OrderDetail (OrderId LONG CONSTRAINT fkOrdersOrderId REFERENCES Orders (OrderId) ON UPDATE CASCADE ON DELETE **NO** ACTION, LineItem LONG, ProductID LONG CONSTRAINT fkProductsProductId REFERENCES Products (ProductId), Quantity LONG);
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-as-error-3728.md b/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-as-error-3728.md
index e5267067421..5320dd59911 100644
--- a/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-as-error-3728.md
+++ b/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-as-error-3728.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when defining or creating a view or procedure through SQL DDL. The error would be generated with the following syntax: CREATE VIEW viewname SELECT…. To avoid the error, change the syntax to the following: CREATE VIEW viewname AS SELECT….
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-compression-to-follow-with-error-3723.md b/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-compression-to-follow-with-error-3723.md
index 8cd343fdabb..8c7fbcb9724 100644
--- a/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-compression-to-follow-with-error-3723.md
+++ b/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-compression-to-follow-with-error-3723.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This error occurs when using CREATE TABLE or ALTER TABLE ALTER COLUMN syntax. It occurs when referencing one of the NATIONAL CHARACTER synonyms for a column type and not using the COMPRESSION keyword following the WITH keyword. The following is a valid SQL statement: CREATE TABLE foo (foo NCHAR WITH COMP);. The following SQL statement would return the error: CREATE TABLE foo (foo NCHAR WITH);.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-default-error-3722.md b/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-default-error-3722.md
index ede363ea677..fa78f67c5ab 100644
--- a/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-default-error-3722.md
+++ b/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-default-error-3722.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when using the ALTER TABLE ALTER COLUMN syntax. It occurs if one of the following keywords, USER, NULL, or literal, are used without being followed by the keyword DEFAULT.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-select-error-3729.md b/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-select-error-3729.md
index 25233ea5e66..365d82ed6c5 100644
--- a/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-select-error-3729.md
+++ b/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-select-error-3729.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This error occurs when trying to create a view from SQL DDL. The following would generate this error: CREATE VIEW viewname AS. To avoid the error, use a valid SELECT statement after the AS keyword.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-update-or-delete-error-3724.md b/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-update-or-delete-error-3724.md
index cebc8ac9421..bad9f860fe4 100644
--- a/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-update-or-delete-error-3724.md
+++ b/access/Concepts/Miscellaneous/invalid-sql-syntax-expected-token-update-or-delete-error-3724.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when defining referential integrity through the CREATE TABLE statement or the ALTER TABLE ALTER COLUMN statement. This error occurs when the keyword CASCADE is used and the keyword UPDATE or DELETE is not before it.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-sql-syntax-only-one-update-rule-and-or-one-delete-rule-allowed-error-372.md b/access/Concepts/Miscellaneous/invalid-sql-syntax-only-one-update-rule-and-or-one-delete-rule-allowed-error-372.md
index 4009d0bd1bb..3c69b9cdc98 100644
--- a/access/Concepts/Miscellaneous/invalid-sql-syntax-only-one-update-rule-and-or-one-delete-rule-allowed-error-372.md
+++ b/access/Concepts/Miscellaneous/invalid-sql-syntax-only-one-update-rule-and-or-one-delete-rule-allowed-error-372.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This error occurs when defining referential integrity through SQL DDL. This occurs when NULL or DEFAULT is not used after the SET keyword.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-a-database-privilege-such-as-createdb-or-connect-erro.md b/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-a-database-privilege-such-as-createdb-or-connect-erro.md
index 81ed485e313..8652f5372c7 100644
--- a/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-a-database-privilege-such-as-createdb-or-connect-erro.md
+++ b/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-a-database-privilege-such-as-createdb-or-connect-erro.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for more information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-a-procedure-nameerror-3781.md b/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-a-procedure-nameerror-3781.md
index 7ea262c76f5..1bf62e34a8b 100644
--- a/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-a-procedure-nameerror-3781.md
+++ b/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-a-procedure-nameerror-3781.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This error occurs when trying to create or drop a procedure using SQL DDL's CREATE PROCEDURE or DROP PROCEDURE syntax. It occurs if a valid name is not specified. For example, the following statement would generate the error: DROP PROCEDURE.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-a-view-nameerror-3780.md b/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-a-view-nameerror-3780.md
index 8a02a74f9b8..277e96aec3e 100644
--- a/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-a-view-nameerror-3780.md
+++ b/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-a-view-nameerror-3780.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when trying to create or drop a view using SQL DDL's CREATE VIEW or DROP VIEW syntax. It occurs if a valid name is not specified. For example, the following statement would generate the error: CREATE VIEW AS SELECT * FROM table1.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-constraint-nameerror-3721.md b/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-constraint-nameerror-3721.md
index 69e6f98214f..d930cf483e8 100644
--- a/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-constraint-nameerror-3721.md
+++ b/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-constraint-nameerror-3721.md
@@ -19,9 +19,9 @@ CREATE TABLE Customers (CLstNm TEXT(50), CFrstNm TEXT(25), CONSTRAINT pkCustomer
or do not use the CONSTRAINT keyword:
CREATE TABLE Customers (CLstNm TEXT(50), CFrstNm TEXT(25), PRIMARY KEY (CFrstNm, CLstNm));.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-token-cascade-set-null-or-no-actionerror-3725.md b/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-token-cascade-set-null-or-no-actionerror-3725.md
index 0d9d895a51c..0f305354012 100644
--- a/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-token-cascade-set-null-or-no-actionerror-3725.md
+++ b/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-token-cascade-set-null-or-no-actionerror-3725.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This error occurs when defining referential integrity through the CREATE TABLE statement or the ALTER TABLE ALTER COLUMN statement. This error occurs when the keyword UPDATE or DELETE is used and is not followed by one of the following keywords: CASCADE, SET NULL, NO ACTION.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-token-database-error-3785.md b/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-token-database-error-3785.md
index 999187c41be..9e7de25440f 100644
--- a/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-token-database-error-3785.md
+++ b/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-token-database-error-3785.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for more information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-token-nullerror-3726.md b/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-token-nullerror-3726.md
index 75fda9bd5d6..406d25bb3f2 100644
--- a/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-token-nullerror-3726.md
+++ b/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-token-nullerror-3726.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when issuing a DDL statement that is associated with an index. It can occur when the NULL keyword is not used after the following keywords: CREATE INDEX, WITH PRIMARY, or IGNORE.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-token-privileges-error-3689.md b/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-token-privileges-error-3689.md
index 656d74265ac..b148a09626d 100644
--- a/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-token-privileges-error-3689.md
+++ b/access/Concepts/Miscellaneous/invalid-sql-syntaxexpected-token-privileges-error-3689.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when using the GRANT or REVOKE keywords. A privilege was not specified. Some valid privileges are SELECT, UPDATE, DELETE, and INSERT.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-table-name-in-filtererror-3631.md b/access/Concepts/Miscellaneous/invalid-table-name-in-filtererror-3631.md
index 939f3d61c2b..62c1ac254e3 100644
--- a/access/Concepts/Miscellaneous/invalid-table-name-in-filtererror-3631.md
+++ b/access/Concepts/Miscellaneous/invalid-table-name-in-filtererror-3631.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You have referred to a table in a Boolean filter that is not valid. Boolean filters can only refer to the table that is being filtered.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-top-argument-in-select-queryerror-3308.md b/access/Concepts/Miscellaneous/invalid-top-argument-in-select-queryerror-3308.md
index 5a3f14f9c7e..7269223b0da 100644
--- a/access/Concepts/Miscellaneous/invalid-top-argument-in-select-queryerror-3308.md
+++ b/access/Concepts/Miscellaneous/invalid-top-argument-in-select-queryerror-3308.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
An invalid parameter appeared in the TOP clause of a SELECT statement. The value placed after the TOP reserved word must be a positive integer. If the PERCENT reserved word is also used, the integer cannot be greater than 100.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-use-of!orerror-2423.md b/access/Concepts/Miscellaneous/invalid-use-of!orerror-2423.md
index fd21ccd82af..dd9811f755b 100644
--- a/access/Concepts/Miscellaneous/invalid-use-of!orerror-2423.md
+++ b/access/Concepts/Miscellaneous/invalid-use-of!orerror-2423.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The expression does not use delimiters correctly. To reference the properties of a DAO object, it is recommended that you use the . _propertyname_ syntax.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-use-of!orerror-2447.md b/access/Concepts/Miscellaneous/invalid-use-of!orerror-2447.md
index 52537151717..1028dd4e7d9 100644
--- a/access/Concepts/Miscellaneous/invalid-use-of!orerror-2447.md
+++ b/access/Concepts/Miscellaneous/invalid-use-of!orerror-2447.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
The expression does not use delimiters correctly. To reference the properties of DAO objects, it is recommended that you use the . _propertyname_ syntax.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-use-of-is-operatorerror-2443.md b/access/Concepts/Miscellaneous/invalid-use-of-is-operatorerror-2443.md
index edee6572435..ca69b5716c1 100644
--- a/access/Concepts/Miscellaneous/invalid-use-of-is-operatorerror-2443.md
+++ b/access/Concepts/Miscellaneous/invalid-use-of-is-operatorerror-2443.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The **Is** operator is used to determine if an expression is **Null**. You can use the **Is** operator in an expression only with NULL or NOT NULL.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-use-of-parentheseserror-2442.md b/access/Concepts/Miscellaneous/invalid-use-of-parentheseserror-2442.md
index b293ab50122..69865d7b5e3 100644
--- a/access/Concepts/Miscellaneous/invalid-use-of-parentheseserror-2442.md
+++ b/access/Concepts/Miscellaneous/invalid-use-of-parentheseserror-2442.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You entered an expression that has invalid parentheses. For example, you may be trying to use the parentheses syntax for an identifier in a query. In a query, you can use only the standard identifier syntax.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/invalid-use-of-vertical-barserror-2437.md b/access/Concepts/Miscellaneous/invalid-use-of-vertical-barserror-2437.md
index e581257e73a..5ad2b348f33 100644
--- a/access/Concepts/Miscellaneous/invalid-use-of-vertical-barserror-2437.md
+++ b/access/Concepts/Miscellaneous/invalid-use-of-vertical-barserror-2437.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You entered an expression that has invalid vertical bars (|). Check the expression to make sure you entered it correctly.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/item-not-found-in-this-collectionerror-3265.md b/access/Concepts/Miscellaneous/item-not-found-in-this-collectionerror-3265.md
index e6f38e99e65..99d9edbe9fc 100644
--- a/access/Concepts/Miscellaneous/item-not-found-in-this-collectionerror-3265.md
+++ b/access/Concepts/Miscellaneous/item-not-found-in-this-collectionerror-3265.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/join-expression-not-supportederror-3296.md b/access/Concepts/Miscellaneous/join-expression-not-supportederror-3296.md
index e6f82f3b169..0ccb0404dfe 100644
--- a/access/Concepts/Miscellaneous/join-expression-not-supportederror-3296.md
+++ b/access/Concepts/Miscellaneous/join-expression-not-supportederror-3296.md
@@ -22,9 +22,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/join-operation-operation-refers-to-a-field-that-is-not-in-one-of-the-joined-tabl.md b/access/Concepts/Miscellaneous/join-operation-operation-refers-to-a-field-that-is-not-in-one-of-the-joined-tabl.md
index 24284346cb0..233215c6898 100644
--- a/access/Concepts/Miscellaneous/join-operation-operation-refers-to-a-field-that-is-not-in-one-of-the-joined-tabl.md
+++ b/access/Concepts/Miscellaneous/join-operation-operation-refers-to-a-field-that-is-not-in-one-of-the-joined-tabl.md
@@ -28,9 +28,9 @@ Authors INNER JOIN Titles ON Authors.ID = AuthorTitles.ISBN;
The error occurs because the join involves the Authors and Titles tables, but the joined fields are in the Authors and AuthorTitles tables.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/joined-table-name-not-listed-in-from-clauseerror-3080.md b/access/Concepts/Miscellaneous/joined-table-name-not-listed-in-from-clauseerror-3080.md
index 0ffe83c1a99..fa96d2724ba 100644
--- a/access/Concepts/Miscellaneous/joined-table-name-not-listed-in-from-clauseerror-3080.md
+++ b/access/Concepts/Miscellaneous/joined-table-name-not-listed-in-from-clauseerror-3080.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
Add the specified table name to the FROM clause of the query, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/language-specific-properties-and-methods.md b/access/Concepts/Miscellaneous/language-specific-properties-and-methods.md
index dab5895b316..f78419adb80 100644
--- a/access/Concepts/Miscellaneous/language-specific-properties-and-methods.md
+++ b/access/Concepts/Miscellaneous/language-specific-properties-and-methods.md
@@ -37,9 +37,9 @@ Properties and methods that are available only in Asian or right-to-left languag
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/local-or-anonymous-replicas-cannot-be-made-the-design-mastererror-3771.md b/access/Concepts/Miscellaneous/local-or-anonymous-replicas-cannot-be-made-the-design-mastererror-3771.md
index 5576c4e3663..932c9542622 100644
--- a/access/Concepts/Miscellaneous/local-or-anonymous-replicas-cannot-be-made-the-design-mastererror-3771.md
+++ b/access/Concepts/Miscellaneous/local-or-anonymous-replicas-cannot-be-made-the-design-mastererror-3771.md
@@ -19,9 +19,9 @@ Local or Anonymous replicas of the Design Master cannot be made because they do
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/local-or-anonymous-replicas-must-synch-only-to-their-designated-hub-replicaerror.md b/access/Concepts/Miscellaneous/local-or-anonymous-replicas-must-synch-only-to-their-designated-hub-replicaerror.md
index 882aa7cfdac..b5c1dd0858e 100644
--- a/access/Concepts/Miscellaneous/local-or-anonymous-replicas-must-synch-only-to-their-designated-hub-replicaerror.md
+++ b/access/Concepts/Miscellaneous/local-or-anonymous-replicas-must-synch-only-to-their-designated-hub-replicaerror.md
@@ -16,9 +16,9 @@ The source replica is a Local or Anonymous replica; you are trying to exchange t
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/locked-tableerror-3714.md b/access/Concepts/Miscellaneous/locked-tableerror-3714.md
index 78be445d2e2..bbb3573b728 100644
--- a/access/Concepts/Miscellaneous/locked-tableerror-3714.md
+++ b/access/Concepts/Miscellaneous/locked-tableerror-3714.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
Re-synchronize the replicas when the lock is released on the table.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/log-file-path-pathname-is-invaliderror-3591.md b/access/Concepts/Miscellaneous/log-file-path-pathname-is-invaliderror-3591.md
index f7b0ba4eb6d..951ff544fb3 100644
--- a/access/Concepts/Miscellaneous/log-file-path-pathname-is-invaliderror-3591.md
+++ b/access/Concepts/Miscellaneous/log-file-path-pathname-is-invaliderror-3591.md
@@ -25,9 +25,9 @@ To configure the Synchronizer
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/logmessages-property.md b/access/Concepts/Miscellaneous/logmessages-property.md
index 77e9fd87bb8..6706dcc0bac 100644
--- a/access/Concepts/Miscellaneous/logmessages-property.md
+++ b/access/Concepts/Miscellaneous/logmessages-property.md
@@ -43,9 +43,9 @@ The name of the messages table where the returned messages are stored is _usern
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/mapi-folder-or-address-book-not-founderror-3710.md b/access/Concepts/Miscellaneous/mapi-folder-or-address-book-not-founderror-3710.md
index 535f7a280e5..78ee3ba231b 100644
--- a/access/Concepts/Miscellaneous/mapi-folder-or-address-book-not-founderror-3710.md
+++ b/access/Concepts/Miscellaneous/mapi-folder-or-address-book-not-founderror-3710.md
@@ -25,9 +25,9 @@ The Microsoft Outlook/Exchange driver could not find the folder or address book
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/maxrecords-property.md b/access/Concepts/Miscellaneous/maxrecords-property.md
index 176a467a55f..42043070fd4 100644
--- a/access/Concepts/Miscellaneous/maxrecords-property.md
+++ b/access/Concepts/Miscellaneous/maxrecords-property.md
@@ -40,9 +40,9 @@ You can use the **MaxRecords** property in situations where limited system resou
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/members-example-vbscript.md b/access/Concepts/Miscellaneous/members-example-vbscript.md
index 86107cd9147..e86c98c0ee3 100644
--- a/access/Concepts/Miscellaneous/members-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/members-example-vbscript.md
@@ -329,9 +329,9 @@ For h=0 to intDC0
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/message-in-dropbox-folder-belongs-to-the-wrong-synchronizererror-3567.md b/access/Concepts/Miscellaneous/message-in-dropbox-folder-belongs-to-the-wrong-synchronizererror-3567.md
index d449896ba55..7a2210ac677 100644
--- a/access/Concepts/Miscellaneous/message-in-dropbox-folder-belongs-to-the-wrong-synchronizererror-3567.md
+++ b/access/Concepts/Miscellaneous/message-in-dropbox-folder-belongs-to-the-wrong-synchronizererror-3567.md
@@ -19,9 +19,9 @@ This is an unexpected error. Please contact Microsoft Product Support Services f
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/message-in-expressionerror-3077.md b/access/Concepts/Miscellaneous/message-in-expressionerror-3077.md
index 60beff49148..187170de0d1 100644
--- a/access/Concepts/Miscellaneous/message-in-expressionerror-3077.md
+++ b/access/Concepts/Miscellaneous/message-in-expressionerror-3077.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The expression you entered is not valid for the reason indicated in the message. Make sure you entered field names and punctuation correctly, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/message-in-query-expression-expressionerror-3075.md b/access/Concepts/Miscellaneous/message-in-query-expression-expressionerror-3075.md
index 7c288184200..8d925acdd0d 100644
--- a/access/Concepts/Miscellaneous/message-in-query-expression-expressionerror-3075.md
+++ b/access/Concepts/Miscellaneous/message-in-query-expression-expressionerror-3075.md
@@ -14,5 +14,5 @@ ms.date: 06/08/2017
The expression you typed is not valid for the reason indicated in the message. Make sure you have typed field names and punctuation correctly, and then try the operation again.
For more information, see [Syntax error](http://msdn.microsoft.com/library/ca84aa92-e41a-1167-ab66-032ab9626005%28Office.15%29.aspx).
- **ACCESS SUPPORT RESOURCES**[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)[Access help on support.office.com](https://support.office.com/search/results?query=Access)[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)[Search for specific Access error codes on Bing](http://www.bing.com/)[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)[Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)[Access posts on StackOverflow](http://stackoverflow.com/questions/tagged/ms-access)
+ **ACCESS SUPPORT RESOURCES**[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev) [Access help on support.office.com](https://support.office.com/search/results?query=Access) [Access help on answers.microsoft.com](https://answers.microsoft.com/) [Search for specific Access error codes on Bing](http://www.bing.com/) [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx) [Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx) [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/) [Access posts on StackOverflow](http://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/method-not-applicable-for-this-objecterror-3273.md b/access/Concepts/Miscellaneous/method-not-applicable-for-this-objecterror-3273.md
index cb6d7872b88..8938dcfd21b 100644
--- a/access/Concepts/Miscellaneous/method-not-applicable-for-this-objecterror-3273.md
+++ b/access/Concepts/Miscellaneous/method-not-applicable-for-this-objecterror-3273.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You tried to use a method on an object that does not support that method. Refer to the Summary topic for the object to see a list of valid methods for that object.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/microsoft-access-constantsoverview.md b/access/Concepts/Miscellaneous/microsoft-access-constantsoverview.md
index c7ea5694d24..77e3281bc82 100644
--- a/access/Concepts/Miscellaneous/microsoft-access-constantsoverview.md
+++ b/access/Concepts/Miscellaneous/microsoft-access-constantsoverview.md
@@ -94,9 +94,9 @@ You can use the constant **Null** anywhere in Microsoft Access. For example, you
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/missing-destination-field-name-in-select-into-statement-statementerror-3105.md b/access/Concepts/Miscellaneous/missing-destination-field-name-in-select-into-statement-statementerror-3105.md
index 35b46d0089a..10495ff8833 100644
--- a/access/Concepts/Miscellaneous/missing-destination-field-name-in-select-into-statement-statementerror-3105.md
+++ b/access/Concepts/Miscellaneous/missing-destination-field-name-in-select-into-statement-statementerror-3105.md
@@ -19,9 +19,9 @@ Enter a destination field name in the specified statement, and then try the oper
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/missing-destination-field-name-in-update-statement-statementerror-3106.md b/access/Concepts/Miscellaneous/missing-destination-field-name-in-update-statement-statementerror-3106.md
index 9c569ab2ed1..7b8cdf31597 100644
--- a/access/Concepts/Miscellaneous/missing-destination-field-name-in-update-statement-statementerror-3106.md
+++ b/access/Concepts/Miscellaneous/missing-destination-field-name-in-update-statement-statementerror-3106.md
@@ -16,9 +16,9 @@ Enter a destination field name in the specified statement, and then try the oper
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/missing-semicolon-at-end-of-sql-statementerror-3137.md b/access/Concepts/Miscellaneous/missing-semicolon-at-end-of-sql-statementerror-3137.md
index 75468a97ca0..4c528b3b077 100644
--- a/access/Concepts/Miscellaneous/missing-semicolon-at-end-of-sql-statementerror-3137.md
+++ b/access/Concepts/Miscellaneous/missing-semicolon-at-end-of-sql-statementerror-3137.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The SQL statement has additional invalid tokens following an SQL statement. For example, "SELECT col1 FROM table1 garbage" would return this error. "SELECT col1 FROM table1; garbage" would be valid.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/missingor-itemerror-2436.md b/access/Concepts/Miscellaneous/missingor-itemerror-2436.md
index e3083926bce..b745a6222f2 100644
--- a/access/Concepts/Miscellaneous/missingor-itemerror-2436.md
+++ b/access/Concepts/Miscellaneous/missingor-itemerror-2436.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You entered an expression that is missing a closing parenthesis, bracket, or vertical bar. Check the expression to make sure you entered it correctly.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/multi-level-group-by-clause-is-not-allowed-in-a-subqueryerror-3612.md b/access/Concepts/Miscellaneous/multi-level-group-by-clause-is-not-allowed-in-a-subqueryerror-3612.md
index 5f3c2ff7d3a..0ae54a1cc64 100644
--- a/access/Concepts/Miscellaneous/multi-level-group-by-clause-is-not-allowed-in-a-subqueryerror-3612.md
+++ b/access/Concepts/Miscellaneous/multi-level-group-by-clause-is-not-allowed-in-a-subqueryerror-3612.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
An SQL subquery cannot list more than one field in a GROUP BY clause.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/name-in-criteria-expressionerror-3076.md b/access/Concepts/Miscellaneous/name-in-criteria-expressionerror-3076.md
index bf8e99a1a14..3b3a58ade91 100644
--- a/access/Concepts/Miscellaneous/name-in-criteria-expressionerror-3076.md
+++ b/access/Concepts/Miscellaneous/name-in-criteria-expressionerror-3076.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The expression you entered is not valid for the reason indicated in the message. Make sure you entered field names and punctuation correctly, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/name-is-not-an-index-in-this-tableerror-3800.md b/access/Concepts/Miscellaneous/name-is-not-an-index-in-this-tableerror-3800.md
index 7ba45f47805..21f6a138d76 100644
--- a/access/Concepts/Miscellaneous/name-is-not-an-index-in-this-tableerror-3800.md
+++ b/access/Concepts/Miscellaneous/name-is-not-an-index-in-this-tableerror-3800.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
An invalid index name was used when trying to reference an index.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/need-a-version-4-x-or-greater-format-system-database-to-perform-this-operationer.md b/access/Concepts/Miscellaneous/need-a-version-4-x-or-greater-format-system-database-to-perform-this-operationer.md
index e44b21965a1..ba7a5ec3267 100644
--- a/access/Concepts/Miscellaneous/need-a-version-4-x-or-greater-format-system-database-to-perform-this-operationer.md
+++ b/access/Concepts/Miscellaneous/need-a-version-4-x-or-greater-format-system-database-to-perform-this-operationer.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
When using the Microsoft OLE DB Provider for Jet with security, it is necssary that the security database be in a Jet version 4.x file format. This can be done by compacting the existing security database or by creating a new one through the Microsoft OLE DB Provider for Jet.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/network-i-o-errorerror-3566.md b/access/Concepts/Miscellaneous/network-i-o-errorerror-3566.md
index 8e1b3e2cfc4..aad327451a2 100644
--- a/access/Concepts/Miscellaneous/network-i-o-errorerror-3566.md
+++ b/access/Concepts/Miscellaneous/network-i-o-errorerror-3566.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
The communication between your computer and the network is experiencing a problem. Check to be sure your network is operating properly and that your network cable is tightly connected to your computer. Shut down, turn off, and reboot your computer.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/new-in-access-for-developers.md b/access/Concepts/Miscellaneous/new-in-access-for-developers.md
index db5c72fe5ef..5f648ad8311 100644
--- a/access/Concepts/Miscellaneous/new-in-access-for-developers.md
+++ b/access/Concepts/Miscellaneous/new-in-access-for-developers.md
@@ -187,9 +187,9 @@ Access 2013 introduces a new application model that enables subject matter exper
[What's new for Office 2013 developers](http://msdn.microsoft.com/library/d76ae308-555e-4147-8900-956d3eb8ba23%28Office.15%29.aspx)
**More Access support resources**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/no-country-code-found-in-the-connection-stringerror-3449.md b/access/Concepts/Miscellaneous/no-country-code-found-in-the-connection-stringerror-3449.md
index 821593d9110..364afe55d6e 100644
--- a/access/Concepts/Miscellaneous/no-country-code-found-in-the-connection-stringerror-3449.md
+++ b/access/Concepts/Miscellaneous/no-country-code-found-in-the-connection-stringerror-3449.md
@@ -19,9 +19,9 @@ No country code was found in the connection string.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/no-current-recorderror-3021.md b/access/Concepts/Miscellaneous/no-current-recorderror-3021.md
index 3a159291711..da9c909c4f7 100644
--- a/access/Concepts/Miscellaneous/no-current-recorderror-3021.md
+++ b/access/Concepts/Miscellaneous/no-current-recorderror-3021.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This error occurs after the unsuccessful application of one of the Find methods or the **Seek** method, when the underlying **Recordset** contains no records or the record has been deleted. Move to or select another record, and try the operation again. If the **Recordset** is empty, you cannot position to a current record. Check the **BOF** and **EOF** properties.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/no-database-specified-in-connection-string-or-in-clauseerror-3321.md b/access/Concepts/Miscellaneous/no-database-specified-in-connection-string-or-in-clauseerror-3321.md
index fed6cc1fd2c..cdb09dcca6d 100644
--- a/access/Concepts/Miscellaneous/no-database-specified-in-connection-string-or-in-clauseerror-3321.md
+++ b/access/Concepts/Miscellaneous/no-database-specified-in-connection-string-or-in-clauseerror-3321.md
@@ -23,9 +23,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/no-destination-field-name-in-insert-into-statement-statementerror-3352.md b/access/Concepts/Miscellaneous/no-destination-field-name-in-insert-into-statement-statementerror-3352.md
index 15698c4478f..5b3f6781e61 100644
--- a/access/Concepts/Miscellaneous/no-destination-field-name-in-insert-into-statement-statementerror-3352.md
+++ b/access/Concepts/Miscellaneous/no-destination-field-name-in-insert-into-statement-statementerror-3352.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
The destination field name or names cannot be determined from the expression in the SELECT clause of the INSERT INTO statement.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/no-field-definedcannot-append-tabledef-or-indexerror-3264.md b/access/Concepts/Miscellaneous/no-field-definedcannot-append-tabledef-or-indexerror-3264.md
index f8874413f20..0fb20764ce6 100644
--- a/access/Concepts/Miscellaneous/no-field-definedcannot-append-tabledef-or-indexerror-3264.md
+++ b/access/Concepts/Miscellaneous/no-field-definedcannot-append-tabledef-or-indexerror-3264.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You cannot append a **TableDef** until you define one or more fields. Use the **CreateField** method to create fields, append them to the **Fields** collection of your **TableDef** object, and then append the **TableDef** object to the **TableDefs** collection.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/no-such-index-name-on-table-nameerror-3372.md b/access/Concepts/Miscellaneous/no-such-index-name-on-table-nameerror-3372.md
index 027bc035c45..4a866978c76 100644
--- a/access/Concepts/Miscellaneous/no-such-index-name-on-table-nameerror-3372.md
+++ b/access/Concepts/Miscellaneous/no-such-index-name-on-table-nameerror-3372.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
The specified index does not exist in the specified table. Check your code for a misspelling or other error, or verify the **Indexes** collection contains the specified index.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/no-such-relationship-name-on-table-nameerror-3377.md b/access/Concepts/Miscellaneous/no-such-relationship-name-on-table-nameerror-3377.md
index 37fe1688db7..59abc476645 100644
--- a/access/Concepts/Miscellaneous/no-such-relationship-name-on-table-nameerror-3377.md
+++ b/access/Concepts/Miscellaneous/no-such-relationship-name-on-table-nameerror-3377.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The relationship you specified does not exist in this database. Check to see if the name you specified exists in the **Relations** collection.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/no-unique-index-found-for-the-referenced-field-of-the-primary-tableerror-3609.md b/access/Concepts/Miscellaneous/no-unique-index-found-for-the-referenced-field-of-the-primary-tableerror-3609.md
index 6895707a73b..d880f3ef15f 100644
--- a/access/Concepts/Miscellaneous/no-unique-index-found-for-the-referenced-field-of-the-primary-tableerror-3609.md
+++ b/access/Concepts/Miscellaneous/no-unique-index-found-for-the-referenced-field-of-the-primary-tableerror-3609.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
When you create a relationship between tables, the referenced field in the primary table must have a unique index. See the Index object and Primary property topics for more details on how to do this.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/none-of-the-import-field-names-match-fields-in-the-appended-tableerror-3243.md b/access/Concepts/Miscellaneous/none-of-the-import-field-names-match-fields-in-the-appended-tableerror-3243.md
index 75f2b41b6b8..ed7683ce4da 100644
--- a/access/Concepts/Miscellaneous/none-of-the-import-field-names-match-fields-in-the-appended-tableerror-3243.md
+++ b/access/Concepts/Miscellaneous/none-of-the-import-field-names-match-fields-in-the-appended-tableerror-3243.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
At least one field name in the import table and the appended table must match.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/not-a-valid-account-name-or-passworderror-3029.md b/access/Concepts/Miscellaneous/not-a-valid-account-name-or-passworderror-3029.md
index e4bb6ee8677..baf9e5f6387 100644
--- a/access/Concepts/Miscellaneous/not-a-valid-account-name-or-passworderror-3029.md
+++ b/access/Concepts/Miscellaneous/not-a-valid-account-name-or-passworderror-3029.md
@@ -41,9 +41,9 @@ User names are not case-sensitive.
Passwords can be any combination of 14 or fewer characters; passwords cannot contain control characters. Passwords are case-sensitive.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/not-a-valid-alias-nameerror-3068.md b/access/Concepts/Miscellaneous/not-a-valid-alias-nameerror-3068.md
index 9e024088dca..29d1f753f62 100644
--- a/access/Concepts/Miscellaneous/not-a-valid-alias-nameerror-3068.md
+++ b/access/Concepts/Miscellaneous/not-a-valid-alias-nameerror-3068.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
The alias you entered does not follow standard naming conventions. Enter a new name, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/not-a-valid-bookmarkerror-3159.md b/access/Concepts/Miscellaneous/not-a-valid-bookmarkerror-3159.md
index b9424aae311..45e4f620482 100644
--- a/access/Concepts/Miscellaneous/not-a-valid-bookmarkerror-3159.md
+++ b/access/Concepts/Miscellaneous/not-a-valid-bookmarkerror-3159.md
@@ -40,9 +40,9 @@ End Sub
```
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/not-a-valid-file-nameerror-3055.md b/access/Concepts/Miscellaneous/not-a-valid-file-nameerror-3055.md
index b905b577a63..cbefe0229b9 100644
--- a/access/Concepts/Miscellaneous/not-a-valid-file-nameerror-3055.md
+++ b/access/Concepts/Miscellaneous/not-a-valid-file-nameerror-3055.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You tried to use a file name that does not follow the naming conventions for your operating system. Specify the file name again, and then retry the operation.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/not-a-valid-passworderror-3031.md b/access/Concepts/Miscellaneous/not-a-valid-passworderror-3031.md
index c3279a584cb..c4d642b829f 100644
--- a/access/Concepts/Miscellaneous/not-a-valid-passworderror-3031.md
+++ b/access/Concepts/Miscellaneous/not-a-valid-passworderror-3031.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
You have typed an invalid password. Passwords can be any combination of 20 or fewer characters, except control characters. Passwords are case-sensitive.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/not-a-valid-table-nameerror-3177.md b/access/Concepts/Miscellaneous/not-a-valid-table-nameerror-3177.md
index ad77fcd3561..e52ce7caa5d 100644
--- a/access/Concepts/Miscellaneous/not-a-valid-table-nameerror-3177.md
+++ b/access/Concepts/Miscellaneous/not-a-valid-table-nameerror-3177.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The name you entered does not follow standard naming conventions. Enter a new name, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/not-enough-space-on-diskerror-3026.md b/access/Concepts/Miscellaneous/not-enough-space-on-diskerror-3026.md
index 48a6d5ddc49..d14bc942a66 100644
--- a/access/Concepts/Miscellaneous/not-enough-space-on-diskerror-3026.md
+++ b/access/Concepts/Miscellaneous/not-enough-space-on-diskerror-3026.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to perform an operation that requires more disk space than is available. Remove unused files from your disk, compress your database, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/not-enough-space-on-temporary-diskerror-3183.md b/access/Concepts/Miscellaneous/not-enough-space-on-temporary-diskerror-3183.md
index fd6474abc01..486d177bc15 100644
--- a/access/Concepts/Miscellaneous/not-enough-space-on-temporary-diskerror-3183.md
+++ b/access/Concepts/Miscellaneous/not-enough-space-on-temporary-diskerror-3183.md
@@ -35,9 +35,9 @@ You can increase the amount of available temporary disk space in several ways:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/number-of-query-values-and-destination-fields-are-not-the-sameerror-3346.md b/access/Concepts/Miscellaneous/number-of-query-values-and-destination-fields-are-not-the-sameerror-3346.md
index 15756203ab7..938a8d8139e 100644
--- a/access/Concepts/Miscellaneous/number-of-query-values-and-destination-fields-are-not-the-sameerror-3346.md
+++ b/access/Concepts/Miscellaneous/number-of-query-values-and-destination-fields-are-not-the-sameerror-3346.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The INSERT INTO (append) query either does not have enough destination fields or it has more fields in the VALUES or SELECT list than there are fields in the destination table. Select a matching number of fields.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/numeric-field-overflowerror-3349.md b/access/Concepts/Miscellaneous/numeric-field-overflowerror-3349.md
index 5b1504f6288..84284aa0a86 100644
--- a/access/Concepts/Miscellaneous/numeric-field-overflowerror-3349.md
+++ b/access/Concepts/Miscellaneous/numeric-field-overflowerror-3349.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
The data in a Btrieve field is too large to represent in your application.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/object-has-no-valueerror-2427.md b/access/Concepts/Miscellaneous/object-has-no-valueerror-2427.md
index f14744c096c..64599dc178e 100644
--- a/access/Concepts/Miscellaneous/object-has-no-valueerror-2427.md
+++ b/access/Concepts/Miscellaneous/object-has-no-valueerror-2427.md
@@ -19,9 +19,9 @@ You entered an expression containing an identifier for an object that has no val
Check the expression to make sure you entered it correctly.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/object-is-invalid-for-operationerror-3350.md b/access/Concepts/Miscellaneous/object-is-invalid-for-operationerror-3350.md
index e22ba8bcf8c..0d6739d4422 100644
--- a/access/Concepts/Miscellaneous/object-is-invalid-for-operationerror-3350.md
+++ b/access/Concepts/Miscellaneous/object-is-invalid-for-operationerror-3350.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You used the **RefreshLink** method on an object other than a linked table. An object ceases to exist when it is destroyed and when its associated DAO object is closed or is no longer defined in the current scope.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/object-is-invalid-or-no-longer-seterror-3420.md b/access/Concepts/Miscellaneous/object-is-invalid-or-no-longer-seterror-3420.md
index 84ad0b63c0f..5c83e8e993f 100644
--- a/access/Concepts/Miscellaneous/object-is-invalid-or-no-longer-seterror-3420.md
+++ b/access/Concepts/Miscellaneous/object-is-invalid-or-no-longer-seterror-3420.md
@@ -38,9 +38,9 @@ dbname = dbsPublish.Name
```
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/object-is-not-a-collectionerror-3272.md b/access/Concepts/Miscellaneous/object-is-not-a-collectionerror-3272.md
index b99dccc7ad5..06cbf3b0eda 100644
--- a/access/Concepts/Miscellaneous/object-is-not-a-collectionerror-3272.md
+++ b/access/Concepts/Miscellaneous/object-is-not-a-collectionerror-3272.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You have referred to an object as though it were a collection. For example, a statement such as `qrySales.Refresh` or or `qrySales(2)` causes this error.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/object-name-already-existserror-3012.md b/access/Concepts/Miscellaneous/object-name-already-existserror-3012.md
index 81ddf812b30..6694479d853 100644
--- a/access/Concepts/Miscellaneous/object-name-already-existserror-3012.md
+++ b/access/Concepts/Miscellaneous/object-name-already-existserror-3012.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to create an object with a name that already exists in this database. Choose a different name, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/object-name-is-not-a-stored-procedureerror-3750.md b/access/Concepts/Miscellaneous/object-name-is-not-a-stored-procedureerror-3750.md
index d05ceb843aa..6b64b031aa8 100644
--- a/access/Concepts/Miscellaneous/object-name-is-not-a-stored-procedureerror-3750.md
+++ b/access/Concepts/Miscellaneous/object-name-is-not-a-stored-procedureerror-3750.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
This error occurs when using the EXECUTE keyword and either passing a name of a procedure or view that does not exist in the database or passing the name of a base table.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/object-properties.md b/access/Concepts/Miscellaneous/object-properties.md
index 09bbe660563..c769f0491e4 100644
--- a/access/Concepts/Miscellaneous/object-properties.md
+++ b/access/Concepts/Miscellaneous/object-properties.md
@@ -97,9 +97,9 @@ End Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/objectproxy-ado-wfc-syntax.md b/access/Concepts/Miscellaneous/objectproxy-ado-wfc-syntax.md
index 55c40d77468..926970032f9 100644
--- a/access/Concepts/Miscellaneous/objectproxy-ado-wfc-syntax.md
+++ b/access/Concepts/Miscellaneous/objectproxy-ado-wfc-syntax.md
@@ -53,9 +53,9 @@ public Object ObjectProxy .call( String method , Object[] args )
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/odbc-specification-conformance-error-messagereport-this-error-to-the-developer-o.md b/access/Concepts/Miscellaneous/odbc-specification-conformance-error-messagereport-this-error-to-the-developer-o.md
index c4eb4271587..93e6292f721 100644
--- a/access/Concepts/Miscellaneous/odbc-specification-conformance-error-messagereport-this-error-to-the-developer-o.md
+++ b/access/Concepts/Miscellaneous/odbc-specification-conformance-error-messagereport-this-error-to-the-developer-o.md
@@ -19,9 +19,9 @@ This error can be caused by any of a number of problems with your ODBC driver. W
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/odbccall-failederror-3146.md b/access/Concepts/Miscellaneous/odbccall-failederror-3146.md
index 4c9c885551a..e2ce07928c5 100644
--- a/access/Concepts/Miscellaneous/odbccall-failederror-3146.md
+++ b/access/Concepts/Miscellaneous/odbccall-failederror-3146.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Using an ODBC connection, you tried to perform an operation on data in an ODBC data source. This error may occur when the ODBC data source is on a network drive and you are not connected to the network. Make sure the network is available, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/odbccannot-lock-all-recordserror-3254.md b/access/Concepts/Miscellaneous/odbccannot-lock-all-recordserror-3254.md
index 00c455da2a9..a3ff8a179cf 100644
--- a/access/Concepts/Miscellaneous/odbccannot-lock-all-recordserror-3254.md
+++ b/access/Concepts/Miscellaneous/odbccannot-lock-all-recordserror-3254.md
@@ -15,9 +15,9 @@ ms.date: 06/08/2017
Using an ODBC connection, you tried to lock all of the records in an ODBC database.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/odbcconnection-to-name-failederror-3151.md b/access/Concepts/Miscellaneous/odbcconnection-to-name-failederror-3151.md
index 0762115117f..7c135b2bc95 100644
--- a/access/Concepts/Miscellaneous/odbcconnection-to-name-failederror-3151.md
+++ b/access/Concepts/Miscellaneous/odbcconnection-to-name-failederror-3151.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The ODBC connection to the specified ODBC database or table could not be made. If the ODBC database is accessed via a network connection, make sure the network is available, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/odbcconnectstr-property.md b/access/Concepts/Miscellaneous/odbcconnectstr-property.md
index 1d1ee69baa7..07fdf9112f7 100644
--- a/access/Concepts/Miscellaneous/odbcconnectstr-property.md
+++ b/access/Concepts/Miscellaneous/odbcconnectstr-property.md
@@ -44,9 +44,9 @@ ODBC;DSN=Human Resources;SERVER=HRSRVR;UID=Smith;PWD=Sesame;
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/odbccould-not-create-tableerror-3232.md b/access/Concepts/Miscellaneous/odbccould-not-create-tableerror-3232.md
index e2d9f3da3d1..23b9758ea43 100644
--- a/access/Concepts/Miscellaneous/odbccould-not-create-tableerror-3232.md
+++ b/access/Concepts/Miscellaneous/odbccould-not-create-tableerror-3232.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to export a table to an ODBC database and the table could not be created. This error can occur if the ODBC database is read-only, or you do not have permission to create a table in that database. Resolve the read-only condition, or see your system administrator or the person who created the database to obtain the necessary permissions.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/odbccould-not-find-dll-nameerror-3154.md b/access/Concepts/Miscellaneous/odbccould-not-find-dll-nameerror-3154.md
index 4dbd2ceda02..7bd307a49e4 100644
--- a/access/Concepts/Miscellaneous/odbccould-not-find-dll-nameerror-3154.md
+++ b/access/Concepts/Miscellaneous/odbccould-not-find-dll-nameerror-3154.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/odbcdata-out-of-rangeerror-3238.md b/access/Concepts/Miscellaneous/odbcdata-out-of-rangeerror-3238.md
index ec879380baf..a5d53c7d023 100644
--- a/access/Concepts/Miscellaneous/odbcdata-out-of-rangeerror-3238.md
+++ b/access/Concepts/Miscellaneous/odbcdata-out-of-rangeerror-3238.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Using an ODBC connection, you tried to read from or write to an ODBC database, and the data is not within the prescribed limits.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/odbcdata-type-not-supported-on-servererror-3235.md b/access/Concepts/Miscellaneous/odbcdata-type-not-supported-on-servererror-3235.md
index 04201893c66..4352c543b82 100644
--- a/access/Concepts/Miscellaneous/odbcdata-type-not-supported-on-servererror-3235.md
+++ b/access/Concepts/Miscellaneous/odbcdata-type-not-supported-on-servererror-3235.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The ODBC server does not support the same SQL data types as the database engine or your application. The data has not been placed on the server.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/odbcdelete-on-a-linked-table-table-failederror-3156.md b/access/Concepts/Miscellaneous/odbcdelete-on-a-linked-table-table-failederror-3156.md
index b0e327535ef..5cc9a59c8ca 100644
--- a/access/Concepts/Miscellaneous/odbcdelete-on-a-linked-table-table-failederror-3156.md
+++ b/access/Concepts/Miscellaneous/odbcdelete-on-a-linked-table-table-failederror-3156.md
@@ -28,9 +28,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/odbcfield-would-be-too-long-data-truncatederror-3231.md b/access/Concepts/Miscellaneous/odbcfield-would-be-too-long-data-truncatederror-3231.md
index ce83d6e92a1..6f03845dd33 100644
--- a/access/Concepts/Miscellaneous/odbcfield-would-be-too-long-data-truncatederror-3231.md
+++ b/access/Concepts/Miscellaneous/odbcfield-would-be-too-long-data-truncatederror-3231.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to perform a task on an ODBC data source that would have resulted in a field that is too long. The data has been truncated to the maximum allowable length.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/odbcinsert-on-a-linked-table-table-failederror-3155.md b/access/Concepts/Miscellaneous/odbcinsert-on-a-linked-table-table-failederror-3155.md
index c063c1950e9..32ffc74b704 100644
--- a/access/Concepts/Miscellaneous/odbcinsert-on-a-linked-table-table-failederror-3155.md
+++ b/access/Concepts/Miscellaneous/odbcinsert-on-a-linked-table-table-failederror-3155.md
@@ -28,9 +28,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/odbclinked-table-definition-has-changederror-3247.md b/access/Concepts/Miscellaneous/odbclinked-table-definition-has-changederror-3247.md
index 5343aecf0ac..ec02ee4e8a1 100644
--- a/access/Concepts/Miscellaneous/odbclinked-table-definition-has-changederror-3247.md
+++ b/access/Concepts/Miscellaneous/odbclinked-table-definition-has-changederror-3247.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The definition or structure of a linked table changed since you created the link. Delete the link, and then relink the table.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/odbcremote-query-timeout-expirederror-3234.md b/access/Concepts/Miscellaneous/odbcremote-query-timeout-expirederror-3234.md
index 218ee8c2e7a..b39b3d0b42e 100644
--- a/access/Concepts/Miscellaneous/odbcremote-query-timeout-expirederror-3234.md
+++ b/access/Concepts/Miscellaneous/odbcremote-query-timeout-expirederror-3234.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The ODBC server may not be properly installed, or a required network connection is not active. Try increasing the value of the **QueryTimeout** property.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/odbctimeout-property.md b/access/Concepts/Miscellaneous/odbctimeout-property.md
index a9354bf466b..e4b16cebda2 100644
--- a/access/Concepts/Miscellaneous/odbctimeout-property.md
+++ b/access/Concepts/Miscellaneous/odbctimeout-property.md
@@ -32,9 +32,9 @@ When you're using an ODBC database, such as Microsoft SQL Server, there may be d
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/odbcupdate-on-a-linked-table-table-failederror-3157.md b/access/Concepts/Miscellaneous/odbcupdate-on-a-linked-table-table-failederror-3157.md
index 1f7b87db188..f2391422a5c 100644
--- a/access/Concepts/Miscellaneous/odbcupdate-on-a-linked-table-table-failederror-3157.md
+++ b/access/Concepts/Miscellaneous/odbcupdate-on-a-linked-table-table-failederror-3157.md
@@ -28,9 +28,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/oldconstants-enumeration.md b/access/Concepts/Miscellaneous/oldconstants-enumeration.md
index 966da4564ca..5877aedd313 100644
--- a/access/Concepts/Miscellaneous/oldconstants-enumeration.md
+++ b/access/Concepts/Miscellaneous/oldconstants-enumeration.md
@@ -275,9 +275,9 @@ These constants are provided for backward compatibility with Microsoft Access ve
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/one-of-the-binding-parameters-is-incorrecterror-3645.md b/access/Concepts/Miscellaneous/one-of-the-binding-parameters-is-incorrecterror-3645.md
index 638a082ae2f..5e1fc083f63 100644
--- a/access/Concepts/Miscellaneous/one-of-the-binding-parameters-is-incorrecterror-3645.md
+++ b/access/Concepts/Miscellaneous/one-of-the-binding-parameters-is-incorrecterror-3645.md
@@ -21,9 +21,9 @@ Check your binding structure.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/one-of-the-records-in-the-recordset-was-deleted-by-another-processerror-3643.md b/access/Concepts/Miscellaneous/one-of-the-records-in-the-recordset-was-deleted-by-another-processerror-3643.md
index a69dcabd0c4..21d2975195f 100644
--- a/access/Concepts/Miscellaneous/one-of-the-records-in-the-recordset-was-deleted-by-another-processerror-3643.md
+++ b/access/Concepts/Miscellaneous/one-of-the-records-in-the-recordset-was-deleted-by-another-processerror-3643.md
@@ -19,9 +19,9 @@ One or more of the records in the **Recordset** was deleted after the query was
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/one-or-more-values-are-prohibited-by-the-validation-rule-rule-set-for-nameenter.md b/access/Concepts/Miscellaneous/one-or-more-values-are-prohibited-by-the-validation-rule-rule-set-for-nameenter.md
index 414cec7dc9f..7cebb6e190e 100644
--- a/access/Concepts/Miscellaneous/one-or-more-values-are-prohibited-by-the-validation-rule-rule-set-for-nameenter.md
+++ b/access/Concepts/Miscellaneous/one-or-more-values-are-prohibited-by-the-validation-rule-rule-set-for-nameenter.md
@@ -14,9 +14,9 @@ The **ValidationRule** property for this field contains an expression that limi
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/only-simple-select-queries-are-allowed-in-viewserror-3766.md b/access/Concepts/Miscellaneous/only-simple-select-queries-are-allowed-in-viewserror-3766.md
index 77afd7afd84..54154d4fe78 100644
--- a/access/Concepts/Miscellaneous/only-simple-select-queries-are-allowed-in-viewserror-3766.md
+++ b/access/Concepts/Miscellaneous/only-simple-select-queries-are-allowed-in-viewserror-3766.md
@@ -19,9 +19,9 @@ This error occurs when trying to create a view from SQL DDL. This error occurs w
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/operation-canceled-by-usererror-3059.md b/access/Concepts/Miscellaneous/operation-canceled-by-usererror-3059.md
index 3534e74027f..91ad070edd2 100644
--- a/access/Concepts/Miscellaneous/operation-canceled-by-usererror-3059.md
+++ b/access/Concepts/Miscellaneous/operation-canceled-by-usererror-3059.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You stopped the operation before its normal completion. Some data changes may not have been saved.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/operation-invalid-without-a-current-indexerror-3019.md b/access/Concepts/Miscellaneous/operation-invalid-without-a-current-indexerror-3019.md
index 975c42fc5b4..a95e65e72cf 100644
--- a/access/Concepts/Miscellaneous/operation-invalid-without-a-current-indexerror-3019.md
+++ b/access/Concepts/Miscellaneous/operation-invalid-without-a-current-indexerror-3019.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Set the **Index**, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/operation-is-not-supported-for-this-type-of-objecterror-3251.md b/access/Concepts/Miscellaneous/operation-is-not-supported-for-this-type-of-objecterror-3251.md
index e5d11475276..08c1280caf2 100644
--- a/access/Concepts/Miscellaneous/operation-is-not-supported-for-this-type-of-objecterror-3251.md
+++ b/access/Concepts/Miscellaneous/operation-is-not-supported-for-this-type-of-objecterror-3251.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You were attempting to execute a method or assign a value to a property that is usually valid for the object, but is not supported in this specific instance. For example, the **Edit** method is generally valid for **Recordset** objects, but not for a snapshot-type **Recordset**. This error could also occur in cases where the operation is not permitted due to the type or status of the object — as when trying to use the **MovePrevious** method on a forward-only-type **Recordset**. Some operations are also not supported, depending on if you are accessing a Microsoft Access database engine or an ODBC data source.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/operation-must-use-an-updatable-queryerror-3073.md b/access/Concepts/Miscellaneous/operation-must-use-an-updatable-queryerror-3073.md
index 604cab6177b..e6d6d02028d 100644
--- a/access/Concepts/Miscellaneous/operation-must-use-an-updatable-queryerror-3073.md
+++ b/access/Concepts/Miscellaneous/operation-must-use-an-updatable-queryerror-3073.md
@@ -42,9 +42,9 @@ Close the database, resolve the read-only condition, and then reopen it for read
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/operation-not-supported-in-transactionserror-3246.md b/access/Concepts/Miscellaneous/operation-not-supported-in-transactionserror-3246.md
index f3a75ec317f..4fff63ffe31 100644
--- a/access/Concepts/Miscellaneous/operation-not-supported-in-transactionserror-3246.md
+++ b/access/Concepts/Miscellaneous/operation-not-supported-in-transactionserror-3246.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to perform an operation that is not valid within a transaction. A transaction can be one you create using a **BeginTrans** statements, or an internal transaction created by the Microsoft Access database engine, such as when you delete multiple records in a single operation.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/operation-not-supported-on-a-paradox-table-with-no-primary-keyerror-3207.md b/access/Concepts/Miscellaneous/operation-not-supported-on-a-paradox-table-with-no-primary-keyerror-3207.md
index 02a0b45f694..063cb67de4f 100644
--- a/access/Concepts/Miscellaneous/operation-not-supported-on-a-paradox-table-with-no-primary-keyerror-3207.md
+++ b/access/Concepts/Miscellaneous/operation-not-supported-on-a-paradox-table-with-no-primary-keyerror-3207.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Run the application that created the table, and add a primary key. Then, try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/operation-not-supported-on-a-table-that-contains-dataerror-3282.md b/access/Concepts/Miscellaneous/operation-not-supported-on-a-table-that-contains-dataerror-3282.md
index 4c74181603f..c31e67008fd 100644
--- a/access/Concepts/Miscellaneous/operation-not-supported-on-a-table-that-contains-dataerror-3282.md
+++ b/access/Concepts/Miscellaneous/operation-not-supported-on-a-table-that-contains-dataerror-3282.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You cannot add a field or create an index on a linked table that contains data. Once a table is populated with data, you cannot change the table design or indexes. Create a new table with the altered design and transfer the data to it using an action query.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/operation-not-supported-on-linked-tableserror-3057.md b/access/Concepts/Miscellaneous/operation-not-supported-on-linked-tableserror-3057.md
index 789d9148248..d0151e14fd1 100644
--- a/access/Concepts/Miscellaneous/operation-not-supported-on-linked-tableserror-3057.md
+++ b/access/Concepts/Miscellaneous/operation-not-supported-on-linked-tableserror-3057.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Import data from the table, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/operation-not-supported-on-replicable-databases-that-have-not-been-converted-to.md b/access/Concepts/Miscellaneous/operation-not-supported-on-replicable-databases-that-have-not-been-converted-to.md
index a00f6c70c92..593aa8c05c2 100644
--- a/access/Concepts/Miscellaneous/operation-not-supported-on-replicable-databases-that-have-not-been-converted-to.md
+++ b/access/Concepts/Miscellaneous/operation-not-supported-on-replicable-databases-that-have-not-been-converted-to.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This replica was created with a previous version of Microsoft Jet. To execute any replication operations you must first compact/convert your replica set.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/order-by-clause-clause-conflicts-with-distincterror-3093.md b/access/Concepts/Miscellaneous/order-by-clause-clause-conflicts-with-distincterror-3093.md
index 4d47b95cb66..ccd38f45def 100644
--- a/access/Concepts/Miscellaneous/order-by-clause-clause-conflicts-with-distincterror-3093.md
+++ b/access/Concepts/Miscellaneous/order-by-clause-clause-conflicts-with-distincterror-3093.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You created an SQL statement with an ALL, DISTINCT, or DISTINCTROW predicate and an ORDER BY clause that contains a field not listed in the SELECT statement. Remove the DISTINCT reserved word, or remove the specified field from the ORDER BY clause.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/order-by-clause-clause-conflicts-with-group-by-clauseerror-3094.md b/access/Concepts/Miscellaneous/order-by-clause-clause-conflicts-with-group-by-clauseerror-3094.md
index 24d402f64dd..5908a3586bd 100644
--- a/access/Concepts/Miscellaneous/order-by-clause-clause-conflicts-with-group-by-clauseerror-3094.md
+++ b/access/Concepts/Miscellaneous/order-by-clause-clause-conflicts-with-group-by-clauseerror-3094.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error can occur when you create a select query and specify grouped fields after sorted fields that are not grouped. For example, you created an SQL statement with the specified field out of sequence in the ORDER BY clause. Move the specified field to the left of the ungrouped fields, or remove the specified field from the ORDER BY clause.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/out-of-date-paradox-lock-fileerror-3230.md b/access/Concepts/Miscellaneous/out-of-date-paradox-lock-fileerror-3230.md
index a765cba72d5..d2f0b905c7a 100644
--- a/access/Concepts/Miscellaneous/out-of-date-paradox-lock-fileerror-3230.md
+++ b/access/Concepts/Miscellaneous/out-of-date-paradox-lock-fileerror-3230.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to use a Paradox table, but the table's associated lock (.lck) file is outdated. Delete the .lck file and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/out-of-memory-during-calculationerror-2446.md b/access/Concepts/Miscellaneous/out-of-memory-during-calculationerror-2446.md
index 821360f1d8c..5a9281358c6 100644
--- a/access/Concepts/Miscellaneous/out-of-memory-during-calculationerror-2446.md
+++ b/access/Concepts/Miscellaneous/out-of-memory-during-calculationerror-2446.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The application does not have enough memory to complete the calculation. Make sure you have enough RAM and an established swap file. You may need to terminate other programs, remove desktop wallpaper bitmaps, or remove unneeded device drivers to recover enough memory.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/out-of-memorycould-not-complete-operation.md b/access/Concepts/Miscellaneous/out-of-memorycould-not-complete-operation.md
index 580cff358f9..a754dcb2687 100644
--- a/access/Concepts/Miscellaneous/out-of-memorycould-not-complete-operation.md
+++ b/access/Concepts/Miscellaneous/out-of-memorycould-not-complete-operation.md
@@ -22,9 +22,9 @@ Close unused applications. If the problem persists, restart your computer.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/out-of-ms-dos-file-handleserror-3042.md b/access/Concepts/Miscellaneous/out-of-ms-dos-file-handleserror-3042.md
index 55b27419085..2c4fcf5b376 100644
--- a/access/Concepts/Miscellaneous/out-of-ms-dos-file-handleserror-3042.md
+++ b/access/Concepts/Miscellaneous/out-of-ms-dos-file-handleserror-3042.md
@@ -30,9 +30,9 @@ To increase the number of file handles
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/outputallfields-property.md b/access/Concepts/Miscellaneous/outputallfields-property.md
index c6fb53918bc..1b3c9f44b8e 100644
--- a/access/Concepts/Miscellaneous/outputallfields-property.md
+++ b/access/Concepts/Miscellaneous/outputallfields-property.md
@@ -45,9 +45,9 @@ When you save a filter as a query, Microsoft Access sets the **OutputAllFields**
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/paradox-index-is-not-primaryerror-3288.md b/access/Concepts/Miscellaneous/paradox-index-is-not-primaryerror-3288.md
index aa14d3aefde..4765793399f 100644
--- a/access/Concepts/Miscellaneous/paradox-index-is-not-primaryerror-3288.md
+++ b/access/Concepts/Miscellaneous/paradox-index-is-not-primaryerror-3288.md
@@ -26,9 +26,9 @@ Possible solutions:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/parameter-ado-for-visual-c-plus-plus-syntax.md b/access/Concepts/Miscellaneous/parameter-ado-for-visual-c-plus-plus-syntax.md
index 62c37320123..1ebb837974a 100644
--- a/access/Concepts/Miscellaneous/parameter-ado-for-visual-c-plus-plus-syntax.md
+++ b/access/Concepts/Miscellaneous/parameter-ado-for-visual-c-plus-plus-syntax.md
@@ -16,13 +16,13 @@ ms.date: 06/08/2017
[AppendChunk](http://msdn.microsoft.com/library/3fa931a3-2cd7-a3b0-a750-40e18bc9937e%28Office.15%29.aspx)(VARIANT _Val_ )
**Properties**
-[get_Attributes](http://msdn.microsoft.com/library/4cc1f036-606e-7d4b-d270-af374e9d99fa%28Office.15%29.aspx)(LONG * _plParmAttribs_ ) **put_Attributes** (LONG _lParmAttribs_ )[get_Direction](http://msdn.microsoft.com/library/51a94abb-7ce9-9adb-2b76-5391eb9f6863%28Office.15%29.aspx)(ParameterDirectionEnum * _plParmDirection_ ) **put_Direction** (ParameterDirectionEnum _lParmDirection_ )[get_Name](http://msdn.microsoft.com/library/4b19bd08-ac3c-86f0-471d-06a37a0d4f89%28Office.15%29.aspx)(BSTR * _pbstr_ ) **put_Name** (BSTR _bstr_ )[get_NumericScale](http://msdn.microsoft.com/library/51b232d2-5bfd-521c-f4e9-65655ecc7c70%28Office.15%29.aspx)(BYTE * _pbScale_ ) **put_NumericScale** (BYTE _bScale_ )[get_Precision](http://msdn.microsoft.com/library/c9d54d78-d5a5-caf8-d635-259d1fcc0595%28Office.15%29.aspx)(BYTE * _pbPrecision_ ) **put_Precision** (BYTE _bPrecision_ )[get_Size](http://msdn.microsoft.com/library/24596b5c-b1cc-e97e-68b6-8ff53baf150b%28Office.15%29.aspx)(long * _pl_ ) **put_Size** (long _l_ )[get_Type](http://msdn.microsoft.com/library/14d99172-2145-05ae-620b-459ba097f05c%28Office.15%29.aspx)(DataTypeEnum * _psDataType_ ) **put_Type** (DataTypeEnum _sDataType_ )[get_Value](http://msdn.microsoft.com/library/ff21d122-98e3-2b48-d92f-e696b8079fc5%28Office.15%29.aspx)(VARIANT * _pvar_ ) **put_Value** (VARIANT _val_ )
+[get_Attributes](http://msdn.microsoft.com/library/4cc1f036-606e-7d4b-d270-af374e9d99fa%28Office.15%29.aspx)(LONG * _plParmAttribs_ ) **put_Attributes** (LONG _lParmAttribs_ ) [get_Direction](http://msdn.microsoft.com/library/51a94abb-7ce9-9adb-2b76-5391eb9f6863%28Office.15%29.aspx)(ParameterDirectionEnum * _plParmDirection_ ) **put_Direction** (ParameterDirectionEnum _lParmDirection_ ) [get_Name](http://msdn.microsoft.com/library/4b19bd08-ac3c-86f0-471d-06a37a0d4f89%28Office.15%29.aspx)(BSTR * _pbstr_ ) **put_Name** (BSTR _bstr_ ) [get_NumericScale](http://msdn.microsoft.com/library/51b232d2-5bfd-521c-f4e9-65655ecc7c70%28Office.15%29.aspx)(BYTE * _pbScale_ ) **put_NumericScale** (BYTE _bScale_ ) [get_Precision](http://msdn.microsoft.com/library/c9d54d78-d5a5-caf8-d635-259d1fcc0595%28Office.15%29.aspx)(BYTE * _pbPrecision_ ) **put_Precision** (BYTE _bPrecision_ ) [get_Size](http://msdn.microsoft.com/library/24596b5c-b1cc-e97e-68b6-8ff53baf150b%28Office.15%29.aspx)(long * _pl_ ) **put_Size** (long _l_ ) [get_Type](http://msdn.microsoft.com/library/14d99172-2145-05ae-620b-459ba097f05c%28Office.15%29.aspx)(DataTypeEnum * _psDataType_ ) **put_Type** (DataTypeEnum _sDataType_ ) [get_Value](http://msdn.microsoft.com/library/ff21d122-98e3-2b48-d92f-e696b8079fc5%28Office.15%29.aspx)(VARIANT * _pvar_ ) **put_Value** (VARIANT _val_ )
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/parameter-ado-wfc-syntax.md b/access/Concepts/Miscellaneous/parameter-ado-wfc-syntax.md
index 8eb8090a68c..f15820457a1 100644
--- a/access/Concepts/Miscellaneous/parameter-ado-wfc-syntax.md
+++ b/access/Concepts/Miscellaneous/parameter-ado-wfc-syntax.md
@@ -91,9 +91,9 @@ public void setNull()
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/parameter-has-no-default-valueerror-3747.md b/access/Concepts/Miscellaneous/parameter-has-no-default-valueerror-3747.md
index bb10fa39a0f..6bd401d9ac0 100644
--- a/access/Concepts/Miscellaneous/parameter-has-no-default-valueerror-3747.md
+++ b/access/Concepts/Miscellaneous/parameter-has-no-default-valueerror-3747.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when using procedures. It occurs when a default value is trying to be utilized and the parameter does not have a defined default value. To prevent this error message, define a default value on the procedure, or pass in a value to the parameter.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/parameter-name-has-no-default-valueerror-3748.md b/access/Concepts/Miscellaneous/parameter-name-has-no-default-valueerror-3748.md
index 8dd173d6952..2d9b4a9af7c 100644
--- a/access/Concepts/Miscellaneous/parameter-name-has-no-default-valueerror-3748.md
+++ b/access/Concepts/Miscellaneous/parameter-name-has-no-default-valueerror-3748.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This occurs when using procedures. It occurs when a default value is trying to be utilized and the parameter does not have a defined default value. To prevent this error message, define a default value on the procedure, or pass in a value to the parameter.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/parameter-name-is-invalid-because-it-is-too-long-or-contains-invalid-characterse.md b/access/Concepts/Miscellaneous/parameter-name-is-invalid-because-it-is-too-long-or-contains-invalid-characterse.md
index b1bcfecab71..8451976ac80 100644
--- a/access/Concepts/Miscellaneous/parameter-name-is-invalid-because-it-is-too-long-or-contains-invalid-characterse.md
+++ b/access/Concepts/Miscellaneous/parameter-name-is-invalid-because-it-is-too-long-or-contains-invalid-characterse.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The parameter name is too long or contains invalid characters. Correct the name, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/parameter-name-specified-where-a-database-name-is-requirederror-3217.md b/access/Concepts/Miscellaneous/parameter-name-specified-where-a-database-name-is-requirederror-3217.md
index 352c4931c30..a87c1255d02 100644
--- a/access/Concepts/Miscellaneous/parameter-name-specified-where-a-database-name-is-requirederror-3217.md
+++ b/access/Concepts/Miscellaneous/parameter-name-specified-where-a-database-name-is-requirederror-3217.md
@@ -30,9 +30,9 @@ FROM Customers IN Param1;
`Param1` is a text parameter, but the FROM clause requires a database parameter.
Change the parameter type from Text to Database, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/parameter-name-specified-where-a-table-name-is-requirederror-3216.md b/access/Concepts/Miscellaneous/parameter-name-specified-where-a-table-name-is-requirederror-3216.md
index 38bea747e7c..eadf6e27781 100644
--- a/access/Concepts/Miscellaneous/parameter-name-specified-where-a-table-name-is-requirederror-3216.md
+++ b/access/Concepts/Miscellaneous/parameter-name-specified-where-a-table-name-is-requirederror-3216.md
@@ -32,9 +32,9 @@ FROM Customers;
`Param1` is a text parameter, but the INSERT INTO statement expects a table name.
Change the parameter type from Text to TableID, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/parameter-query.md b/access/Concepts/Miscellaneous/parameter-query.md
index bef378a0291..6bfc86a1635 100644
--- a/access/Concepts/Miscellaneous/parameter-query.md
+++ b/access/Concepts/Miscellaneous/parameter-query.md
@@ -19,9 +19,9 @@ A parameter query, which is a type of select query, extends the flexibility of a
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/parameter-visual-c-plus-plus-syntax-index-with-import.md b/access/Concepts/Miscellaneous/parameter-visual-c-plus-plus-syntax-index-with-import.md
index a068afb5972..3bf5df18310 100644
--- a/access/Concepts/Miscellaneous/parameter-visual-c-plus-plus-syntax-index-with-import.md
+++ b/access/Concepts/Miscellaneous/parameter-visual-c-plus-plus-syntax-index-with-import.md
@@ -60,9 +60,9 @@ __declspec(property(get=GetValue,put=PutValue)) _variant_t Invalid DDUE based on
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/partner-replica-is-not-managed-by-a-synchronizererror-3628.md b/access/Concepts/Miscellaneous/partner-replica-is-not-managed-by-a-synchronizererror-3628.md
index c9d326f6a30..3200480f1b3 100644
--- a/access/Concepts/Miscellaneous/partner-replica-is-not-managed-by-a-synchronizererror-3628.md
+++ b/access/Concepts/Miscellaneous/partner-replica-is-not-managed-by-a-synchronizererror-3628.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You are trying to synchronize with a partner replica that is not being managed by a Synchronizer.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/pass-through-query-must-contain-at-least-one-charactererror-3359.md b/access/Concepts/Miscellaneous/pass-through-query-must-contain-at-least-one-charactererror-3359.md
index ebfa39ac6f1..f0aefccf9f3 100644
--- a/access/Concepts/Miscellaneous/pass-through-query-must-contain-at-least-one-charactererror-3359.md
+++ b/access/Concepts/Miscellaneous/pass-through-query-must-contain-at-least-one-charactererror-3359.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The SQL string of a pass-through query must contain at least one character.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/pass-through-query-with-returnsrecords-property-set-to-true-did-not-return-any-r.md b/access/Concepts/Miscellaneous/pass-through-query-with-returnsrecords-property-set-to-true-did-not-return-any-r.md
index 93b838d0263..335d7419bc7 100644
--- a/access/Concepts/Miscellaneous/pass-through-query-with-returnsrecords-property-set-to-true-did-not-return-any-r.md
+++ b/access/Concepts/Miscellaneous/pass-through-query-with-returnsrecords-property-set-to-true-did-not-return-any-r.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
A pass-through query did not return any records even though the **ReturnsRecords** property is set to **True**. If a pass-through query does not return records, set the **ReturnsRecords** property to **False**.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/path-is-not-a-valid-path-make-sure-that-the-path-name-is-spelled-correctly-and-t.md b/access/Concepts/Miscellaneous/path-is-not-a-valid-path-make-sure-that-the-path-name-is-spelled-correctly-and-t.md
index 0dbe32d2084..423cb023a6b 100644
--- a/access/Concepts/Miscellaneous/path-is-not-a-valid-path-make-sure-that-the-path-name-is-spelled-correctly-and-t.md
+++ b/access/Concepts/Miscellaneous/path-is-not-a-valid-path-make-sure-that-the-path-name-is-spelled-correctly-and-t.md
@@ -25,9 +25,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/primary-key-already-existserror-3283.md b/access/Concepts/Miscellaneous/primary-key-already-existserror-3283.md
index ba233653093..966cfc21ce4 100644
--- a/access/Concepts/Miscellaneous/primary-key-already-existserror-3283.md
+++ b/access/Concepts/Miscellaneous/primary-key-already-existserror-3283.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You are attempting to define a second primary key for this table. Each table can have only one primary key. Remove the reference to the second primary key.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/primary-property.md b/access/Concepts/Miscellaneous/primary-property.md
index d965065b870..67f055394a0 100644
--- a/access/Concepts/Miscellaneous/primary-property.md
+++ b/access/Concepts/Miscellaneous/primary-property.md
@@ -45,9 +45,9 @@ A table with no primary key can't be used in a relationship and can be slower to
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/process-stopped-when-attempting-to-terminate-synchronizer-clienterror-3542.md b/access/Concepts/Miscellaneous/process-stopped-when-attempting-to-terminate-synchronizer-clienterror-3542.md
index f8e7af0b4ff..cadab5bdf21 100644
--- a/access/Concepts/Miscellaneous/process-stopped-when-attempting-to-terminate-synchronizer-clienterror-3542.md
+++ b/access/Concepts/Miscellaneous/process-stopped-when-attempting-to-terminate-synchronizer-clienterror-3542.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/property-can-be-set-only-when-the-field-is-part-of-a-recordset-object-s-fields-c.md b/access/Concepts/Miscellaneous/property-can-be-set-only-when-the-field-is-part-of-a-recordset-object-s-fields-c.md
index a874e6291a1..d4c8beb10e5 100644
--- a/access/Concepts/Miscellaneous/property-can-be-set-only-when-the-field-is-part-of-a-recordset-object-s-fields-c.md
+++ b/access/Concepts/Miscellaneous/property-can-be-set-only-when-the-field-is-part-of-a-recordset-object-s-fields-c.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This property is valid only for **Field** objects that are part of a **Recordset** object's **Fields** collection. See the **Field** Object, **Fields** Collection Summary for a list of properties available for different **Fields** collections.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/property-name-must-be-set-before-using-this-methoderror-3386.md b/access/Concepts/Miscellaneous/property-name-must-be-set-before-using-this-methoderror-3386.md
index bdc3c4e65b6..ce496febe60 100644
--- a/access/Concepts/Miscellaneous/property-name-must-be-set-before-using-this-methoderror-3386.md
+++ b/access/Concepts/Miscellaneous/property-name-must-be-set-before-using-this-methoderror-3386.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You attempted to append a new **Property** object to a collection without first setting all of the new object's properties: **Value**, **Type**, and **Name**.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/property-not-founderror-3270.md b/access/Concepts/Miscellaneous/property-not-founderror-3270.md
index fa0e00d7198..c51f6a69bc1 100644
--- a/access/Concepts/Miscellaneous/property-not-founderror-3270.md
+++ b/access/Concepts/Miscellaneous/property-not-founderror-3270.md
@@ -28,9 +28,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/property-setting-cannot-be-larger-than-2kerror-3309.md b/access/Concepts/Miscellaneous/property-setting-cannot-be-larger-than-2kerror-3309.md
index 905f8161746..5ae3f5938e7 100644
--- a/access/Concepts/Miscellaneous/property-setting-cannot-be-larger-than-2kerror-3309.md
+++ b/access/Concepts/Miscellaneous/property-setting-cannot-be-larger-than-2kerror-3309.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You are trying to set a property value of an object to a size greater than the largest permissible size of 2K. Shorten the length of the property value.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/property-specified-already-existserror-3311.md b/access/Concepts/Miscellaneous/property-specified-already-existserror-3311.md
index 9c908e4fc73..ed0b95d916f 100644
--- a/access/Concepts/Miscellaneous/property-specified-already-existserror-3311.md
+++ b/access/Concepts/Miscellaneous/property-specified-already-existserror-3311.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to append a new **Property** object to a collection that contains a property of the same name. Check to see whether you have misspelled the new **Property** object's **Name** property, or refer to the Help topic for the existing property of the same name to see whether you need to create a new **Property** object.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/property-visual-c-plus-plus-syntax-index-with-import.md b/access/Concepts/Miscellaneous/property-visual-c-plus-plus-syntax-index-with-import.md
index c434dda8da5..decbf8e3653 100644
--- a/access/Concepts/Miscellaneous/property-visual-c-plus-plus-syntax-index-with-import.md
+++ b/access/Concepts/Miscellaneous/property-visual-c-plus-plus-syntax-index-with-import.md
@@ -32,9 +32,9 @@ __declspec(property(get=GetValue,put=PutValue)) _variant_t Invalid DDUE based on
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/query-cannot-contain-a-database-parametererror-3222.md b/access/Concepts/Miscellaneous/query-cannot-contain-a-database-parametererror-3222.md
index c0b88dc1150..a4b96056ee1 100644
--- a/access/Concepts/Miscellaneous/query-cannot-contain-a-database-parametererror-3222.md
+++ b/access/Concepts/Miscellaneous/query-cannot-contain-a-database-parametererror-3222.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Change the parameter field data type for this parameter query to a valid field data type, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/query-field.md b/access/Concepts/Miscellaneous/query-field.md
index 6979d2f096a..c2c32c2c358 100644
--- a/access/Concepts/Miscellaneous/query-field.md
+++ b/access/Concepts/Miscellaneous/query-field.md
@@ -19,9 +19,9 @@ You can set the properties for query fields within the Field Properties window o
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/query-input-must-contain-at-least-one-table-or-queryerror-3067.md b/access/Concepts/Miscellaneous/query-input-must-contain-at-least-one-table-or-queryerror-3067.md
index da80a28b2e0..eff55d19213 100644
--- a/access/Concepts/Miscellaneous/query-input-must-contain-at-least-one-table-or-queryerror-3067.md
+++ b/access/Concepts/Miscellaneous/query-input-must-contain-at-least-one-table-or-queryerror-3067.md
@@ -19,9 +19,9 @@ In Microsoft Access database engine databases, this error occurs if you do not s
In ODBCDirect databases, this error occurs if you attempt to execute a query that does not contain an SQL statement. Include at least one query or stored procedure call in the **QueryDef** object's **SQL** property.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/query-is-too-complexerror-3360.md b/access/Concepts/Miscellaneous/query-is-too-complexerror-3360.md
index 9b5481cff2a..fc0a783c9c4 100644
--- a/access/Concepts/Miscellaneous/query-is-too-complexerror-3360.md
+++ b/access/Concepts/Miscellaneous/query-is-too-complexerror-3360.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The query is too complex. Reduce the number of fields in the SELECT clause or the number of subqueries or tables in the join.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/query-must-have-at-least-one-destination-fielderror-3066.md b/access/Concepts/Miscellaneous/query-must-have-at-least-one-destination-fielderror-3066.md
index d0e72e1f91b..60e08b55882 100644
--- a/access/Concepts/Miscellaneous/query-must-have-at-least-one-destination-fielderror-3066.md
+++ b/access/Concepts/Miscellaneous/query-must-have-at-least-one-destination-fielderror-3066.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs if you do not specify any destination field names when you create a query. Select at least one destination field.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/query-name-contains-an-ambiguous-column-name-that-is-conflicting-with-the-correl.md b/access/Concepts/Miscellaneous/query-name-contains-an-ambiguous-column-name-that-is-conflicting-with-the-correl.md
index 6d1fccaa98e..28902677548 100644
--- a/access/Concepts/Miscellaneous/query-name-contains-an-ambiguous-column-name-that-is-conflicting-with-the-correl.md
+++ b/access/Concepts/Miscellaneous/query-name-contains-an-ambiguous-column-name-that-is-conflicting-with-the-correl.md
@@ -20,9 +20,9 @@ Either fully qualify the column name or change the correlation (alias) name. A S
This SQL SELECT statement will work when using the Microsoft OLE DB Provider for Jet by itself or through Active Data Objects (ADO). If this SQL SELECT statement is being used through any part of Microsoft Access outside of ADO using Microsoft OLE DB Provider for Jet, you will need to change the correlation (alias) name to something other than the column name in the base table.
An example of this would be the following: CREATE TABLE Orders (OrderDate DATE, Freight DOUBLE);. The following SQL SELECT statement would now return an error: SELECT OrderDate AS A1, Freight + Freight AS OrderDate. The workaround would be to change the correlation (alias) name OrderDate to some other name or to run this query through ADO using the Microsoft OLE DB Provider for Jet.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/query-name-is-corrupterror-3340.md b/access/Concepts/Miscellaneous/query-name-is-corrupterror-3340.md
index fda44d23772..6e439faf06a 100644
--- a/access/Concepts/Miscellaneous/query-name-is-corrupterror-3340.md
+++ b/access/Concepts/Miscellaneous/query-name-is-corrupterror-3340.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You have referenced an undefined query name. Check the queries listed in the **QueryDefs** collection to make sure you referenced a valid query name.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/query-support-unavailableerror-3389.md b/access/Concepts/Miscellaneous/query-support-unavailableerror-3389.md
index ec24b85a67d..5c3186080df 100644
--- a/access/Concepts/Miscellaneous/query-support-unavailableerror-3389.md
+++ b/access/Concepts/Miscellaneous/query-support-unavailableerror-3389.md
@@ -19,9 +19,9 @@ You attempted to establish referential integrity on a **Relation** object of a
Change the **Attributes** property setting of the **Relation** object to **dbRelationDontEnforce**.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/rds-code-examples-in-microsoft-visual-basic-scripting-edition.md b/access/Concepts/Miscellaneous/rds-code-examples-in-microsoft-visual-basic-scripting-edition.md
index cc249476dea..03294e4bf50 100644
--- a/access/Concepts/Miscellaneous/rds-code-examples-in-microsoft-visual-basic-scripting-edition.md
+++ b/access/Concepts/Miscellaneous/rds-code-examples-in-microsoft-visual-basic-scripting-edition.md
@@ -80,9 +80,9 @@ Use the following code examples to learn how to use the RDS objects, methods, an
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/rds-code-examples-in-microsoft-visual-basic.md b/access/Concepts/Miscellaneous/rds-code-examples-in-microsoft-visual-basic.md
index 8a65422b159..2112bbd34f3 100644
--- a/access/Concepts/Miscellaneous/rds-code-examples-in-microsoft-visual-basic.md
+++ b/access/Concepts/Miscellaneous/rds-code-examples-in-microsoft-visual-basic.md
@@ -27,9 +27,9 @@ Use the following code examples to learn how to use RDS properties when writing
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/rds-code-examples-in-microsoft-visual-c-plus-plus.md b/access/Concepts/Miscellaneous/rds-code-examples-in-microsoft-visual-c-plus-plus.md
index e6dc1855d7a..c7505310711 100644
--- a/access/Concepts/Miscellaneous/rds-code-examples-in-microsoft-visual-c-plus-plus.md
+++ b/access/Concepts/Miscellaneous/rds-code-examples-in-microsoft-visual-c-plus-plus.md
@@ -24,9 +24,9 @@ Use the following code examples to learn how to use RDS properties when writing
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/rds-code-examples-in-microsoft-visual-j-plus-plus.md b/access/Concepts/Miscellaneous/rds-code-examples-in-microsoft-visual-j-plus-plus.md
index d3dcfe3fe17..60cead238db 100644
--- a/access/Concepts/Miscellaneous/rds-code-examples-in-microsoft-visual-j-plus-plus.md
+++ b/access/Concepts/Miscellaneous/rds-code-examples-in-microsoft-visual-j-plus-plus.md
@@ -24,9 +24,9 @@ Use the following code examples to learn how to use RDS properties when writing
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/rds-code-examples.md b/access/Concepts/Miscellaneous/rds-code-examples.md
index e5e23370b79..2b1332f420b 100644
--- a/access/Concepts/Miscellaneous/rds-code-examples.md
+++ b/access/Concepts/Miscellaneous/rds-code-examples.md
@@ -28,9 +28,9 @@ Use the following code examples to learn how to use the RDS objects, methods, pr
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/readystate-property-example-vbscript.md b/access/Concepts/Miscellaneous/readystate-property-example-vbscript.md
index 7f7a3259fc6..0b80940a4f1 100644
--- a/access/Concepts/Miscellaneous/readystate-property-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/readystate-property-example-vbscript.md
@@ -59,9 +59,9 @@ End Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/record-ado-for-visual-c-plus-plus-syntax.md b/access/Concepts/Miscellaneous/record-ado-for-visual-c-plus-plus-syntax.md
index 268377841ff..73b64cc5469 100644
--- a/access/Concepts/Miscellaneous/record-ado-for-visual-c-plus-plus-syntax.md
+++ b/access/Concepts/Miscellaneous/record-ado-for-visual-c-plus-plus-syntax.md
@@ -14,15 +14,15 @@ ms.date: 06/08/2017
**Methods**
-[Cancel](http://msdn.microsoft.com/library/747edc04-a5cc-3631-2d0b-82e7e41a76b7%28Office.15%29.aspx)(void)[Close](http://msdn.microsoft.com/library/26a7cced-ebeb-70be-f5de-96a35711bc37%28Office.15%29.aspx)(void)[CopyRecord](http://msdn.microsoft.com/library/724e4358-f216-8e47-5bab-c72770ece5a4%28Office.15%29.aspx)(BSTR _ Source,_ BSTR _ Destination,_ BSTR _ UserName,_ BSTR _ Password,_ CopyRecordOptionsEnum _ Options,_ VARIANT_BOOL _ Async,_ BSTR _*pbstrNewURL_ )[DeleteRecord](http://msdn.microsoft.com/library/ba71187f-e580-bba8-f41b-bedfa0bc2b04%28Office.15%29.aspx)(BSTR _ Source,_ VARIANT_BOOL _ Async_ )[GetChildren](http://msdn.microsoft.com/library/998cf640-ffc7-51e1-4d1e-4797f7cdea4a%28Office.15%29.aspx)(_ADORecordset * _*ppRSet_ )[MoveRecord](http://msdn.microsoft.com/library/efc341a2-0e08-a838-5925-8d4c46377e48%28Office.15%29.aspx)(BSTR _ Source,_ BSTR _ Destination,_ BSTR _ UserName,_ BSTR _ Password,_ MoveRecordOptionsEnum _ Options,_ VARIANT_BOOL _ Async,_ BSTR _*pbstrNewURL_ )[Open](http://msdn.microsoft.com/library/ba71c5c7-326e-d3b6-0e74-e8343ee6896f%28Office.15%29.aspx)(VARIANT _ Source,_ VARIANT _ ActiveConnection,_ ConnectModeEnum _ Mode,_ RecordCreateOptionsEnum _ CreateOptions,_ RecordOpenOptionsEnum _Options,_ BSTR _ UserName,_ BSTR _ Password_ )
+[Cancel](http://msdn.microsoft.com/library/747edc04-a5cc-3631-2d0b-82e7e41a76b7%28Office.15%29.aspx)(void) [Close](http://msdn.microsoft.com/library/26a7cced-ebeb-70be-f5de-96a35711bc37%28Office.15%29.aspx)(void) [CopyRecord](http://msdn.microsoft.com/library/724e4358-f216-8e47-5bab-c72770ece5a4%28Office.15%29.aspx)(BSTR _ Source,_ BSTR _ Destination,_ BSTR _ UserName,_ BSTR _ Password,_ CopyRecordOptionsEnum _ Options,_ VARIANT_BOOL _ Async,_ BSTR _*pbstrNewURL_ ) [DeleteRecord](http://msdn.microsoft.com/library/ba71187f-e580-bba8-f41b-bedfa0bc2b04%28Office.15%29.aspx)(BSTR _ Source,_ VARIANT_BOOL _ Async_ ) [GetChildren](http://msdn.microsoft.com/library/998cf640-ffc7-51e1-4d1e-4797f7cdea4a%28Office.15%29.aspx)(_ADORecordset * _*ppRSet_ ) [MoveRecord](http://msdn.microsoft.com/library/efc341a2-0e08-a838-5925-8d4c46377e48%28Office.15%29.aspx)(BSTR _ Source,_ BSTR _ Destination,_ BSTR _ UserName,_ BSTR _ Password,_ MoveRecordOptionsEnum _ Options,_ VARIANT_BOOL _ Async,_ BSTR _*pbstrNewURL_ ) [Open](http://msdn.microsoft.com/library/ba71c5c7-326e-d3b6-0e74-e8343ee6896f%28Office.15%29.aspx)(VARIANT _ Source,_ VARIANT _ ActiveConnection,_ ConnectModeEnum _ Mode,_ RecordCreateOptionsEnum _ CreateOptions,_ RecordOpenOptionsEnum _Options,_ BSTR _ UserName,_ BSTR _ Password_ )
**Properties**
-[get_ActiveConnection](http://msdn.microsoft.com/library/5501b2d7-b62c-5fff-1edd-2b7efb3f8c4a%28Office.15%29.aspx)(VARIANT _*pvar_ ) **put_ActiveConnection** (BSTR _ bstrConn_ ) **putref_ActiveConnection** (_ADOConnection _*Con_ )[get_Fields](http://msdn.microsoft.com/library/029aa738-8726-54a6-1813-b152813948bc%28Office.15%29.aspx)(ADOFields * _*ppFlds_ )[get_Mode](http://msdn.microsoft.com/library/62086f4f-8624-16c4-dae1-a17475d1864d%28Office.15%29.aspx)(ConnectModeEnum _*pMode_ ) **put_Mode** (ConnectModeEnum _ Mode_ )[get_ParentURL](http://msdn.microsoft.com/library/ec7ec476-6f9e-8486-fe02-74995975df5c%28Office.15%29.aspx)(BSTR _*pbstrParentURL_ )[get_RecordType](http://msdn.microsoft.com/library/a42001a6-7312-162d-dd71-c82f8c9d527f%28Office.15%29.aspx)(RecordTypeEnum _*pType_ )[get_Source](http://msdn.microsoft.com/library/f36f0f5f-4493-d8c5-db4b-c72f5031bcb3%28Office.15%29.aspx)(VARIANT _*pvar_ ) **put_Source** (BSTR _ Source_ ) **putref_Source** (IDispatch _*Source_ )[get_State](http://msdn.microsoft.com/library/ade0a50c-e2d8-23ac-4ea9-b012fedcd5db%28Office.15%29.aspx)(ObjectStateEnum _*pState_ )
+[get_ActiveConnection](http://msdn.microsoft.com/library/5501b2d7-b62c-5fff-1edd-2b7efb3f8c4a%28Office.15%29.aspx)(VARIANT _*pvar_ ) **put_ActiveConnection** (BSTR _ bstrConn_ ) **putref_ActiveConnection** (_ADOConnection _*Con_ ) [get_Fields](http://msdn.microsoft.com/library/029aa738-8726-54a6-1813-b152813948bc%28Office.15%29.aspx)(ADOFields * _*ppFlds_ ) [get_Mode](http://msdn.microsoft.com/library/62086f4f-8624-16c4-dae1-a17475d1864d%28Office.15%29.aspx)(ConnectModeEnum _*pMode_ ) **put_Mode** (ConnectModeEnum _ Mode_ ) [get_ParentURL](http://msdn.microsoft.com/library/ec7ec476-6f9e-8486-fe02-74995975df5c%28Office.15%29.aspx)(BSTR _*pbstrParentURL_ ) [get_RecordType](http://msdn.microsoft.com/library/a42001a6-7312-162d-dd71-c82f8c9d527f%28Office.15%29.aspx)(RecordTypeEnum _*pType_ ) [get_Source](http://msdn.microsoft.com/library/f36f0f5f-4493-d8c5-db4b-c72f5031bcb3%28Office.15%29.aspx)(VARIANT _*pvar_ ) **put_Source** (BSTR _ Source_ ) **putref_Source** (IDispatch _*Source_ ) [get_State](http://msdn.microsoft.com/library/ade0a50c-e2d8-23ac-4ea9-b012fedcd5db%28Office.15%29.aspx)(ObjectStateEnum _*pState_ )
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/record-in-table-name-was-deleted-by-another-usererror-3329.md b/access/Concepts/Miscellaneous/record-in-table-name-was-deleted-by-another-usererror-3329.md
index 38359da8d58..2124a37a299 100644
--- a/access/Concepts/Miscellaneous/record-in-table-name-was-deleted-by-another-usererror-3329.md
+++ b/access/Concepts/Miscellaneous/record-in-table-name-was-deleted-by-another-usererror-3329.md
@@ -19,9 +19,9 @@ The row that you are trying to edit has been deleted by another user. This behav
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/record-is-deletederror-3167.md b/access/Concepts/Miscellaneous/record-is-deletederror-3167.md
index 90ecb247126..2da2c7324d5 100644
--- a/access/Concepts/Miscellaneous/record-is-deletederror-3167.md
+++ b/access/Concepts/Miscellaneous/record-is-deletederror-3167.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You referred to a record that you deleted or that another user in a multiuser environment deleted. Move to another record, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/record-is-table-name-is-locked-by-another-usererror-3330.md b/access/Concepts/Miscellaneous/record-is-table-name-is-locked-by-another-usererror-3330.md
index 3f25a8f4e8b..eeb3ade81cb 100644
--- a/access/Concepts/Miscellaneous/record-is-table-name-is-locked-by-another-usererror-3330.md
+++ b/access/Concepts/Miscellaneous/record-is-table-name-is-locked-by-another-usererror-3330.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The row or page that you are trying to update is currently locked by another user. The Microsoft Access database engine allows users to have the database opened in a mode that allows for row-level locking. That mode can substantially reduce the number of times this error is generated.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/record-is-too-largeerror-3047.md b/access/Concepts/Miscellaneous/record-is-too-largeerror-3047.md
index c003cfa4cdc..34e06861a95 100644
--- a/access/Concepts/Miscellaneous/record-is-too-largeerror-3047.md
+++ b/access/Concepts/Miscellaneous/record-is-too-largeerror-3047.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You defined or imported a table with records larger than 4K. This error occurs when you enter data into the record — not when you define the table structure. Redefine the table by making some fields shorter, removing unneeded fields, or moving some fields to other tables.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/record-length-is-too-long-for-an-indexed-paradox-tableerror-3608.md b/access/Concepts/Miscellaneous/record-length-is-too-long-for-an-indexed-paradox-tableerror-3608.md
index 7d4ce3deb71..ea0dbc29d2f 100644
--- a/access/Concepts/Miscellaneous/record-length-is-too-long-for-an-indexed-paradox-tableerror-3608.md
+++ b/access/Concepts/Miscellaneous/record-length-is-too-long-for-an-indexed-paradox-tableerror-3608.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
An indexed Paradox table has a maximum record length of 1350 bytes. Try reducing the size of some Text or Memo fields.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/record-s-cannot-be-added-no-corresponding-record-on-the-one-sideerror-3363.md b/access/Concepts/Miscellaneous/record-s-cannot-be-added-no-corresponding-record-on-the-one-sideerror-3363.md
index 80205ac93e7..37f95d824a7 100644
--- a/access/Concepts/Miscellaneous/record-s-cannot-be-added-no-corresponding-record-on-the-one-sideerror-3363.md
+++ b/access/Concepts/Miscellaneous/record-s-cannot-be-added-no-corresponding-record-on-the-one-sideerror-3363.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when you edit a stored query or view that contains more than one table. This error could occur if you tried to save a row from a view that was a join between a customer (single) and orders (many) table. If you entered information regarding the order only and did not enter information, such as the primary key value, for the customer table this error would be returned.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/record-s-cannot-be-added-no-insert-permission-on-nameerror-3107.md b/access/Concepts/Miscellaneous/record-s-cannot-be-added-no-insert-permission-on-nameerror-3107.md
index 9f123a6a5cb..585e5e3be4c 100644
--- a/access/Concepts/Miscellaneous/record-s-cannot-be-added-no-insert-permission-on-nameerror-3107.md
+++ b/access/Concepts/Miscellaneous/record-s-cannot-be-added-no-insert-permission-on-nameerror-3107.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You must have insert data permission for the specified table or query to insert data into it. To change your permission assignments, see your system administrator or the table or query's creator.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/record-s-cannot-be-deleted-no-delete-permission-on-nameerror-3109.md b/access/Concepts/Miscellaneous/record-s-cannot-be-deleted-no-delete-permission-on-nameerror-3109.md
index a956baf6c6f..dc9d060d893 100644
--- a/access/Concepts/Miscellaneous/record-s-cannot-be-deleted-no-delete-permission-on-nameerror-3109.md
+++ b/access/Concepts/Miscellaneous/record-s-cannot-be-deleted-no-delete-permission-on-nameerror-3109.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You must have delete permission for the specified table or query in order to delete data. To change your permission assignments, see your system administrator or the table or query's creator.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/record-s-cannot-be-edited-no-update-permission-on-nameerror-3108.md b/access/Concepts/Miscellaneous/record-s-cannot-be-edited-no-update-permission-on-nameerror-3108.md
index 98263bcc8a4..ed39ca2dabb 100644
--- a/access/Concepts/Miscellaneous/record-s-cannot-be-edited-no-update-permission-on-nameerror-3108.md
+++ b/access/Concepts/Miscellaneous/record-s-cannot-be-edited-no-update-permission-on-nameerror-3108.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You must have update data permission for the specified table or query to replace data in it. To change your permission assignments, see your workgroup administrator or the table or query's creator.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/record-s-cannot-be-read-no-read-permission-on-nameerror-3112.md b/access/Concepts/Miscellaneous/record-s-cannot-be-read-no-read-permission-on-nameerror-3112.md
index 20d2fb58d08..e0f51714b2d 100644
--- a/access/Concepts/Miscellaneous/record-s-cannot-be-read-no-read-permission-on-nameerror-3112.md
+++ b/access/Concepts/Miscellaneous/record-s-cannot-be-read-no-read-permission-on-nameerror-3112.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You must have read permission for the specified table or query to view its data. To change your permission assignments, see your system administrator or the table or query's creator.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/record-visual-c-plus-plus-syntax-index-with-import.md b/access/Concepts/Miscellaneous/record-visual-c-plus-plus-syntax-index-with-import.md
index bb63efa19c8..d57c92acba9 100644
--- a/access/Concepts/Miscellaneous/record-visual-c-plus-plus-syntax-index-with-import.md
+++ b/access/Concepts/Miscellaneous/record-visual-c-plus-plus-syntax-index-with-import.md
@@ -68,9 +68,9 @@ __declspec(property(get=GetState)) enum ObjectStateEnum Invalid DDUE based on so
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/records-could-not-be-added-to-exceptions-tableerror-3619.md b/access/Concepts/Miscellaneous/records-could-not-be-added-to-exceptions-tableerror-3619.md
index 9cd9b32897d..b263a1eb3fe 100644
--- a/access/Concepts/Miscellaneous/records-could-not-be-added-to-exceptions-tableerror-3619.md
+++ b/access/Concepts/Miscellaneous/records-could-not-be-added-to-exceptions-tableerror-3619.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
A problem was encountered while importing or exporting to an external file. The import/export driver could not add a row to the error table in the Microsoft Access database to report the problem.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/records-in-table-name-would-have-no-record-on-the-one-sideerror-3333.md b/access/Concepts/Miscellaneous/records-in-table-name-would-have-no-record-on-the-one-sideerror-3333.md
index b4373aa8d0d..89bc32e038a 100644
--- a/access/Concepts/Miscellaneous/records-in-table-name-would-have-no-record-on-the-one-sideerror-3333.md
+++ b/access/Concepts/Miscellaneous/records-in-table-name-would-have-no-record-on-the-one-sideerror-3333.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for more information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/recordset-ado-for-visual-c-plus-plus-syntax.md b/access/Concepts/Miscellaneous/recordset-ado-for-visual-c-plus-plus-syntax.md
index 7c0448c2b58..951bc5abccb 100644
--- a/access/Concepts/Miscellaneous/recordset-ado-for-visual-c-plus-plus-syntax.md
+++ b/access/Concepts/Miscellaneous/recordset-ado-for-visual-c-plus-plus-syntax.md
@@ -83,9 +83,9 @@ ms.date: 06/08/2017
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/recordset-ado-wfc-syntax.md b/access/Concepts/Miscellaneous/recordset-ado-wfc-syntax.md
index 177f3e2b152..163d581c621 100644
--- a/access/Concepts/Miscellaneous/recordset-ado-wfc-syntax.md
+++ b/access/Concepts/Miscellaneous/recordset-ado-wfc-syntax.md
@@ -157,9 +157,9 @@ public void removeOnWillMove(RecordsetEventHandler handler )
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/recordset-and-sourcerecordset-properties-example-vbscript.md b/access/Concepts/Miscellaneous/recordset-and-sourcerecordset-properties-example-vbscript.md
index c409bb03194..8dbc4c43b36 100644
--- a/access/Concepts/Miscellaneous/recordset-and-sourcerecordset-properties-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/recordset-and-sourcerecordset-properties-example-vbscript.md
@@ -65,9 +65,9 @@ End Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/recordset-visual-c-plus-plus-syntax-index-with-import.md b/access/Concepts/Miscellaneous/recordset-visual-c-plus-plus-syntax-index-with-import.md
index 5afdff7a751..fdac3f2812a 100644
--- a/access/Concepts/Miscellaneous/recordset-visual-c-plus-plus-syntax-index-with-import.md
+++ b/access/Concepts/Miscellaneous/recordset-visual-c-plus-plus-syntax-index-with-import.md
@@ -192,9 +192,9 @@ __declspec(property(get=GetStayInSync,put=PutStayInSync)) VARIANT_BOOL
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/recordsetevents-visual-c-plus-plus-syntax-index-with-import.md b/access/Concepts/Miscellaneous/recordsetevents-visual-c-plus-plus-syntax-index-with-import.md
index b6382e227dd..fde45000d8a 100644
--- a/access/Concepts/Miscellaneous/recordsetevents-visual-c-plus-plus-syntax-index-with-import.md
+++ b/access/Concepts/Miscellaneous/recordsetevents-visual-c-plus-plus-syntax-index-with-import.md
@@ -56,9 +56,9 @@ HRESULT Invalid DDUE based on source, error:link not allowed in code, link filen
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/recovered-replicable-dataerror-3711.md b/access/Concepts/Miscellaneous/recovered-replicable-dataerror-3711.md
index 6c4ec8e836f..cac6dae85ca 100644
--- a/access/Concepts/Miscellaneous/recovered-replicable-dataerror-3711.md
+++ b/access/Concepts/Miscellaneous/recovered-replicable-dataerror-3711.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
When a replica is recovered, any new records that existed in the corrupted replica are added to the conflict table of the recovered replica. This ensures that the data can be reviewed before it is reinserted.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/refresh-method-example-vbscript.md b/access/Concepts/Miscellaneous/refresh-method-example-vbscript.md
index e7b684a9abd..a0ad3536b13 100644
--- a/access/Concepts/Miscellaneous/refresh-method-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/refresh-method-example-vbscript.md
@@ -92,9 +92,9 @@ RDC.RefreshEnd Sub
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/registering-a-custom-business-object.md b/access/Concepts/Miscellaneous/registering-a-custom-business-object.md
index a805e42c678..951157720c5 100644
--- a/access/Concepts/Miscellaneous/registering-a-custom-business-object.md
+++ b/access/Concepts/Miscellaneous/registering-a-custom-business-object.md
@@ -30,9 +30,9 @@ To successfully launch a custom business object (.dll or .exe) through the Web s
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/relationship-must-be-on-the-same-number-of-fields-with-the-same-data-typeserror.md b/access/Concepts/Miscellaneous/relationship-must-be-on-the-same-number-of-fields-with-the-same-data-typeserror.md
index c1bc1d1b285..55224792cc6 100644
--- a/access/Concepts/Miscellaneous/relationship-must-be-on-the-same-number-of-fields-with-the-same-data-typeserror.md
+++ b/access/Concepts/Miscellaneous/relationship-must-be-on-the-same-number-of-fields-with-the-same-data-typeserror.md
@@ -19,9 +19,9 @@ The CONSTRAINT clause you are using to create a relationship includes a differen
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/relationship-name-is-unenforcederror-3659.md b/access/Concepts/Miscellaneous/relationship-name-is-unenforcederror-3659.md
index 4110c6f7246..17fb37bfa5e 100644
--- a/access/Concepts/Miscellaneous/relationship-name-is-unenforcederror-3659.md
+++ b/access/Concepts/Miscellaneous/relationship-name-is-unenforcederror-3659.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You attempted to apply a filter in a partial replica on a table where a relationship that is not enforced exists. Enforce the relationship at the Design Master, and then re-attempt to apply the filter and re-populate the partial replica.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/remote-synchronizer-is-not-configured-for-remote-synchronizationerror-3632.md b/access/Concepts/Miscellaneous/remote-synchronizer-is-not-configured-for-remote-synchronizationerror-3632.md
index de554a9af33..e398fcf7d00 100644
--- a/access/Concepts/Miscellaneous/remote-synchronizer-is-not-configured-for-remote-synchronizationerror-3632.md
+++ b/access/Concepts/Miscellaneous/remote-synchronizer-is-not-configured-for-remote-synchronizationerror-3632.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This remote Synchronizer is not configured to perform remote synchronization.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/repaintobject-showallrecords-requery-and-refresh-action-method-comparison.md b/access/Concepts/Miscellaneous/repaintobject-showallrecords-requery-and-refresh-action-method-comparison.md
index c3e2021fb83..69f6d8d549f 100644
--- a/access/Concepts/Miscellaneous/repaintobject-showallrecords-requery-and-refresh-action-method-comparison.md
+++ b/access/Concepts/Miscellaneous/repaintobject-showallrecords-requery-and-refresh-action-method-comparison.md
@@ -33,9 +33,9 @@ The following table provides a brief comparison of the RepaintObject action, **
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/replica-has-not-been-synchronized-within-the-replica-set-retention-perioderror-3.md b/access/Concepts/Miscellaneous/replica-has-not-been-synchronized-within-the-replica-set-retention-perioderror-3.md
index ca70877151b..5adcaedf916 100644
--- a/access/Concepts/Miscellaneous/replica-has-not-been-synchronized-within-the-replica-set-retention-perioderror-3.md
+++ b/access/Concepts/Miscellaneous/replica-has-not-been-synchronized-within-the-replica-set-retention-perioderror-3.md
@@ -19,9 +19,9 @@ If the retention period expires for a replica, you cannot synchronize changes be
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/replication-manager-cannot-find-the-exchangeid-in-the-msysexchangelog-tableerror.md b/access/Concepts/Miscellaneous/replication-manager-cannot-find-the-exchangeid-in-the-msysexchangelog-tableerror.md
index 08183b15236..89ad3da7756 100644
--- a/access/Concepts/Miscellaneous/replication-manager-cannot-find-the-exchangeid-in-the-msysexchangelog-tableerror.md
+++ b/access/Concepts/Miscellaneous/replication-manager-cannot-find-the-exchangeid-in-the-msysexchangelog-tableerror.md
@@ -19,9 +19,9 @@ This is an unexpected error. Please contact Microsoft Product Support Services f
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)v
diff --git a/access/Concepts/Miscellaneous/report-section.md b/access/Concepts/Miscellaneous/report-section.md
index 820e29c347f..1bd757bae17 100644
--- a/access/Concepts/Miscellaneous/report-section.md
+++ b/access/Concepts/Miscellaneous/report-section.md
@@ -21,9 +21,9 @@ You can set report section properties that are attributes of a report which affe
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/requested-exchange-failed-because-descriptionerror-3660.md b/access/Concepts/Miscellaneous/requested-exchange-failed-because-descriptionerror-3660.md
index 6fc7450039d..53dd6b6cb0f 100644
--- a/access/Concepts/Miscellaneous/requested-exchange-failed-because-descriptionerror-3660.md
+++ b/access/Concepts/Miscellaneous/requested-exchange-failed-because-descriptionerror-3660.md
@@ -19,9 +19,9 @@ For details about why the exchange failed, look in the exchange history. If you
If you are conducting replication with Microsoft Access, you can open the exchange history table in Datasheet view to see the exchange history. The exchange history table is a hidden object. Display it in the Database window by selecting the **System Objects** check box on the **View** tab of the **Options** dialog box, which is available by clicking **Options** on the **Tools** menu.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/requested-exchange-failed-because-nameerror-3661.md b/access/Concepts/Miscellaneous/requested-exchange-failed-because-nameerror-3661.md
index 70fcd89d343..ae42e78586d 100644
--- a/access/Concepts/Miscellaneous/requested-exchange-failed-because-nameerror-3661.md
+++ b/access/Concepts/Miscellaneous/requested-exchange-failed-because-nameerror-3661.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The exchange has been cancelled.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/requested-page-locking-but-db-is-in-row-lock-modeerror-3752.md b/access/Concepts/Miscellaneous/requested-page-locking-but-db-is-in-row-lock-modeerror-3752.md
index 2ff8fc06a47..516cf3245e5 100644
--- a/access/Concepts/Miscellaneous/requested-page-locking-but-db-is-in-row-lock-modeerror-3752.md
+++ b/access/Concepts/Miscellaneous/requested-page-locking-but-db-is-in-row-lock-modeerror-3752.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when a user specifies that the database open in page locking only mode, but another user already has the database opened in row/page locking mode.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/requested-row-locking-but-db-is-in-page-lock-modeerror-3751.md b/access/Concepts/Miscellaneous/requested-row-locking-but-db-is-in-page-lock-modeerror-3751.md
index 4fe15f204de..9e892709c90 100644
--- a/access/Concepts/Miscellaneous/requested-row-locking-but-db-is-in-page-lock-modeerror-3751.md
+++ b/access/Concepts/Miscellaneous/requested-row-locking-but-db-is-in-page-lock-modeerror-3751.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when a user specifies that the dataqbase open in row/page locking mode, but another user already has the database opened in page locking only mode.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/required-client-settings.md b/access/Concepts/Miscellaneous/required-client-settings.md
index 899e80b9c3e..496c4cd3f44 100644
--- a/access/Concepts/Miscellaneous/required-client-settings.md
+++ b/access/Concepts/Miscellaneous/required-client-settings.md
@@ -68,9 +68,9 @@ rs.Open "CustomerById(4)", "Handler=MSDFMAP.Handler;" &; _
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/required-property-access.md b/access/Concepts/Miscellaneous/required-property-access.md
index 7db844bbea4..325951b02cb 100644
--- a/access/Concepts/Miscellaneous/required-property-access.md
+++ b/access/Concepts/Miscellaneous/required-property-access.md
@@ -68,9 +68,9 @@ If you set the **Required** property to Yes for a field in a table that already
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/reserved-error-alerterror-3416.md b/access/Concepts/Miscellaneous/reserved-error-alerterror-3416.md
index f79dafc9303..e6a38c0f88d 100644
--- a/access/Concepts/Miscellaneous/reserved-error-alerterror-3416.md
+++ b/access/Concepts/Miscellaneous/reserved-error-alerterror-3416.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error was generated by an application released after this version of the Microsoft Access database engine. Contact Microsoft Product Support Services.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/reserved-error-itemthere-is-no-message-for-this-errorerror-3000.md b/access/Concepts/Miscellaneous/reserved-error-itemthere-is-no-message-for-this-errorerror-3000.md
index 44dec04929f..7c09665e6f8 100644
--- a/access/Concepts/Miscellaneous/reserved-error-itemthere-is-no-message-for-this-errorerror-3000.md
+++ b/access/Concepts/Miscellaneous/reserved-error-itemthere-is-no-message-for-this-errorerror-3000.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
An unexpected error occurred. The specified code identifies the conditions under which this error can occur. Please contact Microsoft Product Support Services for more information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/resultant-table-not-allowed-to-have-more-than-one-autonumber-fielderror-3090.md b/access/Concepts/Miscellaneous/resultant-table-not-allowed-to-have-more-than-one-autonumber-fielderror-3090.md
index 91d067a28cc..dc1bd2c4926 100644
--- a/access/Concepts/Miscellaneous/resultant-table-not-allowed-to-have-more-than-one-autonumber-fielderror-3090.md
+++ b/access/Concepts/Miscellaneous/resultant-table-not-allowed-to-have-more-than-one-autonumber-fielderror-3090.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to execute a query that would result in a table with more than one field that has an AutoNumber data type. Change the query to include only one AutoNumber field.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/same-table-table-referenced-as-both-the-source-and-destination-in-a-make-table-q.md b/access/Concepts/Miscellaneous/same-table-table-referenced-as-both-the-source-and-destination-in-a-make-table-q.md
index 21112242231..328e46b8c5a 100644
--- a/access/Concepts/Miscellaneous/same-table-table-referenced-as-both-the-source-and-destination-in-a-make-table-q.md
+++ b/access/Concepts/Miscellaneous/same-table-table-referenced-as-both-the-source-and-destination-in-a-make-table-q.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
One of the source tables in a SELECT INTO statement is also named as the destination table. Either remove the table from the source tables or rename the destination table.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/scaling-of-decimal-value-resulted-in-data-overflowerror-3760.md b/access/Concepts/Miscellaneous/scaling-of-decimal-value-resulted-in-data-overflowerror-3760.md
index 703edd87006..e5271c01f3f 100644
--- a/access/Concepts/Miscellaneous/scaling-of-decimal-value-resulted-in-data-overflowerror-3760.md
+++ b/access/Concepts/Miscellaneous/scaling-of-decimal-value-resulted-in-data-overflowerror-3760.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when the data being updated or inserted into a DECIMAL data type is greater than the scale defined on the column.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/scaling-of-decimal-value-resulted-in-data-truncationerror-3758.md b/access/Concepts/Miscellaneous/scaling-of-decimal-value-resulted-in-data-truncationerror-3758.md
index cead70e48e4..b66ac955b01 100644
--- a/access/Concepts/Miscellaneous/scaling-of-decimal-value-resulted-in-data-truncationerror-3758.md
+++ b/access/Concepts/Miscellaneous/scaling-of-decimal-value-resulted-in-data-truncationerror-3758.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when the data being updated or inserted into a DECIMAL data type does not match the defined scale and precision of the column.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/scaling-of-decimal-value-resulted-in-data-truncationerror-3759.md b/access/Concepts/Miscellaneous/scaling-of-decimal-value-resulted-in-data-truncationerror-3759.md
index 70dbc3c8076..5aaa5ed0a85 100644
--- a/access/Concepts/Miscellaneous/scaling-of-decimal-value-resulted-in-data-truncationerror-3759.md
+++ b/access/Concepts/Miscellaneous/scaling-of-decimal-value-resulted-in-data-truncationerror-3759.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when the data being updated or inserted into a DECIMAL data type does not match the defined scale and precision of the column.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/select-into-on-a-remote-database-tried-to-produce-too-many-fieldserror-3185.md b/access/Concepts/Miscellaneous/select-into-on-a-remote-database-tried-to-produce-too-many-fieldserror-3185.md
index a121737bb5e..46a81819ed0 100644
--- a/access/Concepts/Miscellaneous/select-into-on-a-remote-database-tried-to-produce-too-many-fieldserror-3185.md
+++ b/access/Concepts/Miscellaneous/select-into-on-a-remote-database-tried-to-produce-too-many-fieldserror-3185.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The Microsoft Access database engine supports up to 255 fields per table, but the other database supports fewer fields. A SELECT...INTO statement created a table with more fields than the remote database can support. Reduce the number of columns produced by the SELECT INTO statement, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/select-query.md b/access/Concepts/Miscellaneous/select-query.md
index fc17c98f99f..12623074848 100644
--- a/access/Concepts/Miscellaneous/select-query.md
+++ b/access/Concepts/Miscellaneous/select-query.md
@@ -19,9 +19,9 @@ A select query asks questions about the data stored in your database and returns
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/selected-collating-sequence-not-supported-by-the-operating-systemerror-3228.md b/access/Concepts/Miscellaneous/selected-collating-sequence-not-supported-by-the-operating-systemerror-3228.md
index 17f33981f43..9737f65f3b5 100644
--- a/access/Concepts/Miscellaneous/selected-collating-sequence-not-supported-by-the-operating-systemerror-3228.md
+++ b/access/Concepts/Miscellaneous/selected-collating-sequence-not-supported-by-the-operating-systemerror-3228.md
@@ -32,9 +32,9 @@ There is an invalid **CollatingSequence** setting in the **Paradox** key of the
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/server-property-example-vbscript.md b/access/Concepts/Miscellaneous/server-property-example-vbscript.md
index c2f96cbec62..3e9ca62661c 100644
--- a/access/Concepts/Miscellaneous/server-property-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/server-property-example-vbscript.md
@@ -99,9 +99,9 @@ End Sub-->
## See also
- [DataControl Object (RDS)](http://msdn.microsoft.com/library/ac430669-7628-696c-c036-b5d35405d788%28Office.15%29.aspx) - [Server Property (RDS)](http://msdn.microsoft.com/library/17519dbe-a43a-1d0d-22c1-dc0def2f63ab%28Office.15%29.aspx)
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/set-startup-properties-from-visual-basic.md b/access/Concepts/Miscellaneous/set-startup-properties-from-visual-basic.md
index 67b193e2f54..9f94e3e1c2a 100644
--- a/access/Concepts/Miscellaneous/set-startup-properties-from-visual-basic.md
+++ b/access/Concepts/Miscellaneous/set-startup-properties-from-visual-basic.md
@@ -41,9 +41,9 @@ The names of the startup properties differ from the text that appears in the **S
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/setobjectowner-method-adox.md b/access/Concepts/Miscellaneous/setobjectowner-method-adox.md
index 66301bb399a..c13269e941f 100644
--- a/access/Concepts/Miscellaneous/setobjectowner-method-adox.md
+++ b/access/Concepts/Miscellaneous/setobjectowner-method-adox.md
@@ -38,9 +38,9 @@ An error will occur if the provider does not support specifying object owners.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/setting-an-exchange-with-the-same-synchronizer-is-not-allowederror-3500.md b/access/Concepts/Miscellaneous/setting-an-exchange-with-the-same-synchronizer-is-not-allowederror-3500.md
index c51f07415e2..135bc697dc3 100644
--- a/access/Concepts/Miscellaneous/setting-an-exchange-with-the-same-synchronizer-is-not-allowederror-3500.md
+++ b/access/Concepts/Miscellaneous/setting-an-exchange-with-the-same-synchronizer-is-not-allowederror-3500.md
@@ -19,9 +19,9 @@ Use a valid remote Synchronizer ID in your synchronization request.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/sharing-violation-while-attempting-to-open-log-file-name-in-deny-write-modeerror.md b/access/Concepts/Miscellaneous/sharing-violation-while-attempting-to-open-log-file-name-in-deny-write-modeerror.md
index c814218a85f..2152b2693ab 100644
--- a/access/Concepts/Miscellaneous/sharing-violation-while-attempting-to-open-log-file-name-in-deny-write-modeerror.md
+++ b/access/Concepts/Miscellaneous/sharing-violation-while-attempting-to-open-log-file-name-in-deny-write-modeerror.md
@@ -19,9 +19,9 @@ Close the log file in all other applications.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/single-row-update-delete-affected-more-than-one-row-of-a-linked-table-unique-ind.md b/access/Concepts/Miscellaneous/single-row-update-delete-affected-more-than-one-row-of-a-linked-table-unique-ind.md
index d03939aee7b..f5808300cea 100644
--- a/access/Concepts/Miscellaneous/single-row-update-delete-affected-more-than-one-row-of-a-linked-table-unique-ind.md
+++ b/access/Concepts/Miscellaneous/single-row-update-delete-affected-more-than-one-row-of-a-linked-table-unique-ind.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Your update or delete query affected more than one record in the linked SQL table. An update and delete query can affect only one record at a time.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/size-of-field-name-is-too-longerror-3382.md b/access/Concepts/Miscellaneous/size-of-field-name-is-too-longerror-3382.md
index 961a8ad39cd..ace09858cd6 100644
--- a/access/Concepts/Miscellaneous/size-of-field-name-is-too-longerror-3382.md
+++ b/access/Concepts/Miscellaneous/size-of-field-name-is-too-longerror-3382.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Text fields in Microsoft FoxPro tables can be no more than 254 characters, and in Microsoft access database engine tables, no more than 255 characters. Redefine the size of the field.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/size-property-ado-stream.md b/access/Concepts/Miscellaneous/size-property-ado-stream.md
index 05e0cb1cbc7..3b5e57c66c6 100644
--- a/access/Concepts/Miscellaneous/size-property-ado-stream.md
+++ b/access/Concepts/Miscellaneous/size-property-ado-stream.md
@@ -27,9 +27,9 @@ Returns a **Long** value that specifies the size of the stream in number of byte
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/sourceconnectstr-sourcedatabase-properties.md b/access/Concepts/Miscellaneous/sourceconnectstr-sourcedatabase-properties.md
index 2907269bac0..af30c25561e 100644
--- a/access/Concepts/Miscellaneous/sourceconnectstr-sourcedatabase-properties.md
+++ b/access/Concepts/Miscellaneous/sourceconnectstr-sourcedatabase-properties.md
@@ -65,9 +65,9 @@ The **SourceDatabase** property doesn't have a value for an ODBC database.
## See also
- [DataControl Object (RDS)](http://msdn.microsoft.com/library/ac430669-7628-696c-c036-b5d35405d788%28Office.15%29.aspx) - [Server Property (RDS)](http://msdn.microsoft.com/library/17519dbe-a43a-1d0d-22c1-dc0def2f63ab%28Office.15%29.aspx)
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/specify-the-table-containing-the-records-you-want-to-deleteerror-3128.md b/access/Concepts/Miscellaneous/specify-the-table-containing-the-records-you-want-to-deleteerror-3128.md
index 24be1bba3d9..33447bd869b 100644
--- a/access/Concepts/Miscellaneous/specify-the-table-containing-the-records-you-want-to-deleteerror-3128.md
+++ b/access/Concepts/Miscellaneous/specify-the-table-containing-the-records-you-want-to-deleteerror-3128.md
@@ -25,9 +25,9 @@ Possible cause:
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/spreadsheet-is-fullerror-3437.md b/access/Concepts/Miscellaneous/spreadsheet-is-fullerror-3437.md
index 0c232ddcfe9..e2f762c50fe 100644
--- a/access/Concepts/Miscellaneous/spreadsheet-is-fullerror-3437.md
+++ b/access/Concepts/Miscellaneous/spreadsheet-is-fullerror-3437.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to add new records to a Lotus 1-2-3 or Microsoft Excel version 3.0 or version 4.0 file, but the file is full. Files of these types can hold a maximum of 16,384 records.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/sql-property-ado.md b/access/Concepts/Miscellaneous/sql-property-ado.md
index 9f4e2925bcc..c1d991214cd 100644
--- a/access/Concepts/Miscellaneous/sql-property-ado.md
+++ b/access/Concepts/Miscellaneous/sql-property-ado.md
@@ -34,9 +34,9 @@ The **SQL** property is optional if a custom server-side business object retriev
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/sql-property-example-vbscript.md b/access/Concepts/Miscellaneous/sql-property-example-vbscript.md
index 6807cb07bf2..5d0896db3db 100644
--- a/access/Concepts/Miscellaneous/sql-property-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/sql-property-example-vbscript.md
@@ -92,9 +92,9 @@ End Sub-->
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/sql-specific-query.md b/access/Concepts/Miscellaneous/sql-specific-query.md
index 472f660b18d..79a6f7defbe 100644
--- a/access/Concepts/Miscellaneous/sql-specific-query.md
+++ b/access/Concepts/Miscellaneous/sql-specific-query.md
@@ -24,9 +24,9 @@ An SQL specific query is one that can be created only by writing an SQL statemen
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/stream-ado-for-visual-c-plus-plus-syntax.md b/access/Concepts/Miscellaneous/stream-ado-for-visual-c-plus-plus-syntax.md
index 3524a2b69de..55a44dc1e02 100644
--- a/access/Concepts/Miscellaneous/stream-ado-for-visual-c-plus-plus-syntax.md
+++ b/access/Concepts/Miscellaneous/stream-ado-for-visual-c-plus-plus-syntax.md
@@ -12,15 +12,15 @@ ms.date: 06/08/2017
**Methods**
-[Cancel](http://msdn.microsoft.com/library/747edc04-a5cc-3631-2d0b-82e7e41a76b7%28Office.15%29.aspx)(void)[Close](http://msdn.microsoft.com/library/26a7cced-ebeb-70be-f5de-96a35711bc37%28Office.15%29.aspx)(void)[CopyTo](http://msdn.microsoft.com/library/1c1ab950-51f7-7ecc-ccd8-e689db02f06a%28Office.15%29.aspx)(_ADOStream _*DestStream,_ LONG _CharNumber_ = -1)[Flush](http://msdn.microsoft.com/library/c167e3b1-c133-ce45-6cee-5a1280a1568f%28Office.15%29.aspx)(void)[LoadFromFile](http://msdn.microsoft.com/library/33fd543f-bd24-9199-7540-2889b69221c8%28Office.15%29.aspx)(BSTR _ FileName_ )[Open](http://msdn.microsoft.com/library/fa2e6aaa-e9f5-009c-f3a0-050a00abf9b0%28Office.15%29.aspx)(VARIANT _ Source,_ ConnectModeEnum _ Mode,_ StreamOpenOptionsEnum _ Options,_ BSTR _ UserName,_ BSTR _ Password_ )[Read](http://msdn.microsoft.com/library/91c3ad34-f891-5be0-1fc1-c5c8a2ff07a4%28Office.15%29.aspx)(long _ NumBytes,_ VARIANT _*pVal_ )[ReadText](http://msdn.microsoft.com/library/08f5bac4-dccd-696c-09a7-e1ba0cb38d79%28Office.15%29.aspx)(long _ NumChars,_ BSTR _*pbstr_ )[SaveToFile](http://msdn.microsoft.com/library/db0fd95e-8ef3-af87-5346-8f8713153ca7%28Office.15%29.aspx)(BSTR _ FileName,_ SaveOptionsEnum _Options_ =adSaveCreateNotExist)[SetEOS](http://msdn.microsoft.com/library/d438eecf-7ab3-a07d-b6d5-8816db4aae7c%28Office.15%29.aspx)(void)[SkipLine](http://msdn.microsoft.com/library/419c24c3-6b84-eed0-5884-f2dcd485dc3d%28Office.15%29.aspx)(void)[Write](http://msdn.microsoft.com/library/cabe4581-409f-7f05-bd59-d495bfb2c6fd%28Office.15%29.aspx)(VARIANT _ Buffer_ )[WriteText](http://msdn.microsoft.com/library/1ca2d9d5-11f4-d088-6fc3-53240208bb09%28Office.15%29.aspx)(BSTR _ Data,_ StreamWriteEnum _Options_ =adWriteChar)
+[Cancel](http://msdn.microsoft.com/library/747edc04-a5cc-3631-2d0b-82e7e41a76b7%28Office.15%29.aspx)(void) [Close](http://msdn.microsoft.com/library/26a7cced-ebeb-70be-f5de-96a35711bc37%28Office.15%29.aspx)(void) [CopyTo](http://msdn.microsoft.com/library/1c1ab950-51f7-7ecc-ccd8-e689db02f06a%28Office.15%29.aspx)(_ADOStream _*DestStream,_ LONG _CharNumber_ = -1) [Flush](http://msdn.microsoft.com/library/c167e3b1-c133-ce45-6cee-5a1280a1568f%28Office.15%29.aspx)(void) [LoadFromFile](http://msdn.microsoft.com/library/33fd543f-bd24-9199-7540-2889b69221c8%28Office.15%29.aspx)(BSTR _ FileName_ ) [Open](http://msdn.microsoft.com/library/fa2e6aaa-e9f5-009c-f3a0-050a00abf9b0%28Office.15%29.aspx)(VARIANT _ Source,_ ConnectModeEnum _ Mode,_ StreamOpenOptionsEnum _ Options,_ BSTR _ UserName,_ BSTR _ Password_ ) [Read](http://msdn.microsoft.com/library/91c3ad34-f891-5be0-1fc1-c5c8a2ff07a4%28Office.15%29.aspx)(long _ NumBytes,_ VARIANT _*pVal_ ) [ReadText](http://msdn.microsoft.com/library/08f5bac4-dccd-696c-09a7-e1ba0cb38d79%28Office.15%29.aspx)(long _ NumChars,_ BSTR _*pbstr_ ) [SaveToFile](http://msdn.microsoft.com/library/db0fd95e-8ef3-af87-5346-8f8713153ca7%28Office.15%29.aspx)(BSTR _ FileName,_ SaveOptionsEnum _Options_ =adSaveCreateNotExist) [SetEOS](http://msdn.microsoft.com/library/d438eecf-7ab3-a07d-b6d5-8816db4aae7c%28Office.15%29.aspx)(void) [SkipLine](http://msdn.microsoft.com/library/419c24c3-6b84-eed0-5884-f2dcd485dc3d%28Office.15%29.aspx)(void) [Write](http://msdn.microsoft.com/library/cabe4581-409f-7f05-bd59-d495bfb2c6fd%28Office.15%29.aspx)(VARIANT _ Buffer_ ) [WriteText](http://msdn.microsoft.com/library/1ca2d9d5-11f4-d088-6fc3-53240208bb09%28Office.15%29.aspx)(BSTR _ Data,_ StreamWriteEnum _Options_ =adWriteChar)
**Properties**
-[get_Charset](http://msdn.microsoft.com/library/454f664e-6d62-eec9-487d-882c2f9503b0%28Office.15%29.aspx)(BSTR _*pbstrCharset_ ) **put_Charset** (BSTR _ Charset_ )[get_EOS](http://msdn.microsoft.com/library/97cd23ef-cca8-4dcc-2641-082a0e1b853c%28Office.15%29.aspx)(VARIANT_BOOL _*pEOS_ )[get_LineSeparator](http://msdn.microsoft.com/library/9f1323cd-d4ed-2bfa-554b-faebab529548%28Office.15%29.aspx)(LineSeparatorEnum _*pLS_ ) **put_LineSeparator** (LineSeparatorEnum _ LineSeparator_ )[get_Mode](http://msdn.microsoft.com/library/62086f4f-8624-16c4-dae1-a17475d1864d%28Office.15%29.aspx)(ConnectModeEnum _*pMode_ ) **put_Mode** (ConnectModeEnum _ Mode_ )[get_Position](http://msdn.microsoft.com/library/a07c9197-673b-ddf2-fca9-b0b54fbd67b4%28Office.15%29.aspx)(LONG _*pPos_ ) **put_Position** (LONG _ Position_ )[get_Size](size-property-ado-stream.md)(LONG _*pSize_ )[get_State](http://msdn.microsoft.com/library/ade0a50c-e2d8-23ac-4ea9-b012fedcd5db%28Office.15%29.aspx)(ObjectStateEnum _*pState_ )[get_Type](http://msdn.microsoft.com/library/43872c74-51bf-47ae-6bdc-55d25b0dc84a%28Office.15%29.aspx)(StreamTypeEnum _*pType_ ) **put_Type** (StreamTypeEnum _ Type_ )
+[get_Charset](http://msdn.microsoft.com/library/454f664e-6d62-eec9-487d-882c2f9503b0%28Office.15%29.aspx)(BSTR _*pbstrCharset_ ) **put_Charset** (BSTR _ Charset_ ) [get_EOS](http://msdn.microsoft.com/library/97cd23ef-cca8-4dcc-2641-082a0e1b853c%28Office.15%29.aspx)(VARIANT_BOOL _*pEOS_ ) [get_LineSeparator](http://msdn.microsoft.com/library/9f1323cd-d4ed-2bfa-554b-faebab529548%28Office.15%29.aspx)(LineSeparatorEnum _*pLS_ ) **put_LineSeparator** (LineSeparatorEnum _ LineSeparator_ ) [get_Mode](http://msdn.microsoft.com/library/62086f4f-8624-16c4-dae1-a17475d1864d%28Office.15%29.aspx)(ConnectModeEnum _*pMode_ ) **put_Mode** (ConnectModeEnum _ Mode_ ) [get_Position](http://msdn.microsoft.com/library/a07c9197-673b-ddf2-fca9-b0b54fbd67b4%28Office.15%29.aspx)(LONG _*pPos_ ) **put_Position** (LONG _ Position_ ) [get_Size](size-property-ado-stream.md)(LONG _*pSize_ ) [get_State](http://msdn.microsoft.com/library/ade0a50c-e2d8-23ac-4ea9-b012fedcd5db%28Office.15%29.aspx)(ObjectStateEnum _*pState_ ) [get_Type](http://msdn.microsoft.com/library/43872c74-51bf-47ae-6bdc-55d25b0dc84a%28Office.15%29.aspx)(StreamTypeEnum _*pType_ ) **put_Type** (StreamTypeEnum _ Type_ )
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/stream-visual-c-plus-plus-syntax-index-with-import.md b/access/Concepts/Miscellaneous/stream-visual-c-plus-plus-syntax-index-with-import.md
index 360e8c1ec30..607102b44d8 100644
--- a/access/Concepts/Miscellaneous/stream-visual-c-plus-plus-syntax-index-with-import.md
+++ b/access/Concepts/Miscellaneous/stream-visual-c-plus-plus-syntax-index-with-import.md
@@ -80,9 +80,9 @@ __declspec(property(get=GetType,put=PutType)) enum StreamTypeEnum Invalid DDUE b
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/style-for-intrinsic-constants.md b/access/Concepts/Miscellaneous/style-for-intrinsic-constants.md
index 5e4d6209a69..0c217243e7c 100644
--- a/access/Concepts/Miscellaneous/style-for-intrinsic-constants.md
+++ b/access/Concepts/Miscellaneous/style-for-intrinsic-constants.md
@@ -22,9 +22,9 @@ Intrinsic constants in databases created with previous versions of Microsoft Acc
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/subdatasheetname-property.md b/access/Concepts/Miscellaneous/subdatasheetname-property.md
index 233bb870693..4fbaf9aa48a 100644
--- a/access/Concepts/Miscellaneous/subdatasheetname-property.md
+++ b/access/Concepts/Miscellaneous/subdatasheetname-property.md
@@ -36,9 +36,9 @@ To set the **SubdatasheetName** property by using Visual Basic, you must first e
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/submitchanges-method-example-vbscript.md b/access/Concepts/Miscellaneous/submitchanges-method-example-vbscript.md
index 54859f7d331..6b77a5a2afd 100644
--- a/access/Concepts/Miscellaneous/submitchanges-method-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/submitchanges-method-example-vbscript.md
@@ -63,9 +63,9 @@ End Sub-->
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/subqueries-cannot-be-used-in-the-expression-expressionerror-3203.md b/access/Concepts/Miscellaneous/subqueries-cannot-be-used-in-the-expression-expressionerror-3203.md
index 2be76b45074..3d0788e3ca4 100644
--- a/access/Concepts/Miscellaneous/subqueries-cannot-be-used-in-the-expression-expressionerror-3203.md
+++ b/access/Concepts/Miscellaneous/subqueries-cannot-be-used-in-the-expression-expressionerror-3203.md
@@ -34,9 +34,9 @@ PIVOT ShipName;
The < _expression_ > parameter of the alert would contain the expression `Sum([Sum2])` from the SELECT clause, because this references an alias used in the same SELECT statement and acts as a subquery against `Sum([Sum1])`.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizer-cannot-find-a-specific-version-number-in-the-msysschchange-tableerr.md b/access/Concepts/Miscellaneous/synchronizer-cannot-find-a-specific-version-number-in-the-msysschchange-tableerr.md
index 9360376f570..ea150ae4472 100644
--- a/access/Concepts/Miscellaneous/synchronizer-cannot-find-a-specific-version-number-in-the-msysschchange-tableerr.md
+++ b/access/Concepts/Miscellaneous/synchronizer-cannot-find-a-specific-version-number-in-the-msysschchange-tableerr.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizer-cannot-find-the-record-of-a-specific-synchronization-in-the-msysexc.md b/access/Concepts/Miscellaneous/synchronizer-cannot-find-the-record-of-a-specific-synchronization-in-the-msysexc.md
index 4eb5cdddcb9..6266776d311 100644
--- a/access/Concepts/Miscellaneous/synchronizer-cannot-find-the-record-of-a-specific-synchronization-in-the-msysexc.md
+++ b/access/Concepts/Miscellaneous/synchronizer-cannot-find-the-record-of-a-specific-synchronization-in-the-msysexc.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizer-cannot-find-the-source-file-for-messageserror-3564.md b/access/Concepts/Miscellaneous/synchronizer-cannot-find-the-source-file-for-messageserror-3564.md
index 752a6176979..05d3c4b529e 100644
--- a/access/Concepts/Miscellaneous/synchronizer-cannot-find-the-source-file-for-messageserror-3564.md
+++ b/access/Concepts/Miscellaneous/synchronizer-cannot-find-the-source-file-for-messageserror-3564.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizer-could-not-access-the-message-databaseerror-3525.md b/access/Concepts/Miscellaneous/synchronizer-could-not-access-the-message-databaseerror-3525.md
index e365c4bd937..c3dd04a99e6 100644
--- a/access/Concepts/Miscellaneous/synchronizer-could-not-access-the-message-databaseerror-3525.md
+++ b/access/Concepts/Miscellaneous/synchronizer-could-not-access-the-message-databaseerror-3525.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The message database is not available for use by the Synchronizer. The database file may be in use by another program or user (users should not open Synchronizer message databases). Close any application that might be using the database.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizer-could-not-be-initializederror-3532.md b/access/Concepts/Miscellaneous/synchronizer-could-not-be-initializederror-3532.md
index 19abf1d0087..3b3daff535a 100644
--- a/access/Concepts/Miscellaneous/synchronizer-could-not-be-initializederror-3532.md
+++ b/access/Concepts/Miscellaneous/synchronizer-could-not-be-initializederror-3532.md
@@ -28,9 +28,9 @@ To configure the Synchronizer
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizer-could-not-be-shut-down-properly-and-is-still-activeerror-3541.md b/access/Concepts/Miscellaneous/synchronizer-could-not-be-shut-down-properly-and-is-still-activeerror-3541.md
index a45a46d8f63..4a389044c5a 100644
--- a/access/Concepts/Miscellaneous/synchronizer-could-not-be-shut-down-properly-and-is-still-activeerror-3541.md
+++ b/access/Concepts/Miscellaneous/synchronizer-could-not-be-shut-down-properly-and-is-still-activeerror-3541.md
@@ -28,9 +28,9 @@ A programmatic request to terminate the Synchronizer was not completed successfu
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizer-could-not-delete-a-fileerror-3568.md b/access/Concepts/Miscellaneous/synchronizer-could-not-delete-a-fileerror-3568.md
index 34d3e64246e..03501ca7e6b 100644
--- a/access/Concepts/Miscellaneous/synchronizer-could-not-delete-a-fileerror-3568.md
+++ b/access/Concepts/Miscellaneous/synchronizer-could-not-delete-a-fileerror-3568.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizer-could-not-find-a-replica-from-the-correct-set-to-complete-the-synch.md b/access/Concepts/Miscellaneous/synchronizer-could-not-find-a-replica-from-the-correct-set-to-complete-the-synch.md
index fb435214fe4..42ac1c7a13b 100644
--- a/access/Concepts/Miscellaneous/synchronizer-could-not-find-a-replica-from-the-correct-set-to-complete-the-synch.md
+++ b/access/Concepts/Miscellaneous/synchronizer-could-not-find-a-replica-from-the-correct-set-to-complete-the-synch.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizer-could-not-find-any-messages-to-processerror-3517.md b/access/Concepts/Miscellaneous/synchronizer-could-not-find-any-messages-to-processerror-3517.md
index c10c7b24bf8..2b28ac63c88 100644
--- a/access/Concepts/Miscellaneous/synchronizer-could-not-find-any-messages-to-processerror-3517.md
+++ b/access/Concepts/Miscellaneous/synchronizer-could-not-find-any-messages-to-processerror-3517.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizer-could-not-find-any-scheduled-or-on-demand-synchronizations-to-proce.md b/access/Concepts/Miscellaneous/synchronizer-could-not-find-any-scheduled-or-on-demand-synchronizations-to-proce.md
index f40907d8909..d4181d269e9 100644
--- a/access/Concepts/Miscellaneous/synchronizer-could-not-find-any-scheduled-or-on-demand-synchronizations-to-proce.md
+++ b/access/Concepts/Miscellaneous/synchronizer-could-not-find-any-scheduled-or-on-demand-synchronizations-to-proce.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizer-has-not-been-set-uperror-3543.md b/access/Concepts/Miscellaneous/synchronizer-has-not-been-set-uperror-3543.md
index 9bd7e9c8024..36108c73e64 100644
--- a/access/Concepts/Miscellaneous/synchronizer-has-not-been-set-uperror-3543.md
+++ b/access/Concepts/Miscellaneous/synchronizer-has-not-been-set-uperror-3543.md
@@ -29,9 +29,9 @@ The Synchronizer for your computer has not been set up.
If you are using a third-party application, obtain the Synchronizer Setup disk from the developer supporting your application.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizer-is-already-runningerror-3544.md b/access/Concepts/Miscellaneous/synchronizer-is-already-runningerror-3544.md
index fd5b011afce..b5763e65122 100644
--- a/access/Concepts/Miscellaneous/synchronizer-is-already-runningerror-3544.md
+++ b/access/Concepts/Miscellaneous/synchronizer-is-already-runningerror-3544.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Only one instance of the Synchronizer can operate at a time. Use the currently operating Synchronizer instead of starting a second Synchronizer on this computer.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizer-looked-for-a-system-event-but-did-not-find-one-to-report-to-the-cli.md b/access/Concepts/Miscellaneous/synchronizer-looked-for-a-system-event-but-did-not-find-one-to-report-to-the-cli.md
index 04c9a6f25ca..33be681352a 100644
--- a/access/Concepts/Miscellaneous/synchronizer-looked-for-a-system-event-but-did-not-find-one-to-report-to-the-cli.md
+++ b/access/Concepts/Miscellaneous/synchronizer-looked-for-a-system-event-but-did-not-find-one-to-report-to-the-cli.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizer-name-is-also-using-the-same-file-system-dropbox-nameerror-3629.md b/access/Concepts/Miscellaneous/synchronizer-name-is-also-using-the-same-file-system-dropbox-nameerror-3629.md
index 075b0d0873f..9b9eb478eec 100644
--- a/access/Concepts/Miscellaneous/synchronizer-name-is-also-using-the-same-file-system-dropbox-nameerror-3629.md
+++ b/access/Concepts/Miscellaneous/synchronizer-name-is-also-using-the-same-file-system-dropbox-nameerror-3629.md
@@ -19,9 +19,9 @@ Each Synchronizer should have a unique file system dropbox. Using the same dropb
Unable to create the signal file, it is already opened by another transporter.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizer-name-is-also-using-the-same-file-system-dropbox-nameerror-3630.md b/access/Concepts/Miscellaneous/synchronizer-name-is-also-using-the-same-file-system-dropbox-nameerror-3630.md
index e51e381d25f..194a3a6c797 100644
--- a/access/Concepts/Miscellaneous/synchronizer-name-is-also-using-the-same-file-system-dropbox-nameerror-3630.md
+++ b/access/Concepts/Miscellaneous/synchronizer-name-is-also-using-the-same-file-system-dropbox-nameerror-3630.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Each Synchronizer should have a unique file system dropbox. Using the same dropbox location for multiple Synchronizers can result in lost messages and incomplete exchanges. The applicatin is unable to create the signal file because it is already opened by another transporter.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizer-received-an-invalid-message-for-a-member-of-the-replica-set-that-it.md b/access/Concepts/Miscellaneous/synchronizer-received-an-invalid-message-for-a-member-of-the-replica-set-that-it.md
index 5b257654d20..c4e70ec3f6a 100644
--- a/access/Concepts/Miscellaneous/synchronizer-received-an-invalid-message-for-a-member-of-the-replica-set-that-it.md
+++ b/access/Concepts/Miscellaneous/synchronizer-received-an-invalid-message-for-a-member-of-the-replica-set-that-it.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/synchronizing-with-a-non-replicated-database-is-not-allowed-the-name-database-is.md b/access/Concepts/Miscellaneous/synchronizing-with-a-non-replicated-database-is-not-allowed-the-name-database-is.md
index 59829cd2f8d..2f2db082250 100644
--- a/access/Concepts/Miscellaneous/synchronizing-with-a-non-replicated-database-is-not-allowed-the-name-database-is.md
+++ b/access/Concepts/Miscellaneous/synchronizing-with-a-non-replicated-database-is-not-allowed-the-name-database-is.md
@@ -20,9 +20,9 @@ You are attempting to synchronize a replicated database with a non-replicated da
If one of the databases has already been replicated, use it to create your second database replica.
If neither database has been replicated, select one of the databases to be used as the Design Master for the replica set. Open that database using Microsoft Access, go to the **Tools** menu, point to **Replication**, and click **Create Replica**. If Microsoft Access is not available but Microsoft Windows 95 Briefcase is available, drag the database into the Briefcase to create a replica. Do not attempt to replicate the second of the two original databases and then synchronize the two databases. The second database must be a replica of the first for synchronization to succeed.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-commaerror-2432.md b/access/Concepts/Miscellaneous/syntax-error-commaerror-2432.md
index f99f64c644c..ff812a4e453 100644
--- a/access/Concepts/Miscellaneous/syntax-error-commaerror-2432.md
+++ b/access/Concepts/Miscellaneous/syntax-error-commaerror-2432.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The expression or statement uses a comma where it does not belong or is missing a comma to separate arguments.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-alter-table-statementerror-3293.md b/access/Concepts/Miscellaneous/syntax-error-in-alter-table-statementerror-3293.md
index 7d849790478..960df9c379b 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-alter-table-statementerror-3293.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-alter-table-statementerror-3293.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-check-constraint-clauseerror-3765.md b/access/Concepts/Miscellaneous/syntax-error-in-check-constraint-clauseerror-3765.md
index 8050c2755e2..0eea2d7511a 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-check-constraint-clauseerror-3765.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-check-constraint-clauseerror-3765.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when using SQL DLL to define a CHECK constraint. It occurs when the search condition (SELECT statement) in the CHECK clause references an invalid table or column name.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-constraint-clauseerror-3289.md b/access/Concepts/Miscellaneous/syntax-error-in-constraint-clauseerror-3289.md
index f1ac5ed14de..1c8e85be591 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-constraint-clauseerror-3289.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-constraint-clauseerror-3289.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-create-index-statementerror-3291.md b/access/Concepts/Miscellaneous/syntax-error-in-create-index-statementerror-3291.md
index 9c678b0b688..ce4f3ed3284 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-create-index-statementerror-3291.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-create-index-statementerror-3291.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-create-table-statementerror-3290.md b/access/Concepts/Miscellaneous/syntax-error-in-create-table-statementerror-3290.md
index 04f31253cae..60144700e89 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-create-table-statementerror-3290.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-create-table-statementerror-3290.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-dateerror-2421.md b/access/Concepts/Miscellaneous/syntax-error-in-dateerror-2421.md
index f221a1e7d36..c4f2bde6b3b 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-dateerror-2421.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-dateerror-2421.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
**Date** syntax is incorrect. This error occurs if you specify an invalid date. For example, 9/31/94 is invalid (September has only 30 days).
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-default-valueerror-3355.md b/access/Concepts/Miscellaneous/syntax-error-in-default-valueerror-3355.md
index 0a8942f537e..f93b0ee9207 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-default-valueerror-3355.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-default-valueerror-3355.md
@@ -25,9 +25,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-delete-statementerror-3130.md b/access/Concepts/Miscellaneous/syntax-error-in-delete-statementerror-3130.md
index 460b202b7ff..33afd659585 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-delete-statementerror-3130.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-delete-statementerror-3130.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-drop-index-statementerror-3294.md b/access/Concepts/Miscellaneous/syntax-error-in-drop-index-statementerror-3294.md
index fd35bf90ebc..f6a365143df 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-drop-index-statementerror-3294.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-drop-index-statementerror-3294.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-drop-table-or-drop-indexerror-3295.md b/access/Concepts/Miscellaneous/syntax-error-in-drop-table-or-drop-indexerror-3295.md
index b33ff4d1414..9caf31fe5d5 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-drop-table-or-drop-indexerror-3295.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-drop-table-or-drop-indexerror-3295.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-field-definitionerror-3292.md b/access/Concepts/Miscellaneous/syntax-error-in-field-definitionerror-3292.md
index a9dbdbe71a3..ddf9262ecdd 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-field-definitionerror-3292.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-field-definitionerror-3292.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-from-clauseerror-3131.md b/access/Concepts/Miscellaneous/syntax-error-in-from-clauseerror-3131.md
index 20db636d699..2c9ea23c5c9 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-from-clauseerror-3131.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-from-clauseerror-3131.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-group-by-clauseerror-3132.md b/access/Concepts/Miscellaneous/syntax-error-in-group-by-clauseerror-3132.md
index c353e6bb76a..0c4de0c608b 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-group-by-clauseerror-3132.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-group-by-clauseerror-3132.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-having-clauseerror-3133.md b/access/Concepts/Miscellaneous/syntax-error-in-having-clauseerror-3133.md
index b4696868163..1da25673d7e 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-having-clauseerror-3133.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-having-clauseerror-3133.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-insert-into-statementerror-3134.md b/access/Concepts/Miscellaneous/syntax-error-in-insert-into-statementerror-3134.md
index be680642ccc..81d372624a2 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-insert-into-statementerror-3134.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-insert-into-statementerror-3134.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-join-operationerror-3135.md b/access/Concepts/Miscellaneous/syntax-error-in-join-operationerror-3135.md
index 628e62ed5de..41ff1569355 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-join-operationerror-3135.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-join-operationerror-3135.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-numbererror-2420.md b/access/Concepts/Miscellaneous/syntax-error-in-numbererror-2420.md
index db2fa64f909..e0418e55b17 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-numbererror-2420.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-numbererror-2420.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You entered a value that is invalid. This can occur if a nonnumeric value is provided as part of the expression.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-order-by-clauseerror-3138.md b/access/Concepts/Miscellaneous/syntax-error-in-order-by-clauseerror-3138.md
index be50c4cf05c..1be5c2cf182 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-order-by-clauseerror-3138.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-order-by-clauseerror-3138.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-parameter-clauseerror-3139.md b/access/Concepts/Miscellaneous/syntax-error-in-parameter-clauseerror-3139.md
index 14900dd7d58..e5996db7a82 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-parameter-clauseerror-3139.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-parameter-clauseerror-3139.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-partial-filter-expression-on-table-nameerror-3586.md b/access/Concepts/Miscellaneous/syntax-error-in-partial-filter-expression-on-table-nameerror-3586.md
index 00747a0934f..863b8bc89b8 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-partial-filter-expression-on-table-nameerror-3586.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-partial-filter-expression-on-table-nameerror-3586.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Make sure you are using the correct syntax in the expression.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-procedure-clauseerror-3140.md b/access/Concepts/Miscellaneous/syntax-error-in-procedure-clauseerror-3140.md
index ec6ab4a6738..04ed5effe54 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-procedure-clauseerror-3140.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-procedure-clauseerror-3140.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-query-incomplete-query-clause-error-3450.md b/access/Concepts/Miscellaneous/syntax-error-in-query-incomplete-query-clause-error-3450.md
index 07f74bc6961..9580223c18a 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-query-incomplete-query-clause-error-3450.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-query-incomplete-query-clause-error-3450.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when trying to save a stored query (view or procedure).
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-query-parameter-valueerror-3746.md b/access/Concepts/Miscellaneous/syntax-error-in-query-parameter-valueerror-3746.md
index 1d8daf98bbc..712e7b5485d 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-query-parameter-valueerror-3746.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-query-parameter-valueerror-3746.md
@@ -31,9 +31,9 @@ This error can occur when:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-stringerror-2422.md b/access/Concepts/Miscellaneous/syntax-error-in-stringerror-2422.md
index 4ecced8363a..7589537aac2 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-stringerror-2422.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-stringerror-2422.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You entered an expression that includes an invalid string. Check the expression to make sure you entered it correctly.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-transaction-statementerror-3708.md b/access/Concepts/Miscellaneous/syntax-error-in-transaction-statementerror-3708.md
index 5da7a2b142c..70cece74323 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-transaction-statementerror-3708.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-transaction-statementerror-3708.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
When using transactions exclusively through the Microsoft Access database engine (not through an object model like DAO or ADO) the following syntax must be used: BEGIN/ROLLBACK TRANSACTION, WORK or nothing. If any other characters follow BEGIN or ROLLBACK, then this error will occur.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-transform-statementerror-3143.md b/access/Concepts/Miscellaneous/syntax-error-in-transform-statementerror-3143.md
index ea133e8c2f6..4e0a264694a 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-transform-statementerror-3143.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-transform-statementerror-3143.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-union-queryerror-3319.md b/access/Concepts/Miscellaneous/syntax-error-in-union-queryerror-3319.md
index 4688cc1887f..bfc3fe487e9 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-union-queryerror-3319.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-union-queryerror-3319.md
@@ -28,9 +28,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-update-statementerror-3144.md b/access/Concepts/Miscellaneous/syntax-error-in-update-statementerror-3144.md
index 0923414ad3a..60d63378b13 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-update-statementerror-3144.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-update-statementerror-3144.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-where-clauseerror-3145.md b/access/Concepts/Miscellaneous/syntax-error-in-where-clauseerror-3145.md
index 654f2dfc2f1..803d0154ff2 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-where-clauseerror-3145.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-where-clauseerror-3145.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-in-with-owneraccess-option-declarationerror-3257.md b/access/Concepts/Miscellaneous/syntax-error-in-with-owneraccess-option-declarationerror-3257.md
index f7f3620d871..3e9a89896fa 100644
--- a/access/Concepts/Miscellaneous/syntax-error-in-with-owneraccess-option-declarationerror-3257.md
+++ b/access/Concepts/Miscellaneous/syntax-error-in-with-owneraccess-option-declarationerror-3257.md
@@ -38,9 +38,9 @@ Possible causes:
```
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-missing-operatorerror-2431.md b/access/Concepts/Miscellaneous/syntax-error-missing-operatorerror-2431.md
index 464f3a002ce..036b9cb8cb4 100644
--- a/access/Concepts/Miscellaneous/syntax-error-missing-operatorerror-2431.md
+++ b/access/Concepts/Miscellaneous/syntax-error-missing-operatorerror-2431.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The expression or statement is missing an operator.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-error-missing-operatorerror-2434.md b/access/Concepts/Miscellaneous/syntax-error-missing-operatorerror-2434.md
index 498716f0f51..86741c51ab9 100644
--- a/access/Concepts/Miscellaneous/syntax-error-missing-operatorerror-2434.md
+++ b/access/Concepts/Miscellaneous/syntax-error-missing-operatorerror-2434.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The expression or statement is missing an operator.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-errorerror-2433.md b/access/Concepts/Miscellaneous/syntax-errorerror-2433.md
index 3850646c491..392469629ed 100644
--- a/access/Concepts/Miscellaneous/syntax-errorerror-2433.md
+++ b/access/Concepts/Miscellaneous/syntax-errorerror-2433.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The wording or punctuation of the command is not correct. It may be missing an operator or you may have specified an operator that does not exist.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/syntax-errorerror-2438.md b/access/Concepts/Miscellaneous/syntax-errorerror-2438.md
index 1bd77ac6a4a..d60330359fa 100644
--- a/access/Concepts/Miscellaneous/syntax-errorerror-2438.md
+++ b/access/Concepts/Miscellaneous/syntax-errorerror-2438.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You entered an expression that has invalid syntax. For example, an operand or operator may be missing, you may have entered an invalid character or comma, or you may have entered text without surrounding it by quotation marks ("). Check the expression to make sure you entered it correctly.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/table-is-not-openerror-3160.md b/access/Concepts/Miscellaneous/table-is-not-openerror-3160.md
index 69e22c36c8a..1646846efa5 100644
--- a/access/Concepts/Miscellaneous/table-is-not-openerror-3160.md
+++ b/access/Concepts/Miscellaneous/table-is-not-openerror-3160.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to perform an operation on a table that has not been opened. Open the table, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/table-level-validation-texterror-3316.md b/access/Concepts/Miscellaneous/table-level-validation-texterror-3316.md
index dbfc4f3ffa4..074f586aec6 100644
--- a/access/Concepts/Miscellaneous/table-level-validation-texterror-3316.md
+++ b/access/Concepts/Miscellaneous/table-level-validation-texterror-3316.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
A table-level validation rule was violated. Validation rules restrict what you can enter in a given field, and also help ensure that you enter the proper types or amounts of data.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/table-name-already-existserror-3010.md b/access/Concepts/Miscellaneous/table-name-already-existserror-3010.md
index ef7b4d7bc2a..f994313ec98 100644
--- a/access/Concepts/Miscellaneous/table-name-already-existserror-3010.md
+++ b/access/Concepts/Miscellaneous/table-name-already-existserror-3010.md
@@ -19,9 +19,9 @@ You tried to create or rename a table with a name that already exists in this da
In a multiuser database, this error can also occur if you delete a table, another user creates a table with the same name, and then you try to roll back the deletion of your table. To restore your table, the other user must first delete or rename the new table before you try the rollback operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/table-name-already-has-an-index-named-nameerror-3375.md b/access/Concepts/Miscellaneous/table-name-already-has-an-index-named-nameerror-3375.md
index e526d7a7775..c776d274a3e 100644
--- a/access/Concepts/Miscellaneous/table-name-already-has-an-index-named-nameerror-3375.md
+++ b/access/Concepts/Miscellaneous/table-name-already-has-an-index-named-nameerror-3375.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You are trying to create an index that already exists.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/table-name-could-not-be-made-replicable-because-it-could-not-be-opened-exclusive.md b/access/Concepts/Miscellaneous/table-name-could-not-be-made-replicable-because-it-could-not-be-opened-exclusive.md
index ee4bf8f1d40..46c7f05a0cb 100644
--- a/access/Concepts/Miscellaneous/table-name-could-not-be-made-replicable-because-it-could-not-be-opened-exclusive.md
+++ b/access/Concepts/Miscellaneous/table-name-could-not-be-made-replicable-because-it-could-not-be-opened-exclusive.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Close any open instance of the table that you are attempting to replicate and then try again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/table-name-does-not-existerror-3376.md b/access/Concepts/Miscellaneous/table-name-does-not-existerror-3376.md
index 1e80aa35a65..b6419320e28 100644
--- a/access/Concepts/Miscellaneous/table-name-does-not-existerror-3376.md
+++ b/access/Concepts/Miscellaneous/table-name-does-not-existerror-3376.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The table you specified does not exist. Check to see if the name you specified exists in the **TableDefs** collection.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/table-name-is-exclusively-locked-by-user-name-on-machine-nameerror-3189.md b/access/Concepts/Miscellaneous/table-name-is-exclusively-locked-by-user-name-on-machine-nameerror-3189.md
index 7e2a6dfc73d..c87d5742d78 100644
--- a/access/Concepts/Miscellaneous/table-name-is-exclusively-locked-by-user-name-on-machine-nameerror-3189.md
+++ b/access/Concepts/Miscellaneous/table-name-is-exclusively-locked-by-user-name-on-machine-nameerror-3189.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You cannot access the specified table because it is exclusively locked by another user. Contact the other user, or wait for the other user to release the lock, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/table-name-is-exclusively-locked-by-user-name-on-machine-nameerror-3261.md b/access/Concepts/Miscellaneous/table-name-is-exclusively-locked-by-user-name-on-machine-nameerror-3261.md
index 5e61f2b24d3..7076a3640d6 100644
--- a/access/Concepts/Miscellaneous/table-name-is-exclusively-locked-by-user-name-on-machine-nameerror-3261.md
+++ b/access/Concepts/Miscellaneous/table-name-is-exclusively-locked-by-user-name-on-machine-nameerror-3261.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to use a table that is currently open for exclusive access by the specified user. Wait for the other user to finish working with the table, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/table-name-is-read-onlyerror-3328.md b/access/Concepts/Miscellaneous/table-name-is-read-onlyerror-3328.md
index 5cff6cc0e7e..0f8aba0e600 100644
--- a/access/Concepts/Miscellaneous/table-name-is-read-onlyerror-3328.md
+++ b/access/Concepts/Miscellaneous/table-name-is-read-onlyerror-3328.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when you try to update a column in a table that another user has opened as read-only.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/text-file-specification-field-separator-matches-decimal-separator-or-text-delimi.md b/access/Concepts/Miscellaneous/text-file-specification-field-separator-matches-decimal-separator-or-text-delimi.md
index 48669113383..8da6413f16e 100644
--- a/access/Concepts/Miscellaneous/text-file-specification-field-separator-matches-decimal-separator-or-text-delimi.md
+++ b/access/Concepts/Miscellaneous/text-file-specification-field-separator-matches-decimal-separator-or-text-delimi.md
@@ -30,9 +30,9 @@ Two or more of the following delimiters settings used by the Text ISAM are the s
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/the-access-database-is-wrong-or-missing-for-this-sql-jet-replica-seterror-3778.md b/access/Concepts/Miscellaneous/the-access-database-is-wrong-or-missing-for-this-sql-jet-replica-seterror-3778.md
index 5a141ea22d7..a26d0118820 100644
--- a/access/Concepts/Miscellaneous/the-access-database-is-wrong-or-missing-for-this-sql-jet-replica-seterror-3778.md
+++ b/access/Concepts/Miscellaneous/the-access-database-is-wrong-or-missing-for-this-sql-jet-replica-seterror-3778.md
@@ -28,9 +28,9 @@ The Microsoft Access database specified is wrong or missing because:
The solution is to re-initailize your Jet Subscriber using the Re-Initialize tools on the SQL Server.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-action-query-name-cannot-be-used-as-a-row-sourceerror-3069.md b/access/Concepts/Miscellaneous/the-action-query-name-cannot-be-used-as-a-row-sourceerror-3069.md
index d3560e22bbd..cfa1259be45 100644
--- a/access/Concepts/Miscellaneous/the-action-query-name-cannot-be-used-as-a-row-sourceerror-3069.md
+++ b/access/Concepts/Miscellaneous/the-action-query-name-cannot-be-used-as-a-row-sourceerror-3069.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You cannot use the name of an action query here. Instead, use the name of a select query. To run an action query, use the **Execute** method instead of the name of an action query as input to the FROM clause.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-attempt-to-set-a-column-in-a-partial-replica-violated-a-rule-governing-parti.md b/access/Concepts/Miscellaneous/the-attempt-to-set-a-column-in-a-partial-replica-violated-a-rule-governing-parti.md
index 1847f6ca034..a6db4fa209a 100644
--- a/access/Concepts/Miscellaneous/the-attempt-to-set-a-column-in-a-partial-replica-violated-a-rule-governing-parti.md
+++ b/access/Concepts/Miscellaneous/the-attempt-to-set-a-column-in-a-partial-replica-violated-a-rule-governing-parti.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You cannot change a primary key of a table in a partial replica unless it has no references to it.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-cascading-options-for-the-new-reference-conflict-with-existing-reference-nam.md b/access/Concepts/Miscellaneous/the-cascading-options-for-the-new-reference-conflict-with-existing-reference-nam.md
index 94d873a7bc3..feb7143b8e4 100644
--- a/access/Concepts/Miscellaneous/the-cascading-options-for-the-new-reference-conflict-with-existing-reference-nam.md
+++ b/access/Concepts/Miscellaneous/the-cascading-options-for-the-new-reference-conflict-with-existing-reference-nam.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs if a CASCADE action is defined on a column that already has another type of CASCADE action. For example, if CASCADE DELETE is already specified, the user will be prevented from trying to add CASCADE UPDATE. To apply the desired CASCADE action, the original CONSTRAINT must be dropped. This can be done with the ALTER TABLE ALTER COLUMN syntax or with the DROP CONSTRAINT syntax.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-changes-you-requested-to-the-table-were-not-successful-because-they-would-cr.md b/access/Concepts/Miscellaneous/the-changes-you-requested-to-the-table-were-not-successful-because-they-would-cr.md
index 9085be6410d..63f2299cf47 100644
--- a/access/Concepts/Miscellaneous/the-changes-you-requested-to-the-table-were-not-successful-because-they-would-cr.md
+++ b/access/Concepts/Miscellaneous/the-changes-you-requested-to-the-table-were-not-successful-because-they-would-cr.md
@@ -89,9 +89,9 @@ When you remove the primary key, the field or fields that previously served as p
The key indicator is removed from the field or fields that you previously specified as the primary key.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-combined-length-of-internet-server-name-http-share-name-and-ftp-alias-name-s.md b/access/Concepts/Miscellaneous/the-combined-length-of-internet-server-name-http-share-name-and-ftp-alias-name-s.md
index 58c542bb9b4..7187defdc1c 100644
--- a/access/Concepts/Miscellaneous/the-combined-length-of-internet-server-name-http-share-name-and-ftp-alias-name-s.md
+++ b/access/Concepts/Miscellaneous/the-combined-length-of-internet-server-name-http-share-name-and-ftp-alias-name-s.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The indirect or internet values specified exceed the internal limit of 252 characters. You must shorten the name that violates this limit.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-connection-for-viewing-your-linked-microsoft-excel-worksheet-was-losterror-3.md b/access/Concepts/Miscellaneous/the-connection-for-viewing-your-linked-microsoft-excel-worksheet-was-losterror-3.md
index 33020c5396e..eb700d932fd 100644
--- a/access/Concepts/Miscellaneous/the-connection-for-viewing-your-linked-microsoft-excel-worksheet-was-losterror-3.md
+++ b/access/Concepts/Miscellaneous/the-connection-for-viewing-your-linked-microsoft-excel-worksheet-was-losterror-3.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The connection for viewing your linked Microsoft Excel worksheet was lost. The session of Microsoft Excel may have been terminated.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-connection-string-is-too-longerror-3210.md b/access/Concepts/Miscellaneous/the-connection-string-is-too-longerror-3210.md
index fdeec69ddd9..c7fcc39f4c6 100644
--- a/access/Concepts/Miscellaneous/the-connection-string-is-too-longerror-3210.md
+++ b/access/Concepts/Miscellaneous/the-connection-string-is-too-longerror-3210.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The connection string in the IN clause of an SQL statement cannot be longer than 255 characters. Correct your entry, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-current-field-must-match-the-join-key-name-in-the-table-that-serves-as-the-o.md b/access/Concepts/Miscellaneous/the-current-field-must-match-the-join-key-name-in-the-table-that-serves-as-the-o.md
index c425fe91163..912a9cb9919 100644
--- a/access/Concepts/Miscellaneous/the-current-field-must-match-the-join-key-name-in-the-table-that-serves-as-the-o.md
+++ b/access/Concepts/Miscellaneous/the-current-field-must-match-the-join-key-name-in-the-table-that-serves-as-the-o.md
@@ -19,9 +19,9 @@ You have tried to enter a value into the join field in the many-only table of an
The message includes the following instruction: Enter a record in the "one" side table with the desired key value, and then make the entry with the desired join field in the "many-only" table.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-data-being-exported-does-not-match-the-format-described-in-the-schema-ini-fi.md b/access/Concepts/Miscellaneous/the-data-being-exported-does-not-match-the-format-described-in-the-schema-ini-fi.md
index 43afcf4a380..03484877962 100644
--- a/access/Concepts/Miscellaneous/the-data-being-exported-does-not-match-the-format-described-in-the-schema-ini-fi.md
+++ b/access/Concepts/Miscellaneous/the-data-being-exported-does-not-match-the-format-described-in-the-schema-ini-fi.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Make sure the data being exported matches the format described in the Schema.ini file.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-database-database-name-is-already-in-use-by-another-person-or-process-when-t.md b/access/Concepts/Miscellaneous/the-database-database-name-is-already-in-use-by-another-person-or-process-when-t.md
index c0ae3fc5b12..e7906b4b3ed 100644
--- a/access/Concepts/Miscellaneous/the-database-database-name-is-already-in-use-by-another-person-or-process-when-t.md
+++ b/access/Concepts/Miscellaneous/the-database-database-name-is-already-in-use-by-another-person-or-process-when-t.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The specified database is currently being used exclusively by another user or session. Wait for the other user or session to finish working with the database, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-database-engine-could-not-lock-table-name-because-it-is-already-in-use-by-an.md b/access/Concepts/Miscellaneous/the-database-engine-could-not-lock-table-name-because-it-is-already-in-use-by-an.md
index e8661577f31..7ff4dcb4b4d 100644
--- a/access/Concepts/Miscellaneous/the-database-engine-could-not-lock-table-name-because-it-is-already-in-use-by-an.md
+++ b/access/Concepts/Miscellaneous/the-database-engine-could-not-lock-table-name-because-it-is-already-in-use-by-an.md
@@ -17,9 +17,9 @@ To complete the current operation, the table is currently locked by another user
Wait for the other user to finish working with the table, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-database-engine-does-not-recognize-either-the-field-name-in-a-validation-exp.md b/access/Concepts/Miscellaneous/the-database-engine-does-not-recognize-either-the-field-name-in-a-validation-exp.md
index 4e1ebb42884..33bbbfc5d08 100644
--- a/access/Concepts/Miscellaneous/the-database-engine-does-not-recognize-either-the-field-name-in-a-validation-exp.md
+++ b/access/Concepts/Miscellaneous/the-database-engine-does-not-recognize-either-the-field-name-in-a-validation-exp.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Your expression refers to a field incorrectly, or to a field that does not exist. Check to make sure the field name is valid and spelled correctly.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-database-has-been-placed-in-a-state-by-an-unknown-user-that-prevents-it-from.md b/access/Concepts/Miscellaneous/the-database-has-been-placed-in-a-state-by-an-unknown-user-that-prevents-it-from.md
index 9ac07ada48b..2edae7b2530 100644
--- a/access/Concepts/Miscellaneous/the-database-has-been-placed-in-a-state-by-an-unknown-user-that-prevents-it-from.md
+++ b/access/Concepts/Miscellaneous/the-database-has-been-placed-in-a-state-by-an-unknown-user-that-prevents-it-from.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when the new passive shutdown/connection control is being used. This error indicates that another user set the database in a mode that will prevent other users from opening it. It is related to error #3734 and is used when the Microsoft Access database engine cannot determine which user invoked the passive shutdown/connection control.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-database-has-been-placed-in-a-state-by-user-name-on-machine-name-that-preven.md b/access/Concepts/Miscellaneous/the-database-has-been-placed-in-a-state-by-user-name-on-machine-name-that-preven.md
index 78d6596a7c2..fb4b868b47f 100644
--- a/access/Concepts/Miscellaneous/the-database-has-been-placed-in-a-state-by-user-name-on-machine-name-that-preven.md
+++ b/access/Concepts/Miscellaneous/the-database-has-been-placed-in-a-state-by-user-name-on-machine-name-that-preven.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when the new passive shutdown/connection control is being used. This error message indicates that a user set the database in a mode that will prevent other users from opening it.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-database-must-be-opened-in-exclusive-mode-before-it-can-be-replicatederror-3.md b/access/Concepts/Miscellaneous/the-database-must-be-opened-in-exclusive-mode-before-it-can-be-replicatederror-3.md
index 3daaa5eb6c4..5a6e4b53e27 100644
--- a/access/Concepts/Miscellaneous/the-database-must-be-opened-in-exclusive-mode-before-it-can-be-replicatederror-3.md
+++ b/access/Concepts/Miscellaneous/the-database-must-be-opened-in-exclusive-mode-before-it-can-be-replicatederror-3.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You attempted to replicate a database after opening the database in shared mode. Close the database and reopen it in exclusive mode, and then replicate it.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-database-you-are-attempting-to-open-is-already-in-use-by-another-application.md b/access/Concepts/Miscellaneous/the-database-you-are-attempting-to-open-is-already-in-use-by-another-application.md
index 42ad9b50129..a50390ee92e 100644
--- a/access/Concepts/Miscellaneous/the-database-you-are-attempting-to-open-is-already-in-use-by-another-application.md
+++ b/access/Concepts/Miscellaneous/the-database-you-are-attempting-to-open-is-already-in-use-by-another-application.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
If you are attempting to open the database in exclusive mode, it is possible that another application already has the database open. If you are attempting to open the database in shared mode, it is possible that another application has the database open in exclusive mode. Close the other applications using the database and try your request again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-database-you-are-attempting-to-replicate-cannot-be-convertederror-3487.md b/access/Concepts/Miscellaneous/the-database-you-are-attempting-to-replicate-cannot-be-convertederror-3487.md
index 63a489e080c..f0a4ca38086 100644
--- a/access/Concepts/Miscellaneous/the-database-you-are-attempting-to-replicate-cannot-be-convertederror-3487.md
+++ b/access/Concepts/Miscellaneous/the-database-you-are-attempting-to-replicate-cannot-be-convertederror-3487.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Only databases created with version 3.0 or later of the Microsoft Jet database engine can be replicated. Although you can open the database by using an installable ISAM, you cannot convert it to a replicable form. If the database was created by using an earlier version of Microsoft Jet, convert the format to the newer version. If the database is in another format, export the data to a new Microsoft Access database and retry.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-decimal-field-s-precision-is-too-small-to-accept-the-numeric-you-attempted-t.md b/access/Concepts/Miscellaneous/the-decimal-field-s-precision-is-too-small-to-accept-the-numeric-you-attempted-t.md
index 7f6ca70c2b9..519427870f0 100644
--- a/access/Concepts/Miscellaneous/the-decimal-field-s-precision-is-too-small-to-accept-the-numeric-you-attempted-t.md
+++ b/access/Concepts/Miscellaneous/the-decimal-field-s-precision-is-too-small-to-accept-the-numeric-you-attempted-t.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when the data being updated or inserted into a DECIMAL data type does not match the defined precision of the column.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-design-master-or-replica-is-not-being-managed-by-a-synchronizererror-3502.md b/access/Concepts/Miscellaneous/the-design-master-or-replica-is-not-being-managed-by-a-synchronizererror-3502.md
index fc64630d29d..98f406e94cb 100644
--- a/access/Concepts/Miscellaneous/the-design-master-or-replica-is-not-being-managed-by-a-synchronizererror-3502.md
+++ b/access/Concepts/Miscellaneous/the-design-master-or-replica-is-not-being-managed-by-a-synchronizererror-3502.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You are attempting to get information about the Design Master or a replica that is not managed by a Synchronizer.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-directory-you-queried-for-a-list-of-replicas-is-not-a-managed-directoryerror.md b/access/Concepts/Miscellaneous/the-directory-you-queried-for-a-list-of-replicas-is-not-a-managed-directoryerror.md
index e230e3ee8f5..745887ea718 100644
--- a/access/Concepts/Miscellaneous/the-directory-you-queried-for-a-list-of-replicas-is-not-a-managed-directoryerror.md
+++ b/access/Concepts/Miscellaneous/the-directory-you-queried-for-a-list-of-replicas-is-not-a-managed-directoryerror.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-disk-drive-you-are-attempting-to-access-is-unreadableerror-3465.md b/access/Concepts/Miscellaneous/the-disk-drive-you-are-attempting-to-access-is-unreadableerror-3465.md
index 33c30dcb187..37e6a708956 100644
--- a/access/Concepts/Miscellaneous/the-disk-drive-you-are-attempting-to-access-is-unreadableerror-3465.md
+++ b/access/Concepts/Miscellaneous/the-disk-drive-you-are-attempting-to-access-is-unreadableerror-3465.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
If you are attempting to access a floppy disk, make sure the door to the disk drive is closed. If you are attempting to access a hard disk, the disk might have a corrupted sector.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-disk-drive-you-are-attempting-to-write-to-is-fullerror-3575.md b/access/Concepts/Miscellaneous/the-disk-drive-you-are-attempting-to-write-to-is-fullerror-3575.md
index d2ad85e0151..0eeb998e164 100644
--- a/access/Concepts/Miscellaneous/the-disk-drive-you-are-attempting-to-write-to-is-fullerror-3575.md
+++ b/access/Concepts/Miscellaneous/the-disk-drive-you-are-attempting-to-write-to-is-fullerror-3575.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The disk drive does not have enough space to complete the operation. Delete unneeded files from the disk to create sufficient space for the operation. Make space available on the disk larger than the file you are attempting to save.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-disk-for-dropbox-folder-name-is-fullerror-3469.md b/access/Concepts/Miscellaneous/the-disk-for-dropbox-folder-name-is-fullerror-3469.md
index 8b9a2cb5885..262c8126690 100644
--- a/access/Concepts/Miscellaneous/the-disk-for-dropbox-folder-name-is-fullerror-3469.md
+++ b/access/Concepts/Miscellaneous/the-disk-for-dropbox-folder-name-is-fullerror-3469.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
There is not enough space on the dropbox folder's disk drive to complete the operation. Delete unneeded files from the disk to create sufficient space for the operation.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-expression-you-are-trying-to-use-for-the-defaultvalue-property-is-invalid-be.md b/access/Concepts/Miscellaneous/the-expression-you-are-trying-to-use-for-the-defaultvalue-property-is-invalid-be.md
index 4876ac15a34..11fa6a6f156 100644
--- a/access/Concepts/Miscellaneous/the-expression-you-are-trying-to-use-for-the-defaultvalue-property-is-invalid-be.md
+++ b/access/Concepts/Miscellaneous/the-expression-you-are-trying-to-use-for-the-defaultvalue-property-is-invalid-be.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The expression you are trying to use for the **DefaultValue** property is invalid. Set the property to a valid expression.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-fetch-buffer-was-too-small-for-the-amount-of-data-you-requestederror-3640.md b/access/Concepts/Miscellaneous/the-fetch-buffer-was-too-small-for-the-amount-of-data-you-requestederror-3640.md
index d519010a000..d9716081bb4 100644
--- a/access/Concepts/Miscellaneous/the-fetch-buffer-was-too-small-for-the-amount-of-data-you-requestederror-3640.md
+++ b/access/Concepts/Miscellaneous/the-fetch-buffer-was-too-small-for-the-amount-of-data-you-requestederror-3640.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
When performing a **GetRows** or **GetRowsEx** method the fetch buffer was too small to contain the specified rows.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-field-cannot-be-updated-because-another-user-or-process-has-locked-the-corre.md b/access/Concepts/Miscellaneous/the-field-cannot-be-updated-because-another-user-or-process-has-locked-the-corre.md
index 56a7b480709..4465c0bcee2 100644
--- a/access/Concepts/Miscellaneous/the-field-cannot-be-updated-because-another-user-or-process-has-locked-the-corre.md
+++ b/access/Concepts/Miscellaneous/the-field-cannot-be-updated-because-another-user-or-process-has-locked-the-corre.md
@@ -25,9 +25,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-field-is-too-small-to-accept-the-amount-of-data-you-attempted-to-add-try-ins.md b/access/Concepts/Miscellaneous/the-field-is-too-small-to-accept-the-amount-of-data-you-attempted-to-add-try-ins.md
index 3700fb566b2..459cbf75fd6 100644
--- a/access/Concepts/Miscellaneous/the-field-is-too-small-to-accept-the-amount-of-data-you-attempted-to-add-try-ins.md
+++ b/access/Concepts/Miscellaneous/the-field-is-too-small-to-accept-the-amount-of-data-you-attempted-to-add-try-ins.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The field into which you tried to insert or paste data is not large enough to hold the data. Try inserting or pasting less data.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-field-name-cannot-contain-a-null-value-because-the-required-property-for-thi.md b/access/Concepts/Miscellaneous/the-field-name-cannot-contain-a-null-value-because-the-required-property-for-thi.md
index 3ffe88467e3..57bd7e96e76 100644
--- a/access/Concepts/Miscellaneous/the-field-name-cannot-contain-a-null-value-because-the-required-property-for-thi.md
+++ b/access/Concepts/Miscellaneous/the-field-name-cannot-contain-a-null-value-because-the-required-property-for-thi.md
@@ -81,9 +81,9 @@ The following table shows the results you can expect when you combine the settin
|Yes|No|Presses ENTER Presses SPACEBAR Enters a zero-length string|(not allowed) (not allowed) (not allowed)|
|Yes|Yes|Presses ENTER Presses SPACEBAR Enters a zero-length string|(not allowed) Zero-length string Zero-length string|
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-file-name-you-provided-is-too-longerror-3549.md b/access/Concepts/Miscellaneous/the-file-name-you-provided-is-too-longerror-3549.md
index 090f1fbff9a..ce29eb49385 100644
--- a/access/Concepts/Miscellaneous/the-file-name-you-provided-is-too-longerror-3549.md
+++ b/access/Concepts/Miscellaneous/the-file-name-you-provided-is-too-longerror-3549.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Use a smaller file name.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-filter-expression-for-the-partial-replica-is-invaliderror-3482.md b/access/Concepts/Miscellaneous/the-filter-expression-for-the-partial-replica-is-invaliderror-3482.md
index 1313b400f29..8a043591cb5 100644
--- a/access/Concepts/Miscellaneous/the-filter-expression-for-the-partial-replica-is-invaliderror-3482.md
+++ b/access/Concepts/Miscellaneous/the-filter-expression-for-the-partial-replica-is-invaliderror-3482.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The **ReplicaFilter** property was set to an invalid string.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-filters-defining-a-partial-replica-are-out-of-synch-with-each-othererror-357.md b/access/Concepts/Miscellaneous/the-filters-defining-a-partial-replica-are-out-of-synch-with-each-othererror-357.md
index 5dae56b70d3..f207e11348c 100644
--- a/access/Concepts/Miscellaneous/the-filters-defining-a-partial-replica-are-out-of-synch-with-each-othererror-357.md
+++ b/access/Concepts/Miscellaneous/the-filters-defining-a-partial-replica-are-out-of-synch-with-each-othererror-357.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You have changed the filters in the partial replica since the last time you populated your partial replica. You must repopulate the partial replica by either running the Partial Replica Wizard, or by using the PopulatePartial Method in VBA code.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-fixed-width-specification-name-contains-no-column-widthserror-3443.md b/access/Concepts/Miscellaneous/the-fixed-width-specification-name-contains-no-column-widthserror-3443.md
index 5d07a89407e..d6ae03c060a 100644
--- a/access/Concepts/Miscellaneous/the-fixed-width-specification-name-contains-no-column-widthserror-3443.md
+++ b/access/Concepts/Miscellaneous/the-fixed-width-specification-name-contains-no-column-widthserror-3443.md
@@ -23,9 +23,9 @@ The fixed-width parameter specified in the text file specification for the Text
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-guid-could-not-be-createderror-3553.md b/access/Concepts/Miscellaneous/the-guid-could-not-be-createderror-3553.md
index 4f92253b041..81a7d4017d4 100644
--- a/access/Concepts/Miscellaneous/the-guid-could-not-be-createderror-3553.md
+++ b/access/Concepts/Miscellaneous/the-guid-could-not-be-createderror-3553.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-history-of-design-changes-in-the-replica-does-not-match-the-history-in-the-d.md b/access/Concepts/Miscellaneous/the-history-of-design-changes-in-the-replica-does-not-match-the-history-in-the-d.md
index 547eeeaa01f..0fda96c5938 100644
--- a/access/Concepts/Miscellaneous/the-history-of-design-changes-in-the-replica-does-not-match-the-history-in-the-d.md
+++ b/access/Concepts/Miscellaneous/the-history-of-design-changes-in-the-replica-does-not-match-the-history-in-the-d.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The Synchronizer is unable to synchronize the two members of the replica set because the history of design (or schema) changes is different for each replica. The discrepancy in design history might be caused by either the existence of two Design Masters or because the Design Master has been restored from a backup made sometime in the past.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-insert-into-statement-contains-the-following-unknown-field-namefield-namemak.md b/access/Concepts/Miscellaneous/the-insert-into-statement-contains-the-following-unknown-field-namefield-namemak.md
index 4820d678f51..f4f65e97c6a 100644
--- a/access/Concepts/Miscellaneous/the-insert-into-statement-contains-the-following-unknown-field-namefield-namemak.md
+++ b/access/Concepts/Miscellaneous/the-insert-into-statement-contains-the-following-unknown-field-namefield-namemak.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to use an INSERT INTO statement with the specified field name, but that field does not exist in the output table. Make sure you have typed the name correctly, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-keeplocal-property-cannot-be-set-on-a-database-it-can-be-set-only-on-the-obj.md b/access/Concepts/Miscellaneous/the-keeplocal-property-cannot-be-set-on-a-database-it-can-be-set-only-on-the-obj.md
index e2701ef3cc4..d86de66a134 100644
--- a/access/Concepts/Miscellaneous/the-keeplocal-property-cannot-be-set-on-a-database-it-can-be-set-only-on-the-obj.md
+++ b/access/Concepts/Miscellaneous/the-keeplocal-property-cannot-be-set-on-a-database-it-can-be-set-only-on-the-obj.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The **KeepLocal** property is set to "T" for objects in a database that you do not want replicated. You cannot set this property for the entire database.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-language-specific-code-page-was-not-specified-or-could-not-be-founderror-364.md b/access/Concepts/Miscellaneous/the-language-specific-code-page-was-not-specified-or-could-not-be-founderror-364.md
index 04574eed098..9a04a4b7298 100644
--- a/access/Concepts/Miscellaneous/the-language-specific-code-page-was-not-specified-or-could-not-be-founderror-364.md
+++ b/access/Concepts/Miscellaneous/the-language-specific-code-page-was-not-specified-or-could-not-be-founderror-364.md
@@ -19,9 +19,9 @@ You have attempted to open a database that was created with a language that is n
Languages can be added to your system through the Regional settings of the Control Panel.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-level-clause-includes-a-reserved-word-or-argument-that-is-misspelled-or-miss.md b/access/Concepts/Miscellaneous/the-level-clause-includes-a-reserved-word-or-argument-that-is-misspelled-or-miss.md
index 366f15480d5..8253505b7a9 100644
--- a/access/Concepts/Miscellaneous/the-level-clause-includes-a-reserved-word-or-argument-that-is-misspelled-or-miss.md
+++ b/access/Concepts/Miscellaneous/the-level-clause-includes-a-reserved-word-or-argument-that-is-misspelled-or-miss.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-member-of-the-replica-set-you-are-attempting-to-synchronize-is-currently-bei.md b/access/Concepts/Miscellaneous/the-member-of-the-replica-set-you-are-attempting-to-synchronize-is-currently-bei.md
index 8ca63bf87e8..194e75516b7 100644
--- a/access/Concepts/Miscellaneous/the-member-of-the-replica-set-you-are-attempting-to-synchronize-is-currently-bei.md
+++ b/access/Concepts/Miscellaneous/the-member-of-the-replica-set-you-are-attempting-to-synchronize-is-currently-bei.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The Design Master or a replica can be involved in only one synchronization at a time. Although you cannot initiate a second synchronization while the member is locked, you can continue using it. Wait a few minutes and try your synchronization again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-cannot-find-a-record-in-the-table-name-with.md b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-cannot-find-a-record-in-the-table-name-with.md
index a40439d4bca..43c504cca8e 100644
--- a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-cannot-find-a-record-in-the-table-name-with.md
+++ b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-cannot-find-a-record-in-the-table-name-with.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
In a one-to-many relationship, you entered data on the "many" side for which there is no matching record on the "one" side. For example, this error occurs if you join a Customers table and Orders table on a CustomerID field, and then add an order using a CustomerID that does not exist in the Customers table.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-cannot-find-the-input-table-or-query-namema.md b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-cannot-find-the-input-table-or-query-namema.md
index b86ae9685b6..4ab7f8d5c07 100644
--- a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-cannot-find-the-input-table-or-query-namema.md
+++ b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-cannot-find-the-input-table-or-query-namema.md
@@ -25,9 +25,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-cannot-open-the-file-nameit-is-already-open.md b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-cannot-open-the-file-nameit-is-already-open.md
index 54619a0dbb7..ea9d341b10a 100644
--- a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-cannot-open-the-file-nameit-is-already-open.md
+++ b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-cannot-open-the-file-nameit-is-already-open.md
@@ -25,9 +25,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-could-not-execute-the-sql-statement-because.md b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-could-not-execute-the-sql-statement-because.md
index 8aa24623782..2188bda4e1d 100644
--- a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-could-not-execute-the-sql-statement-because.md
+++ b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-could-not-execute-the-sql-statement-because.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-could-not-find-the-object-namemake-sure-the.md b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-could-not-find-the-object-namemake-sure-the.md
index 5be06033cd6..93d7ab9f013 100644
--- a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-could-not-find-the-object-namemake-sure-the.md
+++ b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-could-not-find-the-object-namemake-sure-the.md
@@ -27,9 +27,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-could-not-read-the-system-clock-on-your-com.md b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-could-not-read-the-system-clock-on-your-com.md
index c29d5b7664c..9b80e8b4c4c 100644
--- a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-could-not-read-the-system-clock-on-your-com.md
+++ b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-could-not-read-the-system-clock-on-your-com.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The Microsoft Access database engine uses your computer's system clock for certain internal processes. It tried to read the computer's clock but was not able to. Shut down and restart your computer.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-does-not-recognize-name-as-a-valid-field-na.md b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-does-not-recognize-name-as-a-valid-field-na.md
index 075d4dccb6b..1c52d88f733 100644
--- a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-does-not-recognize-name-as-a-valid-field-na.md
+++ b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-does-not-recognize-name-as-a-valid-field-na.md
@@ -35,9 +35,9 @@ Possible causes with Microsoft Access:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-has-already-been-initializederror-3279.md b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-has-already-been-initializederror-3279.md
index 31926131abf..69f5a867519 100644
--- a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-has-already-been-initializederror-3279.md
+++ b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-has-already-been-initializederror-3279.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You attempted to initialize the Microsoft Access database engine, but it has already been initialized.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-sorting-dlls-could-not-be-loaded-properlyer.md b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-sorting-dlls-could-not-be-loaded-properlyer.md
index b2ee02a522a..99a7d538b6a 100644
--- a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-sorting-dlls-could-not-be-loaded-properlyer.md
+++ b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-sorting-dlls-could-not-be-loaded-properlyer.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The Microsoft Access database engine uses two sorting DLLs for comparisons and indexing, ACEWSTR.DLL and ACEWDAT.DLL. Make sure that those DLLs are in the path used to load DLLs.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-stopped-the-process-because-you-and-another.md b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-stopped-the-process-because-you-and-another.md
index e8c1034db4c..7cf8f11fe36 100644
--- a/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-stopped-the-process-because-you-and-another.md
+++ b/access/Concepts/Miscellaneous/the-microsoft-access-database-engine-stopped-the-process-because-you-and-another.md
@@ -20,9 +20,9 @@ This error can occur in a multiuser environment.
Another user has changed the data you are trying to update. This error can occur when multiple users open a table or create a **Recordset** and use optimistic locking. Between the time you used the **Edit** method and the **Update** method, another user changed the same data.
To overwrite the other user's changes with your own, execute the **Update** method again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-microsoft-jet-database-engine-has-not-been-initializederror-3278.md b/access/Concepts/Miscellaneous/the-microsoft-jet-database-engine-has-not-been-initializederror-3278.md
index 041efcfa6dc..08f08130c4a 100644
--- a/access/Concepts/Miscellaneous/the-microsoft-jet-database-engine-has-not-been-initializederror-3278.md
+++ b/access/Concepts/Miscellaneous/the-microsoft-jet-database-engine-has-not-been-initializederror-3278.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-name-query-cannot-be-used-in-a-check-constraint-clauseerror-3801.md b/access/Concepts/Miscellaneous/the-name-query-cannot-be-used-in-a-check-constraint-clauseerror-3801.md
index 2011f0f69bc..4a8b742f9f4 100644
--- a/access/Concepts/Miscellaneous/the-name-query-cannot-be-used-in-a-check-constraint-clauseerror-3801.md
+++ b/access/Concepts/Miscellaneous/the-name-query-cannot-be-used-in-a-check-constraint-clauseerror-3801.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when using the CREATE TABLE or ALTER TABLE ALTER COLUMN syntax and using the CHECK constraint clause. The error occurs when a CHECK constraint attempts to reference an attached/linked table or a view/procedure/stored query.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-name-selected-for-the-system-object-is-already-in-useerror-3526.md b/access/Concepts/Miscellaneous/the-name-selected-for-the-system-object-is-already-in-useerror-3526.md
index 2f85609f6ba..e8e4f442c66 100644
--- a/access/Concepts/Miscellaneous/the-name-selected-for-the-system-object-is-already-in-useerror-3526.md
+++ b/access/Concepts/Miscellaneous/the-name-selected-for-the-system-object-is-already-in-useerror-3526.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-number-of-aliases-specified-shall-be-the-same-as-number-of-output-columns-er.md b/access/Concepts/Miscellaneous/the-number-of-aliases-specified-shall-be-the-same-as-number-of-output-columns-er.md
index 156fa5c8240..c429d3b87f0 100644
--- a/access/Concepts/Miscellaneous/the-number-of-aliases-specified-shall-be-the-same-as-number-of-output-columns-er.md
+++ b/access/Concepts/Miscellaneous/the-number-of-aliases-specified-shall-be-the-same-as-number-of-output-columns-er.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when trying to create a view through SQL DDL. The error occurs when a different number of correlation names or aliases are defined from what is in the SELECT statement. For example, the following syntax would generate this error: CREATE VIEW foo (col1, col2) AS SELECT col1 FROM table1.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-number-of-columns-in-the-two-selected-tables-or-queries-of-a-union-query-do.md b/access/Concepts/Miscellaneous/the-number-of-columns-in-the-two-selected-tables-or-queries-of-a-union-query-do.md
index 6abf25f49de..5b79ddacd71 100644
--- a/access/Concepts/Miscellaneous/the-number-of-columns-in-the-two-selected-tables-or-queries-of-a-union-query-do.md
+++ b/access/Concepts/Miscellaneous/the-number-of-columns-in-the-two-selected-tables-or-queries-of-a-union-query-do.md
@@ -29,9 +29,9 @@ UNION SELECT Country, NULL, NULL FROM Regions;
```
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-object-cannot-be-replicated-because-the-database-is-not-replicatederror-3485.md b/access/Concepts/Miscellaneous/the-object-cannot-be-replicated-because-the-database-is-not-replicatederror-3485.md
index 34d47225bf9..ffba9b7b5e6 100644
--- a/access/Concepts/Miscellaneous/the-object-cannot-be-replicated-because-the-database-is-not-replicatederror-3485.md
+++ b/access/Concepts/Miscellaneous/the-object-cannot-be-replicated-because-the-database-is-not-replicatederror-3485.md
@@ -30,9 +30,9 @@ You cannot replicate an object in a database unless you first replicate the data
All objects in the database are replicated when the database is replicated, unless the **KeepLocal** property has been set on an object.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-object-is-not-a-stored-procedureerror-3749.md b/access/Concepts/Miscellaneous/the-object-is-not-a-stored-procedureerror-3749.md
index d4f4ff36677..6912d93d9c0 100644
--- a/access/Concepts/Miscellaneous/the-object-is-not-a-stored-procedureerror-3749.md
+++ b/access/Concepts/Miscellaneous/the-object-is-not-a-stored-procedureerror-3749.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when using the EXECUTE keyword and either passing a name of a procedure or view that does not exist in the database or passing the name of a base table.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-object-specified-cannot-be-replicated-because-it-is-missing-a-necessary-reso.md b/access/Concepts/Miscellaneous/the-object-specified-cannot-be-replicated-because-it-is-missing-a-necessary-reso.md
index 9d2b24de080..72bd62d5027 100644
--- a/access/Concepts/Miscellaneous/the-object-specified-cannot-be-replicated-because-it-is-missing-a-necessary-reso.md
+++ b/access/Concepts/Miscellaneous/the-object-specified-cannot-be-replicated-because-it-is-missing-a-necessary-reso.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-operation-failed-there-are-too-many-indexes-on-table-namedelete-some-of-the.md b/access/Concepts/Miscellaneous/the-operation-failed-there-are-too-many-indexes-on-table-namedelete-some-of-the.md
index 23c747489b1..1bf1dff1f06 100644
--- a/access/Concepts/Miscellaneous/the-operation-failed-there-are-too-many-indexes-on-table-namedelete-some-of-the.md
+++ b/access/Concepts/Miscellaneous/the-operation-failed-there-are-too-many-indexes-on-table-namedelete-some-of-the.md
@@ -19,9 +19,9 @@ A table in a Microsoft Access database engine database can have no more than 32
Delete one or more indexes from the named table and try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-operation-you-attempted-conflicts-with-an-existing-operation-involving-this.md b/access/Concepts/Miscellaneous/the-operation-you-attempted-conflicts-with-an-existing-operation-involving-this.md
index 47e3995002e..ff9621b8605 100644
--- a/access/Concepts/Miscellaneous/the-operation-you-attempted-conflicts-with-an-existing-operation-involving-this.md
+++ b/access/Concepts/Miscellaneous/the-operation-you-attempted-conflicts-with-an-existing-operation-involving-this.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Another user or application is already performing the same operation on this member of the replica set. Retry your action later.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-order-by-expression-expression-includes-fields-that-are-not-selected-by-the.md b/access/Concepts/Miscellaneous/the-order-by-expression-expression-includes-fields-that-are-not-selected-by-the.md
index 994b6bcddd7..42918037b8a 100644
--- a/access/Concepts/Miscellaneous/the-order-by-expression-expression-includes-fields-that-are-not-selected-by-the.md
+++ b/access/Concepts/Miscellaneous/the-order-by-expression-expression-includes-fields-that-are-not-selected-by-the.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
In a union query, you have included fields in an ORDER BY expression that are not specified by the query. Only those fields requested in the first query can be included in an ORDER BY expression.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-partial-filter-expression-contains-an-unknown-functionerror-3589.md b/access/Concepts/Miscellaneous/the-partial-filter-expression-contains-an-unknown-functionerror-3589.md
index 58bdb129319..13410899bd8 100644
--- a/access/Concepts/Miscellaneous/the-partial-filter-expression-contains-an-unknown-functionerror-3589.md
+++ b/access/Concepts/Miscellaneous/the-partial-filter-expression-contains-an-unknown-functionerror-3589.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Make sure you are using the correct name of the function. Also, not all functions are valid in filter expressions.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-password-supplied-for-the-dropbox-folder-name-is-invaliderror-3483.md b/access/Concepts/Miscellaneous/the-password-supplied-for-the-dropbox-folder-name-is-invaliderror-3483.md
index c05fc937f00..8ce08324726 100644
--- a/access/Concepts/Miscellaneous/the-password-supplied-for-the-dropbox-folder-name-is-invaliderror-3483.md
+++ b/access/Concepts/Miscellaneous/the-password-supplied-for-the-dropbox-folder-name-is-invaliderror-3483.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
To specify the password, start the Replication Manager.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-password-used-by-the-synchronizer-to-write-to-a-destination-dropbox-folder-i.md b/access/Concepts/Miscellaneous/the-password-used-by-the-synchronizer-to-write-to-a-destination-dropbox-folder-i.md
index 1cd11ad11b3..5f692df378b 100644
--- a/access/Concepts/Miscellaneous/the-password-used-by-the-synchronizer-to-write-to-a-destination-dropbox-folder-i.md
+++ b/access/Concepts/Miscellaneous/the-password-used-by-the-synchronizer-to-write-to-a-destination-dropbox-folder-i.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-query-cannot-be-used-as-a-row-sourceerror-3323.md b/access/Concepts/Miscellaneous/the-query-cannot-be-used-as-a-row-sourceerror-3323.md
index 67026129248..9a45f8e357e 100644
--- a/access/Concepts/Miscellaneous/the-query-cannot-be-used-as-a-row-sourceerror-3323.md
+++ b/access/Concepts/Miscellaneous/the-query-cannot-be-used-as-a-row-sourceerror-3323.md
@@ -19,9 +19,9 @@ Possible causes:
The query being used as a record source is an action query or a data-definition query.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-query-is-a-ddl-query-and-cannot-be-used-as-a-row-sourceerror-3324.md b/access/Concepts/Miscellaneous/the-query-is-a-ddl-query-and-cannot-be-used-as-a-row-sourceerror-3324.md
index 437ff98418d..52b92efccbf 100644
--- a/access/Concepts/Miscellaneous/the-query-is-a-ddl-query-and-cannot-be-used-as-a-row-sourceerror-3324.md
+++ b/access/Concepts/Miscellaneous/the-query-is-a-ddl-query-and-cannot-be-used-as-a-row-sourceerror-3324.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to run an action query or data-definition query without using the **Execute** method.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-record-cannot-be-deleted-or-changed-because-table-name-includes-related-reco.md b/access/Concepts/Miscellaneous/the-record-cannot-be-deleted-or-changed-because-table-name-includes-related-reco.md
index c56bc604f6d..3686450afd2 100644
--- a/access/Concepts/Miscellaneous/the-record-cannot-be-deleted-or-changed-because-table-name-includes-related-reco.md
+++ b/access/Concepts/Miscellaneous/the-record-cannot-be-deleted-or-changed-because-table-name-includes-related-reco.md
@@ -19,9 +19,9 @@ You tried to perform an operation that would have violated referential integrity
If you want to delete or change the record, first delete the related records from the "many" table.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-recordset-object-open-method.md b/access/Concepts/Miscellaneous/the-recordset-object-open-method.md
index a66bb6975a5..89402f3a460 100644
--- a/access/Concepts/Miscellaneous/the-recordset-object-open-method.md
+++ b/access/Concepts/Miscellaneous/the-recordset-object-open-method.md
@@ -180,9 +180,9 @@ ErrHandler:
For more information, see NextRecordset.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-relationship-name-in-the-partial-filter-expression-is-invaliderror-3480.md b/access/Concepts/Miscellaneous/the-relationship-name-in-the-partial-filter-expression-is-invaliderror-3480.md
index 081f01c5d93..590daa9f24c 100644
--- a/access/Concepts/Miscellaneous/the-relationship-name-in-the-partial-filter-expression-is-invaliderror-3480.md
+++ b/access/Concepts/Miscellaneous/the-relationship-name-in-the-partial-filter-expression-is-invaliderror-3480.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Specify a valid relationship.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-replica-is-not-a-partial-replicaerror-3478.md b/access/Concepts/Miscellaneous/the-replica-is-not-a-partial-replicaerror-3478.md
index cfaf4101ec0..2f242edb55e 100644
--- a/access/Concepts/Miscellaneous/the-replica-is-not-a-partial-replicaerror-3478.md
+++ b/access/Concepts/Miscellaneous/the-replica-is-not-a-partial-replicaerror-3478.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You are attempting to get information about the filter or some other aspect of a partial replica. However, the replica you are querying is not a partial replica. Use the Replication Manager to view the replica's property sheet and confirm that the replica is not a partial replica.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-replica-name-or-id-does-not-match-a-currently-managed-member-of-the-replica.md b/access/Concepts/Miscellaneous/the-replica-name-or-id-does-not-match-a-currently-managed-member-of-the-replica.md
index 39c6cf44c0d..99a9d42fa75 100644
--- a/access/Concepts/Miscellaneous/the-replica-name-or-id-does-not-match-a-currently-managed-member-of-the-replica.md
+++ b/access/Concepts/Miscellaneous/the-replica-name-or-id-does-not-match-a-currently-managed-member-of-the-replica.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-replicaid-for-this-member-of-the-replica-set-was-reassigned-during-a-move-or.md b/access/Concepts/Miscellaneous/the-replicaid-for-this-member-of-the-replica-set-was-reassigned-during-a-move-or.md
index 8faad97a0ed..7a56b4a8812 100644
--- a/access/Concepts/Miscellaneous/the-replicaid-for-this-member-of-the-replica-set-was-reassigned-during-a-move-or.md
+++ b/access/Concepts/Miscellaneous/the-replicaid-for-this-member-of-the-replica-set-was-reassigned-during-a-move-or.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-replication-property-you-are-attempting-to-delete-is-read-only-and-cannot-be.md b/access/Concepts/Miscellaneous/the-replication-property-you-are-attempting-to-delete-is-read-only-and-cannot-be.md
index e9f3746ccf6..c7bd2ea7e16 100644
--- a/access/Concepts/Miscellaneous/the-replication-property-you-are-attempting-to-delete-is-read-only-and-cannot-be.md
+++ b/access/Concepts/Miscellaneous/the-replication-property-you-are-attempting-to-delete-is-read-only-and-cannot-be.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Check to be sure you are deleting the correct property.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-replication-property-you-are-attempting-to-set-or-delete-is-read-only-and-ca.md b/access/Concepts/Miscellaneous/the-replication-property-you-are-attempting-to-set-or-delete-is-read-only-and-ca.md
index 17d63554384..81b6cf60b6c 100644
--- a/access/Concepts/Miscellaneous/the-replication-property-you-are-attempting-to-set-or-delete-is-read-only-and-ca.md
+++ b/access/Concepts/Miscellaneous/the-replication-property-you-are-attempting-to-set-or-delete-is-read-only-and-ca.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Many properties related to replication are for internal use only or are available to the developer on a read-only basis. Review your program code to make sure you are reading rather than changing the property.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-search-key-was-not-found-in-any-recorderror-3709.md b/access/Concepts/Miscellaneous/the-search-key-was-not-found-in-any-recorderror-3709.md
index 8552d8c8f14..470e971a78d 100644
--- a/access/Concepts/Miscellaneous/the-search-key-was-not-found-in-any-recorderror-3709.md
+++ b/access/Concepts/Miscellaneous/the-search-key-was-not-found-in-any-recorderror-3709.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when an ISAM SEEK is being executed and there are no matching values in the index.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-select-statement-includes-a-reserved-word-or-an-argument-name-that-is-misspe.md b/access/Concepts/Miscellaneous/the-select-statement-includes-a-reserved-word-or-an-argument-name-that-is-misspe.md
index e0244703c56..e242654a907 100644
--- a/access/Concepts/Miscellaneous/the-select-statement-includes-a-reserved-word-or-an-argument-name-that-is-misspe.md
+++ b/access/Concepts/Miscellaneous/the-select-statement-includes-a-reserved-word-or-an-argument-name-that-is-misspe.md
@@ -26,9 +26,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-server-s-msysconf-table-exists-but-is-in-an-incorrect-format-contact-your-sy.md b/access/Concepts/Miscellaneous/the-server-s-msysconf-table-exists-but-is-in-an-incorrect-format-contact-your-sy.md
index c94edeee9da..f9da971cd36 100644
--- a/access/Concepts/Miscellaneous/the-server-s-msysconf-table-exists-but-is-in-an-incorrect-format-contact-your-sy.md
+++ b/access/Concepts/Miscellaneous/the-server-s-msysconf-table-exists-but-is-in-an-incorrect-format-contact-your-sy.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The MSysConf table created on the server to help control communications between the Microsoft Access database engine and the linked ODBC data source requires a very specific format.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-size-of-a-field-is-too-longerror-3017.md b/access/Concepts/Miscellaneous/the-size-of-a-field-is-too-longerror-3017.md
index b771d9395d7..40951489184 100644
--- a/access/Concepts/Miscellaneous/the-size-of-a-field-is-too-longerror-3017.md
+++ b/access/Concepts/Miscellaneous/the-size-of-a-field-is-too-longerror-3017.md
@@ -25,9 +25,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-size-of-the-registry-parameter-exceeds-the-maximum-allowederror-3552.md b/access/Concepts/Miscellaneous/the-size-of-the-registry-parameter-exceeds-the-maximum-allowederror-3552.md
index 12afd51c725..f371409a395 100644
--- a/access/Concepts/Miscellaneous/the-size-of-the-registry-parameter-exceeds-the-maximum-allowederror-3552.md
+++ b/access/Concepts/Miscellaneous/the-size-of-the-registry-parameter-exceeds-the-maximum-allowederror-3552.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Each parameter in the Microsoft Windows Registry has a maximum size. The setting you attempted to use exceeded the allowed maximum. Check the size limitation for the parameter you are setting.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-specified-field-field-could-refer-to-more-than-one-table-listed-in-the-from.md b/access/Concepts/Miscellaneous/the-specified-field-field-could-refer-to-more-than-one-table-listed-in-the-from.md
index 93b70df3fa9..af2380669c7 100644
--- a/access/Concepts/Miscellaneous/the-specified-field-field-could-refer-to-more-than-one-table-listed-in-the-from.md
+++ b/access/Concepts/Miscellaneous/the-specified-field-field-could-refer-to-more-than-one-table-listed-in-the-from.md
@@ -35,9 +35,9 @@ FROM Orders, [Order Details];
```
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-specified-fields-are-not-uniquely-indexed-in-table-nameerror-3374.md b/access/Concepts/Miscellaneous/the-specified-fields-are-not-uniquely-indexed-in-table-nameerror-3374.md
index 7d84c946953..8734e46caa8 100644
--- a/access/Concepts/Miscellaneous/the-specified-fields-are-not-uniquely-indexed-in-table-nameerror-3374.md
+++ b/access/Concepts/Miscellaneous/the-specified-fields-are-not-uniquely-indexed-in-table-nameerror-3374.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The specified fields in the referenced table of a CONSTRAINT clause are not uniquely indexed.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-specified-row-length-is-shorter-than-the-sum-of-the-column-lengthserror-3646.md b/access/Concepts/Miscellaneous/the-specified-row-length-is-shorter-than-the-sum-of-the-column-lengthserror-3646.md
index bfbd34fbae0..45d94b4badf 100644
--- a/access/Concepts/Miscellaneous/the-specified-row-length-is-shorter-than-the-sum-of-the-column-lengthserror-3646.md
+++ b/access/Concepts/Miscellaneous/the-specified-row-length-is-shorter-than-the-sum-of-the-column-lengthserror-3646.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The row length parameter did not specify enough space for the column binding.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-sql-statement-could-not-be-executed-because-it-contains-ambiguous-outer-join.md b/access/Concepts/Miscellaneous/the-sql-statement-could-not-be-executed-because-it-contains-ambiguous-outer-join.md
index d285c939ce0..e43a9df0003 100644
--- a/access/Concepts/Miscellaneous/the-sql-statement-could-not-be-executed-because-it-contains-ambiguous-outer-join.md
+++ b/access/Concepts/Miscellaneous/the-sql-statement-could-not-be-executed-because-it-contains-ambiguous-outer-join.md
@@ -51,9 +51,9 @@ ON Customers.CustomerID = Orders.CustomerID;
```
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-synchronization-failed-because-a-design-change-could-not-be-applied-to-one-o.md b/access/Concepts/Miscellaneous/the-synchronization-failed-because-a-design-change-could-not-be-applied-to-one-o.md
index b590c6bb397..373126ea4c9 100644
--- a/access/Concepts/Miscellaneous/the-synchronization-failed-because-a-design-change-could-not-be-applied-to-one-o.md
+++ b/access/Concepts/Miscellaneous/the-synchronization-failed-because-a-design-change-could-not-be-applied-to-one-o.md
@@ -26,9 +26,9 @@ The Microsoft Access database engine attempted to update the database design at
For additional information regarding the synchronization failure, look in the MSysSchemaProb table, either at the Design Master or the replica that was the target of the synchronization.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-synchronizer-id-does-not-match-an-existing-id-in-the-msystranspaddress-table.md b/access/Concepts/Miscellaneous/the-synchronizer-id-does-not-match-an-existing-id-in-the-msystranspaddress-table.md
index 9b0b78c7b23..6009ce6cfbc 100644
--- a/access/Concepts/Miscellaneous/the-synchronizer-id-does-not-match-an-existing-id-in-the-msystranspaddress-table.md
+++ b/access/Concepts/Miscellaneous/the-synchronizer-id-does-not-match-an-existing-id-in-the-msystranspaddress-table.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-synchronizer-is-already-serving-a-clienterror-3530.md b/access/Concepts/Miscellaneous/the-synchronizer-is-already-serving-a-clienterror-3530.md
index fea692d8bf1..a23716345b1 100644
--- a/access/Concepts/Miscellaneous/the-synchronizer-is-already-serving-a-clienterror-3530.md
+++ b/access/Concepts/Miscellaneous/the-synchronizer-is-already-serving-a-clienterror-3530.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You are attempting to start a second client of the Synchronizer, but the Synchronizer can have only one client at a time. Identify the application or user that is already using the Synchronizer and close the application.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-synchronizer-is-unable-to-open-the-synchronizer-logerror-3506.md b/access/Concepts/Miscellaneous/the-synchronizer-is-unable-to-open-the-synchronizer-logerror-3506.md
index 98d867e00c9..4431202b620 100644
--- a/access/Concepts/Miscellaneous/the-synchronizer-is-unable-to-open-the-synchronizer-logerror-3506.md
+++ b/access/Concepts/Miscellaneous/the-synchronizer-is-unable-to-open-the-synchronizer-logerror-3506.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-synchronizer-or-replication-manager-could-not-find-the-system-objecterror-35.md b/access/Concepts/Miscellaneous/the-synchronizer-or-replication-manager-could-not-find-the-system-objecterror-35.md
index 10e4c7c4fe1..61623d379a0 100644
--- a/access/Concepts/Miscellaneous/the-synchronizer-or-replication-manager-could-not-find-the-system-objecterror-35.md
+++ b/access/Concepts/Miscellaneous/the-synchronizer-or-replication-manager-could-not-find-the-system-objecterror-35.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-synchronizer-or-replication-manager-found-unread-data-in-the-shared-memory-t.md b/access/Concepts/Miscellaneous/the-synchronizer-or-replication-manager-found-unread-data-in-the-shared-memory-t.md
index 6b0c0784503..da01144b505 100644
--- a/access/Concepts/Miscellaneous/the-synchronizer-or-replication-manager-found-unread-data-in-the-shared-memory-t.md
+++ b/access/Concepts/Miscellaneous/the-synchronizer-or-replication-manager-found-unread-data-in-the-shared-memory-t.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-synchronizer-s-client-is-no-longer-present-and-cannot-be-notifiederror-3537.md b/access/Concepts/Miscellaneous/the-synchronizer-s-client-is-no-longer-present-and-cannot-be-notifiederror-3537.md
index fc74ef94b7f..1b6413c368b 100644
--- a/access/Concepts/Miscellaneous/the-synchronizer-s-client-is-no-longer-present-and-cannot-be-notifiederror-3537.md
+++ b/access/Concepts/Miscellaneous/the-synchronizer-s-client-is-no-longer-present-and-cannot-be-notifiederror-3537.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-synchronizer-s-registry-has-no-value-set-for-the-key-you-queriederror-3503.md b/access/Concepts/Miscellaneous/the-synchronizer-s-registry-has-no-value-set-for-the-key-you-queriederror-3503.md
index aa6b41a205f..71c1174fdad 100644
--- a/access/Concepts/Miscellaneous/the-synchronizer-s-registry-has-no-value-set-for-the-key-you-queriederror-3503.md
+++ b/access/Concepts/Miscellaneous/the-synchronizer-s-registry-has-no-value-set-for-the-key-you-queriederror-3503.md
@@ -28,9 +28,9 @@ You need to reconfigure the Synchronizer on your computer.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-system-object-used-by-a-process-still-exists-after-the-process-has-stoppeder.md b/access/Concepts/Miscellaneous/the-system-object-used-by-a-process-still-exists-after-the-process-has-stoppeder.md
index 772f1fbf960..87a41865187 100644
--- a/access/Concepts/Miscellaneous/the-system-object-used-by-a-process-still-exists-after-the-process-has-stoppeder.md
+++ b/access/Concepts/Miscellaneous/the-system-object-used-by-a-process-still-exists-after-the-process-has-stoppeder.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-system-tables-in-your-replica-are-no-longer-reliable-and-the-replica-should.md b/access/Concepts/Miscellaneous/the-system-tables-in-your-replica-are-no-longer-reliable-and-the-replica-should.md
index 00c0bd287de..deb413ca509 100644
--- a/access/Concepts/Miscellaneous/the-system-tables-in-your-replica-are-no-longer-reliable-and-the-replica-should.md
+++ b/access/Concepts/Miscellaneous/the-system-tables-in-your-replica-are-no-longer-reliable-and-the-replica-should.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The replica on your computer is corrupted. When the Microsoft Access database engine repaired the replica, it may have altered one or more system tables. Delete the replica and replace it with a new replica.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-table-name-is-already-opened-exclusively-by-another-user-or-it-is-already-op.md b/access/Concepts/Miscellaneous/the-table-name-is-already-opened-exclusively-by-another-user-or-it-is-already-op.md
index 821089cbd6d..e53970b06a0 100644
--- a/access/Concepts/Miscellaneous/the-table-name-is-already-opened-exclusively-by-another-user-or-it-is-already-op.md
+++ b/access/Concepts/Miscellaneous/the-table-name-is-already-opened-exclusively-by-another-user-or-it-is-already-op.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to use a table that is currently open for exclusive access by another user, or you tried to programmatically manipulate a table that is open through the user interface. Address the appropriate condition, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-table-name-name-in-the-partial-filter-expression-is-invaliderror-3481.md b/access/Concepts/Miscellaneous/the-table-name-name-in-the-partial-filter-expression-is-invaliderror-3481.md
index 92c5bf804b9..c1d36a23368 100644
--- a/access/Concepts/Miscellaneous/the-table-name-name-in-the-partial-filter-expression-is-invaliderror-3481.md
+++ b/access/Concepts/Miscellaneous/the-table-name-name-in-the-partial-filter-expression-is-invaliderror-3481.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Make sure you are using the correct table name in the expression.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-text-file-specification-name-does-not-exist-you-cannot-import-export-or-link.md b/access/Concepts/Miscellaneous/the-text-file-specification-name-does-not-exist-you-cannot-import-export-or-link.md
index fd6db7c6083..bd7b38fb22c 100644
--- a/access/Concepts/Miscellaneous/the-text-file-specification-name-does-not-exist-you-cannot-import-export-or-link.md
+++ b/access/Concepts/Miscellaneous/the-text-file-specification-name-does-not-exist-you-cannot-import-export-or-link.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Microsoft Access tried to import/export/link to a text file using a specification table name that does not exist in the MSysIMEXSpecs table of the database. Re-create the link using a valid specification table.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-two-members-of-the-replica-set-you-are-attempting-to-synchronize-are-both-de.md b/access/Concepts/Miscellaneous/the-two-members-of-the-replica-set-you-are-attempting-to-synchronize-are-both-de.md
index 055a9a39bf4..c0d0d976a6f 100644
--- a/access/Concepts/Miscellaneous/the-two-members-of-the-replica-set-you-are-attempting-to-synchronize-are-both-de.md
+++ b/access/Concepts/Miscellaneous/the-two-members-of-the-replica-set-you-are-attempting-to-synchronize-are-both-de.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Delete one of the Design Masters.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-two-members-of-the-replica-set-you-are-attempting-to-synchronize-have-the-sa.md b/access/Concepts/Miscellaneous/the-two-members-of-the-replica-set-you-are-attempting-to-synchronize-have-the-sa.md
index 64138939bc6..c459d6429f8 100644
--- a/access/Concepts/Miscellaneous/the-two-members-of-the-replica-set-you-are-attempting-to-synchronize-have-the-sa.md
+++ b/access/Concepts/Miscellaneous/the-two-members-of-the-replica-set-you-are-attempting-to-synchronize-have-the-sa.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Synchronize with a different target member of the replica set.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-two-replicas-you-are-attempting-to-synchronize-are-from-different-replica-se.md b/access/Concepts/Miscellaneous/the-two-replicas-you-are-attempting-to-synchronize-are-from-different-replica-se.md
index 1abac9cb7dd..bd6c799350b 100644
--- a/access/Concepts/Miscellaneous/the-two-replicas-you-are-attempting-to-synchronize-are-from-different-replica-se.md
+++ b/access/Concepts/Miscellaneous/the-two-replicas-you-are-attempting-to-synchronize-are-from-different-replica-se.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Replicas from different replica sets cannot be synchronized. Make sure you have selected the proper replica for synchronization.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-type-of-synchronization-you-are-attempting-is-not-validerror-3546.md b/access/Concepts/Miscellaneous/the-type-of-synchronization-you-are-attempting-is-not-validerror-3546.md
index 1b3589784bf..961f3c7c1df 100644
--- a/access/Concepts/Miscellaneous/the-type-of-synchronization-you-are-attempting-is-not-validerror-3546.md
+++ b/access/Concepts/Miscellaneous/the-type-of-synchronization-you-are-attempting-is-not-validerror-3546.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The requested synchronization cannot be performed because of an invalid _exchange_ option in the **Synchronize** method. Use a valid synchronization type in your program.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-value-specified-is-not-a-replicaid-for-any-member-in-the-replica-seterror-34.md b/access/Concepts/Miscellaneous/the-value-specified-is-not-a-replicaid-for-any-member-in-the-replica-seterror-34.md
index b61ffb8f859..a8fd5dd0108 100644
--- a/access/Concepts/Miscellaneous/the-value-specified-is-not-a-replicaid-for-any-member-in-the-replica-seterror-34.md
+++ b/access/Concepts/Miscellaneous/the-value-specified-is-not-a-replicaid-for-any-member-in-the-replica-seterror-34.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-vba-file-failed-to-initialize-when-called-try-reinstalling-the-application-t.md b/access/Concepts/Miscellaneous/the-vba-file-failed-to-initialize-when-called-try-reinstalling-the-application-t.md
index 1eb8c48c709..e826d8ad2c3 100644
--- a/access/Concepts/Miscellaneous/the-vba-file-failed-to-initialize-when-called-try-reinstalling-the-application-t.md
+++ b/access/Concepts/Miscellaneous/the-vba-file-failed-to-initialize-when-called-try-reinstalling-the-application-t.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The Microsoft Access database engine VBA file did not initialize when it was called. Try reinstalling the application that returned the error.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-vba-file-is-missing-try-reinstalling-the-application-that-returned-the-error.md b/access/Concepts/Miscellaneous/the-vba-file-is-missing-try-reinstalling-the-application-that-returned-the-error.md
index 2cc38f1c865..cc0410c7b1c 100644
--- a/access/Concepts/Miscellaneous/the-vba-file-is-missing-try-reinstalling-the-application-that-returned-the-error.md
+++ b/access/Concepts/Miscellaneous/the-vba-file-is-missing-try-reinstalling-the-application-that-returned-the-error.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The Microsoft Access database engine VBA file could not be found.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-wait-period-for-an-event-has-timed-outerror-3531.md b/access/Concepts/Miscellaneous/the-wait-period-for-an-event-has-timed-outerror-3531.md
index d7f45d5ec9b..f0829713f08 100644
--- a/access/Concepts/Miscellaneous/the-wait-period-for-an-event-has-timed-outerror-3531.md
+++ b/access/Concepts/Miscellaneous/the-wait-period-for-an-event-has-timed-outerror-3531.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/the-width-of-a-unicode-text-column-must-be-an-even-number-of-byteserror-3702.md b/access/Concepts/Miscellaneous/the-width-of-a-unicode-text-column-must-be-an-even-number-of-byteserror-3702.md
index 8f6416373f0..868400c0eaa 100644
--- a/access/Concepts/Miscellaneous/the-width-of-a-unicode-text-column-must-be-an-even-number-of-byteserror-3702.md
+++ b/access/Concepts/Miscellaneous/the-width-of-a-unicode-text-column-must-be-an-even-number-of-byteserror-3702.md
@@ -25,9 +25,9 @@ The database stores data using the Unicode character set, in which each characte
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/there-are-fewer-records-remaining-in-the-recordset-than-you-requestederror-3641.md b/access/Concepts/Miscellaneous/there-are-fewer-records-remaining-in-the-recordset-than-you-requestederror-3641.md
index b6971b077a2..b73f1c63155 100644
--- a/access/Concepts/Miscellaneous/there-are-fewer-records-remaining-in-the-recordset-than-you-requestederror-3641.md
+++ b/access/Concepts/Miscellaneous/there-are-fewer-records-remaining-in-the-recordset-than-you-requestederror-3641.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The end of the **Recordset** has been reached.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/there-are-no-mapi-clients-installed-on-this-machine-install-a-mapi-client-such-a.md b/access/Concepts/Miscellaneous/there-are-no-mapi-clients-installed-on-this-machine-install-a-mapi-client-such-a.md
index 2a514afa5d0..9163575de16 100644
--- a/access/Concepts/Miscellaneous/there-are-no-mapi-clients-installed-on-this-machine-install-a-mapi-client-such-a.md
+++ b/access/Concepts/Miscellaneous/there-are-no-mapi-clients-installed-on-this-machine-install-a-mapi-client-such-a.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Microsoft Outlook/Exchange IISAM uses the Messaging API (MAPI) to obtain folder or address book information. To get MAPI onto your machine you must install one of the Microsoft e-mail clients that uses MAPI, such as Outlook Client, Outlook Express, or Exchange Client. Until you do this, the Outlook/Exchange IISAM cannot work.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/there-are-no-scheduled-synchronizations-between-the-two-synchronizerserror-3495.md b/access/Concepts/Miscellaneous/there-are-no-scheduled-synchronizations-between-the-two-synchronizerserror-3495.md
index 0c8376921cc..cc444b6376e 100644
--- a/access/Concepts/Miscellaneous/there-are-no-scheduled-synchronizations-between-the-two-synchronizerserror-3495.md
+++ b/access/Concepts/Miscellaneous/there-are-no-scheduled-synchronizations-between-the-two-synchronizerserror-3495.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The schedule between two Synchronizers has been deleted or you are attempting to set a schedule between the Synchronizer on your computer and itself. Use the Replication Manager to set the schedule with the correct Synchronizer.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/there-are-several-tables-with-that-name-please-specify-owner-in-the-format-owner.md b/access/Concepts/Miscellaneous/there-are-several-tables-with-that-name-please-specify-owner-in-the-format-owner.md
index f5ed9028ee7..9f27131d95b 100644
--- a/access/Concepts/Miscellaneous/there-are-several-tables-with-that-name-please-specify-owner-in-the-format-owner.md
+++ b/access/Concepts/Miscellaneous/there-are-several-tables-with-that-name-please-specify-owner-in-the-format-owner.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
More than one table with that name exists in the remote ODBC data source. To resolve the ambiguity, specify the owner of the table you want to access, using the _owner.table_ syntax.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/there-is-a-sharing-violation-in-the-source-dropbox-folder-because-the-message-da.md b/access/Concepts/Miscellaneous/there-is-a-sharing-violation-in-the-source-dropbox-folder-because-the-message-da.md
index 8e856332e23..329449e6700 100644
--- a/access/Concepts/Miscellaneous/there-is-a-sharing-violation-in-the-source-dropbox-folder-because-the-message-da.md
+++ b/access/Concepts/Miscellaneous/there-is-a-sharing-violation-in-the-source-dropbox-folder-because-the-message-da.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Close the message database. Users must not open the message database directly.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/there-is-already-a-relationship-named-name-in-the-current-databaseerror-3378.md b/access/Concepts/Miscellaneous/there-is-already-a-relationship-named-name-in-the-current-databaseerror-3378.md
index 68042a37925..982fad42f8d 100644
--- a/access/Concepts/Miscellaneous/there-is-already-a-relationship-named-name-in-the-current-databaseerror-3378.md
+++ b/access/Concepts/Miscellaneous/there-is-already-a-relationship-named-name-in-the-current-databaseerror-3378.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You must specify a unique name for each relationship you add to a database by using data-definition queries. Check to see if the name you specified exists in the **Relations** collection.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/there-is-no-active-transport-for-the-synchronizererror-3508.md b/access/Concepts/Miscellaneous/there-is-no-active-transport-for-the-synchronizererror-3508.md
index ec0e37d018a..7f994f9b9ef 100644
--- a/access/Concepts/Miscellaneous/there-is-no-active-transport-for-the-synchronizererror-3508.md
+++ b/access/Concepts/Miscellaneous/there-is-no-active-transport-for-the-synchronizererror-3508.md
@@ -28,9 +28,9 @@ You must reconfigure the Replication Manager.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/there-is-no-field-named-name-in-table-nameerror-3381.md b/access/Concepts/Miscellaneous/there-is-no-field-named-name-in-table-nameerror-3381.md
index 22d74290ec7..80928c803e9 100644
--- a/access/Concepts/Miscellaneous/there-is-no-field-named-name-in-table-nameerror-3381.md
+++ b/access/Concepts/Miscellaneous/there-is-no-field-named-name-in-table-nameerror-3381.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The specified table does not contain the specified field. Check the spelling of the field name. You should also check to see if the field name exists in the **Fields** collection.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/there-is-no-index-on-the-guid-columnerror-3550.md b/access/Concepts/Miscellaneous/there-is-no-index-on-the-guid-columnerror-3550.md
index b078c4843f7..7fba96c5efc 100644
--- a/access/Concepts/Miscellaneous/there-is-no-index-on-the-guid-columnerror-3550.md
+++ b/access/Concepts/Miscellaneous/there-is-no-index-on-the-guid-columnerror-3550.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/there-is-no-new-data-in-shared-memory-for-the-synchronizer-or-replication-manage.md b/access/Concepts/Miscellaneous/there-is-no-new-data-in-shared-memory-for-the-synchronizer-or-replication-manage.md
index 2123a7a1ad2..7fece1bff2f 100644
--- a/access/Concepts/Miscellaneous/there-is-no-new-data-in-shared-memory-for-the-synchronizer-or-replication-manage.md
+++ b/access/Concepts/Miscellaneous/there-is-no-new-data-in-shared-memory-for-the-synchronizer-or-replication-manage.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/there-is-no-suitable-replica-to-exchange-witherror-3684.md b/access/Concepts/Miscellaneous/there-is-no-suitable-replica-to-exchange-witherror-3684.md
index b2efc5f72fb..d5ca5019208 100644
--- a/access/Concepts/Miscellaneous/there-is-no-suitable-replica-to-exchange-witherror-3684.md
+++ b/access/Concepts/Miscellaneous/there-is-no-suitable-replica-to-exchange-witherror-3684.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
There are no suitable replicas to synchronize with the HTTP address supplied.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/this-expression-is-typed-incorrectly-or-it-is-too-complex-to-be-evaluated-for-ex.md b/access/Concepts/Miscellaneous/this-expression-is-typed-incorrectly-or-it-is-too-complex-to-be-evaluated-for-ex.md
index 85f56b08f55..1343b330227 100644
--- a/access/Concepts/Miscellaneous/this-expression-is-typed-incorrectly-or-it-is-too-complex-to-be-evaluated-for-ex.md
+++ b/access/Concepts/Miscellaneous/this-expression-is-typed-incorrectly-or-it-is-too-complex-to-be-evaluated-for-ex.md
@@ -25,9 +25,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/this-is-not-a-microsoft-excel-5-0-fileerror-3431.md b/access/Concepts/Miscellaneous/this-is-not-a-microsoft-excel-5-0-fileerror-3431.md
index 56fe6db1fff..4ed9ce5b913 100644
--- a/access/Concepts/Miscellaneous/this-is-not-a-microsoft-excel-5-0-fileerror-3431.md
+++ b/access/Concepts/Miscellaneous/this-is-not-a-microsoft-excel-5-0-fileerror-3431.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You attempted to read a file as a Microsoft Excel version 5.0 file, but the file is not in this format.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/this-is-not-a-valid-name-make-sure-it-is-a-valid-parameter-or-alias-name-that-it.md b/access/Concepts/Miscellaneous/this-is-not-a-valid-name-make-sure-it-is-a-valid-parameter-or-alias-name-that-it.md
index c416a94d883..565ac272e16 100644
--- a/access/Concepts/Miscellaneous/this-is-not-a-valid-name-make-sure-it-is-a-valid-parameter-or-alias-name-that-it.md
+++ b/access/Concepts/Miscellaneous/this-is-not-a-valid-name-make-sure-it-is-a-valid-parameter-or-alias-name-that-it.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The specified name does not follow standard naming conventions or is not a valid parameter or alias name. Check your entry to make sure you have not included invalid characters or punctuation and that the name is not too long.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/this-member-of-the-replica-set-has-been-logically-removed-from-the-set-and-is-no.md b/access/Concepts/Miscellaneous/this-member-of-the-replica-set-has-been-logically-removed-from-the-set-and-is-no.md
index 03d57a9d73b..48d2fe771b1 100644
--- a/access/Concepts/Miscellaneous/this-member-of-the-replica-set-has-been-logically-removed-from-the-set-and-is-no.md
+++ b/access/Concepts/Miscellaneous/this-member-of-the-replica-set-has-been-logically-removed-from-the-set-and-is-no.md
@@ -20,9 +20,9 @@ The member of the replica set you are attempting to use has been removed because
If there is data in the member that has not been synchronized with any other member in the replica set, manually enter that data in another member. You can determine which records have unsynchronized data by examining the s_Generation field in each table. A value of 0 in the s_Generation field indicates the record is an inserted or updated and has not been synchronized with another replica in the set. To view the s_Generation field, open Microsoft Access, go to the **Tools** menu, click **Options**, select the **View** tab, and then select the **System Objects** check box.
If the member is the Design Master, compare the structure of the replica with another replica in the set to determine whether any design changes have not been synchronized.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/this-operation-is-not-allowed-in-subquerieserror-3787.md b/access/Concepts/Miscellaneous/this-operation-is-not-allowed-in-subquerieserror-3787.md
index 6fde62241d7..1c2dda1b3ca 100644
--- a/access/Concepts/Miscellaneous/this-operation-is-not-allowed-in-subquerieserror-3787.md
+++ b/access/Concepts/Miscellaneous/this-operation-is-not-allowed-in-subquerieserror-3787.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for more information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/this-operation-requires-a-different-cursor-libraryerror-3663.md b/access/Concepts/Miscellaneous/this-operation-requires-a-different-cursor-libraryerror-3663.md
index dd94d0bce48..5f84e327847 100644
--- a/access/Concepts/Miscellaneous/this-operation-requires-a-different-cursor-libraryerror-3663.md
+++ b/access/Concepts/Miscellaneous/this-operation-requires-a-different-cursor-libraryerror-3663.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The cursor type selected when the recordset was opened does not support the operation being requested. Either re-open with an appropriate cursor type or use an appropriate operation for the current cursor type. This error occurs only when using ODBCDirect.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/this-property-is-not-supported-for-external-data-sources-or-for-databases-create.md b/access/Concepts/Miscellaneous/this-property-is-not-supported-for-external-data-sources-or-for-databases-create.md
index d64fe75b7cf..4e20a08bc8d 100644
--- a/access/Concepts/Miscellaneous/this-property-is-not-supported-for-external-data-sources-or-for-databases-create.md
+++ b/access/Concepts/Miscellaneous/this-property-is-not-supported-for-external-data-sources-or-for-databases-create.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You attempted to set or check a property that is not available for this object in a database stored in a Microsoft Jet database version 1.x, 2.x, or in an external data source. Search for the object in Help, and then display the Summary topic for the object to see a list of its valid properties.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/this-query-is-not-a-properly-formed-data-definition-queryerror-3357.md b/access/Concepts/Miscellaneous/this-query-is-not-a-properly-formed-data-definition-queryerror-3357.md
index 540a8dc8159..165bfc7648c 100644
--- a/access/Concepts/Miscellaneous/this-query-is-not-a-properly-formed-data-definition-queryerror-3357.md
+++ b/access/Concepts/Miscellaneous/this-query-is-not-a-properly-formed-data-definition-queryerror-3357.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This query is not a properly formed data-definition query.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/this-recordset-is-not-updatableerror-3326.md b/access/Concepts/Miscellaneous/this-recordset-is-not-updatableerror-3326.md
index bf7176589ed..c23eae48228 100644
--- a/access/Concepts/Miscellaneous/this-recordset-is-not-updatableerror-3326.md
+++ b/access/Concepts/Miscellaneous/this-recordset-is-not-updatableerror-3326.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You attempted to edit data in a field that is bound to a snapshot-type **result set** object. Snapshot fields in a Microsoft Access database engine database cannot be edited.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/this-table-contains-cells-that-are-outside-of-the-range-of-cells-defined-in-this.md b/access/Concepts/Miscellaneous/this-table-contains-cells-that-are-outside-of-the-range-of-cells-defined-in-this.md
index 6ea34d97989..165db565051 100644
--- a/access/Concepts/Miscellaneous/this-table-contains-cells-that-are-outside-of-the-range-of-cells-defined-in-this.md
+++ b/access/Concepts/Miscellaneous/this-table-contains-cells-that-are-outside-of-the-range-of-cells-defined-in-this.md
@@ -19,9 +19,9 @@ The spreadsheet file that is being read is not correctly formed. It contains dat
The file may not be a spreadsheet file or it may have become corrupted. Try reading the file into the original spreadsheet product and then re-writing it to another file. The spreadsheet product may be able to fix the errors.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/tlv-violationerror-3716.md b/access/Concepts/Miscellaneous/tlv-violationerror-3716.md
index 764eb58c440..ccca71da339 100644
--- a/access/Concepts/Miscellaneous/tlv-violationerror-3716.md
+++ b/access/Concepts/Miscellaneous/tlv-violationerror-3716.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This record contains a field value that does not meet the table level validation constraint. Either update the field value that violates the validation rule and then resubmit this conflict record, or delete this conflict record.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/to-make-changes-to-this-field-first-save-the-recorderror-3331.md b/access/Concepts/Miscellaneous/to-make-changes-to-this-field-first-save-the-recorderror-3331.md
index 416f6e06f18..98ecbacc329 100644
--- a/access/Concepts/Miscellaneous/to-make-changes-to-this-field-first-save-the-recorderror-3331.md
+++ b/access/Concepts/Miscellaneous/to-make-changes-to-this-field-first-save-the-recorderror-3331.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs when the user is trying to edit a row based on a view or stored query that is based on more than one table.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/too-few-parameters-expected-numbererror-3061.md b/access/Concepts/Miscellaneous/too-few-parameters-expected-numbererror-3061.md
index b95fd69de19..b7b237bb72f 100644
--- a/access/Concepts/Miscellaneous/too-few-parameters-expected-numbererror-3061.md
+++ b/access/Concepts/Miscellaneous/too-few-parameters-expected-numbererror-3061.md
@@ -19,9 +19,9 @@ This parameter query requires the specified number of parameters, which you did
In some cases, this message is generated when unknown field names or expressions are interpreted as query parameters. Be sure to enclose field names containing spaces or punctuation with square brackets [ ].
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/too-many-active-userserror-3239.md b/access/Concepts/Miscellaneous/too-many-active-userserror-3239.md
index 37f067d1b52..4507242bd89 100644
--- a/access/Concepts/Miscellaneous/too-many-active-userserror-3239.md
+++ b/access/Concepts/Miscellaneous/too-many-active-userserror-3239.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
In a multiuser environment, Microsoft Access database engine databases support up to 255 concurrent users. Wait for one or more users to stop using the system, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/too-many-client-taskserror-3053.md b/access/Concepts/Miscellaneous/too-many-client-taskserror-3053.md
index bcf7b4ab197..f78e7c38e71 100644
--- a/access/Concepts/Miscellaneous/too-many-client-taskserror-3053.md
+++ b/access/Concepts/Miscellaneous/too-many-client-taskserror-3053.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You have too many copies of Microsoft Visual Basic or Visual Basic applications running at the same time. Close one or more instances.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/too-many-crosstab-column-headers-valueerror-3205.md b/access/Concepts/Miscellaneous/too-many-crosstab-column-headers-valueerror-3205.md
index 49d2c7b6e3f..188b4164c26 100644
--- a/access/Concepts/Miscellaneous/too-many-crosstab-column-headers-valueerror-3205.md
+++ b/access/Concepts/Miscellaneous/too-many-crosstab-column-headers-valueerror-3205.md
@@ -19,9 +19,9 @@ You executed an SQL statement that tried to create too many columns. The specifi
You can reduce the number of columns by adding additional conditions to the WHERE clause or, if there is no WHERE clause, add one.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/too-many-expressions-in-distinct-outputerror-3089.md b/access/Concepts/Miscellaneous/too-many-expressions-in-distinct-outputerror-3089.md
index b46659c2097..1e8c8198749 100644
--- a/access/Concepts/Miscellaneous/too-many-expressions-in-distinct-outputerror-3089.md
+++ b/access/Concepts/Miscellaneous/too-many-expressions-in-distinct-outputerror-3089.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You created an SQL statement that has an ALL, DISTINCT, or DISTINCTROW predicate with more than ten expressions. Remove the DISTINCT reserved word, or remove some of the fields listed in the DISTINCT predicate.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/too-many-expressions-in-group-by-clauseerror-3087.md b/access/Concepts/Miscellaneous/too-many-expressions-in-group-by-clauseerror-3087.md
index 9abe5c8fb21..f0d2d7c8ad0 100644
--- a/access/Concepts/Miscellaneous/too-many-expressions-in-group-by-clauseerror-3087.md
+++ b/access/Concepts/Miscellaneous/too-many-expressions-in-group-by-clauseerror-3087.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You created an SQL statement with more than 10 fields listed in the GROUP BY clause. Remove some of the fields listed in the GROUP BY clause.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/too-many-expressions-in-order-by-clauseerror-3088.md b/access/Concepts/Miscellaneous/too-many-expressions-in-order-by-clauseerror-3088.md
index a6373df6a74..95545c312d8 100644
--- a/access/Concepts/Miscellaneous/too-many-expressions-in-order-by-clauseerror-3088.md
+++ b/access/Concepts/Miscellaneous/too-many-expressions-in-order-by-clauseerror-3088.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You created an SQL statement that has an ORDER BY clause with more than ten expressions. Remove some of the fields listed in the ORDER BY clause.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/too-many-fastfind-sessions-were-invokederror-3408.md b/access/Concepts/Miscellaneous/too-many-fastfind-sessions-were-invokederror-3408.md
index 53e4c56d20c..94c4980815b 100644
--- a/access/Concepts/Miscellaneous/too-many-fastfind-sessions-were-invokederror-3408.md
+++ b/access/Concepts/Miscellaneous/too-many-fastfind-sessions-were-invokederror-3408.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
DAO's FIND method can only be executed once on a table or recordset.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/too-many-fields-definederror-3190.md b/access/Concepts/Miscellaneous/too-many-fields-definederror-3190.md
index 7e26d20c012..91397ba8854 100644
--- a/access/Concepts/Miscellaneous/too-many-fields-definederror-3190.md
+++ b/access/Concepts/Miscellaneous/too-many-fields-definederror-3190.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to perform an operation that involves more than 255 fields. Reduce the number of fields, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/too-many-memo-or-ole-object-fieldserror-3054.md b/access/Concepts/Miscellaneous/too-many-memo-or-ole-object-fieldserror-3054.md
index 2a2436d31a1..93b05085349 100644
--- a/access/Concepts/Miscellaneous/too-many-memo-or-ole-object-fieldserror-3054.md
+++ b/access/Concepts/Miscellaneous/too-many-memo-or-ole-object-fieldserror-3054.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to perform a Btrieve operation that involves too many Memo or OLE Object fields. Reduce the number of Memo and OLE Object fields, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/topvalues-property.md b/access/Concepts/Miscellaneous/topvalues-property.md
index 5b0a5672858..a8abd2697a4 100644
--- a/access/Concepts/Miscellaneous/topvalues-property.md
+++ b/access/Concepts/Miscellaneous/topvalues-property.md
@@ -79,9 +79,9 @@ Me.RecordSource = strGetSQL
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/troubleshooting.md b/access/Concepts/Miscellaneous/troubleshooting.md
index 8d6bb88901f..57120d50914 100644
--- a/access/Concepts/Miscellaneous/troubleshooting.md
+++ b/access/Concepts/Miscellaneous/troubleshooting.md
@@ -25,9 +25,9 @@ When you have trouble with MDAC technologies, try the following resources to get
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/two-members-of-the-replica-set-cannot-be-synchronized-because-there-is-no-common.md b/access/Concepts/Miscellaneous/two-members-of-the-replica-set-cannot-be-synchronized-because-there-is-no-common.md
index 3bca627b0d3..437cf7aac16 100644
--- a/access/Concepts/Miscellaneous/two-members-of-the-replica-set-cannot-be-synchronized-because-there-is-no-common.md
+++ b/access/Concepts/Miscellaneous/two-members-of-the-replica-set-cannot-be-synchronized-because-there-is-no-common.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Too much time has passed since these two members of the replica set were last synchronized. The Microsoft Access database engine cannot find a common point of reference to begin applying changes in the content or structure of the database.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/type-mismatch-in-join-expressionerror-3615.md b/access/Concepts/Miscellaneous/type-mismatch-in-join-expressionerror-3615.md
index 511d100af2a..a7c6b9c11cd 100644
--- a/access/Concepts/Miscellaneous/type-mismatch-in-join-expressionerror-3615.md
+++ b/access/Concepts/Miscellaneous/type-mismatch-in-join-expressionerror-3615.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
A JOIN expression is attempting to join two tables on fields of incompatible data types. For example, you will get this error if you attempt to join a Memo field with a Text field.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/type-property-columnadox.md b/access/Concepts/Miscellaneous/type-property-columnadox.md
index 08fa6249693..77c6cc76617 100644
--- a/access/Concepts/Miscellaneous/type-property-columnadox.md
+++ b/access/Concepts/Miscellaneous/type-property-columnadox.md
@@ -24,9 +24,9 @@ This property is read/write until the [Column](http://msdn.microsoft.com/library
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/type-property-example-fieldvj-plus-plus.md b/access/Concepts/Miscellaneous/type-property-example-fieldvj-plus-plus.md
index d04dd53deec..d3edf855f64 100644
--- a/access/Concepts/Miscellaneous/type-property-example-fieldvj-plus-plus.md
+++ b/access/Concepts/Miscellaneous/type-property-example-fieldvj-plus-plus.md
@@ -169,9 +169,9 @@ public class TypeFieldX
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/type-property-example-propertyvj-plus-plus.md b/access/Concepts/Miscellaneous/type-property-example-propertyvj-plus-plus.md
index cb8a5914059..ea263372bd0 100644
--- a/access/Concepts/Miscellaneous/type-property-example-propertyvj-plus-plus.md
+++ b/access/Concepts/Miscellaneous/type-property-example-propertyvj-plus-plus.md
@@ -262,9 +262,9 @@ public class TypePropertyX
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/type-property-keyadox.md b/access/Concepts/Miscellaneous/type-property-keyadox.md
index 1d60a0f7f19..d2cf97da4f9 100644
--- a/access/Concepts/Miscellaneous/type-property-keyadox.md
+++ b/access/Concepts/Miscellaneous/type-property-keyadox.md
@@ -24,9 +24,9 @@ This property is read-only on [Key](http://msdn.microsoft.com/library/727198ec-5
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/type-property-tableadox.md b/access/Concepts/Miscellaneous/type-property-tableadox.md
index b334f966dcf..4348060313b 100644
--- a/access/Concepts/Miscellaneous/type-property-tableadox.md
+++ b/access/Concepts/Miscellaneous/type-property-tableadox.md
@@ -24,9 +24,9 @@ This property is read-only.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/unable-to-change-column-level-tracking-property-on-objects-that-are-already-repl.md b/access/Concepts/Miscellaneous/unable-to-change-column-level-tracking-property-on-objects-that-are-already-repl.md
index 713235c0c6c..9197ca2784c 100644
--- a/access/Concepts/Miscellaneous/unable-to-change-column-level-tracking-property-on-objects-that-are-already-repl.md
+++ b/access/Concepts/Miscellaneous/unable-to-change-column-level-tracking-property-on-objects-that-are-already-repl.md
@@ -19,9 +19,9 @@ Once an object is made replicable, the Column Level Tracking Property cannot be
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/unable-to-delete-the-specified-registry-parameter-for-the-synchronizererror-3551.md b/access/Concepts/Miscellaneous/unable-to-delete-the-specified-registry-parameter-for-the-synchronizererror-3551.md
index eca8d732a2a..db8b4d176ed 100644
--- a/access/Concepts/Miscellaneous/unable-to-delete-the-specified-registry-parameter-for-the-synchronizererror-3551.md
+++ b/access/Concepts/Miscellaneous/unable-to-delete-the-specified-registry-parameter-for-the-synchronizererror-3551.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You need to reconfigure the Synchronizer on your computer.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/unable-to-load-jet-sql-server-reconcilermsrpjt40-dllerror-3775.md b/access/Concepts/Miscellaneous/unable-to-load-jet-sql-server-reconcilermsrpjt40-dllerror-3775.md
index 7f9b997d4af..1d392464375 100644
--- a/access/Concepts/Miscellaneous/unable-to-load-jet-sql-server-reconcilermsrpjt40-dllerror-3775.md
+++ b/access/Concepts/Miscellaneous/unable-to-load-jet-sql-server-reconcilermsrpjt40-dllerror-3775.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You are trying to execute an operation between a Microsoft Jet Subscriber and an SQL Publication. The file msrpjt40.dll cannot be found on the specified path or is not registered.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/unable-to-retrieve-the-specified-registry-parameter-for-the-synchronizererror-34.md b/access/Concepts/Miscellaneous/unable-to-retrieve-the-specified-registry-parameter-for-the-synchronizererror-34.md
index cab6fa71439..27712a44429 100644
--- a/access/Concepts/Miscellaneous/unable-to-retrieve-the-specified-registry-parameter-for-the-synchronizererror-34.md
+++ b/access/Concepts/Miscellaneous/unable-to-retrieve-the-specified-registry-parameter-for-the-synchronizererror-34.md
@@ -28,9 +28,9 @@ You need to reconfigure the Synchronizer on your computer.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/unable-to-set-a-schedule-for-the-synchronizererror-3497.md b/access/Concepts/Miscellaneous/unable-to-set-a-schedule-for-the-synchronizererror-3497.md
index a8d70deeb1e..476c1ac3b82 100644
--- a/access/Concepts/Miscellaneous/unable-to-set-a-schedule-for-the-synchronizererror-3497.md
+++ b/access/Concepts/Miscellaneous/unable-to-set-a-schedule-for-the-synchronizererror-3497.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
There was an internal problem setting the schedule. Try again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/undefined-function-name-in-expressionerror-3085.md b/access/Concepts/Miscellaneous/undefined-function-name-in-expressionerror-3085.md
index 92e125940c5..5825d3c3904 100644
--- a/access/Concepts/Miscellaneous/undefined-function-name-in-expressionerror-3085.md
+++ b/access/Concepts/Miscellaneous/undefined-function-name-in-expressionerror-3085.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You entered an SQL expression that includes a **Function** procedure name that cannot be recognized. Make sure the function exists, that it can be used in SQL expressions, or check the expression to make sure you entered the name correctly.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/unexpected-error-from-external-database-driver-error-numbererror-3275.md b/access/Concepts/Miscellaneous/unexpected-error-from-external-database-driver-error-numbererror-3275.md
index edc330becf3..35f05f22f0d 100644
--- a/access/Concepts/Miscellaneous/unexpected-error-from-external-database-driver-error-numbererror-3275.md
+++ b/access/Concepts/Miscellaneous/unexpected-error-from-external-database-driver-error-numbererror-3275.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The specified external database driver returned an error. This error can be caused by performing an operation not supported on this type of external database.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/unions-not-allowed-in-a-subqueryerror-3361.md b/access/Concepts/Miscellaneous/unions-not-allowed-in-a-subqueryerror-3361.md
index 0f2d9081945..cb7c94e4ebf 100644
--- a/access/Concepts/Miscellaneous/unions-not-allowed-in-a-subqueryerror-3361.md
+++ b/access/Concepts/Miscellaneous/unions-not-allowed-in-a-subqueryerror-3361.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You cannot use a UNION operation in a subquery expression. To use a union query in a subquery, first create the union query and save it as a named query. Then include the name of the saved query in your subquery expression.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/unique-key-violationerror-3715.md b/access/Concepts/Miscellaneous/unique-key-violationerror-3715.md
index 35e8cd262d1..088ddd079af 100644
--- a/access/Concepts/Miscellaneous/unique-key-violationerror-3715.md
+++ b/access/Concepts/Miscellaneous/unique-key-violationerror-3715.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This record has the same key value as another record; however, only unique values are permitted. Either change the key value in this conflict record or in the winning record and then resubmit this record, or delete this conflict record.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/unique-property.md b/access/Concepts/Miscellaneous/unique-property.md
index 3ca8a144342..afe765dfac6 100644
--- a/access/Concepts/Miscellaneous/unique-property.md
+++ b/access/Concepts/Miscellaneous/unique-property.md
@@ -41,9 +41,9 @@ An index is the primary index for a table if its **Primary** property is set to
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/uniquerecords-property.md b/access/Concepts/Miscellaneous/uniquerecords-property.md
index fe7f3a46a2c..9f9abae9774 100644
--- a/access/Concepts/Miscellaneous/uniquerecords-property.md
+++ b/access/Concepts/Miscellaneous/uniquerecords-property.md
@@ -87,9 +87,9 @@ ON Customers.CustomerID = Orders.CustomerID;
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/uniquevalues-property.md b/access/Concepts/Miscellaneous/uniquevalues-property.md
index a5b711eabc1..626a85d1fef 100644
--- a/access/Concepts/Miscellaneous/uniquevalues-property.md
+++ b/access/Concepts/Miscellaneous/uniquevalues-property.md
@@ -79,9 +79,9 @@ FROM Customers;
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/unknown-function-name-in-validation-expression-or-default-value-on-nameerror-338.md b/access/Concepts/Miscellaneous/unknown-function-name-in-validation-expression-or-default-value-on-nameerror-338.md
index 465936f3831..7ce2363a06a 100644
--- a/access/Concepts/Miscellaneous/unknown-function-name-in-validation-expression-or-default-value-on-nameerror-338.md
+++ b/access/Concepts/Miscellaneous/unknown-function-name-in-validation-expression-or-default-value-on-nameerror-338.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The function you are referencing is either unknown (because the name is invalid or misspelled) or is a type of function not allowed by the **ValidationRule** or **DefaultValue** property. Among the types of functions not allowed are user-defined, SQL aggregate functions.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/unknown-function-nameerror-2425.md b/access/Concepts/Miscellaneous/unknown-function-nameerror-2425.md
index 06ddbad1d0d..416cd1987a1 100644
--- a/access/Concepts/Miscellaneous/unknown-function-nameerror-2425.md
+++ b/access/Concepts/Miscellaneous/unknown-function-nameerror-2425.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You entered an expression with a function name that cannot be recognized. Make sure the function exists, or check the expression to make sure you entered it correctly.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/unknown-nameerror-2424.md b/access/Concepts/Miscellaneous/unknown-nameerror-2424.md
index c3a905a6224..1e20c9a4783 100644
--- a/access/Concepts/Miscellaneous/unknown-nameerror-2424.md
+++ b/access/Concepts/Miscellaneous/unknown-nameerror-2424.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You entered an expression that has a field or property name that cannot be recognized. Make sure the object exists, or check the expression to make sure you entered it correctly.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/unknown-or-invalid-field-reference-nameerror-3345.md b/access/Concepts/Miscellaneous/unknown-or-invalid-field-reference-nameerror-3345.md
index f9c9373851a..ab93ee4417a 100644
--- a/access/Concepts/Miscellaneous/unknown-or-invalid-field-reference-nameerror-3345.md
+++ b/access/Concepts/Miscellaneous/unknown-or-invalid-field-reference-nameerror-3345.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Your expression refers to a field incorrectly or to a field that does not exist. Check to make sure the field name is correct.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/unrecognized-database-format-filenameerror-3343.md b/access/Concepts/Miscellaneous/unrecognized-database-format-filenameerror-3343.md
index 31d41f05faa..886d94453e9 100644
--- a/access/Concepts/Miscellaneous/unrecognized-database-format-filenameerror-3343.md
+++ b/access/Concepts/Miscellaneous/unrecognized-database-format-filenameerror-3343.md
@@ -33,9 +33,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/update-delete-conflictthis-updated-record-was-deleted-at-another-replicaerror-37.md b/access/Concepts/Miscellaneous/update-delete-conflictthis-updated-record-was-deleted-at-another-replicaerror-37.md
index ea474179fc5..5100155a36a 100644
--- a/access/Concepts/Miscellaneous/update-delete-conflictthis-updated-record-was-deleted-at-another-replicaerror-37.md
+++ b/access/Concepts/Miscellaneous/update-delete-conflictthis-updated-record-was-deleted-at-another-replicaerror-37.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
When a record is deleted at one replica, but updated at another replica, the deleted record always wins in the conflict that occurs when the two replicas synchronize. The updated record is logged in the conflict table. To reverse the initial resolution of the conflict, reinsert the conflict record. To accept the current resolution, delete the conflict record.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/update-ri-conflicterror-3718.md b/access/Concepts/Miscellaneous/update-ri-conflicterror-3718.md
index 8a0e5c21241..86424631487 100644
--- a/access/Concepts/Miscellaneous/update-ri-conflicterror-3718.md
+++ b/access/Concepts/Miscellaneous/update-ri-conflicterror-3718.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The primary key record has been updated by another replica, therefore this referencing record has been rejected. Either create a new primary key record that satisfies the referential integrity constraint and then resubmit your update, modify the foreign key value in this conflict record to match a valid primary key value and then resubmit your update, or delete this conflict record.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/update-update-conflicterror-3713.md b/access/Concepts/Miscellaneous/update-update-conflicterror-3713.md
index a20c7591ade..45d6025173d 100644
--- a/access/Concepts/Miscellaneous/update-update-conflicterror-3713.md
+++ b/access/Concepts/Miscellaneous/update-update-conflicterror-3713.md
@@ -19,9 +19,9 @@ ms.date: 06/08/2017
This record contains a field value that lost in the conflict with another replica. Either resubmit this conflict record or delete this conflict record.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/updating-data-in-a-linked-table-is-not-supported-by-this-isamerror-3616.md b/access/Concepts/Miscellaneous/updating-data-in-a-linked-table-is-not-supported-by-this-isamerror-3616.md
index c2c2e08403e..5a717794bfa 100644
--- a/access/Concepts/Miscellaneous/updating-data-in-a-linked-table-is-not-supported-by-this-isamerror-3616.md
+++ b/access/Concepts/Miscellaneous/updating-data-in-a-linked-table-is-not-supported-by-this-isamerror-3616.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The installable ISAM you are using does not allow updates to records in external tables. You can only add new records.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/url-property-example-vbscript.md b/access/Concepts/Miscellaneous/url-property-example-vbscript.md
index dad7cb83695..253db97d0e6 100644
--- a/access/Concepts/Miscellaneous/url-property-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/url-property-example-vbscript.md
@@ -137,9 +137,9 @@ Set Cnxn = Nothing
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/use-default-paper-size-property.md b/access/Concepts/Miscellaneous/use-default-paper-size-property.md
index 11ace9e6022..41cee5e96f2 100644
--- a/access/Concepts/Miscellaneous/use-default-paper-size-property.md
+++ b/access/Concepts/Miscellaneous/use-default-paper-size-property.md
@@ -34,9 +34,9 @@ For example, you might design a form or report while connected to a printer that
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/user-defined-properties-do-not-support-a-null-valueerror-3385.md b/access/Concepts/Miscellaneous/user-defined-properties-do-not-support-a-null-valueerror-3385.md
index 4fb824e8bcd..aac260dc315 100644
--- a/access/Concepts/Miscellaneous/user-defined-properties-do-not-support-a-null-valueerror-3385.md
+++ b/access/Concepts/Miscellaneous/user-defined-properties-do-not-support-a-null-valueerror-3385.md
@@ -19,9 +19,9 @@ User-defined **Property** objects cannot be set to **Null**. Instead, use the *
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/using-regedit-exe-to-overwrite-the-default-settings.md b/access/Concepts/Miscellaneous/using-regedit-exe-to-overwrite-the-default-settings.md
index 8894d0982af..158c7441e22 100644
--- a/access/Concepts/Miscellaneous/using-regedit-exe-to-overwrite-the-default-settings.md
+++ b/access/Concepts/Miscellaneous/using-regedit-exe-to-overwrite-the-default-settings.md
@@ -19,9 +19,9 @@ To customize the Microsoft® Windows® Registry settings, you can use Regedit.ex
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/using-source-code-control-in-your-development-environment.md b/access/Concepts/Miscellaneous/using-source-code-control-in-your-development-environment.md
index 628833d1e18..a504b5426c4 100644
--- a/access/Concepts/Miscellaneous/using-source-code-control-in-your-development-environment.md
+++ b/access/Concepts/Miscellaneous/using-source-code-control-in-your-development-environment.md
@@ -45,9 +45,9 @@ When you have your development projects under Visual SourceSafe control, the con
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/using-the-connection-properties-in-the-microsoft-ole-db-provider-for-access.md b/access/Concepts/Miscellaneous/using-the-connection-properties-in-the-microsoft-ole-db-provider-for-access.md
index 1d0751d49d7..b5570f3cc3d 100644
--- a/access/Concepts/Miscellaneous/using-the-connection-properties-in-the-microsoft-ole-db-provider-for-access.md
+++ b/access/Concepts/Miscellaneous/using-the-connection-properties-in-the-microsoft-ole-db-provider-for-access.md
@@ -33,9 +33,9 @@ Jet OLEDB:Recycle Long-Valued Pages
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/using-the-setoption-method-from-dao.md b/access/Concepts/Miscellaneous/using-the-setoption-method-from-dao.md
index 576c192f125..95c43979541 100644
--- a/access/Concepts/Miscellaneous/using-the-setoption-method-from-dao.md
+++ b/access/Concepts/Miscellaneous/using-the-setoption-method-from-dao.md
@@ -45,9 +45,9 @@ The names of defined constants are the same as the registry name with db added a
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/validation-rules-and-default-values-cannot-be-placed-on-system-or-linked-tablese.md b/access/Concepts/Miscellaneous/validation-rules-and-default-values-cannot-be-placed-on-system-or-linked-tablese.md
index 09c1ef3a1ae..c4e1e4488dd 100644
--- a/access/Concepts/Miscellaneous/validation-rules-and-default-values-cannot-be-placed-on-system-or-linked-tablese.md
+++ b/access/Concepts/Miscellaneous/validation-rules-and-default-values-cannot-be-placed-on-system-or-linked-tablese.md
@@ -19,9 +19,9 @@ You are trying to set the **DefaultValue**, **ValidationRule**, **ValidationTex
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/values-specified-in-a-top-clause-are-not-allowed-in-delete-queries-or-reportserr.md b/access/Concepts/Miscellaneous/values-specified-in-a-top-clause-are-not-allowed-in-delete-queries-or-reportserr.md
index 0b2bf707978..7377eb0d642 100644
--- a/access/Concepts/Miscellaneous/values-specified-in-a-top-clause-are-not-allowed-in-delete-queries-or-reportserr.md
+++ b/access/Concepts/Miscellaneous/values-specified-in-a-top-clause-are-not-allowed-in-delete-queries-or-reportserr.md
@@ -19,9 +19,9 @@ Top values, that is, those specified in a TOP clause of a SELECT statement, are
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/view-can-not-contain-a-parameter-error-3730.md b/access/Concepts/Miscellaneous/view-can-not-contain-a-parameter-error-3730.md
index 63274d520f0..a0d36662072 100644
--- a/access/Concepts/Miscellaneous/view-can-not-contain-a-parameter-error-3730.md
+++ b/access/Concepts/Miscellaneous/view-can-not-contain-a-parameter-error-3730.md
@@ -19,9 +19,9 @@ This error occurs when trying to create a view from SQL DDL. If the SELECT state
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/violates-the-rules-for-partial-replicaserror-3590.md b/access/Concepts/Miscellaneous/violates-the-rules-for-partial-replicaserror-3590.md
index e055df7bbe4..4b938d28e98 100644
--- a/access/Concepts/Miscellaneous/violates-the-rules-for-partial-replicaserror-3590.md
+++ b/access/Concepts/Miscellaneous/violates-the-rules-for-partial-replicaserror-3590.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You cannot update a column in a table in a partial replica when another table references that column. Most likely, this is an update RI case, where the related table information does not exist in the partial replica. Make sure you follow all relationships to related tables when defining your Partial Filters.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/wait-for-post-processing.md b/access/Concepts/Miscellaneous/wait-for-post-processing.md
index 96a6fdaae39..cbf2e5df419 100644
--- a/access/Concepts/Miscellaneous/wait-for-post-processing.md
+++ b/access/Concepts/Miscellaneous/wait-for-post-processing.md
@@ -35,9 +35,9 @@ This property is designed to work with Access 2010 web databases only. When this
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/while-loading-the-microsoft-excel-installable-isam-ole-was-unable-to-initializee.md b/access/Concepts/Miscellaneous/while-loading-the-microsoft-excel-installable-isam-ole-was-unable-to-initializee.md
index 7b90c897393..d6df85f6164 100644
--- a/access/Concepts/Miscellaneous/while-loading-the-microsoft-excel-installable-isam-ole-was-unable-to-initializee.md
+++ b/access/Concepts/Miscellaneous/while-loading-the-microsoft-excel-installable-isam-ole-was-unable-to-initializee.md
@@ -19,9 +19,9 @@ OLE Automation was unable to initialize while loading the Microsoft Excel instal
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/without-administrator-permission-replica-priority-must-be-in-the-range-0numberer.md b/access/Concepts/Miscellaneous/without-administrator-permission-replica-priority-must-be-in-the-range-0numberer.md
index c7ff63aa683..f7841e51f53 100644
--- a/access/Concepts/Miscellaneous/without-administrator-permission-replica-priority-must-be-in-the-range-0numberer.md
+++ b/access/Concepts/Miscellaneous/without-administrator-permission-replica-priority-must-be-in-the-range-0numberer.md
@@ -19,9 +19,9 @@ Without Administrator permission, replica priority must be in the range of 0 and
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/writing-your-own-customized-handler.md b/access/Concepts/Miscellaneous/writing-your-own-customized-handler.md
index d5b8da4128e..fc9a022f046 100644
--- a/access/Concepts/Miscellaneous/writing-your-own-customized-handler.md
+++ b/access/Concepts/Miscellaneous/writing-your-own-customized-handler.md
@@ -100,9 +100,9 @@ HRESULT _stdcall GetRecordset(
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Miscellaneous/wrong-data-type-for-parameter-parametererror-3060.md b/access/Concepts/Miscellaneous/wrong-data-type-for-parameter-parametererror-3060.md
index a0c2faf42cf..756a0f42ca6 100644
--- a/access/Concepts/Miscellaneous/wrong-data-type-for-parameter-parametererror-3060.md
+++ b/access/Concepts/Miscellaneous/wrong-data-type-for-parameter-parametererror-3060.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to use an argument with a data type that conflicts with the data type defined for this parameter. For example, you might have tried to use a string expression that expects a numeric argument with a parameter. Use an argument that has the correct data type, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/wrong-number-of-arguments-used-with-functionerror-2439.md b/access/Concepts/Miscellaneous/wrong-number-of-arguments-used-with-functionerror-2439.md
index 75e2bb48d57..b133332c8a9 100644
--- a/access/Concepts/Miscellaneous/wrong-number-of-arguments-used-with-functionerror-2439.md
+++ b/access/Concepts/Miscellaneous/wrong-number-of-arguments-used-with-functionerror-2439.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You entered an expression that has a function with the wrong number of arguments. Check the function to verify how many arguments it takes, or check the expression to make sure you entered it correctly.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-attempted-to-delete-or-get-information-about-a-partial-filter-that-does-not.md b/access/Concepts/Miscellaneous/you-attempted-to-delete-or-get-information-about-a-partial-filter-that-does-not.md
index cb249747e1c..34e9fc9b608 100644
--- a/access/Concepts/Miscellaneous/you-attempted-to-delete-or-get-information-about-a-partial-filter-that-does-not.md
+++ b/access/Concepts/Miscellaneous/you-attempted-to-delete-or-get-information-about-a-partial-filter-that-does-not.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for further information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-attempted-to-link-or-import-a-microsoft-word-mail-merge-file-although-you-ca.md b/access/Concepts/Miscellaneous/you-attempted-to-link-or-import-a-microsoft-word-mail-merge-file-although-you-ca.md
index 268db6e5a49..21fcac6f14f 100644
--- a/access/Concepts/Miscellaneous/you-attempted-to-link-or-import-a-microsoft-word-mail-merge-file-although-you-ca.md
+++ b/access/Concepts/Miscellaneous/you-attempted-to-link-or-import-a-microsoft-word-mail-merge-file-although-you-ca.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You attempted to link or import a Microsoft Word mail merge file. Although you can export such files, you cannot link or import them.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-attempted-to-open-a-database-that-is-already-opened-by-user-name-on-machine.md b/access/Concepts/Miscellaneous/you-attempted-to-open-a-database-that-is-already-opened-by-user-name-on-machine.md
index 02624730cb6..992b04db890 100644
--- a/access/Concepts/Miscellaneous/you-attempted-to-open-a-database-that-is-already-opened-by-user-name-on-machine.md
+++ b/access/Concepts/Miscellaneous/you-attempted-to-open-a-database-that-is-already-opened-by-user-name-on-machine.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This error occurs if the database is opened exclusively and is not shared. This error occurs if a user creates a new database in DAO, ADO, or Microsoft Access and does not close the database. Other users can open the database, but they will get the above error message.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-attempted-to-open-a-database-that-is-already-opened-exclusively-by-user-name.md b/access/Concepts/Miscellaneous/you-attempted-to-open-a-database-that-is-already-opened-exclusively-by-user-name.md
index 8c5c6abe6a0..0a3b04649e3 100644
--- a/access/Concepts/Miscellaneous/you-attempted-to-open-a-database-that-is-already-opened-exclusively-by-user-name.md
+++ b/access/Concepts/Miscellaneous/you-attempted-to-open-a-database-that-is-already-opened-exclusively-by-user-name.md
@@ -25,9 +25,9 @@ Possible causes:
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-cannot-add-a-second-replication-id-autonumber-field-to-a-tableerror-3486.md b/access/Concepts/Miscellaneous/you-cannot-add-a-second-replication-id-autonumber-field-to-a-tableerror-3486.md
index 01afdfa1b91..4636f2fe5cb 100644
--- a/access/Concepts/Miscellaneous/you-cannot-add-a-second-replication-id-autonumber-field-to-a-tableerror-3486.md
+++ b/access/Concepts/Miscellaneous/you-cannot-add-a-second-replication-id-autonumber-field-to-a-tableerror-3486.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The table you are attempting to change already has one field that uses the Replication ID AutoNumber (or GUID) data type. If you are attempting to create a second Replication ID field to serve as a foreign key, use the Number data type instead of the AutoNumber data type.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-cannot-add-or-change-a-record-because-a-related-record-is-required-in-table.md b/access/Concepts/Miscellaneous/you-cannot-add-or-change-a-record-because-a-related-record-is-required-in-table.md
index a7a8b25581d..2c5cee39658 100644
--- a/access/Concepts/Miscellaneous/you-cannot-add-or-change-a-record-because-a-related-record-is-required-in-table.md
+++ b/access/Concepts/Miscellaneous/you-cannot-add-or-change-a-record-because-a-related-record-is-required-in-table.md
@@ -19,9 +19,9 @@ You tried to perform an operation that would have violated referential integrity
If you want to add or change the record, first add a record to the "one" table that contains the same value for the matching field.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-cannot-change-the-data-master-attribute-for-the-replica-set-it-allows-data-c.md b/access/Concepts/Miscellaneous/you-cannot-change-the-data-master-attribute-for-the-replica-set-it-allows-data-c.md
index e3f4185c844..832d8f382bc 100644
--- a/access/Concepts/Miscellaneous/you-cannot-change-the-data-master-attribute-for-the-replica-set-it-allows-data-c.md
+++ b/access/Concepts/Miscellaneous/you-cannot-change-the-data-master-attribute-for-the-replica-set-it-allows-data-c.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Whether a replicated database allows users to change data only at the Design Master or at all replicas is determined when the database is first converted into a Design Master. After the database has been converted, the single or multiple data master attribute cannot be changed.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-cannot-change-the-data-master-attribute-for-the-replica-seterror-3593.md b/access/Concepts/Miscellaneous/you-cannot-change-the-data-master-attribute-for-the-replica-seterror-3593.md
index 6e8036eb594..9bfdebd774e 100644
--- a/access/Concepts/Miscellaneous/you-cannot-change-the-data-master-attribute-for-the-replica-seterror-3593.md
+++ b/access/Concepts/Miscellaneous/you-cannot-change-the-data-master-attribute-for-the-replica-seterror-3593.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Whether a replica set allows users to change data at all replicas or only at the Design Master is determined when the database is first converted into a Design Master. After the database has been converted, the single or multiple data master attribute cannot be changed.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-cannot-establish-or-maintain-an-enforced-relationship-between-a-replicated-t.md b/access/Concepts/Miscellaneous/you-cannot-establish-or-maintain-an-enforced-relationship-between-a-replicated-t.md
index 182f74290dd..defde12a0be 100644
--- a/access/Concepts/Miscellaneous/you-cannot-establish-or-maintain-an-enforced-relationship-between-a-replicated-t.md
+++ b/access/Concepts/Miscellaneous/you-cannot-establish-or-maintain-an-enforced-relationship-between-a-replicated-t.md
@@ -28,9 +28,9 @@ You are attempting to establish or maintain an enforced relationship between a r
Delete the relationship between the two tables before proceeding.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-cannot-make-a-database-replicable-that-is-being-used-by-a-program-that-contr.md b/access/Concepts/Miscellaneous/you-cannot-make-a-database-replicable-that-is-being-used-by-a-program-that-contr.md
index 37a9de67878..a242ffe0753 100644
--- a/access/Concepts/Miscellaneous/you-cannot-make-a-database-replicable-that-is-being-used-by-a-program-that-contr.md
+++ b/access/Concepts/Miscellaneous/you-cannot-make-a-database-replicable-that-is-being-used-by-a-program-that-contr.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The database you are trying to replicate is controlled by a database program that does not support replication. To be able to make the database replicable you must ensure it is not being controlled by the source control program.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-cannot-make-changes-to-the-design-of-the-database-at-this-replicaerror-3452.md b/access/Concepts/Miscellaneous/you-cannot-make-changes-to-the-design-of-the-database-at-this-replicaerror-3452.md
index b521bb2feda..bbf2a0e4783 100644
--- a/access/Concepts/Miscellaneous/you-cannot-make-changes-to-the-design-of-the-database-at-this-replicaerror-3452.md
+++ b/access/Concepts/Miscellaneous/you-cannot-make-changes-to-the-design-of-the-database-at-this-replicaerror-3452.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Changes to the design of a replicated database can be made only at the Design Master. The replica you are attempting to change is not the Design Master for the replica set. Locate the Design Master and make your changes there.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-cannot-modify-the-replication-system-object-nameerror-3665.md b/access/Concepts/Miscellaneous/you-cannot-modify-the-replication-system-object-nameerror-3665.md
index d027dd682b0..6684a5e44d5 100644
--- a/access/Concepts/Miscellaneous/you-cannot-modify-the-replication-system-object-nameerror-3665.md
+++ b/access/Concepts/Miscellaneous/you-cannot-modify-the-replication-system-object-nameerror-3665.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You are trying to execute an invalid operation, such as deleting a system table, renaming a system table, or deleting a replication system column, on an internal replication system object.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-cannot-modify-the-replication-system-object-nameerror-3666.md b/access/Concepts/Miscellaneous/you-cannot-modify-the-replication-system-object-nameerror-3666.md
index 40d924cda19..a3afe7e849d 100644
--- a/access/Concepts/Miscellaneous/you-cannot-modify-the-replication-system-object-nameerror-3666.md
+++ b/access/Concepts/Miscellaneous/you-cannot-modify-the-replication-system-object-nameerror-3666.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You are trying to execute an invalid operation, such as deleting a system table, renaming a table, or deleting a replication column, on an internal replication system object.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-cannot-replicate-a-password-protected-database-or-set-password-protection-on.md b/access/Concepts/Miscellaneous/you-cannot-replicate-a-password-protected-database-or-set-password-protection-on.md
index b97726d5472..20fc9292f08 100644
--- a/access/Concepts/Miscellaneous/you-cannot-replicate-a-password-protected-database-or-set-password-protection-on.md
+++ b/access/Concepts/Miscellaneous/you-cannot-replicate-a-password-protected-database-or-set-password-protection-on.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
If a database password is set on the database, remove the password.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-cannot-set-the-keeplocal-property-for-an-object-that-is-already-replicateder.md b/access/Concepts/Miscellaneous/you-cannot-set-the-keeplocal-property-for-an-object-that-is-already-replicateder.md
index b43dd688124..e6538acdbd0 100644
--- a/access/Concepts/Miscellaneous/you-cannot-set-the-keeplocal-property-for-an-object-that-is-already-replicateder.md
+++ b/access/Concepts/Miscellaneous/you-cannot-set-the-keeplocal-property-for-an-object-that-is-already-replicateder.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The **KeepLocal** property cannot be set on a replicated object. Setting a local object's **KeepLocal** property after the database has been replicated has no effect on the object. If you want to keep an object from being replicated to the other replicas in the set, set the object's **Replicable** property to "F".
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-cannot-use-odbc-to-import-from-export-to-or-link-an-external-microsoft-jet-o.md b/access/Concepts/Miscellaneous/you-cannot-use-odbc-to-import-from-export-to-or-link-an-external-microsoft-jet-o.md
index 3efba433742..2c5f4eda297 100644
--- a/access/Concepts/Miscellaneous/you-cannot-use-odbc-to-import-from-export-to-or-link-an-external-microsoft-jet-o.md
+++ b/access/Concepts/Miscellaneous/you-cannot-use-odbc-to-import-from-export-to-or-link-an-external-microsoft-jet-o.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You are attempting to link, import data from, or export data to either an external Microsoft Access database engine table or an external ISAM database table (for example, dBASE, Microsoft FoxPro, Paradox, or Btrieve), but you have selected
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-have-written-a-subquery-that-can-return-more-than-one-field-without-using-th.md b/access/Concepts/Miscellaneous/you-have-written-a-subquery-that-can-return-more-than-one-field-without-using-th.md
index 5b3883c278e..3bf87aec9ef 100644
--- a/access/Concepts/Miscellaneous/you-have-written-a-subquery-that-can-return-more-than-one-field-without-using-th.md
+++ b/access/Concepts/Miscellaneous/you-have-written-a-subquery-that-can-return-more-than-one-field-without-using-th.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
This is an unexpected error. Please contact Microsoft Product Support Services for more information.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-must-enter-a-personal-identifier-pid-consisting-of-at-least-4-and-no-more-th.md b/access/Concepts/Miscellaneous/you-must-enter-a-personal-identifier-pid-consisting-of-at-least-4-and-no-more-th.md
index aa5a9af8ed6..d8a10787982 100644
--- a/access/Concepts/Miscellaneous/you-must-enter-a-personal-identifier-pid-consisting-of-at-least-4-and-no-more-th.md
+++ b/access/Concepts/Miscellaneous/you-must-enter-a-personal-identifier-pid-consisting-of-at-least-4-and-no-more-th.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
A personal identifier (PID) must be at least 4 characters and no more than 20 characters long.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-must-use-the-dbseechanges-option-with-openrecordset-when-accessing-a-sql-ser.md b/access/Concepts/Miscellaneous/you-must-use-the-dbseechanges-option-with-openrecordset-when-accessing-a-sql-ser.md
index a8c82bb41a6..77617ffcb0d 100644
--- a/access/Concepts/Miscellaneous/you-must-use-the-dbseechanges-option-with-openrecordset-when-accessing-a-sql-ser.md
+++ b/access/Concepts/Miscellaneous/you-must-use-the-dbseechanges-option-with-openrecordset-when-accessing-a-sql-ser.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The server-generated IDENTITY values cannot be reflected at the client side unless you use the DAO property dbSeeChanges.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-tried-to-assign-the-null-value-to-a-variable-that-is-not-a-variant-data-type.md b/access/Concepts/Miscellaneous/you-tried-to-assign-the-null-value-to-a-variable-that-is-not-a-variant-data-type.md
index e0b401bd47c..65ff1ef89b1 100644
--- a/access/Concepts/Miscellaneous/you-tried-to-assign-the-null-value-to-a-variable-that-is-not-a-variant-data-type.md
+++ b/access/Concepts/Miscellaneous/you-tried-to-assign-the-null-value-to-a-variable-that-is-not-a-variant-data-type.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to assign a **Null** value to a variable that is not a **Variant** data type. Use the **Dim** statement to declare the variable as a **Variant**, and then try the operation again.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-tried-to-call-update-or-cancelupdate-or-attempted-to-update-a-field-in-a-rec.md b/access/Concepts/Miscellaneous/you-tried-to-call-update-or-cancelupdate-or-attempted-to-update-a-field-in-a-rec.md
index 9a446320600..1f8dfda7e6f 100644
--- a/access/Concepts/Miscellaneous/you-tried-to-call-update-or-cancelupdate-or-attempted-to-update-a-field-in-a-rec.md
+++ b/access/Concepts/Miscellaneous/you-tried-to-call-update-or-cancelupdate-or-attempted-to-update-a-field-in-a-rec.md
@@ -19,9 +19,9 @@ On a Microsoft Access database engine database, you called the **Update** or **
On an ODBCDirect database, this error occurs when you attempt to write data to a record without first calling **AddNew** or **Edit**.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-tried-to-commit-or-roll-back-a-transaction-without-first-using-begintranserr.md b/access/Concepts/Miscellaneous/you-tried-to-commit-or-roll-back-a-transaction-without-first-using-begintranserr.md
index 50835e77c71..b4f32277915 100644
--- a/access/Concepts/Miscellaneous/you-tried-to-commit-or-roll-back-a-transaction-without-first-using-begintranserr.md
+++ b/access/Concepts/Miscellaneous/you-tried-to-commit-or-roll-back-a-transaction-without-first-using-begintranserr.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
You tried to commit or rollback a transaction that was not started with a **BeginTrans** statement.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-tried-to-execute-a-query-that-does-not-include-the-specified-expression-name.md b/access/Concepts/Miscellaneous/you-tried-to-execute-a-query-that-does-not-include-the-specified-expression-name.md
index 4711c121369..a0a5752da61 100644
--- a/access/Concepts/Miscellaneous/you-tried-to-execute-a-query-that-does-not-include-the-specified-expression-name.md
+++ b/access/Concepts/Miscellaneous/you-tried-to-execute-a-query-that-does-not-include-the-specified-expression-name.md
@@ -28,9 +28,9 @@ For more information, see the following topics:
- [TRANSFORM Statement (Microsoft Access SQL)](http://msdn.microsoft.com/library/419770b1-c833-959d-a84d-56c68764799f%28Office.15%29.aspx)
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/you-tried-to-lock-table-table-while-opening-it-but-the-table-cannot-be-locked-be.md b/access/Concepts/Miscellaneous/you-tried-to-lock-table-table-while-opening-it-but-the-table-cannot-be-locked-be.md
index b43669d359d..3003825c5af 100644
--- a/access/Concepts/Miscellaneous/you-tried-to-lock-table-table-while-opening-it-but-the-table-cannot-be-locked-be.md
+++ b/access/Concepts/Miscellaneous/you-tried-to-lock-table-table-while-opening-it-but-the-table-cannot-be-locked-be.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
Either another user has an exclusive lock on the table that you are trying to access in a shared mode or another user has a shared lock on the table that you are trying to open exclusively. The user name that is returned will show who currently has the lock.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/your-swap-file-has-reached-its-limit-or-is-corruptederror-3540.md b/access/Concepts/Miscellaneous/your-swap-file-has-reached-its-limit-or-is-corruptederror-3540.md
index f13f281fc54..ec6d077c9c2 100644
--- a/access/Concepts/Miscellaneous/your-swap-file-has-reached-its-limit-or-is-corruptederror-3540.md
+++ b/access/Concepts/Miscellaneous/your-swap-file-has-reached-its-limit-or-is-corruptederror-3540.md
@@ -18,9 +18,9 @@ ms.date: 06/08/2017
The Synchronizer has encountered an unexpected system problem. Shut down, turn off, and then reboot your computer.
**ACCESS SUPPORT RESOURCES**
-[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
[Access help on support.office.com](https://support.office.com/search/results?query=Access)
-[Access help on answers.microsoft.com](http://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+[Access help on answers.microsoft.com](https://answers.microsoft.com/)
[Search for specific Access error codes on Bing](http://www.bing.com/)
[Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
[Access wiki on UtterAcess](http://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Miscellaneous/zero-length-string-is-valid-only-in-a-text-or-memo-fielderror-3415.md b/access/Concepts/Miscellaneous/zero-length-string-is-valid-only-in-a-text-or-memo-fielderror-3415.md
index 95a39d76a83..61a1b5c129b 100644
--- a/access/Concepts/Miscellaneous/zero-length-string-is-valid-only-in-a-text-or-memo-fielderror-3415.md
+++ b/access/Concepts/Miscellaneous/zero-length-string-is-valid-only-in-a-text-or-memo-fielderror-3415.md
@@ -19,9 +19,9 @@ You are trying to enter a zero-length string in a field that has a data type oth
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/msoffice/forum?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Access forums on UtterAccess](http://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](http://www.fmsinc.com/MicrosoftAccess/developer/)
- [Access posts on StackOverflow](https://stackoverflow.com/questions/tagged/ms-access)
diff --git a/access/Concepts/Settings/set-form-report-and-control-properties-in-visual-basic.md b/access/Concepts/Settings/set-form-report-and-control-properties-in-visual-basic.md
index 5f16317bc71..5995a4608a0 100644
--- a/access/Concepts/Settings/set-form-report-and-control-properties-in-visual-basic.md
+++ b/access/Concepts/Settings/set-form-report-and-control-properties-in-visual-basic.md
@@ -78,9 +78,9 @@ Me!Section(acPageHeader).Visible = False
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Search for specific Access error codes on Bing](https://www.bing.com/)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access wiki on UtterAcess](https://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/access/Concepts/Structured-Query-Language/all-distinct-distinctrow-top-predicates-microsoft-access-sql.md b/access/Concepts/Structured-Query-Language/all-distinct-distinctrow-top-predicates-microsoft-access-sql.md
index da773fbab28..4a48705e50c 100644
--- a/access/Concepts/Structured-Query-Language/all-distinct-distinctrow-top-predicates-microsoft-access-sql.md
+++ b/access/Concepts/Structured-Query-Language/all-distinct-distinctrow-top-predicates-microsoft-access-sql.md
@@ -120,7 +120,7 @@ End Sub
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/all-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/all-microsoft-access-sql-reserved-word.md
index 38f1806ed8b..f53de9ed61e 100644
--- a/access/Concepts/Structured-Query-Language/all-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/all-microsoft-access-sql-reserved-word.md
@@ -22,7 +22,7 @@ The ALL keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/alter-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/alter-microsoft-access-sql-reserved-word.md
index c8d4ee1a19a..202fcb7d1a6 100644
--- a/access/Concepts/Structured-Query-Language/alter-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/alter-microsoft-access-sql-reserved-word.md
@@ -20,7 +20,7 @@ The ALTER keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/as-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/as-microsoft-access-sql-reserved-word.md
index 450a3112f94..926d05a9cae 100644
--- a/access/Concepts/Structured-Query-Language/as-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/as-microsoft-access-sql-reserved-word.md
@@ -19,7 +19,7 @@ The AS keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/asc-desc-microsoft-access-sql-reserved-words.md b/access/Concepts/Structured-Query-Language/asc-desc-microsoft-access-sql-reserved-words.md
index c2cc43165cd..d73b8db8a1d 100644
--- a/access/Concepts/Structured-Query-Language/asc-desc-microsoft-access-sql-reserved-words.md
+++ b/access/Concepts/Structured-Query-Language/asc-desc-microsoft-access-sql-reserved-words.md
@@ -21,7 +21,7 @@ The ASC and DESC keywords are used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/by-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/by-microsoft-access-sql-reserved-word.md
index d6210385cf0..3b1c6957d5c 100644
--- a/access/Concepts/Structured-Query-Language/by-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/by-microsoft-access-sql-reserved-word.md
@@ -20,7 +20,7 @@ The BY keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/container-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/container-microsoft-access-sql-reserved-word.md
index e831f1328fd..b2a7fe27829 100644
--- a/access/Concepts/Structured-Query-Language/container-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/container-microsoft-access-sql-reserved-word.md
@@ -20,7 +20,7 @@ The CONTAINER keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/create-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/create-microsoft-access-sql-reserved-word.md
index 2bf1a5c4397..befb59400fe 100644
--- a/access/Concepts/Structured-Query-Language/create-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/create-microsoft-access-sql-reserved-word.md
@@ -26,7 +26,7 @@ The CREATE keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/delete-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/delete-microsoft-access-sql-reserved-word.md
index e327b016969..cfc74f2aeb0 100644
--- a/access/Concepts/Structured-Query-Language/delete-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/delete-microsoft-access-sql-reserved-word.md
@@ -20,7 +20,7 @@ The DELETE keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/drop-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/drop-microsoft-access-sql-reserved-word.md
index 2c3e0216ef1..700b963c199 100644
--- a/access/Concepts/Structured-Query-Language/drop-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/drop-microsoft-access-sql-reserved-word.md
@@ -24,7 +24,7 @@ The DROP keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/first-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/first-microsoft-access-sql-reserved-word.md
index 7b52836c81e..41c22e99479 100644
--- a/access/Concepts/Structured-Query-Language/first-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/first-microsoft-access-sql-reserved-word.md
@@ -16,7 +16,7 @@ The FIRST keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/from-clause-microsoft-access-sql.md b/access/Concepts/Structured-Query-Language/from-clause-microsoft-access-sql.md
index a39c90b1283..f5ffd6e76bd 100644
--- a/access/Concepts/Structured-Query-Language/from-clause-microsoft-access-sql.md
+++ b/access/Concepts/Structured-Query-Language/from-clause-microsoft-access-sql.md
@@ -213,7 +213,7 @@ End Sub
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/from-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/from-microsoft-access-sql-reserved-word.md
index e6ef1bf9b47..04cfd1d2de6 100644
--- a/access/Concepts/Structured-Query-Language/from-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/from-microsoft-access-sql-reserved-word.md
@@ -22,7 +22,7 @@ The FROM keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/group-by-clause-microsoft-access-sql.md b/access/Concepts/Structured-Query-Language/group-by-clause-microsoft-access-sql.md
index e77b21b4a59..6a486401f85 100644
--- a/access/Concepts/Structured-Query-Language/group-by-clause-microsoft-access-sql.md
+++ b/access/Concepts/Structured-Query-Language/group-by-clause-microsoft-access-sql.md
@@ -112,7 +112,7 @@ End Sub
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/having-clause-microsoft-access-sql.md b/access/Concepts/Structured-Query-Language/having-clause-microsoft-access-sql.md
index 6c42cf6d50b..d54dce914c0 100644
--- a/access/Concepts/Structured-Query-Language/having-clause-microsoft-access-sql.md
+++ b/access/Concepts/Structured-Query-Language/having-clause-microsoft-access-sql.md
@@ -80,7 +80,7 @@ End Sub
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/in-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/in-microsoft-access-sql-reserved-word.md
index c563a49ef25..284f5906bb9 100644
--- a/access/Concepts/Structured-Query-Language/in-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/in-microsoft-access-sql-reserved-word.md
@@ -23,7 +23,7 @@ The IN keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/index-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/index-microsoft-access-sql-reserved-word.md
index d5a0213f503..b78055c5e0e 100644
--- a/access/Concepts/Structured-Query-Language/index-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/index-microsoft-access-sql-reserved-word.md
@@ -23,7 +23,7 @@ The INDEX keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/insert-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/insert-microsoft-access-sql-reserved-word.md
index 6d2a62ad057..c4d2cd39839 100644
--- a/access/Concepts/Structured-Query-Language/insert-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/insert-microsoft-access-sql-reserved-word.md
@@ -19,7 +19,7 @@ The INSERT keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/into-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/into-microsoft-access-sql-reserved-word.md
index 7bc86c2fa86..ce733942f13 100644
--- a/access/Concepts/Structured-Query-Language/into-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/into-microsoft-access-sql-reserved-word.md
@@ -21,7 +21,7 @@ The INTO keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/join-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/join-microsoft-access-sql-reserved-word.md
index ff3129e9655..178d1bd702f 100644
--- a/access/Concepts/Structured-Query-Language/join-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/join-microsoft-access-sql-reserved-word.md
@@ -21,7 +21,7 @@ The JOIN keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/last-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/last-microsoft-access-sql-reserved-word.md
index 1c40af9d0fe..8e766db9d52 100644
--- a/access/Concepts/Structured-Query-Language/last-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/last-microsoft-access-sql-reserved-word.md
@@ -17,7 +17,7 @@ The LAST keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/like-operator-microsoft-access-sql.md b/access/Concepts/Structured-Query-Language/like-operator-microsoft-access-sql.md
index 2687308e537..e75451bce1d 100644
--- a/access/Concepts/Structured-Query-Language/like-operator-microsoft-access-sql.md
+++ b/access/Concepts/Structured-Query-Language/like-operator-microsoft-access-sql.md
@@ -88,7 +88,7 @@ End Sub
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/on-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/on-microsoft-access-sql-reserved-word.md
index 51c6039a282..d7286511866 100644
--- a/access/Concepts/Structured-Query-Language/on-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/on-microsoft-access-sql-reserved-word.md
@@ -24,7 +24,7 @@ The ON keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/order-by-clause-microsoft-access-sql.md b/access/Concepts/Structured-Query-Language/order-by-clause-microsoft-access-sql.md
index 6aff64d9f1a..c2e111dbe7e 100644
--- a/access/Concepts/Structured-Query-Language/order-by-clause-microsoft-access-sql.md
+++ b/access/Concepts/Structured-Query-Language/order-by-clause-microsoft-access-sql.md
@@ -101,7 +101,7 @@ UtterAccess is the premier Microsoft Access wiki and help forum.
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/schema-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/schema-microsoft-access-sql-reserved-word.md
index 1d1b614be95..81604705220 100644
--- a/access/Concepts/Structured-Query-Language/schema-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/schema-microsoft-access-sql-reserved-word.md
@@ -21,7 +21,7 @@ The SCHEMA keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/select-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/select-microsoft-access-sql-reserved-word.md
index 04295e4cc57..48c056d7cd2 100644
--- a/access/Concepts/Structured-Query-Language/select-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/select-microsoft-access-sql-reserved-word.md
@@ -25,7 +25,7 @@ The SELECT keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/selectschema-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/selectschema-microsoft-access-sql-reserved-word.md
index 61e4b2b47ad..f22f5aea880 100644
--- a/access/Concepts/Structured-Query-Language/selectschema-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/selectschema-microsoft-access-sql-reserved-word.md
@@ -21,7 +21,7 @@ The SELECTSCHEMA keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/selectsecurity-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/selectsecurity-microsoft-access-sql-reserved-word.md
index 41dc6c0eecb..ceada8606dc 100644
--- a/access/Concepts/Structured-Query-Language/selectsecurity-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/selectsecurity-microsoft-access-sql-reserved-word.md
@@ -21,7 +21,7 @@ The SELECTSECURITY keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/table-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/table-microsoft-access-sql-reserved-word.md
index 9d4526bc285..0d28501c634 100644
--- a/access/Concepts/Structured-Query-Language/table-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/table-microsoft-access-sql-reserved-word.md
@@ -26,7 +26,7 @@ The TABLE keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/to-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/to-microsoft-access-sql-reserved-word.md
index 6889dac0734..5544dd666eb 100644
--- a/access/Concepts/Structured-Query-Language/to-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/to-microsoft-access-sql-reserved-word.md
@@ -21,7 +21,7 @@ The TO keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/update-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/update-microsoft-access-sql-reserved-word.md
index 3e18cf840d9..acaeb8c4563 100644
--- a/access/Concepts/Structured-Query-Language/update-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/update-microsoft-access-sql-reserved-word.md
@@ -20,7 +20,7 @@ The UPDATE keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/updateidentity-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/updateidentity-microsoft-access-sql-reserved-word.md
index a07633b8d20..c5e964d0b0e 100644
--- a/access/Concepts/Structured-Query-Language/updateidentity-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/updateidentity-microsoft-access-sql-reserved-word.md
@@ -21,7 +21,7 @@ The UPDATEIDENTITY keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/updateowner-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/updateowner-microsoft-access-sql-reserved-word.md
index 78ced3e4c74..289cab474c9 100644
--- a/access/Concepts/Structured-Query-Language/updateowner-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/updateowner-microsoft-access-sql-reserved-word.md
@@ -21,7 +21,7 @@ The UPDATEOWNER keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/updatesecurity-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/updatesecurity-microsoft-access-sql-reserved-word.md
index f7849893f49..7f82071b703 100644
--- a/access/Concepts/Structured-Query-Language/updatesecurity-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/updatesecurity-microsoft-access-sql-reserved-word.md
@@ -21,7 +21,7 @@ The UPDATESECURITY keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/user-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/user-microsoft-access-sql-reserved-word.md
index 57cf737f2ef..928d14789d0 100644
--- a/access/Concepts/Structured-Query-Language/user-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/user-microsoft-access-sql-reserved-word.md
@@ -23,7 +23,7 @@ The USER keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/view-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/view-microsoft-access-sql-reserved-word.md
index 01c57064943..7027adc94ec 100644
--- a/access/Concepts/Structured-Query-Language/view-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/view-microsoft-access-sql-reserved-word.md
@@ -21,7 +21,7 @@ The VIEW keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/where-clause-microsoft-access-sql.md b/access/Concepts/Structured-Query-Language/where-clause-microsoft-access-sql.md
index 89e9e5c013c..109d34dc121 100644
--- a/access/Concepts/Structured-Query-Language/where-clause-microsoft-access-sql.md
+++ b/access/Concepts/Structured-Query-Language/where-clause-microsoft-access-sql.md
@@ -128,7 +128,7 @@ End Sub
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/access/Concepts/Structured-Query-Language/with-microsoft-access-sql-reserved-word.md b/access/Concepts/Structured-Query-Language/with-microsoft-access-sql-reserved-word.md
index 03b0644aae0..9b20785810f 100644
--- a/access/Concepts/Structured-Query-Language/with-microsoft-access-sql-reserved-word.md
+++ b/access/Concepts/Structured-Query-Language/with-microsoft-access-sql-reserved-word.md
@@ -21,7 +21,7 @@ The WITH keyword is used in these contexts:
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/api/Access.AppIcon.md b/api/Access.AppIcon.md
index f4aec0b2df8..438213f0c8a 100644
--- a/api/Access.AppIcon.md
+++ b/api/Access.AppIcon.md
@@ -87,9 +87,9 @@ End Function
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Search for specific Access error codes on Bing](https://www.bing.com/)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access wiki on UtterAcess](https://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/api/Access.AppTitle.md b/api/Access.AppTitle.md
index 7f5b1512e1d..41682c92f4b 100644
--- a/api/Access.AppTitle.md
+++ b/api/Access.AppTitle.md
@@ -42,9 +42,9 @@ This property's setting takes effect immediately after setting the property in c
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Search for specific Access error codes on Bing](https://www.bing.com/)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access wiki on UtterAcess](https://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/api/Access.Application.DBEngine.md b/api/Access.Application.DBEngine.md
index 819d24482be..d1879d21930 100644
--- a/api/Access.Application.DBEngine.md
+++ b/api/Access.Application.DBEngine.md
@@ -13,7 +13,7 @@ ms.date: 06/08/2017
# Application.DBEngine Property (Access)
-You can use the **DBEngine** property in[Visual Basic](../access/Concepts/Settings/set-properties-by-using-visual-basic.md)to access the current **DBEngine** object and its related properties. Read-only **DBEngine**.
+You can use the **DBEngine** property in [Visual Basic](../access/Concepts/Settings/set-properties-by-using-visual-basic.md)to access the current **DBEngine** object and its related properties. Read-only **DBEngine**.
## Syntax
diff --git a/api/Access.Application.DDEExecute.md b/api/Access.Application.DDEExecute.md
index 397e0937e46..6c51264c83c 100644
--- a/api/Access.Application.DDEExecute.md
+++ b/api/Access.Application.DDEExecute.md
@@ -38,7 +38,7 @@ For example, suppose you've opened a DDE channel in Microsoft Access to transfer
The value of the _command_ argument depends on the application and topic specified when the channel indicated by the _channum_ argument is opened. An error occurs if the _channum_ argument isn't an integer corresponding to an open channel or if the other application can't carry out the specified command.
-From Visual Basic, you can use the **DDEExecute** statement only to send commands to another application. For information on sending commands to Microsoft Access from another application, see[Use Microsoft Access as a DDE Server](overview/Access.md).
+From Visual Basic, you can use the **DDEExecute** statement only to send commands to another application. For information on sending commands to Microsoft Access from another application, see [Use Microsoft Access as a DDE Server](overview/Access.md).
If you need to manipulate another application's objects from Microsoft Access, you may want to consider using Automation.
diff --git a/api/Access.Application.LoadFromAXL.md b/api/Access.Application.LoadFromAXL.md
index 8630679265f..fce68617a6e 100644
--- a/api/Access.Application.LoadFromAXL.md
+++ b/api/Access.Application.LoadFromAXL.md
@@ -37,7 +37,7 @@ Imports the object defined in an Application XML (AXL) file into the database.
The **LoadFromAXL** method does not provide a warning when the object specified in the _ObjectName_ argument already exists. If an object of the same name already exists, it will be replaced by the object specified in the _ObjectName_ argument.
-For more information about AXL, see [[MS-AXL]: Access Application Transfer Protocol Structure Specification](https://msdn.microsoft.com/en-us/library/dd927584.aspx).
+For more information about AXL, see [[MS-AXL]: Access Application Transfer Protocol Structure Specification](https://msdn.microsoft.com/library/dd927584.aspx).
## See also
diff --git a/api/Access.Application.SaveAsAXL.md b/api/Access.Application.SaveAsAXL.md
index 69e8bb8b0a3..12bd20acc55 100644
--- a/api/Access.Application.SaveAsAXL.md
+++ b/api/Access.Application.SaveAsAXL.md
@@ -39,7 +39,7 @@ The **SaveAsAXL** method does not provide a warning when the file specified in
The **SaveAsAXL** method generates a run-time error if the current database is not a Web database.
-For more information about AXL, see [[MS-AXL]: Access Application Transfer Protocol Structure Specification](https://msdn.microsoft.com/en-us/library/dd927584.aspx).
+For more information about AXL, see [[MS-AXL]: Access Application Transfer Protocol Structure Specification](https://msdn.microsoft.com/library/dd927584.aspx).
## See also
diff --git a/api/Access.BoundObjectFrame.ControlType.md b/api/Access.BoundObjectFrame.ControlType.md
index 284e8f59544..7882a76f3c2 100644
--- a/api/Access.BoundObjectFrame.ControlType.md
+++ b/api/Access.BoundObjectFrame.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.BoundObjectFrame.md b/api/Access.BoundObjectFrame.md
index 0cc2561ba42..ff3d03f0e45 100644
--- a/api/Access.BoundObjectFrame.md
+++ b/api/Access.BoundObjectFrame.md
@@ -24,7 +24,7 @@ A bound object frame is bound to a field in an underlying table.
The field in the underlying table to which the bound object frame is bound must be of the OLE Object data type.
-The object in a bound object frame is different for each record. The bound object frame can display linked or embedded objects. If you want to display objects not stored in an underlying table, use an [unbound object frame](overview/Access.md)or an [image control](overview/Access.md).
+The object in a bound object frame is different for each record. The bound object frame can display linked or embedded objects. If you want to display objects not stored in an underlying table, use an [unbound object frame](overview/Access.md) or an [image control](overview/Access.md).
## Methods
diff --git a/api/Access.CheckBox.ControlType.md b/api/Access.CheckBox.ControlType.md
index 8bd536bc8cf..5f1bd7a02f9 100644
--- a/api/Access.CheckBox.ControlType.md
+++ b/api/Access.CheckBox.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.ComboBox.BeforeUpdate(even).md b/api/Access.ComboBox.BeforeUpdate(even).md
index 8a97bcd2bad..d2c6481f431 100644
--- a/api/Access.ComboBox.BeforeUpdate(even).md
+++ b/api/Access.ComboBox.BeforeUpdate(even).md
@@ -66,7 +66,7 @@ You often use the BeforeUpdate event to validate data, especially when you perfo
A run-time error will occur if you attempt to modify the data contained in the control that fired the **BeforeUpdate** event in the event's procedure.
**Link provided by:**
- Luke Chung,[FMS, Inc.](https://www.fmsinc.com/)
+ Luke Chung, [FMS, Inc.](https://www.fmsinc.com/)
- [Tips and Techniques for Using and Validating Combo Boxes](https://www.fmsinc.com/free/NewTips/Access/ComboBox/AccessComboBox.asp)
diff --git a/api/Access.ComboBox.BeforeUpdate(property).md b/api/Access.ComboBox.BeforeUpdate(property).md
index 2dadc032f2a..29e71e28c07 100644
--- a/api/Access.ComboBox.BeforeUpdate(property).md
+++ b/api/Access.ComboBox.BeforeUpdate(property).md
@@ -28,7 +28,7 @@ Returns or sets which macro, event procedure, or user-defined function runs when
Valid values for this property are " _macroname_" where _macroname_ is the name of macro, "[Event Procedure]" which indicates the event procedure associated with the **BeforeUpdate** event for the specified object, or " **=** _functionname_ **()** " where _functionname_ is the name of a user-defined function.
**Link provided by:**
- Luke Chung,[FMS, Inc.](https://www.fmsinc.com/)
+ Luke Chung, [FMS, Inc.](https://www.fmsinc.com/)
- [Tips and Techniques for Using and Validating Combo Boxes](https://www.fmsinc.com/free/NewTips/Access/ComboBox/AccessComboBox.asp)
diff --git a/api/Access.ComboBox.BoundColumn.md b/api/Access.ComboBox.BoundColumn.md
index e54004b4cb4..083a9e5ad11 100644
--- a/api/Access.ComboBox.BoundColumn.md
+++ b/api/Access.ComboBox.BoundColumn.md
@@ -54,7 +54,7 @@ The following example show how to create a combo box that is bound to one column
The **ColumnWidths** property specifies the width of the two columns. By setting the width of the first column to **0in.**, the first column is not displayed in the combo box.
- **Sample code provided by:** Bill Jelen,[MrExcel.com](https://www.mrexcel.com/)
+ **Sample code provided by:** Bill Jelen, [MrExcel.com](https://www.mrexcel.com/)
diff --git a/api/Access.ComboBox.ColumnCount.md b/api/Access.ComboBox.ColumnCount.md
index f4b355242df..f62a55f1f4d 100644
--- a/api/Access.ComboBox.ColumnCount.md
+++ b/api/Access.ComboBox.ColumnCount.md
@@ -83,7 +83,7 @@ The following example show how to create a combo box that is bound to one column
The **ColumnWidths** property specifies the width of the two columns. By setting the width of the first column to **0in.**, the first column is not displayed in the combo box.
**Sample code provided by:**
- Bill Jelen,[MrExcel.com](https://www.mrexcel.com/)
+ Bill Jelen, [MrExcel.com](https://www.mrexcel.com/)
diff --git a/api/Access.ComboBox.ColumnWidths.md b/api/Access.ComboBox.ColumnWidths.md
index 8f3967fa9ec..33d1813fd94 100644
--- a/api/Access.ComboBox.ColumnWidths.md
+++ b/api/Access.ComboBox.ColumnWidths.md
@@ -69,7 +69,7 @@ The following example show how to create a combo box that is bound to one column
The **ColumnWidths** property specifies the width of the two columns. By setting the width of the first column to **0in.**, the first column is not displayed in the combo box.
- **Sample code provided by:** Bill Jelen,[MrExcel.com](https://www.mrexcel.com/)
+ **Sample code provided by:** Bill Jelen, [MrExcel.com](https://www.mrexcel.com/)
diff --git a/api/Access.ComboBox.ControlType.md b/api/Access.ComboBox.ControlType.md
index aaaa1aa1f2d..5e560f94664 100644
--- a/api/Access.ComboBox.ControlType.md
+++ b/api/Access.ComboBox.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.ComboBox.LimitToList.md b/api/Access.ComboBox.LimitToList.md
index 7d7c0eae88f..3eb36f0eb3d 100644
--- a/api/Access.ComboBox.LimitToList.md
+++ b/api/Access.ComboBox.LimitToList.md
@@ -51,7 +51,7 @@ When the **LimitToList** property is set to Yes and the user clicks the arrow n
Combo boxes accept **null** values when the **LimitToList** property is set to Yes or **True**, whether or not the list contains **null** values. If you want to prevent users from entering a **null** value in a combo box, set the **Required** property of the field in the table to which the combo box is bound to Yes.
**Link provided by:**
- Luke Chung,[FMS, Inc.](https://www.fmsinc.com/)
+ Luke Chung, [FMS, Inc.](https://www.fmsinc.com/)
- [Tips and Techniques for Using and Validating Combo Boxes](https://www.fmsinc.com/free/NewTips/Access/ComboBox/AccessComboBox.asp)
diff --git a/api/Access.ComboBox.ListIndex.md b/api/Access.ComboBox.ListIndex.md
index 3356a04f134..eef0134cfba 100644
--- a/api/Access.ComboBox.ListIndex.md
+++ b/api/Access.ComboBox.ListIndex.md
@@ -36,7 +36,7 @@ List boxes also have a **MultiSelect** property that allows the user to select
The **ItemsSelected** collection also provides a way to access data in the selected rows of a list box or combo box.
**Link provided by:**
- Luke Chung,[FMS, Inc.](https://www.fmsinc.com/)
+ Luke Chung, [FMS, Inc.](https://www.fmsinc.com/)
- [Tips and Techniques for Using and Validating Combo Boxes](https://www.fmsinc.com/free/NewTips/Access/ComboBox/AccessComboBox.asp)
diff --git a/api/Access.ComboBox.RowSource.md b/api/Access.ComboBox.RowSource.md
index 96992e7e07d..db34f154772 100644
--- a/api/Access.ComboBox.RowSource.md
+++ b/api/Access.ComboBox.RowSource.md
@@ -62,7 +62,7 @@ Forms!Employees!cmboNames.RowSource = "EmployeeList"
The following example shows how to set the **RowSource** property of a combo box when a form is loaded. When the form is displayed, the items stored in the **Departments** field of the **tblDepartment** combo box are displayed in the **cboDept** combo box.
- **Sample code provided by:** Bill Jelen,[MrExcel.com](https://www.mrexcel.com/)
+ **Sample code provided by:** Bill Jelen, [MrExcel.com](https://www.mrexcel.com/)
diff --git a/api/Access.CommandButton.ControlType.md b/api/Access.CommandButton.ControlType.md
index 1a3cf1f4b5b..88e49b74763 100644
--- a/api/Access.CommandButton.ControlType.md
+++ b/api/Access.CommandButton.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.CustomControl.ControlType.md b/api/Access.CustomControl.ControlType.md
index 2e8756af0ee..42656c0cfc2 100644
--- a/api/Access.CustomControl.ControlType.md
+++ b/api/Access.CustomControl.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.DoCmd.ApplyFilter.md b/api/Access.DoCmd.ApplyFilter.md
index b8b2c121f2f..ed2f5450e2c 100644
--- a/api/Access.DoCmd.ApplyFilter.md
+++ b/api/Access.DoCmd.ApplyFilter.md
@@ -66,7 +66,7 @@ DoCmd.ApplyFilter , "LastName = 'King'"
The following example shows how to use the **ApplyFilter** property to filter the records displayed when a toggle button named tglFilter is clicked.
- **Sample code provided by:** Bill Jelen,[MrExcel.com](https://www.mrexcel.com/)
+ **Sample code provided by:** Bill Jelen, [MrExcel.com](https://www.mrexcel.com/)
diff --git a/api/Access.DoCmd.OpenView.md b/api/Access.DoCmd.OpenView.md
index b5db2a2fbed..b3376f8d664 100644
--- a/api/Access.DoCmd.OpenView.md
+++ b/api/Access.DoCmd.OpenView.md
@@ -13,7 +13,7 @@ ms.date: 06/08/2017
# DoCmd.OpenView Method (Access)
-The **OpenView** method carries out the[OpenView](overview/Access.md) action in Visual Basic.
+The **OpenView** method carries out the [OpenView](overview/Access.md) action in Visual Basic.
## Syntax
diff --git a/api/Access.DoCmd.TransferText.md b/api/Access.DoCmd.TransferText.md
index 47eb8ffb7f7..7faa79c1475 100644
--- a/api/Access.DoCmd.TransferText.md
+++ b/api/Access.DoCmd.TransferText.md
@@ -33,7 +33,7 @@ _expression_ A variable that represents a **DoCmd** object.
|_FileName_|Optional|**Variant**|A string expression that's the full name, including the path, of the text file you want to import from, export to, or link to.|
|_HasFieldNames_|Optional|**Variant**|Use **True** (1) to use the first row of the text file as field names when importing, exporting, or linking. Use **False** (0) to treat the first row of the text file as normal data. If you leave this argument blank, the default (**False**) is assumed. This argument is ignored for Microsoft Word mail merge data files, which must always contain the field names in the first row.|
|_HTMLTableName_|Optional|**Variant**|A string expression that's the name of the table or list in the HTML file that you want to import or link. This argument is ignored unless the _TransferType_ argument is set to **acImportHTML** or **acLinkHTML**. If you leave this argument blank, the first table or list in the HTML file is imported or linked. The name of the table or list in the HTML file is determined by the text specified by the **CAPTION** tag, if there's a **CAPTION** tag. If there's no **CAPTION** tag, the name is determined by the text specified by the **TITLE** tag. If more than one table or list has the same name, Microsoft Access distinguishes them by adding a number to the end of each table or list name; for example, Employees1 and Employees2.|
-|[CodePage](https://msdn.microsoft.com/en-us/library/windows/desktop/dd317756(v=vs.85).aspx)|Optional|**Variant**|A **Long** value indicating the character set of the code page.|
+|[CodePage](https://msdn.microsoft.com/library/windows/desktop/dd317756(v=vs.85).aspx)|Optional|**Variant**|A **Long** value indicating the character set of the code page.|
## Remarks
diff --git a/api/Access.EmptyCell.ControlType.md b/api/Access.EmptyCell.ControlType.md
index 623b5131ae2..9b9d08f304c 100644
--- a/api/Access.EmptyCell.ControlType.md
+++ b/api/Access.EmptyCell.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.Entities.md b/api/Access.Entities.md
index 6a542caea9e..71b4232a8d5 100644
--- a/api/Access.Entities.md
+++ b/api/Access.Entities.md
@@ -22,7 +22,7 @@ A Data Service data connection may contain one or more entities. Each entity spe
Use the **[Item](Access.Entities.Item.md)** property to return an **[Entity](Access.Entity.md)** object.
-For more information about external content types, see [What Are External Content Types?](https://msdn.microsoft.com/en-us/library/ee556391%28office.14%29.aspx).
+For more information about external content types, see [What Are External Content Types?](https://msdn.microsoft.com/library/ee556391%28office.14%29.aspx).
## Properties
diff --git a/api/Access.Entity.md b/api/Access.Entity.md
index ca43c6a43f3..912d9d6e790 100644
--- a/api/Access.Entity.md
+++ b/api/Access.Entity.md
@@ -24,7 +24,7 @@ Use the **[Operations](Access.Operations.md)** property to returnt he operation
A Data Service data connection may contain one or more entities. Each entity specifies an external content type. Used throughout the functionality and services offered by Business Connectivity Services, external content types are reusable metadata descriptions of connectivity information and data definitions plus the behaviors you want to apply to a certain category of external data.
-For more information about external content types, see [What Are External Content Types?](https://msdn.microsoft.com/en-us/library/ee556391%28office.14%29.aspx).
+For more information about external content types, see [What Are External Content Types?](https://msdn.microsoft.com/library/ee556391%28office.14%29.aspx).
## Properties
diff --git a/api/Access.Form.AfterLayout(property).md b/api/Access.Form.AfterLayout(property).md
index 255ea3dd987..a0b4ac57e94 100644
--- a/api/Access.Form.AfterLayout(property).md
+++ b/api/Access.Form.AfterLayout(property).md
@@ -13,7 +13,7 @@ ms.date: 06/08/2017
# Form.AfterLayout Property (Access)
-Returns or sets a **String** indicating which macro, event procedure, or user-defined function runs when the[AfterLayout](Access.Form.AfterLayout(even).md)event occurs. Read/write.
+Returns or sets a **String** indicating which macro, event procedure, or user-defined function runs when the [AfterLayout](Access.Form.AfterLayout(even).md)event occurs. Read/write.
## Syntax
diff --git a/api/Access.Form.BeforeDelConfirm(property).md b/api/Access.Form.BeforeDelConfirm(property).md
index 1c5b68c1d72..4e9568dcb78 100644
--- a/api/Access.Form.BeforeDelConfirm(property).md
+++ b/api/Access.Form.BeforeDelConfirm(property).md
@@ -13,7 +13,7 @@ ms.date: 06/08/2017
# Form.BeforeDelConfirm Property (Access)
-Returns or sets a **String** indicating which macro, event procedure, or user-defined function runs when the[BeforeDelConfirm](Access.Form.BeforeDelConfirm(even).md)event occurs. Read/write.
+Returns or sets a **String** indicating which macro, event procedure, or user-defined function runs when the [BeforeDelConfirm](Access.Form.BeforeDelConfirm(even).md)event occurs. Read/write.
## Syntax
diff --git a/api/Access.Form.DatasheetBackColor.md b/api/Access.Form.DatasheetBackColor.md
index e74edb7796f..0d3a3d33de4 100644
--- a/api/Access.Form.DatasheetBackColor.md
+++ b/api/Access.Form.DatasheetBackColor.md
@@ -13,7 +13,7 @@ ms.date: 06/08/2017
# Form.DatasheetBackColor Property (Access)
-You can use the **DatasheetBackColor** property in[Visual Basic](../access/Concepts/Settings/set-properties-by-using-visual-basic.md)to specify or determine the background color of an entire table, query, or form in Datasheet view within a Microsoft Access database. Read/write **Long**.
+You can use the **DatasheetBackColor** property in [Visual Basic](../access/Concepts/Settings/set-properties-by-using-visual-basic.md)to specify or determine the background color of an entire table, query, or form in Datasheet view within a Microsoft Access database. Read/write **Long**.
## Syntax
diff --git a/api/Access.Form.PrtDevMode.md b/api/Access.Form.PrtDevMode.md
index 34e20b5e51f..041bd22cc5f 100644
--- a/api/Access.Form.PrtDevMode.md
+++ b/api/Access.Form.PrtDevMode.md
@@ -42,17 +42,17 @@ The **PrtDevMode** property uses the following members.
|DriverExtra|An **Integer** that specifies the size, in bytes, of the optional **dmDriverData** member for device-specific data, which can follow this structure. If an application doesn't use device-specific information, you set this member to 0.|
|Fields|A **Long** value that specifies which of the remaining members in the DEVMODE structure have been initialized.|
|Orientation|An **Integer** that specifies the orientation of the paper. It can be either 1 (portrait) or 2 (landscape).|
-|PaperSize|An **Integer** that specifies the size of the paper to print on. If you set this member to 0 or 256, the length and width of the paper are specified by the PaperLength and PaperWidth members, respectively. Otherwise, you can set the PaperSize member to a predefined value. For available values, see the[PaperSize member values](overview/values-for-the-papersize-member.md).|
+|PaperSize|An **Integer** that specifies the size of the paper to print on. If you set this member to 0 or 256, the length and width of the paper are specified by the PaperLength and PaperWidth members, respectively. Otherwise, you can set the PaperSize member to a predefined value. For available values, see the [PaperSize member values](overview/values-for-the-papersize-member.md).|
|PaperLength|An **Integer** that specifies the paper length in units of 1/10 of a millimeter. This member overrides the paper length specified by the PaperSize member for custom paper sizes or for devices such as dot-matrix printers that can print on a variety of paper sizes.|
|PaperWidth|An **Integer** that specifies the paper width in units of 1/10 of a millimeter. This member overrides the paper width specified by the PaperSize member.|
|Scale|An **Integer** that specifies the factor by which the printed output will be scaled. The apparent page size is scaled from the physical page size by a factor of _scale_ /100. For example, a piece of paper measuring 8.5 by 11 inches (letter-size) with a Scale value of 50 would contain as much data as a page measuring 17 by 22 inches because the output text and graphics would be half their original height and width.|
|Copies|An **Integer** that specifies the number of copies printed if the printing device supports multiple-page copies.|
-|DefaultSource|An **Integer** that specifies the default bin from which the paper is fed. For available values, see the[DefaultSource member values](overview/values-for-the-defaultsource-member.md).|
+|DefaultSource|An **Integer** that specifies the default bin from which the paper is fed. For available values, see the [DefaultSource member values](overview/values-for-the-defaultsource-member.md).|
|PrintQuality|An **Integer** that specifies the printer resolution. The values are ?4 (high), ?3 (medium), ?2 (low), and ?1 (draft).|
|Color|An **Integer**. For a color printer, specifies whether the output is printed in color. The values are 1 (color) and 2 (monochrome).|
|Duplex|An **Integer**. For a printer capable of duplex printing, specifies whether the output is printed on both sides of the paper. The values are 1 (simplex), 2 (horizontal), and 3 (vertical).|
|YResolution|An **Integer** that specifies the y-resolution of the printer in dots per inch (dpi). If the printer initializes this member, the PrintQuality member specifies the x-resolution of the printer in dpi.|
-|TTOption|An **Integer** that specifies how TrueType fonts will be printed. For available values, see the[TTOption member values](overview/values-for-the-ttoption-member.md).|
+|TTOption|An **Integer** that specifies how TrueType fonts will be printed. For available values, see the [TTOption member values](overview/values-for-the-ttoption-member.md).|
|Collate|An **Integer** that specifies whether collation should be used when printing multiple copies. Using uncollated copies provides faster, more efficient output, since the data is sent to the printer just once.|
|FormName|A string with a maximum of 16 characters that specifies the size of paper to use; for example, "Letter" or "Legal".|
|Pad|A **Long** value that is used to pad out spaces, characters, or values for future versions.|
diff --git a/api/Access.Image.ControlType.md b/api/Access.Image.ControlType.md
index 4bc94705791..b6bd7a7a045 100644
--- a/api/Access.Image.ControlType.md
+++ b/api/Access.Image.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.ImportExportSpecifications.Add.md b/api/Access.ImportExportSpecifications.Add.md
index 07cd7cc62f8..39448009ec7 100644
--- a/api/Access.ImportExportSpecifications.Add.md
+++ b/api/Access.ImportExportSpecifications.Add.md
@@ -13,7 +13,7 @@ ms.date: 06/08/2017
# ImportExportSpecifications.Add Method (Access)
-Adds a new [ImportExportSpecification](Access.ImportExportSpecification.md) object to the[ImportExportSpecifications](Access.ImportExportSpecifications.md) collection.
+Adds a new [ImportExportSpecification](Access.ImportExportSpecification.md) object to the [ImportExportSpecifications](Access.ImportExportSpecifications.md) collection.
## Syntax
diff --git a/api/Access.ImportExportSpecifications.md b/api/Access.ImportExportSpecifications.md
index 4c0bbf486b7..abada9c4f8f 100644
--- a/api/Access.ImportExportSpecifications.md
+++ b/api/Access.ImportExportSpecifications.md
@@ -20,7 +20,7 @@ Represents the collection of available [ImportExportSpecification](Access.Import
Use the [Add](Access.ImportExportSpecifications.Add.md) method to create a new **ImportExportSpecification** object.
-Use the **ImportExportSpecification** property of the[CodeProject](Access.CodeProject.md) or[CurrentProject](Access.CurrentProject.md) object to return the **ImportExportSpecifications** collection.
+Use the **ImportExportSpecification** property of the [CodeProject](Access.CodeProject.md) or [CurrentProject](Access.CurrentProject.md) object to return the **ImportExportSpecifications** collection.
## Methods
diff --git a/api/Access.Label.ControlType.md b/api/Access.Label.ControlType.md
index d55731a74ca..4ce4176d6ce 100644
--- a/api/Access.Label.ControlType.md
+++ b/api/Access.Label.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.Line.ControlType.md b/api/Access.Line.ControlType.md
index f5e92620289..b87c2f586ce 100644
--- a/api/Access.Line.ControlType.md
+++ b/api/Access.Line.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.Line.LineSlant.md b/api/Access.Line.LineSlant.md
index 7ba1b39be17..2c3a2bf34a6 100644
--- a/api/Access.Line.LineSlant.md
+++ b/api/Access.Line.LineSlant.md
@@ -13,7 +13,7 @@ ms.date: 06/08/2017
# Line.LineSlant Property (Access)
-You use the **LineSlant** property to specify whether a[line control](overview/line-control.md)slants from upper left to lower right or from upper right to lower left. Read/write **Boolean**.
+You use the **LineSlant** property to specify whether a [line control](overview/line-control.md)slants from upper left to lower right or from upper right to lower left. Read/write **Boolean**.
## Syntax
diff --git a/api/Access.ListBox.ControlType.md b/api/Access.ListBox.ControlType.md
index 32ad54d3b1f..6215caeb73a 100644
--- a/api/Access.ListBox.ControlType.md
+++ b/api/Access.ListBox.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.ListBox.IMESentenceMode.md b/api/Access.ListBox.IMESentenceMode.md
index 9f47c9dcfac..b5f1e0d3ebc 100644
--- a/api/Access.ListBox.IMESentenceMode.md
+++ b/api/Access.ListBox.IMESentenceMode.md
@@ -26,7 +26,7 @@ ms.date: 06/08/2017
## Remarks
-The **IMESentenceMode** property accepts the[AcImeSentenceMode Enumeration (Access)](Access.AcImeSentenceMode.md) enumeration.
+The **IMESentenceMode** property accepts the [AcImeSentenceMode Enumeration (Access)](Access.AcImeSentenceMode.md) enumeration.
diff --git a/api/Access.ListBox.md b/api/Access.ListBox.md
index 0e2fad7f05e..6ac717f19b8 100644
--- a/api/Access.ListBox.md
+++ b/api/Access.ListBox.md
@@ -252,7 +252,7 @@ UtterAccess is the premier Microsoft Access wiki and help forum.
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/api/Access.NavigationButton.ControlType.md b/api/Access.NavigationButton.ControlType.md
index 70e429895a8..d6760619b88 100644
--- a/api/Access.NavigationButton.ControlType.md
+++ b/api/Access.NavigationButton.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.NavigationControl.ControlType.md b/api/Access.NavigationControl.ControlType.md
index c825362534e..347e408affd 100644
--- a/api/Access.NavigationControl.ControlType.md
+++ b/api/Access.NavigationControl.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.ObjectFrame.ControlType.md b/api/Access.ObjectFrame.ControlType.md
index cf134901e1d..acfda45d52d 100644
--- a/api/Access.ObjectFrame.ControlType.md
+++ b/api/Access.ObjectFrame.ControlType.md
@@ -50,7 +50,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.OptionButton.ControlType.md b/api/Access.OptionButton.ControlType.md
index 9a2daff18c1..6788de6cb5c 100644
--- a/api/Access.OptionButton.ControlType.md
+++ b/api/Access.OptionButton.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.OptionGroup.ControlType.md b/api/Access.OptionGroup.ControlType.md
index 3266fb47a04..9de2be50f0f 100644
--- a/api/Access.OptionGroup.ControlType.md
+++ b/api/Access.OptionGroup.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.Page.ControlType.md b/api/Access.Page.ControlType.md
index 364a36a8410..98d47035071 100644
--- a/api/Access.Page.ControlType.md
+++ b/api/Access.Page.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.PageBreak.ControlType.md b/api/Access.PageBreak.ControlType.md
index 980678fb6dd..3a08439b3fe 100644
--- a/api/Access.PageBreak.ControlType.md
+++ b/api/Access.PageBreak.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.Properties.md b/api/Access.Properties.md
index 03e96101178..2fc2023d403 100644
--- a/api/Access.Properties.md
+++ b/api/Access.Properties.md
@@ -18,7 +18,7 @@ The **Properties** collection contains all of the built-in properties in an ins
## Remarks
-Use the **Properties** collection in[Visual Basic](overview/Access.md)or in an expression to refer to form, report, or control properties on forms or reports that are currently open.
+Use the **Properties** collection in [Visual Basic](overview/Access.md) or in an expression to refer to form, report, or control properties on forms or reports that are currently open.
You can use the **Properties** collection of an object to enumerate the object's built-in properties. You don't need to know beforehand exactly which properties exist or what their characteristics (**Name** and **Value** properties) are to manipulate them.
diff --git a/api/Access.Rectangle.ControlType.md b/api/Access.Rectangle.ControlType.md
index 79d623b0e5d..f978e8a65d6 100644
--- a/api/Access.Rectangle.ControlType.md
+++ b/api/Access.Rectangle.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.Report.FillColor.md b/api/Access.Report.FillColor.md
index c8f3e5a10af..c64104f302b 100644
--- a/api/Access.Report.FillColor.md
+++ b/api/Access.Report.FillColor.md
@@ -13,7 +13,7 @@ ms.date: 06/08/2017
# Report.FillColor Property (Access)
-You use the **FillColor** property to specify the color that fills in boxes and circles drawn on reports with the **[Line](Access.Report.Line.md)** and **[Circle](Access.Report.Circle.md)** methods. You can also use this property with[Visual Basic](../access/Concepts/Settings/set-properties-by-using-visual-basic.md)to create special visual effects on custom reports when you print using a color printer or preview the reports on a color monitor. Read/write **Long**.
+You use the **FillColor** property to specify the color that fills in boxes and circles drawn on reports with the **[Line](Access.Report.Line.md)** and **[Circle](Access.Report.Circle.md)** methods. You can also use this property with [Visual Basic](../access/Concepts/Settings/set-properties-by-using-visual-basic.md)to create special visual effects on custom reports when you print using a color printer or preview the reports on a color monitor. Read/write **Long**.
## Syntax
diff --git a/api/Access.Report.PrtDevMode.md b/api/Access.Report.PrtDevMode.md
index ca8b2a53f75..28d7268a953 100644
--- a/api/Access.Report.PrtDevMode.md
+++ b/api/Access.Report.PrtDevMode.md
@@ -42,17 +42,17 @@ The **PrtDevMode** property uses the following members.
|DriverExtra|An **Integer** that specifies the size, in bytes, of the optional **dmDriverData** member for device-specific data, which can follow this structure. If an application doesn't use device-specific information, you set this member to 0.|
|Fields|A **Long** value that specifies which of the remaining members in the DEVMODE structure have been initialized.|
|Orientation|An **Integer** that specifies the orientation of the paper. It can be either 1 (portrait) or 2 (landscape).|
-|PaperSize|An **Integer** that specifies the size of the paper to print on. If you set this member to 0 or 256, the length and width of the paper are specified by the PaperLength and PaperWidth members, respectively. Otherwise, you can set the PaperSize member to a predefined value. For available values, see the[PaperSize member values](overview/values-for-the-papersize-member.md).|
+|PaperSize|An **Integer** that specifies the size of the paper to print on. If you set this member to 0 or 256, the length and width of the paper are specified by the PaperLength and PaperWidth members, respectively. Otherwise, you can set the PaperSize member to a predefined value. For available values, see the [PaperSize member values](overview/values-for-the-papersize-member.md).|
|PaperLength|An **Integer** that specifies the paper length in units of 1/10 of a millimeter. This member overrides the paper length specified by the PaperSize member for custom paper sizes or for devices such as dot-matrix printers that can print on a variety of paper sizes.|
|PaperWidth|An **Integer** that specifies the paper width in units of 1/10 of a millimeter. This member overrides the paper width specified by the PaperSize member.|
|Scale|An **Integer** that specifies the factor by which the printed output will be scaled. The apparent page size is scaled from the physical page size by a factor of _scale_ /100. For example, a piece of paper measuring 8.5 by 11 inches (letter-size) with a Scale value of 50 would contain as much data as a page measuring 17 by 22 inches because the output text and graphics would be half their original height and width.|
|Copies|An **Integer** that specifies the number of copies printed if the printing device supports multiple-page copies.|
-|DefaultSource|An **Integer** that specifies the default bin from which the paper is fed. For available values, see the[DefaultSource member values](overview/values-for-the-defaultsource-member.md).|
+|DefaultSource|An **Integer** that specifies the default bin from which the paper is fed. For available values, see the [DefaultSource member values](overview/values-for-the-defaultsource-member.md).|
|PrintQuality|An **Integer** that specifies the printer resolution. The values are ?4 (high), ?3 (medium), ?2 (low), and ?1 (draft).|
|Color|An **Integer**. For a color printer, specifies whether the output is printed in color. The values are 1 (color) and 2 (monochrome).|
|Duplex|An **Integer**. For a printer capable of duplex printing, specifies whether the output is printed on both sides of the paper. The values are 1 (simplex), 2 (horizontal), and 3 (vertical).|
|YResolution|An **Integer** that specifies the y-resolution of the printer in dots per inch (dpi). If the printer initializes this member, the PrintQuality member specifies the x-resolution of the printer in dpi.|
-|TTOption|An **Integer** that specifies how TrueType fonts will be printed. For available values, see the[TTOption member values](overview/values-for-the-ttoption-member.md).|
+|TTOption|An **Integer** that specifies how TrueType fonts will be printed. For available values, see the [TTOption member values](overview/values-for-the-ttoption-member.md).|
|Collate|An **Integer** that specifies whether collation should be used when printing multiple copies. Using uncollated copies provides faster, more efficient output, since the data is sent to the printer just once.|
|FormName|A string with a maximum of 16 characters that specifies the size of paper to use; for example, "Letter" or "Legal".|
|Pad|A **Long** value that is used to pad out spaces, characters, or values for future versions.|
diff --git a/api/Access.Report.ScaleHeight.md b/api/Access.Report.ScaleHeight.md
index a474bce1b7d..4a85590ac70 100644
--- a/api/Access.Report.ScaleHeight.md
+++ b/api/Access.Report.ScaleHeight.md
@@ -27,7 +27,7 @@ You can use the **ScaleHeight** property to specify the number of units for the
The default setting is the internal height of a report page in twips.
-You can set the **ScaleHeight** property by using a macro or a[Visual Basic](../access/Concepts/Settings/set-properties-by-using-visual-basic.md)event procedure specified by a section's **OnPrint** property setting.
+You can set the **ScaleHeight** property by using a macro or a [Visual Basic](../access/Concepts/Settings/set-properties-by-using-visual-basic.md) event procedure specified by a section's **OnPrint** property setting.
You can use the **ScaleHeight** property to create a custom coordinate scale for drawing or printing. For example, the statement `ScaleHeight = 100` defines the internal height of the section as 100 units, or one vertical unit as one one-hundredth of the height.
diff --git a/api/Access.Report.ScaleLeft.md b/api/Access.Report.ScaleLeft.md
index 2357f9ddf1a..090d896e571 100644
--- a/api/Access.Report.ScaleLeft.md
+++ b/api/Access.Report.ScaleLeft.md
@@ -25,7 +25,7 @@ You can use the **ScaleLeft** property to specify the units for the horizontal
## Remarks
-You can set the **ScaleLeft** property by using a macro or a[Visual Basic](../access/Concepts/Settings/set-properties-by-using-visual-basic.md)event procedure specified by a section's **OnPrint** property setting.
+You can set the **ScaleLeft** property by using a macro or a [Visual Basic](../access/Concepts/Settings/set-properties-by-using-visual-basic.md) event procedure specified by a section's **OnPrint** property setting.
By using these properties and the related **ScaleHeight** and **ScaleWidth** properties, you can set up a custom coordinate system with both positive and negative coordinates. All four of these Scale properties interact with the **[ScaleMode](Access.Report.ScaleMode.md)** property in the following ways:
diff --git a/api/Access.Report.ScaleMode.md b/api/Access.Report.ScaleMode.md
index e0f860c9add..4ea6e3d2647 100644
--- a/api/Access.Report.ScaleMode.md
+++ b/api/Access.Report.ScaleMode.md
@@ -40,7 +40,7 @@ The **ScaleMode** property uses the following settings.
|6|Millimeters|
|7|Centimeters|
-You can set the **ScaleMode** property by using a macro or a[Visual Basic](../access/Concepts/Settings/set-properties-by-using-visual-basic.md)event procedure specified by a section's **OnPrint** property setting.
+You can set the **ScaleMode** property by using a macro or a [Visual Basic](../access/Concepts/Settings/set-properties-by-using-visual-basic.md) event procedure specified by a section's **OnPrint** property setting.
By using the related **ScaleHeight**, **ScaleWidth**, **ScaleLeft**, and **ScaleTop** properties, you can create a custom coordinate system with both positive and negative coordinates. All four properties interact with the **ScaleMode** property in the following ways:
diff --git a/api/Access.Report.ScaleTop.md b/api/Access.Report.ScaleTop.md
index 9bf83aeec73..956d756a5ce 100644
--- a/api/Access.Report.ScaleTop.md
+++ b/api/Access.Report.ScaleTop.md
@@ -25,7 +25,7 @@ You can use the **ScaleTop** property to specify the units for the vertical coo
## Remarks
-You can set the **ScaleTop** property by using a macro or a[Visual Basic](../access/Concepts/Settings/set-properties-by-using-visual-basic.md)event procedure specified by a section's **OnPrint** property setting.
+You can set the **ScaleTop** property by using a macro or a [Visual Basic](../access/Concepts/Settings/set-properties-by-using-visual-basic.md) event procedure specified by a section's **OnPrint** property setting.
By using these properties and the related **ScaleHeight** and **ScaleWidth** properties, you can set up a custom coordinate system with both positive and negative coordinates. All four of these Scale properties interact with the **[ScaleMode](Access.Report.ScaleMode.md)** property in the following ways:
diff --git a/api/Access.Report.ScaleWidth.md b/api/Access.Report.ScaleWidth.md
index a57c73298ee..1c7457d893f 100644
--- a/api/Access.Report.ScaleWidth.md
+++ b/api/Access.Report.ScaleWidth.md
@@ -27,7 +27,7 @@ You can use the **ScaleWidth** property to specify the number of units for the
The default setting is the internal width of a report page in twips.
-You can set the **ScaleWidth** property by using a macro or a[Visual Basic](../access/Concepts/Settings/set-properties-by-using-visual-basic.md)event procedure specified by a section's **OnPrint** property setting.
+You can set the **ScaleWidth** property by using a macro or a [Visual Basic](../access/Concepts/Settings/set-properties-by-using-visual-basic.md) event procedure specified by a section's **OnPrint** property setting.
You can use the **ScaleWidth** property to create a custom coordinate scale for drawing or printing. For example, the statement `ScaleWidth = 100` defines the internal width of the section as 100 units, or one horizontal unit as one one-hundredth of the width.
diff --git a/api/Access.RowSourceType.md b/api/Access.RowSourceType.md
index c1f45f65041..e67e8cfe4d8 100644
--- a/api/Access.RowSourceType.md
+++ b/api/Access.RowSourceType.md
@@ -131,9 +131,9 @@ End Function
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Search for specific Access error codes on Bing](https://www.bing.com/)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access wiki on UtterAcess](https://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/api/Access.SubForm.ControlType.md b/api/Access.SubForm.ControlType.md
index 9ea00ad9683..67cc62b6268 100644
--- a/api/Access.SubForm.ControlType.md
+++ b/api/Access.SubForm.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.SubForm.md b/api/Access.SubForm.md
index 230069f68d6..8127ee2395d 100644
--- a/api/Access.SubForm.md
+++ b/api/Access.SubForm.md
@@ -137,7 +137,7 @@ UtterAccess is the premier Microsoft Access wiki and help forum.
## See also
-- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access developer and VBA programming help center (FMS)](https://www.fmsinc.com/MicrosoftAccess/developer/)
diff --git a/api/Access.TabControl.ControlType.md b/api/Access.TabControl.ControlType.md
index 0ebb5cf8032..7ac950e4823 100644
--- a/api/Access.TabControl.ControlType.md
+++ b/api/Access.TabControl.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.TempVar.md b/api/Access.TempVar.md
index fb3b7259fb7..41770b5c79d 100644
--- a/api/Access.TempVar.md
+++ b/api/Access.TempVar.md
@@ -23,7 +23,7 @@ A **TempVar** objects provide a convenient way to exchange data between VBA pro
Although a **TempVar** object can be used to store information for use in VBA procedures, it does not have the same funcitonality as a VBA variable.
-- By default, a **TempVar** object remains in memory until Access is closed. You can use the **[Remove](Access.TempVars.Remove.md)** method or the[RemoveTempVar](overview/Access.md) macro action to remove a **TempVar** object.
+- By default, a **TempVar** object remains in memory until Access is closed. You can use the **[Remove](Access.TempVars.Remove.md)** method or the [RemoveTempVar](overview/Access.md) macro action to remove a **TempVar** object.
- In VBA, a **TempVar** object is accessible only to the members of the Access **[Application](Access.Application.md)** object, referenced databases, or add-ins.
diff --git a/api/Access.TempVars.md b/api/Access.TempVars.md
index 358a1602682..097d49e695e 100644
--- a/api/Access.TempVars.md
+++ b/api/Access.TempVars.md
@@ -18,11 +18,11 @@ Represents the collection of **[TempVar](Access.TempVar.md)** objects.
## Remarks
-Use the **[Add](Access.TempVars.Add.md)** method or the[SetTempVar](overview/Access.md) macro action to create a **TempVar** object.
+Use the **[Add](Access.TempVars.Add.md)** method or the [SetTempVar](overview/Access.md) macro action to create a **TempVar** object.
-Use the **[Remove](Access.TempVars.Remove.md)** method or the[RemoveTempVar](overview/Access.md) macro action to delete a **TempVar** object from the **TempVars** collection.
+Use the **[Remove](Access.TempVars.Remove.md)** method or the [RemoveTempVar](overview/Access.md) macro action to delete a **TempVar** object from the **TempVars** collection.
-Use the **[RemoveAll](Access.TempVars.RemoveAll.md)** method or[RemoveAllTempVars](overview/Access.md) macro action to delete all **TempVar** objects from the **TempVars** collection.
+Use the **[RemoveAll](Access.TempVars.RemoveAll.md)** method or [RemoveAllTempVars](overview/Access.md) macro action to delete all **TempVar** objects from the **TempVars** collection.
The **TempVars** collection can store up to 255 **TempVar** objects. If you do not remove a **TempVar** object, it will remain in memory until you close the database. It is a good practice to remove **TempVar** object variables when you are finished using them.
diff --git a/api/Access.TextBox.ControlType.md b/api/Access.TextBox.ControlType.md
index bbce76418e7..ad598829047 100644
--- a/api/Access.TextBox.ControlType.md
+++ b/api/Access.TextBox.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.ToggleButton.ControlType.md b/api/Access.ToggleButton.ControlType.md
index b1c1ac69b89..553ab93b802 100644
--- a/api/Access.ToggleButton.ControlType.md
+++ b/api/Access.ToggleButton.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.WSParameters.md b/api/Access.WSParameters.md
index 5a004f3178b..f39eab9c74a 100644
--- a/api/Access.WSParameters.md
+++ b/api/Access.WSParameters.md
@@ -18,7 +18,7 @@ Represents the collection of parameters of defined for an [Operation](Access.Ope
## Remarks
-Use the [WSParameters](Access.Operation.WSParameters.md) property of the[Operation](Access.Operation.md) object to get the parameters of a operation.
+Use the [WSParameters](Access.Operation.WSParameters.md) property of the [Operation](Access.Operation.md) object to get the parameters of a operation.
## Properties
diff --git a/api/Access.WebBrowserControl.ControlType.md b/api/Access.WebBrowserControl.ControlType.md
index 9f76de7ba24..bdd974cfcff 100644
--- a/api/Access.WebBrowserControl.ControlType.md
+++ b/api/Access.WebBrowserControl.ControlType.md
@@ -40,7 +40,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acLabel**|[Label](overview/label-control-access.md)|
|**acLine**|[Line](overview/line-control.md)|
|**acListBox**|[List box](overview/list-box-control.md)|
-|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md)or [Chart](overview/chart-control.md)|
+|**acObjectFrame**|[Unbound object frame](overview/unbound-object-frame-control.md) or [Chart](overview/chart-control.md)|
|**acOptionButton**|[Option button](overview/option-button-control.md)|
|**acOptionGroup**|[Option group](overview/option-group-control.md)|
|**acPage**|[Page](overview/page.md)|
@@ -49,7 +49,7 @@ The **ControlType** property setting is an intrinsic constant that specifies th
|**acSubform**|[Subform/subreport](overview/subform-subreport-control.md)|
|**acTabCtl**|[Tab](overview/tab-control.md)|
|**acTextBox**|[Text box](overview/text-box-control.md)|
-|**acToggleButton**|[Toggle button](overview/toggle-button-control.md)[Toggle button](overview/toggle-button-control.md)|
+|**acToggleButton**|[Toggle button](overview/toggle-button-control.md) [Toggle button](overview/toggle-button-control.md)|
**Note** The **ControlType** property can only be set by using Visual Basic in form Design view or report Design view, but it can be read in all views.
diff --git a/api/Access.WebBrowserControl.Enabled.md b/api/Access.WebBrowserControl.Enabled.md
index f79d934b3f2..9c40fc8f0e2 100644
--- a/api/Access.WebBrowserControl.Enabled.md
+++ b/api/Access.WebBrowserControl.Enabled.md
@@ -13,7 +13,7 @@ ms.date: 06/08/2017
# WebBrowserControl.Enabled Property (Access)
-You can use the **Enabled** property to set or return the status of the conditional format in the[FormatCondition](Access.FormatCondition.md)object. Read/write **Boolean**.
+You can use the **Enabled** property to set or return the status of the conditional format in the [FormatCondition](Access.FormatCondition.md)object. Read/write **Boolean**.
## Syntax
diff --git a/api/Access.WebService.md b/api/Access.WebService.md
index d277fe32283..8a796c35fd5 100644
--- a/api/Access.WebService.md
+++ b/api/Access.WebService.md
@@ -18,7 +18,7 @@ Represents a Data Service data connection.
## Remarks
-Use the [Item](Access.WebServices.Item.md) property of the[WebServices](Access.WebServices.md) collection to return a **WebService** object.
+Use the [Item](Access.WebServices.Item.md) property of the [WebServices](Access.WebServices.md) collection to return a **WebService** object.
A Data Service data connection may contain one or more entities. Each entity specifies an external content type. Used throughout the functionality and services offered by Business Connectivity Services, external content types are reusable metadata descriptions of connectivity information and data definitions plus the behaviors you want to apply to a certain category of external data. Use the [Entities](Access.WebService.Entities.md) property to return the entities defined for a Data Service data connection.
diff --git a/api/Access.WebServices.md b/api/Access.WebServices.md
index d621f8b1e74..0d0059854eb 100644
--- a/api/Access.WebServices.md
+++ b/api/Access.WebServices.md
@@ -18,7 +18,7 @@ Represents the collection of Data Services data connections installed in the dat
## Remarks
-Use the [WebServices](Access.Application.WebServices.md) property of the[Application Object](Access.Application.md) to return the colleciton of installed Data Services data connections.
+Use the [WebServices](Access.Application.WebServices.md) property of the [Application Object](Access.Application.md) to return the colleciton of installed Data Services data connections.
Use the following steps to install a Data Services data connection in your database.
diff --git a/api/Access.format.propertydate.time.md b/api/Access.format.propertydate.time.md
index af85d1cbfa4..4e8eaa89afc 100644
--- a/api/Access.format.propertydate.time.md
+++ b/api/Access.format.propertydate.time.md
@@ -92,9 +92,9 @@ Positive numbers are displayed as years with an "A.D." before the year. Negative
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Search for specific Access error codes on Bing](https://www.bing.com/)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access wiki on UtterAcess](https://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/api/Access.format.propertynumber.and.currency.md b/api/Access.format.propertynumber.and.currency.md
index e302d2c2160..7f72d501c05 100644
--- a/api/Access.format.propertynumber.and.currency.md
+++ b/api/Access.format.propertynumber.and.currency.md
@@ -44,7 +44,7 @@ Custom number formats can have one to four sections with semicolons (;) as the l
For example, you could use the following custom Currency format:
```vb
-$#,##0.00[Green];($#,##0.00)[Red];"Zero";"Null"
+$#,##0.00[Green];($#,##0.00) [Red];"Zero";"Null"
```
This number format contains four sections separated by semicolons and uses a different format for each section.
@@ -95,9 +95,9 @@ The following are examples of custom number formats.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Search for specific Access error codes on Bing](https://www.bing.com/)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access wiki on UtterAcess](https://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/api/Access.format.propertytext.and.memo.md b/api/Access.format.propertytext.and.memo.md
index 0d84c311bc8..ff7eacf7487 100644
--- a/api/Access.format.propertytext.and.memo.md
+++ b/api/Access.format.propertytext.and.memo.md
@@ -58,9 +58,9 @@ The following are examples of text and memo custom formats.
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Search for specific Access error codes on Bing](https://www.bing.com/)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access wiki on UtterAcess](https://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/api/Access.format.propertyyes.no.md b/api/Access.format.propertyyes.no.md
index ffe386458e7..bdf1fbaaea5 100644
--- a/api/Access.format.propertyyes.no.md
+++ b/api/Access.format.propertyyes.no.md
@@ -49,9 +49,9 @@ The following example shows a custom yes/no format for a text box control. The c
## See also
-- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)
+- [Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/home?forum=accessdev)
- [Access help on support.office.com](https://support.office.com/search/results?query=Access)
-- [Access help on answers.microsoft.com](https://answers.microsoft.com/en-us/office/forum/access?page=1&;tab=question&;status=all&;auth=1)
+- [Access help on answers.microsoft.com](https://answers.microsoft.com/)
- [Search for specific Access error codes on Bing](https://www.bing.com/)
- [Access forums on UtterAccess](https://www.utteraccess.com/forum/index.php?act=idx)
- [Access wiki on UtterAcess](https://www.utteraccess.com/forum/index.php?act=idx)
diff --git a/api/Excel.AddIns.md b/api/Excel.AddIns.md
index 7e20de3e7f7..dceee49756d 100644
--- a/api/Excel.AddIns.md
+++ b/api/Excel.AddIns.md
@@ -38,7 +38,7 @@ Sub DisplayAddIns()
End Sub
```
-Use the **[Add](Excel.AddIns.Add.md)** method to add an add-in to the list of available add-ins. The **Add** method adds an add-in to the list but doesn't install the add-in. Set the[Installed](Excel.AddIn.Installed.md) property of the add-in to **True** to install the add-in. To install an add-in that doesn't appear in the list of available add-ins, you must first use the **Add** method and then set the **Installed** property. This can be done in a single step, as shown in the following example (note that you use the name of the add-in, not its title, with the **Add** method).
+Use the **[Add](Excel.AddIns.Add.md)** method to add an add-in to the list of available add-ins. The **Add** method adds an add-in to the list but doesn't install the add-in. Set the [Installed](Excel.AddIn.Installed.md) property of the add-in to **True** to install the add-in. To install an add-in that doesn't appear in the list of available add-ins, you must first use the **Add** method and then set the **Installed** property. This can be done in a single step, as shown in the following example (note that you use the name of the add-in, not its title, with the **Add** method).
diff --git a/api/Excel.Application.ActiveSheet.md b/api/Excel.Application.ActiveSheet.md
index 7c8acd6665d..78d8d319343 100644
--- a/api/Excel.Application.ActiveSheet.md
+++ b/api/Excel.Application.ActiveSheet.md
@@ -39,7 +39,7 @@ This example displays the name of the active sheet.
MsgBox "The name of the active sheet is " & ActiveSheet.Name
```
- **Sample code provided by:** Holy Macro! Books,[Holy Macro! It's 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&;p=1)
+ **Sample code provided by:** Holy Macro! Books, [Holy Macro! It's 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&;p=1)
This example creates a print preview of the active sheet that has the page number at the top of column B on each page.
diff --git a/api/Excel.Application.Cells.md b/api/Excel.Application.Cells.md
index 4f2e4bb8674..ef5caae3e12 100644
--- a/api/Excel.Application.Cells.md
+++ b/api/Excel.Application.Cells.md
@@ -32,7 +32,7 @@ Using this property without an object qualifier returns a **Range** object that
## Example
- **Sample code provided by:** Tom Urtis,[Atlas Programming Management](https://www.atlaspm.com/)
+ **Sample code provided by:** Tom Urtis, [Atlas Programming Management](https://www.atlaspm.com/)
This example looks at data in each row and inserts a blank row each time the value in column A changes.
diff --git a/api/Excel.Application.Dialogs.md b/api/Excel.Application.Dialogs.md
index b98cc3300df..6ab3bd99808 100644
--- a/api/Excel.Application.Dialogs.md
+++ b/api/Excel.Application.Dialogs.md
@@ -34,7 +34,7 @@ Application.Dialogs(xlDialogOpen).Show
- **Sample code provided by:** Bill Jelen,[MrExcel.com](https://www.mrexcel.com/)
+ **Sample code provided by:** Bill Jelen, [MrExcel.com](https://www.mrexcel.com/)
diff --git a/api/Excel.Application.ProtectedViewWindowActivate.md b/api/Excel.Application.ProtectedViewWindowActivate.md
index 15185ef3f4d..f75c8905e79 100644
--- a/api/Excel.Application.ProtectedViewWindowActivate.md
+++ b/api/Excel.Application.ProtectedViewWindowActivate.md
@@ -38,7 +38,7 @@ Nothing
## Remarks
-For more information about how to use event procedures with the **Application** object, see[Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
+For more information about how to use event procedures with the **Application** object, see [Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
## See also
diff --git a/api/Excel.Application.ProtectedViewWindowBeforeClose.md b/api/Excel.Application.ProtectedViewWindowBeforeClose.md
index a2a56c6e56e..5eed46a342a 100644
--- a/api/Excel.Application.ProtectedViewWindowBeforeClose.md
+++ b/api/Excel.Application.ProtectedViewWindowBeforeClose.md
@@ -40,7 +40,7 @@ Nothing
## Example
-The following code example prompts the user for a yes or no response before closing the **Protected View** window. This code must be placed in a class module and an instance of that class must be correctly initialized. For more information about how to use event procedures with the **Application** object, see[Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
+The following code example prompts the user for a yes or no response before closing the **Protected View** window. This code must be placed in a class module and an instance of that class must be correctly initialized. For more information about how to use event procedures with the **Application** object, see [Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
```vb
diff --git a/api/Excel.Application.ProtectedViewWindowBeforeEdit.md b/api/Excel.Application.ProtectedViewWindowBeforeEdit.md
index 84b985ed45f..f8ff2752e3d 100644
--- a/api/Excel.Application.ProtectedViewWindowBeforeEdit.md
+++ b/api/Excel.Application.ProtectedViewWindowBeforeEdit.md
@@ -39,7 +39,7 @@ Nothing
## Example
-The following code example prompts the user for a yes or no response before enabling editing on a workbook in a **Protected View** window. This code must be placed in a class module, and an instance of the class must be correctly initialized. For more information about how to use event procedures with the **Application** object, see[Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
+The following code example prompts the user for a yes or no response before enabling editing on a workbook in a **Protected View** window. This code must be placed in a class module, and an instance of the class must be correctly initialized. For more information about how to use event procedures with the **Application** object, see [Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
```vb
diff --git a/api/Excel.Application.ProtectedViewWindowDeactivate.md b/api/Excel.Application.ProtectedViewWindowDeactivate.md
index 8e1a62b01f1..30fc1caa9fd 100644
--- a/api/Excel.Application.ProtectedViewWindowDeactivate.md
+++ b/api/Excel.Application.ProtectedViewWindowDeactivate.md
@@ -38,7 +38,7 @@ Occurs when a **Protected View** window is deactivated.
## Example
-The following code example minimizes any **Protected View** window when it is deactivated. This code must be placed in a class module and an instance of that class must be correctly initialized. For more information about how to use event procedures with the **Application** object, see[Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
+The following code example minimizes any **Protected View** window when it is deactivated. This code must be placed in a class module and an instance of that class must be correctly initialized. For more information about how to use event procedures with the **Application** object, see [Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
```vb
diff --git a/api/Excel.Application.ProtectedViewWindowOpen.md b/api/Excel.Application.ProtectedViewWindowOpen.md
index 3ef56afeeec..0f140d77e46 100644
--- a/api/Excel.Application.ProtectedViewWindowOpen.md
+++ b/api/Excel.Application.ProtectedViewWindowOpen.md
@@ -38,7 +38,7 @@ Nothing
## Example
-The following code example informs the user that the workbook will be opened in a **Protected View** window. This code must be placed in a class module and an instance of that class must be correctly initialized. For more information about how to use event procedures with the **Application** object, see[Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
+The following code example informs the user that the workbook will be opened in a **Protected View** window. This code must be placed in a class module and an instance of that class must be correctly initialized. For more information about how to use event procedures with the **Application** object, see [Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
```vb
diff --git a/api/Excel.Application.ProtectedViewWindowResize.md b/api/Excel.Application.ProtectedViewWindowResize.md
index e41dd4c5026..a831c73b163 100644
--- a/api/Excel.Application.ProtectedViewWindowResize.md
+++ b/api/Excel.Application.ProtectedViewWindowResize.md
@@ -38,7 +38,7 @@ Nothing
## Remarks
-For more information about how to use event procedures with the **Application** object, see[Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
+For more information about how to use event procedures with the **Application** object, see [Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
## See also
diff --git a/api/Excel.Application.Selection.md b/api/Excel.Application.Selection.md
index fb4f47a29e5..759587fe9ea 100644
--- a/api/Excel.Application.Selection.md
+++ b/api/Excel.Application.Selection.md
@@ -66,6 +66,6 @@ End Sub
## See also
-[TypeName function](https://msdn.microsoft.com/en-us/vba/language-reference-vba/articles/typename-function)
+[TypeName function](https://msdn.microsoft.com/vba/language-reference-vba/articles/typename-function)
[Application Object](Excel.Application(object).md)
diff --git a/api/Excel.Application.WindowActivate.md b/api/Excel.Application.WindowActivate.md
index b80131f4666..2cb0c678b52 100644
--- a/api/Excel.Application.WindowActivate.md
+++ b/api/Excel.Application.WindowActivate.md
@@ -34,7 +34,7 @@ Occurs when any workbook window is activated.
## Remarks
-For information about how to use event procedures with the **Application** object, see[Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
+For information about how to use event procedures with the **Application** object, see [Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
## See also
diff --git a/api/Excel.Application.WindowResize.md b/api/Excel.Application.WindowResize.md
index 97a26d69948..1902632b565 100644
--- a/api/Excel.Application.WindowResize.md
+++ b/api/Excel.Application.WindowResize.md
@@ -34,7 +34,7 @@ Occurs when any workbook window is resized.
## Remarks
-For information about how to use event procedures with the **Application** object, see[Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
+For information about how to use event procedures with the **Application** object, see [Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
## See also
diff --git a/api/Excel.Application.WorkbookBeforeClose.md b/api/Excel.Application.WorkbookBeforeClose.md
index 08370f3e9ed..4eae7292199 100644
--- a/api/Excel.Application.WorkbookBeforeClose.md
+++ b/api/Excel.Application.WorkbookBeforeClose.md
@@ -39,7 +39,7 @@ Nothing
## Example
-This example prompts the user for a yes or no response before closing any workbook. For more information about how to use event procedures with the **Application** object, see[Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
+This example prompts the user for a yes or no response before closing any workbook. For more information about how to use event procedures with the **Application** object, see [Using Events with the Application Object](../excel/Concepts/Events-WorksheetFunctions-Shapes/using-events-with-the-application-object.md).
```vb
diff --git a/api/Excel.AutoFilter.md b/api/Excel.AutoFilter.md
index 35b45c37cf6..ce41c805fae 100644
--- a/api/Excel.AutoFilter.md
+++ b/api/Excel.AutoFilter.md
@@ -19,7 +19,7 @@ Represents autofiltering for the specified worksheet.
**Note** When using **AutoFilter** with dates, the format should be consistent with English date separators ("/") instead of local settings ("."). A valid date would be "2/2/2007", whereas "2.2.2007" is invalid.
- **Note** Working with objects (e g **Interior** Object) requires adding a reference to an object. You will find more information about assigning an Object reference to a variable or property in the[Set Statement](../language/reference/User-Interface-Help/set-statement.md).
+ **Note** Working with objects (e g **Interior** Object) requires adding a reference to an object. You will find more information about assigning an Object reference to a variable or property in the [Set Statement](../language/reference/User-Interface-Help/set-statement.md).
## Example
diff --git a/api/Excel.CalculatedMember.md b/api/Excel.CalculatedMember.md
index 67d6767f073..3bece742be2 100644
--- a/api/Excel.CalculatedMember.md
+++ b/api/Excel.CalculatedMember.md
@@ -18,7 +18,7 @@ Represents the calculated fields, calculated items, and named sets for PivotTabl
## Remarks
-Use the **[Add](Excel.CalculatedMembers.Add.md)** method or the[Item](Excel.CalculatedMembers.Item.md) property of the **[CalculatedMembers](Excel.CalculatedMembers.md)** collection to return a **CalculatedMember** object.
+Use the **[Add](Excel.CalculatedMembers.Add.md)** method or the [Item](Excel.CalculatedMembers.Item.md) property of the **[CalculatedMembers](Excel.CalculatedMembers.md)** collection to return a **CalculatedMember** object.
With a **CalculatedMember** object you can check the validity of a calculated field or item in a PivotTable using the **[IsValid](Excel.CalculatedMember.IsValid.md)** property.
diff --git a/api/Excel.Dialogs.md b/api/Excel.Dialogs.md
index b9e96d8bb76..c770d466848 100644
--- a/api/Excel.Dialogs.md
+++ b/api/Excel.Dialogs.md
@@ -43,7 +43,7 @@ dlgAnswer = Application.Dialogs(xlDialogOpen).Show
- **Sample code provided by:** Bill Jelen,[MrExcel.com](https://www.mrexcel.com/)
+ **Sample code provided by:** Bill Jelen, [MrExcel.com](https://www.mrexcel.com/)
The following code example opens an e-mail message in Microsoft Outlook with the current workbook attached.
diff --git a/api/Excel.FormatCondition.NumberFormat.md b/api/Excel.FormatCondition.NumberFormat.md
index 2c758659389..497d34a52b6 100644
--- a/api/Excel.FormatCondition.NumberFormat.md
+++ b/api/Excel.FormatCondition.NumberFormat.md
@@ -25,7 +25,7 @@ Returns or sets the number format applied to a cell if the conditional formattin
## Remarks
-The number format is specified using the same format codes displayed on the **Number** tab of the **Format Cells** dialog box. You can use a built-in number format, for example `"General"`, or [create a custom number format](https://office.microsoft.com/en-us/excel-help/create-or-delete-a-custom-number-format-HP010342372.aspx).
+The number format is specified using the same format codes displayed on the **Number** tab of the **Format Cells** dialog box. You can use a built-in number format, for example `"General"`, or [create a custom number format](https://support.office.com/article/create-or-delete-a-custom-number-format-78f2a361-936b-4c03-8772-09fab54be7f4?ocmsassetID=HP010342372&CorrelationId=da8e4328-d0fa-429c-94c6-063f57b60744&ui=en-US&rs=en-US&ad=US).
## See also
diff --git a/api/Excel.Interior(object).md b/api/Excel.Interior(object).md
index b098cff3b4b..a6cccaca359 100644
--- a/api/Excel.Interior(object).md
+++ b/api/Excel.Interior(object).md
@@ -25,7 +25,7 @@ Use the **[Interior](Excel.Range.Interior.md)** property to return the **Interi
Worksheets("Sheet1").Range("A1").Interior.ColorIndex = 3
```
- **Sample code provided by:** Holy Macro! Books,[Holy Macro! It's 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&p=1)
+ **Sample code provided by:** Holy Macro! Books, [Holy Macro! It's 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&p=1)
This example gets the value of the color of a cell in column A using the **ColorIndex** property, and then uses that value to sort the range by color.
diff --git a/api/Excel.ListColumns.md b/api/Excel.ListColumns.md
index f43a0c5c170..d38ae37a938 100644
--- a/api/Excel.ListColumns.md
+++ b/api/Excel.ListColumns.md
@@ -26,7 +26,7 @@ A collection of all the **[ListColumn](Excel.ListColumn.md)** objects in the sp
## Example
-Use the **[ListColumns](Excel.ListObject.ListColumns.md)** property of the[ListObject](Excel.ListObject.md) object to return the **[ListColumns](Excel.ListColumns.md)** collection. The following example adds a new column to the default **ListObject** object in the first worksheet of the workbook. Because no position is specified, a new rightmost column is added.
+Use the **[ListColumns](Excel.ListObject.ListColumns.md)** property of the [ListObject](Excel.ListObject.md) object to return the **[ListColumns](Excel.ListColumns.md)** collection. The following example adds a new column to the default **ListObject** object in the first worksheet of the workbook. Because no position is specified, a new rightmost column is added.
```vb
diff --git a/api/Excel.ListDataFormat.md b/api/Excel.ListDataFormat.md
index 2edcfce17e0..1b5b8bd88e4 100644
--- a/api/Excel.ListDataFormat.md
+++ b/api/Excel.ListDataFormat.md
@@ -18,7 +18,7 @@ The **ListDataFormat** object holds all the data type properties of the **[List
## Remarks
-Use the [ListDataFormat](Excel.ListObject.ListColumns.md) property of the[ListColumn](Excel.ListObject.md) object to return a **ListDataFormat** object. The default property of the ListDataFormat object is the **[Type](Excel.ListDataFormat.Type.md)** property which indicates the data type of the list column. This allows the user to write code without specifying the **Type** property.
+Use the [ListDataFormat](Excel.ListObject.ListColumns.md) property of the [ListColumn](Excel.ListObject.md) object to return a **ListDataFormat** object. The default property of the ListDataFormat object is the **[Type](Excel.ListDataFormat.Type.md)** property which indicates the data type of the list column. This allows the user to write code without specifying the **Type** property.
## Example
diff --git a/api/Excel.ListObjects.md b/api/Excel.ListObjects.md
index ae9777cb413..c3a75c9781a 100644
--- a/api/Excel.ListObjects.md
+++ b/api/Excel.ListObjects.md
@@ -18,7 +18,7 @@ A collection of all the **[ListObject](Excel.ListObject.md)** objects on a work
## Remarks
-Use the **[ListObjects](Excel.Worksheet.ListObjects.md)** property of the[Worksheet](Excel.Worksheet.md) object to return the **ListObjects** collection.
+Use the **[ListObjects](Excel.Worksheet.ListObjects.md)** property of the [Worksheet](Excel.Worksheet.md) object to return the **ListObjects** collection.
## Example
diff --git a/api/Excel.Names.md b/api/Excel.Names.md
index ecf74df93e9..52b72ab3668 100644
--- a/api/Excel.Names.md
+++ b/api/Excel.Names.md
@@ -55,7 +55,7 @@ Use **Names** ( _index_ ), where _index_ is the name index number or defined na
ActiveWorkbook.Names("mySortRange").Delete
```
- **Sample code provided by:** Dennis Wallentin,[VSTO &; .NET &; Excel](https://xldennis.wordpress.com/)
+ **Sample code provided by:** Dennis Wallentin, [VSTO &; .NET &; Excel](https://xldennis.wordpress.com/)
This example uses a named range as the formula for data validation. This example requires the validation data to be on Sheet 2 in the range A2:A100. This validation data is used to validate data entered on Sheet 1 in the range D2:D10.
diff --git a/api/Excel.PivotTables.md b/api/Excel.PivotTables.md
index 82378149a41..ea0381d37b4 100644
--- a/api/Excel.PivotTables.md
+++ b/api/Excel.PivotTables.md
@@ -19,7 +19,7 @@ A collection of all the **[PivotTable](Excel.PivotTable.md)** objects in the sp
## Remarks
- **Note** The [Workbook.PivotTables](Excel.workbook.pivottables.md) property (which is new for Office) does not return all the **PivotTable** objects in the workbook; instead it returns only those associated with decoupled PivotCharts. However,[Worksheet.PivotTables](Excel.Worksheet.PivotTables.md) returns all the **PivotTable** objects in the worksheet, irrespective of whether they are associated with decoupled PivotCharts.
+ **Note** The [Workbook.PivotTables](Excel.workbook.pivottables.md) property (which is new for Office) does not return all the **PivotTable** objects in the workbook; instead it returns only those associated with decoupled PivotCharts. However, [Worksheet.PivotTables](Excel.Worksheet.PivotTables.md) returns all the **PivotTable** objects in the worksheet, irrespective of whether they are associated with decoupled PivotCharts.
Because PivotTable report programming can be complex, it's generally easiest to record PivotTable report actions and then revise the recorded code.
diff --git a/api/Excel.ProtectedViewWindow.md b/api/Excel.ProtectedViewWindow.md
index 06fe593e0c7..113964aa2c3 100644
--- a/api/Excel.ProtectedViewWindow.md
+++ b/api/Excel.ProtectedViewWindow.md
@@ -33,7 +33,7 @@ A **Protected View** window is used to display a workbook from a potentially un
-Workbooks displayed in a **Protected View** window cannot be edited and are restricted from running active content such as Visual Basic for Applications macros and data connections. For more information about **Protected View** windows, see[What is Protected View?](https://office.microsoft.com/en-us/excel-help/what-is-protected-view-HA010355931.aspx?CTT=1)
+Workbooks displayed in a **Protected View** window cannot be edited and are restricted from running active content such as Visual Basic for Applications macros and data connections. For more information about **Protected View** windows, see [What is Protected View?](https://support.office.com/article/what-is-protected-view-d6f09ac7-e6b9-4495-8e43-2bbcdbcb6653?ocmsassetID=HA010355931&CTT=1&CorrelationId=ad189265-115e-4f59-bdf0-ee99038a5bb0&ui=en-US&rs=en-US&ad=US)
To return a single **ProtectedViewWindow** object from the **[ProtectedViewWindows](Excel.ProtectedViewWindows.md)** collection, use `ProtectedViewWindows(Index)`, where _Index_ is the index number of the window you want to open. You can also access the **ProtectedViewWindow** object that represents the active **Protected View** window by using the **[ActiveProtectedViewWindow](Excel.Application.ActiveProtectedViewWindow.md)** property of the **[Application](Excel.Application(object).md)** object.
diff --git a/api/Excel.Range.Cells.md b/api/Excel.Range.Cells.md
index 663cd2775c0..4e03cacdf72 100644
--- a/api/Excel.Range.Cells.md
+++ b/api/Excel.Range.Cells.md
@@ -54,7 +54,7 @@ For n = 2 To r.Rows.Count
Next n
```
- **Sample code provided by:** Holy Macro! Books,[Holy Macro! It's 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&;p=1)
+ **Sample code provided by:** Holy Macro! Books, [Holy Macro! It's 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&;p=1)
This example looks through column C, and for every cell that has a comment, it puts the comment text into column D and deletes the comment from column C.
diff --git a/api/Excel.Range.Column.md b/api/Excel.Range.Column.md
index 72a13d3d0aa..52a6614f2d7 100644
--- a/api/Excel.Range.Column.md
+++ b/api/Excel.Range.Column.md
@@ -45,7 +45,7 @@ For Each col In Worksheets("Sheet1").Columns
Next col
```
- **Sample code provided by:** Dennis Wallentin,[VSTO &; .NET &; Excel](https://xldennis.wordpress.com/)
+ **Sample code provided by:** Dennis Wallentin, [VSTO &; .NET &; Excel](https://xldennis.wordpress.com/)
This example deletes the empty columns from a selected range.
diff --git a/api/Excel.Range.ConvertToLinkedDataType.md b/api/Excel.Range.ConvertToLinkedDataType.md
index 22e53282b3c..76205daf5e7 100644
--- a/api/Excel.Range.ConvertToLinkedDataType.md
+++ b/api/Excel.Range.ConvertToLinkedDataType.md
@@ -12,7 +12,7 @@ ms.date: 09/12/2018
# Range.ConvertToLinkedDataType method (Excel)
-Attempts to convert all the cells in the range to a Linked data type such as [Stocks or Geography](https://support.office.com/en-us/article/stock-quotes-and-geographic-data-61a33056-9935-484f-8ac8-f1a89e210877).
+Attempts to convert all the cells in the range to a Linked data type such as [Stocks or Geography](https://support.office.com/article/stock-quotes-and-geographic-data-61a33056-9935-484f-8ac8-f1a89e210877).
## Syntax
@@ -26,7 +26,7 @@ Attempts to convert all the cells in the range to a Linked data type such as [St
|**Name**|**Required/Optional**|**Data Type**|**Description**|
|:-----|:-----|:-----|:-----|
| _ServiceID_|Required| **Long**|The ID of the service that will provide the linked entity.|
-| _LanguageCulture_|Required| **String**|A string representing the [LCID](https://msdn.microsoft.com/en-us/library/cc233982.aspx) of the language and culture that you would like to use for the linked entity. |
+| _LanguageCulture_|Required| **String**|A string representing the [LCID](https://msdn.microsoft.com/library/cc233982.aspx) of the language and culture that you would like to use for the linked entity. |
## Remarks
diff --git a/api/Excel.Range.Copy.md b/api/Excel.Range.Copy.md
index 6e8b36967a5..1455e7b414c 100644
--- a/api/Excel.Range.Copy.md
+++ b/api/Excel.Range.Copy.md
@@ -48,7 +48,7 @@ Worksheets("Sheet1").Range("A1:D4").Copy _
- **Sample code provided by:** Bill Jelen,[MrExcel.com](https://www.mrexcel.com/)
+ **Sample code provided by:** Bill Jelen, [MrExcel.com](https://www.mrexcel.com/)
The following code example inspects the value in column D for each row in Sheet1. If the value in column D equals "A" the entire row is copied onto SheetA, in the next empty row. If the value equals "B" the row is copied onto SheetB.
diff --git a/api/Excel.Range.DataTypeToText.md b/api/Excel.Range.DataTypeToText.md
index d85fbfa3652..5baab56e6a2 100644
--- a/api/Excel.Range.DataTypeToText.md
+++ b/api/Excel.Range.DataTypeToText.md
@@ -12,7 +12,7 @@ ms.date: 09/12/2018
# Range.DataTypeToText method (Excel)
-If any of the cells in the range are a Linked data type such as [Stocks or Geography](https://support.office.com/en-us/article/stock-quotes-and-geographic-data-61a33056-9935-484f-8ac8-f1a89e210877), this call will convert their values to text.
+If any of the cells in the range are a Linked data type such as [Stocks or Geography](https://support.office.com/article/stock-quotes-and-geographic-data-61a33056-9935-484f-8ac8-f1a89e210877), this call will convert their values to text.
## Syntax
diff --git a/api/Excel.Range.EntireRow.md b/api/Excel.Range.EntireRow.md
index 79ce48eea3b..1ad1b9a815d 100644
--- a/api/Excel.Range.EntireRow.md
+++ b/api/Excel.Range.EntireRow.md
@@ -32,7 +32,7 @@ This example sets the value of the first cell in the row that contains the activ
ActiveCell.EntireRow.Cells(1, 1).Value = 5
```
- **Sample code provided by:** Holy Macro! Books,[Holy Macro! It's 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&;p=1)
+ **Sample code provided by:** Holy Macro! Books, [Holy Macro! It's 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&;p=1)
This example sorts all the rows on a worksheet, including hidden rows.
diff --git a/api/Excel.Range.Find.md b/api/Excel.Range.Find.md
index ea1dbf054ea..4b86e7d6ef6 100644
--- a/api/Excel.Range.Find.md
+++ b/api/Excel.Range.Find.md
@@ -50,7 +50,7 @@ This method returns **Nothing** if no match is found. The **Find** method does
The settings for _LookIn_, _LookAt_, _SearchOrder_, and _MatchByte_ are saved each time you use this method. If you do not specify values for these arguments the next time you call the method, the saved values are used. Setting these arguments changes the settings in the **Find** dialog box, and changing the settings in the **Find** dialog box changes the saved values that are used if you omit the arguments. To avoid problems, set these arguments explicitly each time you use this method.
-You can use the [FindNext](Excel.Range.FindNext.md) and[FindPrevious](Excel.Range.FindPrevious.md) methods to repeat the search.
+You can use the [FindNext](Excel.Range.FindNext.md) and [FindPrevious](Excel.Range.FindPrevious.md) methods to repeat the search.
When the search reaches the end of the specified search range, it wraps around to the beginning of the range. To stop a search when this wraparound occurs, save the address of the first found cell, and then test each successive found-cell address against this saved address.
@@ -79,7 +79,7 @@ With Worksheets(1).Range("a1:a500")
End With
```
- **Sample code provided by:** Holy Macro! Books,[Holy Macro! It's 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&;p=1)
+ **Sample code provided by:** Holy Macro! Books, [Holy Macro! It's 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&;p=1)
This example takes a path and name of a workbook and a search term, and searches the specified workbook for the search term. If the search term is found, the address of the result is stored in cell D10 of the current workbook.
diff --git a/api/Excel.Range.Formula.md b/api/Excel.Range.Formula.md
index 148a310882c..d5b502fa209 100644
--- a/api/Excel.Range.Formula.md
+++ b/api/Excel.Range.Formula.md
@@ -47,7 +47,7 @@ Worksheets("Sheet1").Range("A1").Formula = "=$A$4+$A$10"
- **Sample code provided by:** Bill Jelen,[MrExcel.com](https://www.mrexcel.com/)
+ **Sample code provided by:** Bill Jelen, [MrExcel.com](https://www.mrexcel.com/)
The following code example sets the formula for cell A1 on Sheet1 to display today's date.
diff --git a/api/Excel.Range.HasRichDataType.md b/api/Excel.Range.HasRichDataType.md
index 113fa59ae8c..d2363a75375 100644
--- a/api/Excel.Range.HasRichDataType.md
+++ b/api/Excel.Range.HasRichDataType.md
@@ -24,7 +24,7 @@ ms.date: 09/12/2018
## Remarks
-Linked data types such as [Stocks or Geography](https://support.office.com/en-us/article/stock-quotes-and-geographic-data-61a33056-9935-484f-8ac8-f1a89e210877) are a kind of Rich data type. For linked types, only cells whose [LinkedDataTypeState property](Excel.Range.LinkedDataTypeState.md) is `ValidLinkedData`, `FetchingData`, or `BrokenLinkedData` will be counted as Rich data types by the `HasRichDataType` property.
+Linked data types such as [Stocks or Geography](https://support.office.com/article/stock-quotes-and-geographic-data-61a33056-9935-484f-8ac8-f1a89e210877) are a kind of Rich data type. For linked types, only cells whose [LinkedDataTypeState property](Excel.Range.LinkedDataTypeState.md) is `ValidLinkedData`, `FetchingData`, or `BrokenLinkedData` will be counted as Rich data types by the `HasRichDataType` property.
Cells in the `DisambiguationNeeded` or `None` states do _not_ count as Rich data types. See the [XlLinkedDataTypeState enum](Excel.XlLinkedDataTypeState.md) for more information about possible Linked data type states.
diff --git a/api/Excel.Range.LinkedDataTypeState.md b/api/Excel.Range.LinkedDataTypeState.md
index a6ab180ea99..5192064bf6c 100644
--- a/api/Excel.Range.LinkedDataTypeState.md
+++ b/api/Excel.Range.LinkedDataTypeState.md
@@ -12,7 +12,7 @@ ms.date: 09/12/2018
# Range.LinkedDataTypeState property (Excel)
-Returns information about the state of any Linked data types, such as [Stocks or Geography](https://support.office.com/en-us/article/stock-quotes-and-geographic-data-61a33056-9935-484f-8ac8-f1a89e210877), in the range. Possible values are from the enum **[XlLinkedDataTypeState](Excel.XlLinkedDataTypeState.md)**. Read-only.
+Returns information about the state of any Linked data types, such as [Stocks or Geography](https://support.office.com/article/stock-quotes-and-geographic-data-61a33056-9935-484f-8ac8-f1a89e210877), in the range. Possible values are from the enum **[XlLinkedDataTypeState](Excel.XlLinkedDataTypeState.md)**. Read-only.
## Syntax
diff --git a/api/Excel.Range.Row.md b/api/Excel.Range.Row.md
index e523e556256..c87c6a46ac2 100644
--- a/api/Excel.Range.Row.md
+++ b/api/Excel.Range.Row.md
@@ -36,7 +36,7 @@ For Each rw In Worksheets("Sheet1").Rows
Next rw
```
- **Sample code provided by:** Holy Macro! Books,[Holy Macro! It's 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&;p=1) |[About the Contributors](Excel.Range.Row.md#AboutContributor)
+ **Sample code provided by:** Holy Macro! Books, [Holy Macro! It's 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&;p=1) |[About the Contributors](Excel.Range.Row.md#AboutContributor)
This example uses the **BeforeDoubleClick** worksheet event to copy a row of data from one worksheet to another. To run this code, the name of the target worksheet must be in column A. When you double click a cell that contains data, this example gets the target worksheet name from column A and copies the entire row of data into the next available row on the target worksheet. This example accesses the active row using the **Target** keyword.
@@ -74,7 +74,7 @@ Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean
End Sub
```
- **Sample code provided by:** Dennis Wallentin,[VSTO &; .NET &; Excel](https://xldennis.wordpress.com/) |[About the Contributors](Excel.Range.Row.md#AboutContributor)
+ **Sample code provided by:** Dennis Wallentin, [VSTO &; .NET &; Excel](https://xldennis.wordpress.com/) |[About the Contributors](Excel.Range.Row.md#AboutContributor)
This example deletes the empty rows from a selected range.
diff --git a/api/Excel.Range.SetCellDataTypeFromCell.md b/api/Excel.Range.SetCellDataTypeFromCell.md
index f35f451c377..1d6e04d875f 100644
--- a/api/Excel.Range.SetCellDataTypeFromCell.md
+++ b/api/Excel.Range.SetCellDataTypeFromCell.md
@@ -12,7 +12,7 @@ ms.date: 09/12/2018
# Range.SetCellDataTypeFromCell method (Excel)
-Creates another instance of a Linked data type such as [Stocks or Geography](https://support.office.com/en-us/article/stock-quotes-and-geographic-data-61a33056-9935-484f-8ac8-f1a89e210877) that exists in another cell. The new instance will be linked to the data source in the same way as the original, so it will refresh from the service if you call [Workbook.RefreshAll](Excel.Workbook.RefreshAll.md).
+Creates another instance of a Linked data type such as [Stocks or Geography](https://support.office.com/article/stock-quotes-and-geographic-data-61a33056-9935-484f-8ac8-f1a89e210877) that exists in another cell. The new instance will be linked to the data source in the same way as the original, so it will refresh from the service if you call [Workbook.RefreshAll](Excel.Workbook.RefreshAll.md).
## Syntax
diff --git a/api/Excel.Range.ShowCard.md b/api/Excel.Range.ShowCard.md
index 9ff2d8f5054..1c2f7d29c7f 100644
--- a/api/Excel.Range.ShowCard.md
+++ b/api/Excel.Range.ShowCard.md
@@ -12,7 +12,7 @@ ms.date: 09/12/2018
# Range.ShowCard method (Excel)
-For a cell containing a Linked data type such as [Stocks or Geography](https://support.office.com/en-us/article/stock-quotes-and-geographic-data-61a33056-9935-484f-8ac8-f1a89e210877), this method will cause a card to appear that shows details about the cell (that is, the same card that the user can view by clicking on the cell icon).
+For a cell containing a Linked data type such as [Stocks or Geography](https://support.office.com/article/stock-quotes-and-geographic-data-61a33056-9935-484f-8ac8-f1a89e210877), this method will cause a card to appear that shows details about the cell (that is, the same card that the user can view by clicking on the cell icon).
## Syntax
diff --git a/api/Excel.Series.InvertColorIndex.md b/api/Excel.Series.InvertColorIndex.md
index 6444779d81e..0d107aa7d97 100644
--- a/api/Excel.Series.InvertColorIndex.md
+++ b/api/Excel.Series.InvertColorIndex.md
@@ -30,7 +30,7 @@ Returns or sets the fill color for negative data points in a series. Read/write
## Remarks
-The **InvertColorIndex** property enables you to set the fill color for negative data points as a color index value from 0 to 56. For more information about color index values, see[Adding Color to Excel 2007 Worksheets by Using the ColorIndex Property](https://msdn.microsoft.com/en-us/library/cc296089.aspx). Instead of using the **InvertColorIndex** property, you can use the **[InvertColor](Excel.Series.InvertColor.md)** property, which enables you to set the color as a specific numeric, hexadecimal, octal, or RGB color value.
+The **InvertColorIndex** property enables you to set the fill color for negative data points as a color index value from 0 to 56. For more information about color index values, see [Adding Color to Excel 2007 Worksheets by Using the ColorIndex Property](https://msdn.microsoft.com/library/cc296089.aspx). Instead of using the **InvertColorIndex** property, you can use the **[InvertColor](Excel.Series.InvertColor.md)** property, which enables you to set the color as a specific numeric, hexadecimal, octal, or RGB color value.
For the **InvertColorIndex** property to have an effect, the **[InvertIfNegative](Excel.Series.InvertIfNegative.md)** property of the **Series** object must also be set to **True** .
diff --git a/api/Excel.Top10.NumberFormat.md b/api/Excel.Top10.NumberFormat.md
index ea76a4acbdf..11c406a6d56 100644
--- a/api/Excel.Top10.NumberFormat.md
+++ b/api/Excel.Top10.NumberFormat.md
@@ -25,7 +25,7 @@ Returns or sets the number format applied to a cell if the conditional formattin
## Remarks
-The number format is specified using the same format codes displayed on the **Number** tab of the **Format Cells** dialog box. You can use a built-in number format, for example `"General"`, or [create a custom number format](https://office.microsoft.com/en-us/excel-help/create-or-delete-a-custom-number-format-HP010342372.aspx).
+The number format is specified using the same format codes displayed on the **Number** tab of the **Format Cells** dialog box. You can use a built-in number format, for example `"General"`, or [create a custom number format](https://support.office.com/article/create-or-delete-a-custom-number-format-78f2a361-936b-4c03-8772-09fab54be7f4?ocmsassetID=HP010342372&CorrelationId=da8e4328-d0fa-429c-94c6-063f57b60744&ui=en-US&rs=en-US&ad=US).
## See also
diff --git a/api/Excel.UniqueValues.NumberFormat.md b/api/Excel.UniqueValues.NumberFormat.md
index e410a7915b6..af67c64222a 100644
--- a/api/Excel.UniqueValues.NumberFormat.md
+++ b/api/Excel.UniqueValues.NumberFormat.md
@@ -25,7 +25,7 @@ Returns or sets the number format applied to a cell if the conditional formattin
## Remarks
-The number format is specified using the same format codes displayed on the **Number** tab of the **Format Cells** dialog box. You can use a built-in number format, for example `"General"`, or [create a custom number format](https://office.microsoft.com/en-us/excel-help/create-or-delete-a-custom-number-format-HP010342372.aspx).
+The number format is specified using the same format codes displayed on the **Number** tab of the **Format Cells** dialog box. You can use a built-in number format, for example `"General"`, or [create a custom number format](https://support.office.com/article/create-or-delete-a-custom-number-format-78f2a361-936b-4c03-8772-09fab54be7f4?ocmsassetID=HP010342372&CorrelationId=da8e4328-d0fa-429c-94c6-063f57b60744&ui=en-US&rs=en-US&ad=US).
## See also
diff --git a/api/Excel.UserAccess.md b/api/Excel.UserAccess.md
index 4191e57202f..ea315ff4da2 100644
--- a/api/Excel.UserAccess.md
+++ b/api/Excel.UserAccess.md
@@ -18,7 +18,7 @@ Represents the user access for a protected range.
## Example
-Use the **[Add](Excel.UserAccessList.Add.md)** method or the[Item](Excel.UserAccessList.Item.md) property of the[UserAccessList](Excel.UserAccessList.md) collection to return a **UserAccess** object.
+Use the **[Add](Excel.UserAccessList.Add.md)** method or the [Item](Excel.UserAccessList.Item.md) property of the [UserAccessList](Excel.UserAccessList.md) collection to return a **UserAccess** object.
diff --git a/api/Excel.Workbook.BeforeSave.md b/api/Excel.Workbook.BeforeSave.md
index bc363e599e3..f8140a70b18 100644
--- a/api/Excel.Workbook.BeforeSave.md
+++ b/api/Excel.Workbook.BeforeSave.md
@@ -50,7 +50,7 @@ Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, _
End Sub
```
- **Sample code provided by:** Holy Macro! Books,[Holy Macro! It?s 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&;p=1)
+ **Sample code provided by:** Holy Macro! Books, [Holy Macro! It?s 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&;p=1)
This example uses the **BeforeSave** event to verify that certain cells contain data before the workbook can be saved. The workbook cannot be saved until there is data in each of the following cells: D5, D7, D9, D11, D13, and D15.
diff --git a/api/Excel.Workbook.Save.md b/api/Excel.Workbook.Save.md
index cc20998e111..decc3576684 100644
--- a/api/Excel.Workbook.Save.md
+++ b/api/Excel.Workbook.Save.md
@@ -53,7 +53,7 @@ Next w
Application.Quit
```
- **Sample code provided by:** Holy Macro! Books,[Holy Macro! It's 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&;p=1)
+ **Sample code provided by:** Holy Macro! Books, [Holy Macro! It's 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&;p=1)
This example uses the **BeforeSave** event to verify that certain cells contain data before the workbook can be saved. The workbook cannot be saved until there is data in each of the following cells: D5, D7, D9, D11, D13, and D15.
diff --git a/api/Excel.Workbooks.Open.md b/api/Excel.Workbooks.Open.md
index b2be8ca2f3a..7c08dd2abc0 100644
--- a/api/Excel.Workbooks.Open.md
+++ b/api/Excel.Workbooks.Open.md
@@ -88,7 +88,7 @@ ActiveWorkbook.RunAutoMacros xlAutoOpen
- **Sample code provided by:** Bill Jelen,[MrExcel.com](https://www.mrexcel.com/)
+ **Sample code provided by:** Bill Jelen, [MrExcel.com](https://www.mrexcel.com/)
The following code example imports a sheet from another workbook onto a new sheet in the current workbook. Sheet1 in the current workbook must contain the path name of the workbook to import in cell D3, the file name in cell D4, and the worksheet name in cell D5. The imported worksheet is inserted after Sheet1 in the current workbook.
diff --git a/api/Excel.Workbooks.md b/api/Excel.Workbooks.md
index a8d72f43890..9c97e66c413 100644
--- a/api/Excel.Workbooks.md
+++ b/api/Excel.Workbooks.md
@@ -18,7 +18,7 @@ A collection of all the **[Workbook](Excel.Workbook.md)** objects that are curr
## Remarks
-For more information about using a single **Workbook** object, see the[Workbook](Excel.Workbook.md) object.
+For more information about using a single **Workbook** object, see the [Workbook](Excel.Workbook.md) object.
## Example
diff --git a/api/Excel.Worksheet.Cells.md b/api/Excel.Worksheet.Cells.md
index 2d03e3628fe..c3bb37ca140 100644
--- a/api/Excel.Worksheet.Cells.md
+++ b/api/Excel.Worksheet.Cells.md
@@ -60,7 +60,7 @@ With Worksheets("Sheet1").Cells.Font
End With
```
- **Sample code provided by:** Tom Urtis,[Atlas Programming Management](https://www.atlaspm.com/)
+ **Sample code provided by:** Tom Urtis, [Atlas Programming Management](https://www.atlaspm.com/)
This example toggles a sort between ascending and descending order when you double-click any cell in the data range. The data is sorted based on the column of the cell that is double-clicked.
diff --git a/api/Excel.Worksheet.Change.md b/api/Excel.Worksheet.Change.md
index dce522d38ea..3fb49d2a707 100644
--- a/api/Excel.Worksheet.Change.md
+++ b/api/Excel.Worksheet.Change.md
@@ -54,7 +54,7 @@ End Sub
- **Sample code provided by:** Bill Jelen,[MrExcel.com](https://www.mrexcel.com/) |[About the Contributors](Excel.Worksheet.Change.md#AboutContributor)
+ **Sample code provided by:** Bill Jelen, [MrExcel.com](https://www.mrexcel.com/) |[About the Contributors](Excel.Worksheet.Change.md#AboutContributor)
The following code example verifies that, when a cell value changes, the changed cell is in column A, and if the changed value of the cell is greater than 100. If the value is greater than 100, the adjacent cell in column B is changed to the color red.
@@ -76,7 +76,7 @@ End Sub
- **Sample code provided by:** Tom Urtis,[Atlas Programming Management](https://www.atlaspm.com/) |[About the Contributors](Excel.Worksheet.Change.md#AboutContributor)
+ **Sample code provided by:** Tom Urtis, [Atlas Programming Management](https://www.atlaspm.com/) |[About the Contributors](Excel.Worksheet.Change.md#AboutContributor)
The following code example sets the values in the range A1:A10 to be uppercase as the data is entered into the cell.
diff --git a/api/Excel.Worksheet.Copy.md b/api/Excel.Worksheet.Copy.md
index 655f1da25c4..832d223c9d0 100644
--- a/api/Excel.Worksheet.Copy.md
+++ b/api/Excel.Worksheet.Copy.md
@@ -34,7 +34,7 @@ Copies the sheet to another location in the current workbook or a new workbook.
## Remarks
-If you don't specify either _Before_ or _After_, Microsoft Excel creates a new [workbook](Excel.Workbook.md) that contains the copied sheet object that contains the copied[Worksheet](Excel.Worksheet.md) object. The newly created workbook holds the[Application.ActiveWorkbook Property (Excel)](Excel.Application.ActiveWorkbook.md) property and contains a single worksheet. The single worksheet retains the[Worksheet.Name Property (Excel)](Excel.Worksheet.Name.md) and[Worksheet.CodeName Property (Excel)](Excel.Worksheet.CodeName.md) properties of the source worksheet. If the copied worksheet held a worksheet code sheet in a VBA project, that is also carried into the new workbook.
+If you don't specify either _Before_ or _After_, Microsoft Excel creates a new [workbook](Excel.Workbook.md) that contains the copied sheet object that contains the copied[Worksheet](Excel.Worksheet.md) object. The newly created workbook holds the [Application.ActiveWorkbook Property (Excel)](Excel.Application.ActiveWorkbook.md) property and contains a single worksheet. The single worksheet retains the [Worksheet.Name Property (Excel)](Excel.Worksheet.Name.md) and [Worksheet.CodeName Property (Excel)](Excel.Worksheet.CodeName.md) properties of the source worksheet. If the copied worksheet held a worksheet code sheet in a VBA project, that is also carried into the new workbook.
An array selection of multiple worksheets can be copied to a new blank [Workbook Object (Excel)](Excel.Workbook.md) object in a similar manner.
diff --git a/api/Excel.Worksheet.HPageBreaks.md b/api/Excel.Worksheet.HPageBreaks.md
index abff23ff3ed..b42f9a3e851 100644
--- a/api/Excel.Worksheet.HPageBreaks.md
+++ b/api/Excel.Worksheet.HPageBreaks.md
@@ -47,7 +47,7 @@ MsgBox cFull & " full-screen page breaks, " & cPartial & _
- **Sample code provided by:** Bill Jelen,[MrExcel.com](https://www.mrexcel.com/)
+ **Sample code provided by:** Bill Jelen, [MrExcel.com](https://www.mrexcel.com/)
The following code example adds a page break when the value of a cell in column A changes.
diff --git a/api/Excel.Worksheet.Name.md b/api/Excel.Worksheet.Name.md
index faefdcb8413..c2ae1cf7662 100644
--- a/api/Excel.Worksheet.Name.md
+++ b/api/Excel.Worksheet.Name.md
@@ -27,7 +27,7 @@ Returns or sets a **String** value that represents the object name.
- **Sample code provided by:** Bill Jelen,[MrExcel.com](https://www.mrexcel.com/)
+ **Sample code provided by:** Bill Jelen, [MrExcel.com](https://www.mrexcel.com/)
The following code example sets the name of the active worksheet equal to today's date.
diff --git a/api/Excel.WorksheetFunction.ChiDist.md b/api/Excel.WorksheetFunction.ChiDist.md
index 2727d0a9336..337aa94004b 100644
--- a/api/Excel.WorksheetFunction.ChiDist.md
+++ b/api/Excel.WorksheetFunction.ChiDist.md
@@ -18,7 +18,7 @@ Returns the one-tailed probability of the chi-squared distribution.
**Important** This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality.
-For more information about the new functions, see the [ChiSq_Dist_RT](Excel.WorksheetFunction.ChiSq_Dist_RT.md) and[ChiSq_Dist](Excel.WorksheetFunction.ChiSq_Dist.md) methods.
+For more information about the new functions, see the [ChiSq_Dist_RT](Excel.WorksheetFunction.ChiSq_Dist_RT.md) and [ChiSq_Dist](Excel.WorksheetFunction.ChiSq_Dist.md) methods.
## Syntax
diff --git a/api/Excel.WorksheetFunction.ChiInv.md b/api/Excel.WorksheetFunction.ChiInv.md
index 67e8b0559df..01e497c996c 100644
--- a/api/Excel.WorksheetFunction.ChiInv.md
+++ b/api/Excel.WorksheetFunction.ChiInv.md
@@ -18,7 +18,7 @@ Returns the inverse of the one-tailed probability of the chi-squared distributio
**Important** This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality.
-For more information about the new functions, see the [ChiSq_Inv_RT](Excel.WorksheetFunction.ChiSq_Inv_RT.md) and[ChiSq_Inv](Excel.WorksheetFunction.ChiSq_Inv.md) methods.
+For more information about the new functions, see the [ChiSq_Inv_RT](Excel.WorksheetFunction.ChiSq_Inv_RT.md) and [ChiSq_Inv](Excel.WorksheetFunction.ChiSq_Inv.md) methods.
## Syntax
diff --git a/api/Excel.WorksheetFunction.Confidence.md b/api/Excel.WorksheetFunction.Confidence.md
index b58222280d1..9892f44f793 100644
--- a/api/Excel.WorksheetFunction.Confidence.md
+++ b/api/Excel.WorksheetFunction.Confidence.md
@@ -18,7 +18,7 @@ Returns a value that you can use to construct a confidence interval for a popula
**Important** This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality.
-For more information about the new functions, see the [Confidence_Norm](Excel.WorksheetFunction.Confidence_Norm.md) and[Confidence_T](Excel.WorksheetFunction.Confidence_T.md) methods.
+For more information about the new functions, see the [Confidence_Norm](Excel.WorksheetFunction.Confidence_Norm.md) and [Confidence_T](Excel.WorksheetFunction.Confidence_T.md) methods.
## Syntax
diff --git a/api/Excel.WorksheetFunction.Covar.md b/api/Excel.WorksheetFunction.Covar.md
index dae5dfd4145..2e6e583b389 100644
--- a/api/Excel.WorksheetFunction.Covar.md
+++ b/api/Excel.WorksheetFunction.Covar.md
@@ -18,7 +18,7 @@ Returns covariance, the average of the products of deviations for each data poin
**Important** This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality.
-For more information about the new functions, see the [Covariance_P](Excel.WorksheetFunction.Covar.md) and[Covariance_S](Excel.WorksheetFunction.Covariance_S.md) method.
+For more information about the new functions, see the [Covariance_P](Excel.WorksheetFunction.Covar.md) and [Covariance_S](Excel.WorksheetFunction.Covariance_S.md) method.
## Syntax
diff --git a/api/Excel.WorksheetFunction.FDist.md b/api/Excel.WorksheetFunction.FDist.md
index 504d54ab513..954f46adef0 100644
--- a/api/Excel.WorksheetFunction.FDist.md
+++ b/api/Excel.WorksheetFunction.FDist.md
@@ -18,7 +18,7 @@ Returns the F probability distribution. You can use this function to determine w
**Important** This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality.
-For more information about the new functions, see the [F_Dist_RT](Excel.WorksheetFunction.F_Dist_RT.md) and[F_Dist](Excel.WorksheetFunction.F_Dist.md) methods.
+For more information about the new functions, see the [F_Dist_RT](Excel.WorksheetFunction.F_Dist_RT.md) and [F_Dist](Excel.WorksheetFunction.F_Dist.md) methods.
## Syntax
diff --git a/api/Excel.WorksheetFunction.FInv.md b/api/Excel.WorksheetFunction.FInv.md
index 762b0bc5fc8..b0d32bc126f 100644
--- a/api/Excel.WorksheetFunction.FInv.md
+++ b/api/Excel.WorksheetFunction.FInv.md
@@ -18,7 +18,7 @@ Returns the inverse of the F probability distribution. If p = FDIST(x,...), then
**Important** This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality.
-For more information about the new functions, see the [F_Inv_RT](Excel.WorksheetFunction.F_Inv_RT.md) and[F_Inv](Excel.WorksheetFunction.F_Inv.md) methods.
+For more information about the new functions, see the [F_Inv_RT](Excel.WorksheetFunction.F_Inv_RT.md) and [F_Inv](Excel.WorksheetFunction.F_Inv.md) methods.
## Syntax
diff --git a/api/Excel.WorksheetFunction.Match.md b/api/Excel.WorksheetFunction.Match.md
index b40ef4da364..a6d8e917b89 100644
--- a/api/Excel.WorksheetFunction.Match.md
+++ b/api/Excel.WorksheetFunction.Match.md
@@ -68,7 +68,7 @@ Double
## Example
- **Sample code provided by:** Holy Macro! Books,[Holy Macro! It?s 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&;p=1)
+ **Sample code provided by:** Holy Macro! Books, [Holy Macro! It?s 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&;p=1)
For each value in the first column of the first worksheet, this example searches through the entire workbook for a matching value. If the macro finds a matching value, it sets the original value on the first worksheet to be bold.
diff --git a/api/Excel.WorksheetFunction.Mode.md b/api/Excel.WorksheetFunction.Mode.md
index 29d65c714ab..935287c973c 100644
--- a/api/Excel.WorksheetFunction.Mode.md
+++ b/api/Excel.WorksheetFunction.Mode.md
@@ -18,7 +18,7 @@ Returns the most frequently occurring, or repetitive, value in an array or range
**Important** This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality.
-For more information about the new functions, see the [Mode_Sngl](Excel.WorksheetFunction.Mode_Sngl.md) and[Mode_Mult](Excel.WorksheetFunction.Mode_Mult.md) methods.
+For more information about the new functions, see the [Mode_Sngl](Excel.WorksheetFunction.Mode_Sngl.md) and [Mode_Mult](Excel.WorksheetFunction.Mode_Mult.md) methods.
## Syntax
diff --git a/api/Excel.WorksheetFunction.PercentRank.md b/api/Excel.WorksheetFunction.PercentRank.md
index f3e1c566afc..6bafb9d1c3d 100644
--- a/api/Excel.WorksheetFunction.PercentRank.md
+++ b/api/Excel.WorksheetFunction.PercentRank.md
@@ -18,7 +18,7 @@ Returns the rank of a value in a data set as a percentage of the data set. This
**Important** This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality.
-For more information about the new functions, see the [Percentile_Inc](Excel.WorksheetFunction.Percentile_Inc.md) and[Percentile_Exc](Excel.WorksheetFunction.Percentile_Exc.md) method.
+For more information about the new functions, see the [Percentile_Inc](Excel.WorksheetFunction.Percentile_Inc.md) and [Percentile_Exc](Excel.WorksheetFunction.Percentile_Exc.md) method.
## Syntax
diff --git a/api/Excel.WorksheetFunction.Percentile.md b/api/Excel.WorksheetFunction.Percentile.md
index 6e64cf66678..5c2a5dcbcc8 100644
--- a/api/Excel.WorksheetFunction.Percentile.md
+++ b/api/Excel.WorksheetFunction.Percentile.md
@@ -18,7 +18,7 @@ Returns the k-th percentile of values in a range. You can use this function to e
**Important** This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality.
-For more information about the new functions, see the [Percentile_Inc](Excel.WorksheetFunction.Percentile_Inc.md) and[Percentile_Exc](Excel.WorksheetFunction.Percentile_Exc.md) method.
+For more information about the new functions, see the [Percentile_Inc](Excel.WorksheetFunction.Percentile_Inc.md) and [Percentile_Exc](Excel.WorksheetFunction.Percentile_Exc.md) method.
## Syntax
diff --git a/api/Excel.WorksheetFunction.Quartile.md b/api/Excel.WorksheetFunction.Quartile.md
index 2de1b2829e6..deb18e6daaf 100644
--- a/api/Excel.WorksheetFunction.Quartile.md
+++ b/api/Excel.WorksheetFunction.Quartile.md
@@ -21,7 +21,7 @@ Returns the quartile of a data set. Quartiles often are used in sales and survey
**Important** This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality.
-For more information about the new functions, see the [Quartile_Inc](Excel.WorksheetFunction.Quartile_Inc.md) and[Quartile_Exc](Excel.WorksheetFunction.Quartile_Exc.md) methods.
+For more information about the new functions, see the [Quartile_Inc](Excel.WorksheetFunction.Quartile_Inc.md) and [Quartile_Exc](Excel.WorksheetFunction.Quartile_Exc.md) methods.
## Syntax
diff --git a/api/Excel.WorksheetFunction.Rank.md b/api/Excel.WorksheetFunction.Rank.md
index 51ddb680233..af7f7aa3aef 100644
--- a/api/Excel.WorksheetFunction.Rank.md
+++ b/api/Excel.WorksheetFunction.Rank.md
@@ -21,7 +21,7 @@ Returns the rank of a number in a list of numbers. The rank of a number is its s
**Important** This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality.
-For more information about the new functions, see the [Rank_Eq](Excel.WorksheetFunction.Rank_Eq.md) and[Rank_Avg](Excel.WorksheetFunction.Rank_Avg.md) methods.
+For more information about the new functions, see the [Rank_Eq](Excel.WorksheetFunction.Rank_Eq.md) and [Rank_Avg](Excel.WorksheetFunction.Rank_Avg.md) methods.
## Syntax
diff --git a/api/Excel.WorksheetFunction.TInv.md b/api/Excel.WorksheetFunction.TInv.md
index 99692319555..94f906f49ce 100644
--- a/api/Excel.WorksheetFunction.TInv.md
+++ b/api/Excel.WorksheetFunction.TInv.md
@@ -19,7 +19,7 @@ Returns the t-value of the Student's t-distribution as a function of the probabi
- **Important** This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality.For more information about the new functions, see the [T_Inv](Excel.WorksheetFunction.T_Inv.md) and[T_Inv_2T](Excel.WorksheetFunction.T_Inv_2T.md) methods.
+ **Important** This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality.For more information about the new functions, see the [T_Inv](Excel.WorksheetFunction.T_Inv.md) and [T_Inv_2T](Excel.WorksheetFunction.T_Inv_2T.md) methods.
## Syntax
diff --git a/api/Excel.WorksheetFunction.Trim.md b/api/Excel.WorksheetFunction.Trim.md
index 74f7955a6da..309abb883c4 100644
--- a/api/Excel.WorksheetFunction.Trim.md
+++ b/api/Excel.WorksheetFunction.Trim.md
@@ -42,7 +42,7 @@ String
> The TRIM function in Excel was designed to trim the 7-bit ASCII space character (value 32) from text. In the Unicode character set, there is an additional space character called the nonbreaking space character that has a decimal value of 160. This character is commonly used in Web pages as the HTML entity, **&;nbsp;**. By itself, the TRIM function and **WorksheetFunction.Trim** method do not remove this nonbreaking space character.
-The **WorksheetFunction.Trim** method in Excel differs from the **[Trim](https://msdn.microsoft.com/en-us/vba/language-reference-vba/articles/ltrim-rtrim-and-trim-functions)** function in VBA, which removes only leading and trailing spaces.
+The **WorksheetFunction.Trim** method in Excel differs from the **[Trim](https://msdn.microsoft.com/vba/language-reference-vba/articles/ltrim-rtrim-and-trim-functions)** function in VBA, which removes only leading and trailing spaces.
## See also
diff --git a/api/Excel.WorksheetFunction.md b/api/Excel.WorksheetFunction.md
index 28bc551654b..3b2ace5262c 100644
--- a/api/Excel.WorksheetFunction.md
+++ b/api/Excel.WorksheetFunction.md
@@ -27,7 +27,7 @@ answer = Application.WorksheetFunction.Min(myRange)
MsgBox answer
```
- **Sample code provided by:** Holy Macro! Books,[Holy Macro! It's 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&p=1)
+ **Sample code provided by:** Holy Macro! Books, [Holy Macro! It's 2,500 Excel VBA Examples](https://www.mrexcel.com/store/index.php?l=product_detail&p=1)
This example uses the **CountA** worksheet function to determine how many cells in column A contain a value. For this example, the values in column A should be text. This example does a spell check on each value in column A, and if the value is spelled incorrectly, inserts the text "Wrong" into column B; otherwise, it inserts the text "OK" into column B.
@@ -473,6 +473,6 @@ Holy Macro! Books publishes entertaining books for people who use Microsoft Offi
## See also
-[Using a worksheet function in a Visual Basic macro in Excel](https://support.microsoft.com/en-us/help/291309/using-a-worksheet-function-in-a-visual-basic-macro-in-excel)
+[Using a worksheet function in a Visual Basic macro in Excel](https://support.microsoft.com/help/291309/using-a-worksheet-function-in-a-visual-basic-macro-in-excel)
[Excel Object Model Reference](./overview/Excel/object-model.md)
diff --git a/api/Excel.XlLinkedDataTypeState.md b/api/Excel.XlLinkedDataTypeState.md
index 864d322b96d..0fb6270896d 100644
--- a/api/Excel.XlLinkedDataTypeState.md
+++ b/api/Excel.XlLinkedDataTypeState.md
@@ -9,7 +9,7 @@ ms.date: 09/12/2018
# XlLinkedDataTypeState enumeration (Excel)
-Indicates the state of cells that may contain Linked data types such as [Stocks or Geography](https://support.office.com/en-us/article/stock-quotes-and-geographic-data-61a33056-9935-484f-8ac8-f1a89e210877). These are the possible values of the [Range.LinkedDataTypeState](Excel.Range.LinkedDataTypeState.md) property.
+Indicates the state of cells that may contain Linked data types such as [Stocks or Geography](https://support.office.com/article/stock-quotes-and-geographic-data-61a33056-9935-484f-8ac8-f1a89e210877). These are the possible values of the [Range.LinkedDataTypeState](Excel.Range.LinkedDataTypeState.md) property.
|**Name**|**Value**|**Description**|
diff --git a/api/Excel.calculatedmember.measuregroup.md b/api/Excel.calculatedmember.measuregroup.md
index fc6d0892aee..21a1c19793d 100644
--- a/api/Excel.calculatedmember.measuregroup.md
+++ b/api/Excel.calculatedmember.measuregroup.md
@@ -18,7 +18,7 @@ Returns the associated measure group. **String** Read-only
_expression_. `MeasureGroup`
- _expression_ A variable that represents a[CalculatedMember](Excel.CalculatedMember.md) object.
+ _expression_ A variable that represents a [CalculatedMember](Excel.CalculatedMember.md) object.
## Property value
diff --git a/api/Excel.calculatedmember.parenthierarchy.md b/api/Excel.calculatedmember.parenthierarchy.md
index fe22d172ec6..9eae9f3a920 100644
--- a/api/Excel.calculatedmember.parenthierarchy.md
+++ b/api/Excel.calculatedmember.parenthierarchy.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `ParentHierarchy`
- _expression_ A variable that represents a[CalculatedMember](Excel.CalculatedMember.md) object.
+ _expression_ A variable that represents a [CalculatedMember](Excel.CalculatedMember.md) object.
## Property value
diff --git a/api/Excel.calculatedmember.parentmember.md b/api/Excel.calculatedmember.parentmember.md
index 86fefbf1431..7e9e7fc37b7 100644
--- a/api/Excel.calculatedmember.parentmember.md
+++ b/api/Excel.calculatedmember.parentmember.md
@@ -18,7 +18,7 @@ Returns the name of the parent member for the parent hierarchy. **String** Read
_expression_. `ParentMember`
- _expression_ A variable that represents a[CalculatedMember](Excel.CalculatedMember.md) object.
+ _expression_ A variable that represents a [CalculatedMember](Excel.CalculatedMember.md) object.
## Remarks
diff --git a/api/Excel.categorycollection.application.md b/api/Excel.categorycollection.application.md
index 27a1b03353c..d581ad6bb8e 100644
--- a/api/Excel.categorycollection.application.md
+++ b/api/Excel.categorycollection.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[CategoryCollection Object (Excel)](Excel.categorycollection.md) object.
+ _expression_ A variable that represents a [CategoryCollection Object (Excel)](Excel.categorycollection.md) object.
## Example
diff --git a/api/Excel.categorycollection.count.md b/api/Excel.categorycollection.count.md
index 702bea67cb7..aa29cf32e9e 100644
--- a/api/Excel.categorycollection.count.md
+++ b/api/Excel.categorycollection.count.md
@@ -18,7 +18,7 @@ Returns a **Long** value that represents the number of objects in the **Categor
_expression_. `Count`
- _expression_ A variable that represents a[CategoryCollection Object (Excel)](Excel.categorycollection.md) object.
+ _expression_ A variable that represents a [CategoryCollection Object (Excel)](Excel.categorycollection.md) object.
## Property value
diff --git a/api/Excel.categorycollection.creator.md b/api/Excel.categorycollection.creator.md
index 6d58e829759..3cf4a47c2c8 100644
--- a/api/Excel.categorycollection.creator.md
+++ b/api/Excel.categorycollection.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[CategoryCollection Object (Excel)](Excel.categorycollection.md) object.
+ _expression_ A variable that represents a [CategoryCollection Object (Excel)](Excel.categorycollection.md) object.
## Remarks
diff --git a/api/Excel.categorycollection.item.md b/api/Excel.categorycollection.item.md
index a224ce236c7..b87d8de5df8 100644
--- a/api/Excel.categorycollection.item.md
+++ b/api/Excel.categorycollection.item.md
@@ -18,7 +18,7 @@ Returns a single object from the **CategoryCollection** object.
_expression_. `Item`_(Index)_
- _expression_ A variable that represents a[CategoryCollection](Excel.categorycollection.md) object.
+ _expression_ A variable that represents a [CategoryCollection](Excel.categorycollection.md) object.
### Parameters
diff --git a/api/Excel.categorycollection.parent.md b/api/Excel.categorycollection.parent.md
index a15a446f0bf..9a47d143c13 100644
--- a/api/Excel.categorycollection.parent.md
+++ b/api/Excel.categorycollection.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[Catego
_expression_. `Parent`
- _expression_ A variable that represents a[CategoryCollection Object (Excel)](Excel.categorycollection.md) object.
+ _expression_ A variable that represents a [CategoryCollection Object (Excel)](Excel.categorycollection.md) object.
## Remarks
diff --git a/api/Excel.datafeedconnection.alwaysuseconnectionfile.md b/api/Excel.datafeedconnection.alwaysuseconnectionfile.md
index 603fd80cfbd..31aa307e0c5 100644
--- a/api/Excel.datafeedconnection.alwaysuseconnectionfile.md
+++ b/api/Excel.datafeedconnection.alwaysuseconnectionfile.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `AlwaysUseConnectionFile`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
## Property value
diff --git a/api/Excel.datafeedconnection.application.md b/api/Excel.datafeedconnection.application.md
index 803a46d3515..56208ccb098 100644
--- a/api/Excel.datafeedconnection.application.md
+++ b/api/Excel.datafeedconnection.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
## Example
diff --git a/api/Excel.datafeedconnection.cancelrefresh.md b/api/Excel.datafeedconnection.cancelrefresh.md
index 59faad9a6b0..4a8a38d6501 100644
--- a/api/Excel.datafeedconnection.cancelrefresh.md
+++ b/api/Excel.datafeedconnection.cancelrefresh.md
@@ -18,7 +18,7 @@ Cancels a refresh operation on a data feed connection.
_expression_. `CancelRefresh`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
### Return value
diff --git a/api/Excel.datafeedconnection.commandtext.md b/api/Excel.datafeedconnection.commandtext.md
index 32f1fdd5d16..609d27052cf 100644
--- a/api/Excel.datafeedconnection.commandtext.md
+++ b/api/Excel.datafeedconnection.commandtext.md
@@ -18,7 +18,7 @@ Returns or sets the command string for the specified data source. **Variant** R
_expression_. `CommandText`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
## Property value
diff --git a/api/Excel.datafeedconnection.commandtype.md b/api/Excel.datafeedconnection.commandtype.md
index e6a30d3dda4..c6799be9937 100644
--- a/api/Excel.datafeedconnection.commandtype.md
+++ b/api/Excel.datafeedconnection.commandtype.md
@@ -18,7 +18,7 @@ Returns or sets the command string for the specified data source. **Variant** R
_expression_. `CommandType`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
## Property value
diff --git a/api/Excel.datafeedconnection.connection.md b/api/Excel.datafeedconnection.connection.md
index d9c40fa25f3..db272c3f3c2 100644
--- a/api/Excel.datafeedconnection.connection.md
+++ b/api/Excel.datafeedconnection.connection.md
@@ -18,7 +18,7 @@ Returns or sets a string that contains Service Contract settings that enable Mic
_expression_. `Connection`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
## Property value
diff --git a/api/Excel.datafeedconnection.creator.md b/api/Excel.datafeedconnection.creator.md
index 974598c4e98..29206c76162 100644
--- a/api/Excel.datafeedconnection.creator.md
+++ b/api/Excel.datafeedconnection.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object ( [Excel](Excel(enumerations).md) ).
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object ( [Excel](Excel(enumerations).md) ).
## Remarks
diff --git a/api/Excel.datafeedconnection.enablerefresh.md b/api/Excel.datafeedconnection.enablerefresh.md
index 52303daf1f2..1c3c1b5178e 100644
--- a/api/Excel.datafeedconnection.enablerefresh.md
+++ b/api/Excel.datafeedconnection.enablerefresh.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `EnableRefresh`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
## Property value
diff --git a/api/Excel.datafeedconnection.parent.md b/api/Excel.datafeedconnection.parent.md
index fbfb3242dbe..a5a974650f5 100644
--- a/api/Excel.datafeedconnection.parent.md
+++ b/api/Excel.datafeedconnection.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[DataFe
_expression_. `Parent`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
## Property value
diff --git a/api/Excel.datafeedconnection.refresh.md b/api/Excel.datafeedconnection.refresh.md
index cc75d7dc3e2..635d58aa253 100644
--- a/api/Excel.datafeedconnection.refresh.md
+++ b/api/Excel.datafeedconnection.refresh.md
@@ -18,7 +18,7 @@ Refreshes the data feed connection.
_expression_. `Refresh`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
### Return value
diff --git a/api/Excel.datafeedconnection.refreshdate.md b/api/Excel.datafeedconnection.refreshdate.md
index 4e871baa5e4..af6c3b8303b 100644
--- a/api/Excel.datafeedconnection.refreshdate.md
+++ b/api/Excel.datafeedconnection.refreshdate.md
@@ -18,7 +18,7 @@ Returns the date on which the OLE DB connection was last refreshed. **Date** .
_expression_. `RefreshDate`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
## Property value
diff --git a/api/Excel.datafeedconnection.refreshing.md b/api/Excel.datafeedconnection.refreshing.md
index 21ef8517767..5a1fdfa8d62 100644
--- a/api/Excel.datafeedconnection.refreshing.md
+++ b/api/Excel.datafeedconnection.refreshing.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `Refreshing`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
## Property value
diff --git a/api/Excel.datafeedconnection.refreshonfileopen.md b/api/Excel.datafeedconnection.refreshonfileopen.md
index 2b157aacd7e..303f650d815 100644
--- a/api/Excel.datafeedconnection.refreshonfileopen.md
+++ b/api/Excel.datafeedconnection.refreshonfileopen.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `RefreshOnFileOpen`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
## Property value
diff --git a/api/Excel.datafeedconnection.refreshperiod.md b/api/Excel.datafeedconnection.refreshperiod.md
index 35a1e58e74a..5c2cf6603c3 100644
--- a/api/Excel.datafeedconnection.refreshperiod.md
+++ b/api/Excel.datafeedconnection.refreshperiod.md
@@ -18,7 +18,7 @@ Returns or sets the number of minutes between refreshes. **Long** Read/Write
_expression_. `RefreshPeriod`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
## Property value
diff --git a/api/Excel.datafeedconnection.saveasodc.md b/api/Excel.datafeedconnection.saveasodc.md
index 14e6e787da0..415d490d728 100644
--- a/api/Excel.datafeedconnection.saveasodc.md
+++ b/api/Excel.datafeedconnection.saveasodc.md
@@ -18,7 +18,7 @@ Saves the data feed connection as a Microsoft Office Data Connection file.
_expression_. `SaveAsODC`_(ODCFileName,_ _Description,_ _Keywords)_
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
### Parameters
diff --git a/api/Excel.datafeedconnection.savepassword.md b/api/Excel.datafeedconnection.savepassword.md
index b3f40f981b4..36ddbb00529 100644
--- a/api/Excel.datafeedconnection.savepassword.md
+++ b/api/Excel.datafeedconnection.savepassword.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `SavePassword`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
## Property value
diff --git a/api/Excel.datafeedconnection.servercredentialsmethod.md b/api/Excel.datafeedconnection.servercredentialsmethod.md
index 63e04a91d4e..2a67074e79f 100644
--- a/api/Excel.datafeedconnection.servercredentialsmethod.md
+++ b/api/Excel.datafeedconnection.servercredentialsmethod.md
@@ -18,7 +18,7 @@ Returns or sets the type of credentials that should be used for server authentic
_expression_. `ServerCredentialsMethod`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
## Remarks
diff --git a/api/Excel.datafeedconnection.sourceconnectionfile.md b/api/Excel.datafeedconnection.sourceconnectionfile.md
index fe55f672e1f..a75a297d6d4 100644
--- a/api/Excel.datafeedconnection.sourceconnectionfile.md
+++ b/api/Excel.datafeedconnection.sourceconnectionfile.md
@@ -18,7 +18,7 @@ Returns or sets a **String** indicating the Microsoft Office Data Connection fi
_expression_. `SourceConnectionFile`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
## Property value
diff --git a/api/Excel.datafeedconnection.sourcedatafile.md b/api/Excel.datafeedconnection.sourcedatafile.md
index c368ac2e55e..6eedb310be9 100644
--- a/api/Excel.datafeedconnection.sourcedatafile.md
+++ b/api/Excel.datafeedconnection.sourcedatafile.md
@@ -18,7 +18,7 @@ A path to the original file used to create the connection. In the case of an ODa
_expression_. `SourceDataFile`
- _expression_ A variable that represents a[DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
+ _expression_ A variable that represents a [DataFeedConnection Object (Excel)](Excel.datafeedconnection.md) object.
## Property value
diff --git a/api/Excel.fullseriescollection.application.md b/api/Excel.fullseriescollection.application.md
index c4c5225e214..9b638349e6f 100644
--- a/api/Excel.fullseriescollection.application.md
+++ b/api/Excel.fullseriescollection.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[FullSeriesCollection Object (Excel)](Excel.fullseriescollection.md) object.
+ _expression_ A variable that represents a [FullSeriesCollection Object (Excel)](Excel.fullseriescollection.md) object.
## Example
diff --git a/api/Excel.fullseriescollection.count.md b/api/Excel.fullseriescollection.count.md
index 5d1e224e37a..a72bbdb5e90 100644
--- a/api/Excel.fullseriescollection.count.md
+++ b/api/Excel.fullseriescollection.count.md
@@ -11,14 +11,14 @@ ms.date: 06/08/2017
# FullSeriesCollection.Count Property (Excel)
-Returns a **Long** value that represents the number of[Series Object (Excel)](Excel.Series(object).md) objects in the[FullSeriesCollection Object (Excel)](Excel.fullseriescollection.md) object. Read-only.
+Returns a **Long** value that represents the number of[Series Object (Excel)](Excel.Series(object).md) objects in the [FullSeriesCollection Object (Excel)](Excel.fullseriescollection.md) object. Read-only.
## Syntax
_expression_. `Count`
- _expression_ A variable that represents a[FullSeriesCollection Object (Excel)](Excel.fullseriescollection.md)object.
+ _expression_ A variable that represents a [FullSeriesCollection Object (Excel)](Excel.fullseriescollection.md)object.
## Property value
diff --git a/api/Excel.fullseriescollection.creator.md b/api/Excel.fullseriescollection.creator.md
index def262b0f46..c7c54528908 100644
--- a/api/Excel.fullseriescollection.creator.md
+++ b/api/Excel.fullseriescollection.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[FullSeriesCollection Object (Excel)](Excel.fullseriescollection.md) object.
+ _expression_ A variable that represents a [FullSeriesCollection Object (Excel)](Excel.fullseriescollection.md) object.
## Remarks
diff --git a/api/Excel.fullseriescollection.item.md b/api/Excel.fullseriescollection.item.md
index 498b7db9667..5dd9be956a1 100644
--- a/api/Excel.fullseriescollection.item.md
+++ b/api/Excel.fullseriescollection.item.md
@@ -18,7 +18,7 @@ Returns a single object from the [FullSeriesCollection Object (Excel)](Excel.ful
_expression_. `Item`_(Index)_
- _expression_ A variable that represents a[FullSeriesCollection Object (Excel)](Excel.fullseriescollection.md) object.
+ _expression_ A variable that represents a [FullSeriesCollection Object (Excel)](Excel.fullseriescollection.md) object.
### Parameters
diff --git a/api/Excel.fullseriescollection.parent.md b/api/Excel.fullseriescollection.parent.md
index e03f56c2638..1f75092a6d6 100644
--- a/api/Excel.fullseriescollection.parent.md
+++ b/api/Excel.fullseriescollection.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[FullSe
_expression_. `Parent`
- _expression_ A variable that represents a[FullSeriesCollection Object (Excel)](Excel.fullseriescollection.md) object.
+ _expression_ A variable that represents a [FullSeriesCollection Object (Excel)](Excel.fullseriescollection.md) object.
## Remarks
diff --git a/api/Excel.modelchanges.columnsadded.md b/api/Excel.modelchanges.columnsadded.md
index 559c8d22241..730793bdfa9 100644
--- a/api/Excel.modelchanges.columnsadded.md
+++ b/api/Excel.modelchanges.columnsadded.md
@@ -18,7 +18,7 @@ Returns a [ModelColumnNames Object (Excel)](Excel.modelcolumnnames.md) collectio
_expression_. `ColumnsAdded`
- _expression_ A variable that represents a[ModelChanges](Excel.modelchanges.md) object.
+ _expression_ A variable that represents a [ModelChanges](Excel.modelchanges.md) object.
## Property value
diff --git a/api/Excel.modelchanges.columnschanged.md b/api/Excel.modelchanges.columnschanged.md
index 79713edbfbb..7b78da09c05 100644
--- a/api/Excel.modelchanges.columnschanged.md
+++ b/api/Excel.modelchanges.columnschanged.md
@@ -18,7 +18,7 @@ Returns a [ModelColumnChanges Object (Excel)](Excel.modelcolumnchanges.md) colle
_expression_. `ColumnsChanged`
- _expression_ A variable that represents a[ModelChanges](Excel.modelchanges.md) object.
+ _expression_ A variable that represents a [ModelChanges](Excel.modelchanges.md) object.
## Property value
diff --git a/api/Excel.modelchanges.parent.md b/api/Excel.modelchanges.parent.md
index c25ca27f335..9812df1bc33 100644
--- a/api/Excel.modelchanges.parent.md
+++ b/api/Excel.modelchanges.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelC
_expression_. `Parent`
- _expression_ A variable that represents a[ModelChanges Object (Excel)](Excel.modelchanges.md) object.
+ _expression_ A variable that represents a [ModelChanges Object (Excel)](Excel.modelchanges.md) object.
## Property value
diff --git a/api/Excel.modelcolumnchange.application.md b/api/Excel.modelcolumnchange.application.md
index 2b084ff553b..6cc63824f15 100644
--- a/api/Excel.modelcolumnchange.application.md
+++ b/api/Excel.modelcolumnchange.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[ModelColumnChange Object (Excel)](Excel.modelcolumnchange.md) object.
+ _expression_ A variable that represents a [ModelColumnChange Object (Excel)](Excel.modelcolumnchange.md) object.
## Example
diff --git a/api/Excel.modelcolumnchange.columnname.md b/api/Excel.modelcolumnchange.columnname.md
index 0408a91f3af..1a48c759fec 100644
--- a/api/Excel.modelcolumnchange.columnname.md
+++ b/api/Excel.modelcolumnchange.columnname.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `ColumnName`
- _expression_ A variable that represents a[ModelColumnChange](Excel.modelcolumnchange.md) object.
+ _expression_ A variable that represents a [ModelColumnChange](Excel.modelcolumnchange.md) object.
## Property value
diff --git a/api/Excel.modelcolumnchange.creator.md b/api/Excel.modelcolumnchange.creator.md
index 7dc1c8d7fe6..8c6d75592e1 100644
--- a/api/Excel.modelcolumnchange.creator.md
+++ b/api/Excel.modelcolumnchange.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[ModelColumnChange Object (Excel)](Excel.modelcolumnchange.md) object.
+ _expression_ A variable that represents a [ModelColumnChange Object (Excel)](Excel.modelcolumnchange.md) object.
## Remarks
diff --git a/api/Excel.modelcolumnchange.parent.md b/api/Excel.modelcolumnchange.parent.md
index 0fc356c3b38..ef5d3e1103c 100644
--- a/api/Excel.modelcolumnchange.parent.md
+++ b/api/Excel.modelcolumnchange.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelC
_expression_. `Parent`
- _expression_ A variable that represents a[ModelColumnChange Object (Excel)](Excel.modelcolumnchange.md) object.
+ _expression_ A variable that represents a [ModelColumnChange Object (Excel)](Excel.modelcolumnchange.md) object.
## Property value
diff --git a/api/Excel.modelcolumnchange.tablename.md b/api/Excel.modelcolumnchange.tablename.md
index a40d89538fd..683cec4733b 100644
--- a/api/Excel.modelcolumnchange.tablename.md
+++ b/api/Excel.modelcolumnchange.tablename.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `TableName`
- _expression_ A variable that represents a[ModelColumnChange](Excel.modelcolumnchange.md) object.
+ _expression_ A variable that represents a [ModelColumnChange](Excel.modelcolumnchange.md) object.
## Property value
diff --git a/api/Excel.modelcolumnchanges.application.md b/api/Excel.modelcolumnchanges.application.md
index 2a65dfe2789..43ce78a0459 100644
--- a/api/Excel.modelcolumnchanges.application.md
+++ b/api/Excel.modelcolumnchanges.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[ModelColumnChanges Object (Excel)](Excel.modelcolumnchanges.md) object.
+ _expression_ A variable that represents a [ModelColumnChanges Object (Excel)](Excel.modelcolumnchanges.md) object.
## Example
diff --git a/api/Excel.modelcolumnchanges.count.md b/api/Excel.modelcolumnchanges.count.md
index 775183838b0..575444ad4c3 100644
--- a/api/Excel.modelcolumnchanges.count.md
+++ b/api/Excel.modelcolumnchanges.count.md
@@ -11,14 +11,14 @@ ms.date: 06/08/2017
# ModelColumnChanges.Count Property (Excel)
-Returns a **Long** value that represents the number of[ModelColumnChange Object (Excel)](Excel.modelcolumnchange.md) objects in a[ModelColumnChanges Object (Excel)](Excel.modelcolumnchanges.md) object. Read-only.
+Returns a **Long** value that represents the number of[ModelColumnChange Object (Excel)](Excel.modelcolumnchange.md) objects in a [ModelColumnChanges Object (Excel)](Excel.modelcolumnchanges.md) object. Read-only.
## Syntax
_expression_. `Count`
- _expression_ A variable that represents a[ModelColumnChanges Object (Excel)](Excel.modelcolumnchanges.md) object.
+ _expression_ A variable that represents a [ModelColumnChanges Object (Excel)](Excel.modelcolumnchanges.md) object.
## Property value
diff --git a/api/Excel.modelcolumnchanges.creator.md b/api/Excel.modelcolumnchanges.creator.md
index 04c3db22b03..de29a1b1e72 100644
--- a/api/Excel.modelcolumnchanges.creator.md
+++ b/api/Excel.modelcolumnchanges.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[ModelColumnChanges Object (Excel)](Excel.modelcolumnchanges.md) object.
+ _expression_ A variable that represents a [ModelColumnChanges Object (Excel)](Excel.modelcolumnchanges.md) object.
## Remarks
diff --git a/api/Excel.modelcolumnchanges.item.md b/api/Excel.modelcolumnchanges.item.md
index 34fa4d62582..283d2608352 100644
--- a/api/Excel.modelcolumnchanges.item.md
+++ b/api/Excel.modelcolumnchanges.item.md
@@ -18,7 +18,7 @@ Returns a single object from the [ModelColumnChanges Object (Excel)](Excel.model
_expression_. `Item`_(Index)_
- _expression_ A variable that represents a[ModelColumnChanges Object (Excel)](Excel.modelcolumnchanges.md) object.
+ _expression_ A variable that represents a [ModelColumnChanges Object (Excel)](Excel.modelcolumnchanges.md) object.
### Parameters
diff --git a/api/Excel.modelcolumnchanges.parent.md b/api/Excel.modelcolumnchanges.parent.md
index 8884a360277..403ff4a48cd 100644
--- a/api/Excel.modelcolumnchanges.parent.md
+++ b/api/Excel.modelcolumnchanges.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelC
_expression_. `Parent`
- _expression_ A variable that represents a[ModelColumnChanges Object (Excel)](Excel.modelcolumnchanges.md) object.
+ _expression_ A variable that represents a [ModelColumnChanges Object (Excel)](Excel.modelcolumnchanges.md) object.
## Property value
diff --git a/api/Excel.modelcolumnname.application.md b/api/Excel.modelcolumnname.application.md
index 5d389e2fa60..60ea734dae3 100644
--- a/api/Excel.modelcolumnname.application.md
+++ b/api/Excel.modelcolumnname.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[ModelColumnName Object (Excel)](Excel.modelcolumnname.md) object.
+ _expression_ A variable that represents a [ModelColumnName Object (Excel)](Excel.modelcolumnname.md) object.
## Example
diff --git a/api/Excel.modelcolumnname.columnname.md b/api/Excel.modelcolumnname.columnname.md
index 9e9f0e531d4..e71226ca31f 100644
--- a/api/Excel.modelcolumnname.columnname.md
+++ b/api/Excel.modelcolumnname.columnname.md
@@ -11,14 +11,14 @@ ms.date: 06/08/2017
# ModelColumnName.ColumnName Property (Excel)
- **String** representing the name of a column of the table identified by the[ModelColumnName.TableName Property (Excel)](Excel.modelcolumnname.tablename.md) property. Read-only.
+ **String** representing the name of a column of the table identified by the [ModelColumnName.TableName Property (Excel)](Excel.modelcolumnname.tablename.md) property. Read-only.
## Syntax
_expression_. `ColumnName`
- _expression_ A variable that represents a[ModelColumnName](Excel.modelcolumnname.md) object.
+ _expression_ A variable that represents a [ModelColumnName](Excel.modelcolumnname.md) object.
## Property value
diff --git a/api/Excel.modelcolumnname.creator.md b/api/Excel.modelcolumnname.creator.md
index 320e26f782c..6b375a164d6 100644
--- a/api/Excel.modelcolumnname.creator.md
+++ b/api/Excel.modelcolumnname.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[ModelColumnName Object (Excel)](Excel.modelcolumnname.md) object.
+ _expression_ A variable that represents a [ModelColumnName Object (Excel)](Excel.modelcolumnname.md) object.
## Remarks
diff --git a/api/Excel.modelcolumnname.parent.md b/api/Excel.modelcolumnname.parent.md
index c65ff37caac..90b46a12073 100644
--- a/api/Excel.modelcolumnname.parent.md
+++ b/api/Excel.modelcolumnname.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelC
_expression_. `Parent`
- _expression_ A variable that represents a[ModelColumnName Object (Excel)](Excel.modelcolumnname.md) object.
+ _expression_ A variable that represents a [ModelColumnName Object (Excel)](Excel.modelcolumnname.md) object.
## Property value
diff --git a/api/Excel.modelcolumnname.tablename.md b/api/Excel.modelcolumnname.tablename.md
index 38dce100f92..268436e21b9 100644
--- a/api/Excel.modelcolumnname.tablename.md
+++ b/api/Excel.modelcolumnname.tablename.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `TableName`
- _expression_ A variable that represents a[ModelColumnName](Excel.modelcolumnname.md) object.
+ _expression_ A variable that represents a [ModelColumnName](Excel.modelcolumnname.md) object.
## Property value
diff --git a/api/Excel.modelcolumnnames.application.md b/api/Excel.modelcolumnnames.application.md
index 0ba8f849e0b..d2319ad4a87 100644
--- a/api/Excel.modelcolumnnames.application.md
+++ b/api/Excel.modelcolumnnames.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[ModelColumnNames Object (Excel)](Excel.modelcolumnnames.md) object.
+ _expression_ A variable that represents a [ModelColumnNames Object (Excel)](Excel.modelcolumnnames.md) object.
## Example
diff --git a/api/Excel.modelcolumnnames.count.md b/api/Excel.modelcolumnnames.count.md
index 4ac59972321..6049afb9fb9 100644
--- a/api/Excel.modelcolumnnames.count.md
+++ b/api/Excel.modelcolumnnames.count.md
@@ -11,14 +11,14 @@ ms.date: 06/08/2017
# ModelColumnNames.Count Property (Excel)
-Returns a **Long** value that represents the number of a[ModelColumnName Object (Excel)](Excel.modelcolumnname.md) objects in a[ModelColumnNames Object (Excel)](Excel.modelcolumnnames.md) collection. Read-only.
+Returns a **Long** value that represents the number of a [ModelColumnName Object (Excel)](Excel.modelcolumnname.md) objects in a [ModelColumnNames Object (Excel)](Excel.modelcolumnnames.md) collection. Read-only.
## Syntax
_expression_. `Count`
- _expression_ A variable that represents a[ModelColumnNames Object (Excel)](Excel.modelcolumnnames.md) object.
+ _expression_ A variable that represents a [ModelColumnNames Object (Excel)](Excel.modelcolumnnames.md) object.
## Property value
diff --git a/api/Excel.modelcolumnnames.creator.md b/api/Excel.modelcolumnnames.creator.md
index e28199b3ffe..47fc3cced3d 100644
--- a/api/Excel.modelcolumnnames.creator.md
+++ b/api/Excel.modelcolumnnames.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[ModelColumnNames Object (Excel)](Excel.modelcolumnnames.md) object.
+ _expression_ A variable that represents a [ModelColumnNames Object (Excel)](Excel.modelcolumnnames.md) object.
## Remarks
diff --git a/api/Excel.modelcolumnnames.item.md b/api/Excel.modelcolumnnames.item.md
index 271ed3cb11b..da0e267c86b 100644
--- a/api/Excel.modelcolumnnames.item.md
+++ b/api/Excel.modelcolumnnames.item.md
@@ -18,7 +18,7 @@ Returns a single object from the [ModelColumnNames Object (Excel)](Excel.modelco
_expression_. `Item`_(Index)_
- _expression_ A variable that represents a[ModelColumnNames Object (Excel)](Excel.modelcolumnnames.md) object.
+ _expression_ A variable that represents a [ModelColumnNames Object (Excel)](Excel.modelcolumnnames.md) object.
### Parameters
diff --git a/api/Excel.modelcolumnnames.parent.md b/api/Excel.modelcolumnnames.parent.md
index 1cc9d5f52aa..623fa691b7b 100644
--- a/api/Excel.modelcolumnnames.parent.md
+++ b/api/Excel.modelcolumnnames.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelC
_expression_. `Parent`
- _expression_ A variable that represents a[ModelColumnNames Object (Excel)](Excel.modelcolumnnames.md) object.
+ _expression_ A variable that represents a [ModelColumnNames Object (Excel)](Excel.modelcolumnnames.md) object.
## Property value
diff --git a/api/Excel.modelconnection.adoconnection.md b/api/Excel.modelconnection.adoconnection.md
index 8cc314344fc..70a296d23bd 100644
--- a/api/Excel.modelconnection.adoconnection.md
+++ b/api/Excel.modelconnection.adoconnection.md
@@ -18,7 +18,7 @@ The ADO Connection Object is used to create an open connection to a data source.
_expression_. `ADOConnection`
- _expression_ A variable that represents a[ModelConnection Object (Excel)](Excel.modelconnection.md) object.
+ _expression_ A variable that represents a [ModelConnection Object (Excel)](Excel.modelconnection.md) object.
## Property value
diff --git a/api/Excel.modelconnection.application.md b/api/Excel.modelconnection.application.md
index 98a6f9ff563..e08d2a5ac41 100644
--- a/api/Excel.modelconnection.application.md
+++ b/api/Excel.modelconnection.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[ModelConnection Object (Excel)](Excel.modelconnection.md) object.
+ _expression_ A variable that represents a [ModelConnection Object (Excel)](Excel.modelconnection.md) object.
## Example
diff --git a/api/Excel.modelconnection.commandtext.md b/api/Excel.modelconnection.commandtext.md
index b97f8d32c5e..156b31d4d0b 100644
--- a/api/Excel.modelconnection.commandtext.md
+++ b/api/Excel.modelconnection.commandtext.md
@@ -18,7 +18,7 @@ Returns or sets the command string for the specified data source. **Variant** R
_expression_. `CommandText`
- _expression_ A variable that represents a[ModelConnection Object (Excel)](Excel.modelconnection.md) object.
+ _expression_ A variable that represents a [ModelConnection Object (Excel)](Excel.modelconnection.md) object.
## Remarks
diff --git a/api/Excel.modelconnection.commandtype.md b/api/Excel.modelconnection.commandtype.md
index eff6a46c139..1f6dce4c818 100644
--- a/api/Excel.modelconnection.commandtype.md
+++ b/api/Excel.modelconnection.commandtype.md
@@ -18,7 +18,7 @@ Returns or sets one of the [XlCmdType Enumeration (Excel)](Excel.XlCmdType.md) c
_expression_. `CommandType`
- _expression_ A variable that represents a[ModelConnection Object (Excel)](Excel.modelconnection.md) object.
+ _expression_ A variable that represents a [ModelConnection Object (Excel)](Excel.modelconnection.md) object.
## Remarks
diff --git a/api/Excel.modelconnection.creator.md b/api/Excel.modelconnection.creator.md
index d167ddf5ca1..533270f20a2 100644
--- a/api/Excel.modelconnection.creator.md
+++ b/api/Excel.modelconnection.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[ModelConnection Object (Excel)](Excel.modelconnection.md) object.
+ _expression_ A variable that represents a [ModelConnection Object (Excel)](Excel.modelconnection.md) object.
## Remarks
diff --git a/api/Excel.modelconnection.parent.md b/api/Excel.modelconnection.parent.md
index 21f2e4fde98..570a4beeecb 100644
--- a/api/Excel.modelconnection.parent.md
+++ b/api/Excel.modelconnection.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelC
_expression_. `Parent`
- _expression_ A variable that represents a[ModelConnection Object (Excel)](Excel.modelconnection.md) object.
+ _expression_ A variable that represents a [ModelConnection Object (Excel)](Excel.modelconnection.md) object.
## Property value
diff --git a/api/Excel.modelmeasure.md b/api/Excel.modelmeasure.md
index bd2c9e2ac0f..ddfbc4f6fc7 100644
--- a/api/Excel.modelmeasure.md
+++ b/api/Excel.modelmeasure.md
@@ -11,7 +11,7 @@ ms.prod: excel
# ModelMeasure Object (Excel)
-Represents a single **ModelMeasure** object in the[ModelMeasures](Excel.modelmeasures.md) collection.
+Represents a single **ModelMeasure** object in the [ModelMeasures](Excel.modelmeasures.md) collection.
## See also
diff --git a/api/Excel.modelmeasurename.application.md b/api/Excel.modelmeasurename.application.md
index 780f354c23d..df9498bd63f 100644
--- a/api/Excel.modelmeasurename.application.md
+++ b/api/Excel.modelmeasurename.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[ModelMeasureName Object (Excel)](Excel.modelmeasurename.md) object.
+ _expression_ A variable that represents a [ModelMeasureName Object (Excel)](Excel.modelmeasurename.md) object.
## Example
diff --git a/api/Excel.modelmeasurename.creator.md b/api/Excel.modelmeasurename.creator.md
index b06d3f11a69..f09935aae70 100644
--- a/api/Excel.modelmeasurename.creator.md
+++ b/api/Excel.modelmeasurename.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[ModelMeasureName Object (Excel)](Excel.modelmeasurename.md) object.
+ _expression_ A variable that represents a [ModelMeasureName Object (Excel)](Excel.modelmeasurename.md) object.
## Remarks
diff --git a/api/Excel.modelmeasurename.measurename.md b/api/Excel.modelmeasurename.measurename.md
index fa74af64e5b..6c3862db348 100644
--- a/api/Excel.modelmeasurename.measurename.md
+++ b/api/Excel.modelmeasurename.measurename.md
@@ -11,14 +11,14 @@ ms.date: 06/08/2017
# ModelMeasureName.MeasureName Property (Excel)
- **String** representing the new name a measure which was added to the[ModelTable Object (Excel)](Excel.modeltable.md) identified by the[ModelMeasureName.TableName Property (Excel)](Excel.modelmeasurename.tablename.md) property. Read-only.
+ **String** representing the new name a measure which was added to the [ModelTable Object (Excel)](Excel.modeltable.md) identified by the [ModelMeasureName.TableName Property (Excel)](Excel.modelmeasurename.tablename.md) property. Read-only.
## Syntax
_expression_. `MeasureName`
- _expression_ A variable that represents a[ModelMeasureName](Excel.modelmeasurename.md) object.
+ _expression_ A variable that represents a [ModelMeasureName](Excel.modelmeasurename.md) object.
## Property value
diff --git a/api/Excel.modelmeasurename.parent.md b/api/Excel.modelmeasurename.parent.md
index 130ae7fe949..68114ce368b 100644
--- a/api/Excel.modelmeasurename.parent.md
+++ b/api/Excel.modelmeasurename.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelM
_expression_. `Parent`
- _expression_ A variable that represents a[ModelMeasureName Object (Excel)](Excel.modelmeasurename.md) object.
+ _expression_ A variable that represents a [ModelMeasureName Object (Excel)](Excel.modelmeasurename.md) object.
## Property value
diff --git a/api/Excel.modelmeasurename.tablename.md b/api/Excel.modelmeasurename.tablename.md
index 23ef59c0c41..222f9b9d16b 100644
--- a/api/Excel.modelmeasurename.tablename.md
+++ b/api/Excel.modelmeasurename.tablename.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `TableName`
- _expression_ A variable that represents a[ModelMeasureName](Excel.modelmeasurename.md) object.
+ _expression_ A variable that represents a [ModelMeasureName](Excel.modelmeasurename.md) object.
## Property value
diff --git a/api/Excel.modelmeasurenames.application.md b/api/Excel.modelmeasurenames.application.md
index 61bd00bf946..a64c61c78d4 100644
--- a/api/Excel.modelmeasurenames.application.md
+++ b/api/Excel.modelmeasurenames.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[ModelMeasureNames Object (Excel)](Excel.modelmeasurenames.md) object.
+ _expression_ A variable that represents a [ModelMeasureNames Object (Excel)](Excel.modelmeasurenames.md) object.
## Example
diff --git a/api/Excel.modelmeasurenames.count.md b/api/Excel.modelmeasurenames.count.md
index 9f3bcfc64ec..37592a8dfec 100644
--- a/api/Excel.modelmeasurenames.count.md
+++ b/api/Excel.modelmeasurenames.count.md
@@ -11,14 +11,14 @@ ms.date: 06/08/2017
# ModelMeasureNames.Count Property (Excel)
-Returns a **Long** value that represents the number of a[ModelMeasureName Object (Excel)](Excel.modelmeasurename.md) objects in a[ModelMeasureNames Object (Excel)](Excel.modelmeasurenames.md) object. Read-only.
+Returns a **Long** value that represents the number of a [ModelMeasureName Object (Excel)](Excel.modelmeasurename.md) objects in a [ModelMeasureNames Object (Excel)](Excel.modelmeasurenames.md) object. Read-only.
## Syntax
_expression_. `Count`
- _expression_ A variable that represents a[ModelMeasureNames Object (Excel)](Excel.modelmeasurenames.md) object.
+ _expression_ A variable that represents a [ModelMeasureNames Object (Excel)](Excel.modelmeasurenames.md) object.
## Property value
diff --git a/api/Excel.modelmeasurenames.creator.md b/api/Excel.modelmeasurenames.creator.md
index 7cc057e416f..60114da1425 100644
--- a/api/Excel.modelmeasurenames.creator.md
+++ b/api/Excel.modelmeasurenames.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[ModelMeasureNames Object (Excel)](Excel.modelmeasurenames.md) object.
+ _expression_ A variable that represents a [ModelMeasureNames Object (Excel)](Excel.modelmeasurenames.md) object.
## Remarks
diff --git a/api/Excel.modelmeasurenames.item.md b/api/Excel.modelmeasurenames.item.md
index 3228f88505d..ac415ffbe46 100644
--- a/api/Excel.modelmeasurenames.item.md
+++ b/api/Excel.modelmeasurenames.item.md
@@ -18,7 +18,7 @@ Returns a single object from the [ModelMeasureNames Object (Excel)](Excel.modelm
_expression_. `Item`_(Index)_
- _expression_ A variable that represents a[ModelMeasureNames Object (Excel)](Excel.modelmeasurenames.md) object.
+ _expression_ A variable that represents a [ModelMeasureNames Object (Excel)](Excel.modelmeasurenames.md) object.
### Parameters
diff --git a/api/Excel.modelmeasurenames.parent.md b/api/Excel.modelmeasurenames.parent.md
index be505f148a4..6df874396cf 100644
--- a/api/Excel.modelmeasurenames.parent.md
+++ b/api/Excel.modelmeasurenames.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelM
_expression_. `Parent`
- _expression_ A variable that represents a[ModelMeasureNames Object (Excel)](Excel.modelmeasurenames.md) object.
+ _expression_ A variable that represents a [ModelMeasureNames Object (Excel)](Excel.modelmeasurenames.md) object.
## Property value
diff --git a/api/Excel.modelmeasures.md b/api/Excel.modelmeasures.md
index 90c582a98b6..4b45db91c25 100644
--- a/api/Excel.modelmeasures.md
+++ b/api/Excel.modelmeasures.md
@@ -16,7 +16,7 @@ Represents: a collection of **ModelMeasure** objects.
## Remarks
-Each measure is represented by a [ModelMeasure](Excel.modelmeasure.md) object. Use the[Model.ModelMeasures](Excel.model.modelmeasures.md) property to return the **ModelMeasures** collection.
+Each measure is represented by a [ModelMeasure](Excel.modelmeasure.md) object. Use the [Model.ModelMeasures](Excel.model.modelmeasures.md) property to return the **ModelMeasures** collection.
## See also
diff --git a/api/Excel.modelrelationship.active.md b/api/Excel.modelrelationship.active.md
index 4708a5d3faf..7ba8647be8a 100644
--- a/api/Excel.modelrelationship.active.md
+++ b/api/Excel.modelrelationship.active.md
@@ -18,7 +18,7 @@ When **True** , the relationship is active. When **False** , this relationship
_expression_. `Active`
- _expression_ A variable that represents a[ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
+ _expression_ A variable that represents a [ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
## Property value
diff --git a/api/Excel.modelrelationship.application.md b/api/Excel.modelrelationship.application.md
index 4121f557bea..fa779265f0f 100644
--- a/api/Excel.modelrelationship.application.md
+++ b/api/Excel.modelrelationship.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
+ _expression_ A variable that represents a [ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
## Example
diff --git a/api/Excel.modelrelationship.creator.md b/api/Excel.modelrelationship.creator.md
index 9c11f0d9ce8..ff556bc6094 100644
--- a/api/Excel.modelrelationship.creator.md
+++ b/api/Excel.modelrelationship.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
+ _expression_ A variable that represents a [ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
## Remarks
diff --git a/api/Excel.modelrelationship.delete.md b/api/Excel.modelrelationship.delete.md
index 8a15896f123..8aa93ffa6a1 100644
--- a/api/Excel.modelrelationship.delete.md
+++ b/api/Excel.modelrelationship.delete.md
@@ -18,7 +18,7 @@ Deletes the relationship.
_expression_. `Delete`
- _expression_ A variable that represents a[ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
+ _expression_ A variable that represents a [ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
### Return value
diff --git a/api/Excel.modelrelationship.foreignkeycolumn.md b/api/Excel.modelrelationship.foreignkeycolumn.md
index 90545838b11..911ec9a1729 100644
--- a/api/Excel.modelrelationship.foreignkeycolumn.md
+++ b/api/Excel.modelrelationship.foreignkeycolumn.md
@@ -18,7 +18,7 @@ Contains the [ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) object
_expression_. `ForeignKeyColumn`
- _expression_ A variable that represents a[ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
+ _expression_ A variable that represents a [ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
## Property value
diff --git a/api/Excel.modelrelationship.foreignkeytable.md b/api/Excel.modelrelationship.foreignkeytable.md
index 857ef4b4ce3..b385022c83e 100644
--- a/api/Excel.modelrelationship.foreignkeytable.md
+++ b/api/Excel.modelrelationship.foreignkeytable.md
@@ -18,7 +18,7 @@ Contains the [ModelTable Object (Excel)](Excel.modeltable.md) object (Excel) rep
_expression_. `ForeignKeyTable`
- _expression_ A variable that represents a[ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
+ _expression_ A variable that represents a [ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
## Property value
diff --git a/api/Excel.modelrelationship.parent.md b/api/Excel.modelrelationship.parent.md
index 7e86bab0cfd..d694ee01c11 100644
--- a/api/Excel.modelrelationship.parent.md
+++ b/api/Excel.modelrelationship.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelR
_expression_. `Parent`
- _expression_ A variable that represents a[ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
+ _expression_ A variable that represents a [ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
## Property value
diff --git a/api/Excel.modelrelationship.primarykeycolumn.md b/api/Excel.modelrelationship.primarykeycolumn.md
index 77c15109a05..45045f7299d 100644
--- a/api/Excel.modelrelationship.primarykeycolumn.md
+++ b/api/Excel.modelrelationship.primarykeycolumn.md
@@ -18,7 +18,7 @@ Contains the [ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) object
_expression_. `PrimaryKeyColumn`
- _expression_ A variable that represents a[ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
+ _expression_ A variable that represents a [ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
## Property value
diff --git a/api/Excel.modelrelationship.primarykeytable.md b/api/Excel.modelrelationship.primarykeytable.md
index 235bd29a358..2f9b1da781d 100644
--- a/api/Excel.modelrelationship.primarykeytable.md
+++ b/api/Excel.modelrelationship.primarykeytable.md
@@ -18,7 +18,7 @@ Contains the [ModelTable Object (Excel)](Excel.modeltable.md) object (Excel) rep
_expression_. `PrimaryKeyTable`
- _expression_ A variable that represents a[ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
+ _expression_ A variable that represents a [ModelRelationship Object (Excel)](Excel.modelrelationship.md) object.
## Property value
diff --git a/api/Excel.modelrelationships.add.md b/api/Excel.modelrelationships.add.md
index 48a5da929d0..c54c02b1e7c 100644
--- a/api/Excel.modelrelationships.add.md
+++ b/api/Excel.modelrelationships.add.md
@@ -18,7 +18,7 @@ Adds a new relationship to the model.
_expression_. `Add`_(ForeignKeyColumn,_ _PrimaryKeyColumn)_
- _expression_ A variable that represents a[ModelRelationships Object (Excel)](Excel.modelrelationships.md) object (Excel).
+ _expression_ A variable that represents a [ModelRelationships Object (Excel)](Excel.modelrelationships.md) object (Excel).
### Parameters
diff --git a/api/Excel.modelrelationships.application.md b/api/Excel.modelrelationships.application.md
index 783b25085f7..ecff7be98a1 100644
--- a/api/Excel.modelrelationships.application.md
+++ b/api/Excel.modelrelationships.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[ModelRelationships Object (Excel)](Excel.modelrelationships.md) object.
+ _expression_ A variable that represents a [ModelRelationships Object (Excel)](Excel.modelrelationships.md) object.
## Example
diff --git a/api/Excel.modelrelationships.count.md b/api/Excel.modelrelationships.count.md
index d2b3449230d..31466d2788b 100644
--- a/api/Excel.modelrelationships.count.md
+++ b/api/Excel.modelrelationships.count.md
@@ -11,14 +11,14 @@ ms.date: 06/08/2017
# ModelRelationships.Count Property (Excel)
-Returns a **Long** value that represents the number of a[ModelRelationship Object (Excel)](Excel.modelrelationship.md) objects in a[ModelRelationships Object (Excel)](Excel.modelrelationships.md) object. Read-only.
+Returns a **Long** value that represents the number of a [ModelRelationship Object (Excel)](Excel.modelrelationship.md) objects in a [ModelRelationships Object (Excel)](Excel.modelrelationships.md) object. Read-only.
## Syntax
_expression_. `Count`
- _expression_ A variable that represents a[ModelRelationships Object (Excel)](Excel.modelrelationships.md) object.
+ _expression_ A variable that represents a [ModelRelationships Object (Excel)](Excel.modelrelationships.md) object.
## Property value
diff --git a/api/Excel.modelrelationships.creator.md b/api/Excel.modelrelationships.creator.md
index 678a8828705..cebb3b1a8da 100644
--- a/api/Excel.modelrelationships.creator.md
+++ b/api/Excel.modelrelationships.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[ModelRelationships Object (Excel)](Excel.modelrelationships.md) object.
+ _expression_ A variable that represents a [ModelRelationships Object (Excel)](Excel.modelrelationships.md) object.
## Remarks
diff --git a/api/Excel.modelrelationships.item.md b/api/Excel.modelrelationships.item.md
index 1285b3c76ec..619428ab2de 100644
--- a/api/Excel.modelrelationships.item.md
+++ b/api/Excel.modelrelationships.item.md
@@ -18,7 +18,7 @@ Returns a single object from the [ModelRelationships Object (Excel)](Excel.model
_expression_. `Item`_(Index)_
- _expression_ A variable that represents a[ModelRelationships Object (Excel)](Excel.modelrelationships.md) object.
+ _expression_ A variable that represents a [ModelRelationships Object (Excel)](Excel.modelrelationships.md) object.
### Parameters
diff --git a/api/Excel.modelrelationships.parent.md b/api/Excel.modelrelationships.parent.md
index 6b88eb11a53..6a283452345 100644
--- a/api/Excel.modelrelationships.parent.md
+++ b/api/Excel.modelrelationships.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelR
_expression_. `Parent`
- _expression_ A variable that represents a[ModelRelationships Object (Excel)](Excel.modelrelationships.md) object.
+ _expression_ A variable that represents a [ModelRelationships Object (Excel)](Excel.modelrelationships.md) object.
## Property value
diff --git a/api/Excel.modeltable.application.md b/api/Excel.modeltable.application.md
index 35ab3eebc28..01ec921f5c9 100644
--- a/api/Excel.modeltable.application.md
+++ b/api/Excel.modeltable.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
## Example
diff --git a/api/Excel.modeltable.creator.md b/api/Excel.modeltable.creator.md
index a81f22ded19..7351cff7378 100644
--- a/api/Excel.modeltable.creator.md
+++ b/api/Excel.modeltable.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
## Remarks
diff --git a/api/Excel.modeltable.modeltablecolumns.md b/api/Excel.modeltable.modeltablecolumns.md
index 4f3e8dd0fe9..baecd6534af 100644
--- a/api/Excel.modeltable.modeltablecolumns.md
+++ b/api/Excel.modeltable.modeltablecolumns.md
@@ -18,7 +18,7 @@ Collection of [ModelTableColumns Object (Excel)](Excel.modeltablecolumns.md) tha
_expression_. `ModelTableColumns`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
## Property value
diff --git a/api/Excel.modeltable.name.md b/api/Excel.modeltable.name.md
index c62b16dca58..925063fdada 100644
--- a/api/Excel.modeltable.name.md
+++ b/api/Excel.modeltable.name.md
@@ -18,7 +18,7 @@ Returns a **String** value that represents the name of the object.
_expression_. `Name`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
## Property value
diff --git a/api/Excel.modeltable.parent.md b/api/Excel.modeltable.parent.md
index 41ddad78129..f04fa993810 100644
--- a/api/Excel.modeltable.parent.md
+++ b/api/Excel.modeltable.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelT
_expression_. `Parent`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
## Property value
diff --git a/api/Excel.modeltable.recordcount.md b/api/Excel.modeltable.recordcount.md
index e3e999b6a59..456a6b9ab4d 100644
--- a/api/Excel.modeltable.recordcount.md
+++ b/api/Excel.modeltable.recordcount.md
@@ -18,7 +18,7 @@ Returns the total row count for the model table. **Integer** Read-only
_expression_. `RecordCount`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
## Property value
diff --git a/api/Excel.modeltable.refresh.md b/api/Excel.modeltable.refresh.md
index 50b184c1de3..a63e07892a8 100644
--- a/api/Excel.modeltable.refresh.md
+++ b/api/Excel.modeltable.refresh.md
@@ -18,7 +18,7 @@ Refreshes the model table source connections.
_expression_. `Refresh`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
### Return value
diff --git a/api/Excel.modeltable.sourcename.md b/api/Excel.modeltable.sourcename.md
index 93a02954513..0748cd1a2ea 100644
--- a/api/Excel.modeltable.sourcename.md
+++ b/api/Excel.modeltable.sourcename.md
@@ -18,7 +18,7 @@ Name of the data source for the table. If the table has no data source, the call
_expression_. `SourceName`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
## Property value
diff --git a/api/Excel.modeltable.sourceworkbookconnection.md b/api/Excel.modeltable.sourceworkbookconnection.md
index bb8d6a154c9..5d16d8a6e0f 100644
--- a/api/Excel.modeltable.sourceworkbookconnection.md
+++ b/api/Excel.modeltable.sourceworkbookconnection.md
@@ -18,7 +18,7 @@ Returns the Workbook Connection from which the model table originated. Read-only
_expression_. `SourceWorkbookConnection`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
## Property value
diff --git a/api/Excel.modeltablecolumn.application.md b/api/Excel.modeltablecolumn.application.md
index 5726f50722c..5bdeeeddcbd 100644
--- a/api/Excel.modeltablecolumn.application.md
+++ b/api/Excel.modeltablecolumn.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) object.
+ _expression_ A variable that represents a [ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) object.
## Example
diff --git a/api/Excel.modeltablecolumn.creator.md b/api/Excel.modeltablecolumn.creator.md
index 896ac18afde..facc6370ef0 100644
--- a/api/Excel.modeltablecolumn.creator.md
+++ b/api/Excel.modeltablecolumn.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) object.
+ _expression_ A variable that represents a [ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) object.
## Remarks
diff --git a/api/Excel.modeltablecolumn.datatype.md b/api/Excel.modeltablecolumn.datatype.md
index 18f85e148d9..f41b2b78ab2 100644
--- a/api/Excel.modeltablecolumn.datatype.md
+++ b/api/Excel.modeltablecolumn.datatype.md
@@ -18,7 +18,7 @@ Returns the [XlParameterDataType Enumeration (Excel)](Excel.XlParameterDataType.
_expression_. `DataType`
- _expression_ A variable that represents a[ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) object.
+ _expression_ A variable that represents a [ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) object.
## Property value
diff --git a/api/Excel.modeltablecolumn.name.md b/api/Excel.modeltablecolumn.name.md
index 32981f96869..83fbef95459 100644
--- a/api/Excel.modeltablecolumn.name.md
+++ b/api/Excel.modeltablecolumn.name.md
@@ -18,7 +18,7 @@ Returns a **String** value that represents the name of the object.
_expression_. `Name`
- _expression_ A variable that represents a[ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) object.
+ _expression_ A variable that represents a [ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) object.
## Property value
diff --git a/api/Excel.modeltablecolumn.parent.md b/api/Excel.modeltablecolumn.parent.md
index 8c513db4c3a..0f58cd3f414 100644
--- a/api/Excel.modeltablecolumn.parent.md
+++ b/api/Excel.modeltablecolumn.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelT
_expression_. `Parent`
- _expression_ A variable that represents a[ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) object.
+ _expression_ A variable that represents a [ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) object.
## Property value
diff --git a/api/Excel.modeltablecolumns.application.md b/api/Excel.modeltablecolumns.application.md
index 611bf9f1f08..d6cf6bafd8a 100644
--- a/api/Excel.modeltablecolumns.application.md
+++ b/api/Excel.modeltablecolumns.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[ModelTableColumns Object (Excel)](Excel.modeltablecolumns.md) object.
+ _expression_ A variable that represents a [ModelTableColumns Object (Excel)](Excel.modeltablecolumns.md) object.
## Example
diff --git a/api/Excel.modeltablecolumns.count.md b/api/Excel.modeltablecolumns.count.md
index fc63d5547b7..7a387327911 100644
--- a/api/Excel.modeltablecolumns.count.md
+++ b/api/Excel.modeltablecolumns.count.md
@@ -11,14 +11,14 @@ ms.date: 06/08/2017
# ModelTableColumns.Count Property (Excel)
-Returns a **Long** value that represents the number of a[ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) objects in a[ModelTableColumns Object (Excel)](Excel.modeltablecolumns.md) object. Read-only.
+Returns a **Long** value that represents the number of a [ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) objects in a [ModelTableColumns Object (Excel)](Excel.modeltablecolumns.md) object. Read-only.
## Syntax
_expression_. `Count`
- _expression_ A variable that represents a[ModelTableColumns Object (Excel)](Excel.modeltablecolumns.md) object.
+ _expression_ A variable that represents a [ModelTableColumns Object (Excel)](Excel.modeltablecolumns.md) object.
## Property value
diff --git a/api/Excel.modeltablecolumns.creator.md b/api/Excel.modeltablecolumns.creator.md
index bee64113e1d..7f64ff6a2db 100644
--- a/api/Excel.modeltablecolumns.creator.md
+++ b/api/Excel.modeltablecolumns.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[ModelTableColumns Object (Excel)](Excel.modeltablecolumns.md) object.
+ _expression_ A variable that represents a [ModelTableColumns Object (Excel)](Excel.modeltablecolumns.md) object.
## Remarks
diff --git a/api/Excel.modeltablecolumns.item.md b/api/Excel.modeltablecolumns.item.md
index 41f054c18e8..9366bba669d 100644
--- a/api/Excel.modeltablecolumns.item.md
+++ b/api/Excel.modeltablecolumns.item.md
@@ -18,7 +18,7 @@ Returns a [ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) object (E
_expression_. `Item`_(Index)_
- _expression_ A variable that represents a[ModelTableColumns Object (Excel)](Excel.modeltablecolumns.md) object.
+ _expression_ A variable that represents a [ModelTableColumns Object (Excel)](Excel.modeltablecolumns.md) object.
### Parameters
diff --git a/api/Excel.modeltablecolumns.md b/api/Excel.modeltablecolumns.md
index efd2cd15304..3f6592962e2 100644
--- a/api/Excel.modeltablecolumns.md
+++ b/api/Excel.modeltablecolumns.md
@@ -11,7 +11,7 @@ ms.date: 06/08/2017
# ModelTableColumns Object (Excel)
-Represent a [ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) collection of single columns inside a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+Represent a [ModelTableColumn Object (Excel)](Excel.modeltablecolumn.md) collection of single columns inside a [ModelTable Object (Excel)](Excel.modeltable.md) object.
## See also
diff --git a/api/Excel.modeltablecolumns.parent.md b/api/Excel.modeltablecolumns.parent.md
index 3a483f4ebd8..958beeeea20 100644
--- a/api/Excel.modeltablecolumns.parent.md
+++ b/api/Excel.modeltablecolumns.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelT
_expression_. `Parent`
- _expression_ A variable that represents a[ModelTableColumns Object (Excel)](Excel.modeltablecolumns.md) object.
+ _expression_ A variable that represents a [ModelTableColumns Object (Excel)](Excel.modeltablecolumns.md) object.
## Property value
diff --git a/api/Excel.modeltablenamechange.application.md b/api/Excel.modeltablenamechange.application.md
index e4fd6254a3a..51f66858e58 100644
--- a/api/Excel.modeltablenamechange.application.md
+++ b/api/Excel.modeltablenamechange.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[ModelTableNameChange Object (Excel)](Excel.modeltablenamechange.md) object.
+ _expression_ A variable that represents a [ModelTableNameChange Object (Excel)](Excel.modeltablenamechange.md) object.
## Example
diff --git a/api/Excel.modeltablenamechange.creator.md b/api/Excel.modeltablenamechange.creator.md
index 656fbd8a596..2907a8d6180 100644
--- a/api/Excel.modeltablenamechange.creator.md
+++ b/api/Excel.modeltablenamechange.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[ModelTableNameChange Object (Excel)](Excel.modeltablenamechange.md) object.
+ _expression_ A variable that represents a [ModelTableNameChange Object (Excel)](Excel.modeltablenamechange.md) object.
## Remarks
diff --git a/api/Excel.modeltablenamechange.parent.md b/api/Excel.modeltablenamechange.parent.md
index fef5579648c..8c8d7f79fff 100644
--- a/api/Excel.modeltablenamechange.parent.md
+++ b/api/Excel.modeltablenamechange.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelT
_expression_. `Parent`
- _expression_ A variable that represents a[ModelTableNameChange Object (Excel)](Excel.modeltablenamechange.md) object.
+ _expression_ A variable that represents a [ModelTableNameChange Object (Excel)](Excel.modeltablenamechange.md) object.
## Property value
diff --git a/api/Excel.modeltablenamechange.tablenamenew.md b/api/Excel.modeltablenamechange.tablenamenew.md
index 01fe3b40a97..adb9aa55990 100644
--- a/api/Excel.modeltablenamechange.tablenamenew.md
+++ b/api/Excel.modeltablenamechange.tablenamenew.md
@@ -18,7 +18,7 @@ Returns the new name of the table. **String** Read-only
_expression_. `TableNameNew`
- _expression_ A variable that represents a[ModelTableNameChange](Excel.modeltablenamechange.md) object.
+ _expression_ A variable that represents a [ModelTableNameChange](Excel.modeltablenamechange.md) object.
## Property value
diff --git a/api/Excel.modeltablenamechange.tablenameold.md b/api/Excel.modeltablenamechange.tablenameold.md
index f8014a7032e..378657f89d1 100644
--- a/api/Excel.modeltablenamechange.tablenameold.md
+++ b/api/Excel.modeltablenamechange.tablenameold.md
@@ -18,7 +18,7 @@ Returns the previous name of the table. **String** Read-only
_expression_. `TableNameOld`
- _expression_ A variable that represents a[ModelTableNameChange](Excel.modeltablenamechange.md) object.
+ _expression_ A variable that represents a [ModelTableNameChange](Excel.modeltablenamechange.md) object.
## Property value
diff --git a/api/Excel.modeltablenamechanges.application.md b/api/Excel.modeltablenamechanges.application.md
index 58ef0d02788..d35e1715556 100644
--- a/api/Excel.modeltablenamechanges.application.md
+++ b/api/Excel.modeltablenamechanges.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[ModelTableNameChanges Object (Excel)](Excel.modeltablenamechanges.md) object.
+ _expression_ A variable that represents a [ModelTableNameChanges Object (Excel)](Excel.modeltablenamechanges.md) object.
## Example
diff --git a/api/Excel.modeltablenamechanges.count.md b/api/Excel.modeltablenamechanges.count.md
index 4ba3cad854e..77b77489fef 100644
--- a/api/Excel.modeltablenamechanges.count.md
+++ b/api/Excel.modeltablenamechanges.count.md
@@ -11,14 +11,14 @@ ms.date: 06/08/2017
# ModelTableNameChanges.Count Property (Excel)
-Returns a **Long** value that represents the number of a[ModelTableNameChange Object (Excel)](Excel.modeltablenamechange.md) objects in a[ModelTableNameChanges Object (Excel)](Excel.modeltablenamechanges.md) collection. Read-only.
+Returns a **Long** value that represents the number of a [ModelTableNameChange Object (Excel)](Excel.modeltablenamechange.md) objects in a [ModelTableNameChanges Object (Excel)](Excel.modeltablenamechanges.md) collection. Read-only.
## Syntax
_expression_. `Count`
- _expression_ A variable that represents a[ModelTableNameChanges Object (Excel)](Excel.modeltablenamechanges.md) object.
+ _expression_ A variable that represents a [ModelTableNameChanges Object (Excel)](Excel.modeltablenamechanges.md) object.
## Property value
diff --git a/api/Excel.modeltablenamechanges.creator.md b/api/Excel.modeltablenamechanges.creator.md
index eb469ec1bde..5d6ddbddcb8 100644
--- a/api/Excel.modeltablenamechanges.creator.md
+++ b/api/Excel.modeltablenamechanges.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[ModelTableNameChanges Object (Excel)](Excel.modeltablenamechanges.md) object.
+ _expression_ A variable that represents a [ModelTableNameChanges Object (Excel)](Excel.modeltablenamechanges.md) object.
## Remarks
diff --git a/api/Excel.modeltablenamechanges.item.md b/api/Excel.modeltablenamechanges.item.md
index d3e79abf21c..f3308ab45e5 100644
--- a/api/Excel.modeltablenamechanges.item.md
+++ b/api/Excel.modeltablenamechanges.item.md
@@ -18,7 +18,7 @@ Returns a single object from the **ModelTableNameChanges** collection.
_expression_. `Item`_(Index)_
- _expression_ A variable that represents a[ModelTableNameChanges Object (Excel)](Excel.modeltablenamechanges.md) object.
+ _expression_ A variable that represents a [ModelTableNameChanges Object (Excel)](Excel.modeltablenamechanges.md) object.
### Parameters
diff --git a/api/Excel.modeltablenamechanges.parent.md b/api/Excel.modeltablenamechanges.parent.md
index adce283b131..3e6218a3a0e 100644
--- a/api/Excel.modeltablenamechanges.parent.md
+++ b/api/Excel.modeltablenamechanges.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelT
_expression_. `Parent`
- _expression_ A variable that represents a[ModelTableNameChanges Object (Excel)](Excel.modeltablenamechanges.md) object.
+ _expression_ A variable that represents a [ModelTableNameChanges Object (Excel)](Excel.modeltablenamechanges.md) object.
## Property value
diff --git a/api/Excel.modeltablenames.application.md b/api/Excel.modeltablenames.application.md
index d296adf5257..1700fa7f780 100644
--- a/api/Excel.modeltablenames.application.md
+++ b/api/Excel.modeltablenames.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[ModelTableNames Object (Excel)](Excel.modeltablenames.md) object.
+ _expression_ A variable that represents a [ModelTableNames Object (Excel)](Excel.modeltablenames.md) object.
## Example
diff --git a/api/Excel.modeltablenames.count.md b/api/Excel.modeltablenames.count.md
index b521098aae8..b9d90e63e80 100644
--- a/api/Excel.modeltablenames.count.md
+++ b/api/Excel.modeltablenames.count.md
@@ -11,14 +11,14 @@ ms.date: 06/08/2017
# ModelTableNames.Count Property (Excel)
-Returns a **Long** value that represents the number of objects in a[ModelTableNames Object (Excel)](Excel.modeltablenames.md) collection. Read-only.
+Returns a **Long** value that represents the number of objects in a [ModelTableNames Object (Excel)](Excel.modeltablenames.md) collection. Read-only.
## Syntax
_expression_. `Count`
- _expression_ A variable that represents a[ModelTableNames Object (Excel)](Excel.modeltablenames.md) object.
+ _expression_ A variable that represents a [ModelTableNames Object (Excel)](Excel.modeltablenames.md) object.
## Property value
diff --git a/api/Excel.modeltablenames.creator.md b/api/Excel.modeltablenames.creator.md
index 7fb4e002422..1b76571dbc3 100644
--- a/api/Excel.modeltablenames.creator.md
+++ b/api/Excel.modeltablenames.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[ModelTableNames Object (Excel)](Excel.modeltablenames.md) object.
+ _expression_ A variable that represents a [ModelTableNames Object (Excel)](Excel.modeltablenames.md) object.
## Remarks
diff --git a/api/Excel.modeltablenames.item.md b/api/Excel.modeltablenames.item.md
index 4cd6dd857da..702e324dc9f 100644
--- a/api/Excel.modeltablenames.item.md
+++ b/api/Excel.modeltablenames.item.md
@@ -18,7 +18,7 @@ Returns a single object from the **ModelTableNames** collection.
_expression_. `Item`_(Index)_
- _expression_ A variable that represents a[ModelTableNames Object (Excel)](Excel.modeltablenames.md) object.
+ _expression_ A variable that represents a [ModelTableNames Object (Excel)](Excel.modeltablenames.md) object.
### Parameters
diff --git a/api/Excel.modeltablenames.parent.md b/api/Excel.modeltablenames.parent.md
index d70678fb99d..f13a34ccd7b 100644
--- a/api/Excel.modeltablenames.parent.md
+++ b/api/Excel.modeltablenames.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelT
_expression_. `Parent`
- _expression_ A variable that represents a[ModelTableNames Object (Excel)](Excel.modeltablenames.md) object.
+ _expression_ A variable that represents a [ModelTableNames Object (Excel)](Excel.modeltablenames.md) object.
## Property value
diff --git a/api/Excel.modeltables.application.md b/api/Excel.modeltables.application.md
index 42a85e83a75..6343b4cc9f7 100644
--- a/api/Excel.modeltables.application.md
+++ b/api/Excel.modeltables.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[ModelTables Object (Excel)](Excel.modeltables.md) object.
+ _expression_ A variable that represents a [ModelTables Object (Excel)](Excel.modeltables.md) object.
## Example
diff --git a/api/Excel.modeltables.count.md b/api/Excel.modeltables.count.md
index 739001996ca..8486e636a95 100644
--- a/api/Excel.modeltables.count.md
+++ b/api/Excel.modeltables.count.md
@@ -11,14 +11,14 @@ ms.date: 06/08/2017
# ModelTables.Count Property (Excel)
-Returns a **Long** value that represents the number of[ModelTable Object (Excel)](Excel.modeltable.md) objects in a[ModelTables Object (Excel)](Excel.modeltables.md) collection. Read-only.
+Returns a **Long** value that represents the number of[ModelTable Object (Excel)](Excel.modeltable.md) objects in a [ModelTables Object (Excel)](Excel.modeltables.md) collection. Read-only.
## Syntax
_expression_. `Count`
- _expression_ A variable that represents a[ModelTables Object (Excel)](Excel.modeltables.md) object.
+ _expression_ A variable that represents a [ModelTables Object (Excel)](Excel.modeltables.md) object.
## Property value
diff --git a/api/Excel.modeltables.creator.md b/api/Excel.modeltables.creator.md
index 8b4bc51ac7b..2874c287ecd 100644
--- a/api/Excel.modeltables.creator.md
+++ b/api/Excel.modeltables.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[ModelTables Object (Excel)](Excel.modeltables.md) object.
+ _expression_ A variable that represents a [ModelTables Object (Excel)](Excel.modeltables.md) object.
## Remarks
diff --git a/api/Excel.modeltables.item.md b/api/Excel.modeltables.item.md
index ee8c8d8693a..fea5623a8b4 100644
--- a/api/Excel.modeltables.item.md
+++ b/api/Excel.modeltables.item.md
@@ -18,7 +18,7 @@ Returns a single object from the **ModelTables** collection.
_expression_. `Item`_(Index)_
- _expression_ A variable that represents a[ModelTables Object (Excel)](Excel.modeltables.md) object.
+ _expression_ A variable that represents a [ModelTables Object (Excel)](Excel.modeltables.md) object.
### Parameters
diff --git a/api/Excel.modeltables.parent.md b/api/Excel.modeltables.parent.md
index 260907a1ca1..7498ce17092 100644
--- a/api/Excel.modeltables.parent.md
+++ b/api/Excel.modeltables.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[ModelT
_expression_. `Parent`
- _expression_ A variable that represents a[ModelTables Object (Excel)](Excel.modeltables.md) object.
+ _expression_ A variable that represents a [ModelTables Object (Excel)](Excel.modeltables.md) object.
## Property value
diff --git a/api/Excel.pivotcache.createpivotchart.md b/api/Excel.pivotcache.createpivotchart.md
index c548e9640cf..03dd1964909 100644
--- a/api/Excel.pivotcache.createpivotchart.md
+++ b/api/Excel.pivotcache.createpivotchart.md
@@ -18,7 +18,7 @@ Creates a standalone PivotChart from a [PivotCache Object (Excel)](Excel.PivotCa
_expression_. `CreatePivotChart`_(ChartDestination,_ _XlChartType,_ _Left,_ _Top,_ _Width,_ _Height)_
- _expression_ A variable that represents a[PivotCache Object (Excel)](Excel.PivotCache.md) object.
+ _expression_ A variable that represents a [PivotCache Object (Excel)](Excel.PivotCache.md) object.
### Parameters
diff --git a/api/Excel.pivotfilter.wholedayfilter.md b/api/Excel.pivotfilter.wholedayfilter.md
index 5dd7bb3dbda..0db2e838f93 100644
--- a/api/Excel.pivotfilter.wholedayfilter.md
+++ b/api/Excel.pivotfilter.wholedayfilter.md
@@ -18,7 +18,7 @@ Sets or gets the filtering semantics for date filters. **Boolean** . Read/Write
_expression_. `WholeDayFilter`
- _expression_ A variable that represents a[PivotFilter Object (Excel)](Excel.PivotFilter.md) object.
+ _expression_ A variable that represents a [PivotFilter Object (Excel)](Excel.PivotFilter.md) object.
## Remarks
diff --git a/api/Excel.pivottable.drilldown.md b/api/Excel.pivottable.drilldown.md
index 284828b3ccb..06ac2da0b4a 100644
--- a/api/Excel.pivottable.drilldown.md
+++ b/api/Excel.pivottable.drilldown.md
@@ -18,7 +18,7 @@ Enables you to drill down into the data within an OLAP or PowerPivot based cube
_expression_. `DrillDown`_(PivotItem,_ _PivotLine)_
- _expression_ A variable that represents a[PivotTable Object (Excel)](Excel.PivotTable.md) object.
+ _expression_ A variable that represents a [PivotTable Object (Excel)](Excel.PivotTable.md) object.
### Parameters
diff --git a/api/Excel.pivottable.drillto.md b/api/Excel.pivottable.drillto.md
index bf84565f0b9..8c8bb3fd5e1 100644
--- a/api/Excel.pivottable.drillto.md
+++ b/api/Excel.pivottable.drillto.md
@@ -18,7 +18,7 @@ Enables you to drill to a location within an OLAP or PowerPivot based cube hiera
_expression_. `DrillTo`_(PivotItem,_ _CubeField,_ _PivotLine)_
- _expression_ A variable that represents a[PivotTable Object (Excel)](Excel.PivotTable.md) object.
+ _expression_ A variable that represents a [PivotTable Object (Excel)](Excel.PivotTable.md) object.
### Parameters
diff --git a/api/Excel.pivottable.pivotchart.md b/api/Excel.pivottable.pivotchart.md
index f11920e3a47..f65e5ed3042 100644
--- a/api/Excel.pivottable.pivotchart.md
+++ b/api/Excel.pivottable.pivotchart.md
@@ -18,7 +18,7 @@ Returns a [Shape Object (Excel)](Excel.Shape.md) object that represents the stan
_expression_. `PivotChart`
- _expression_ A variable that represents a[PivotTable Object (Excel)](Excel.PivotTable.md) object.
+ _expression_ A variable that represents a [PivotTable Object (Excel)](Excel.PivotTable.md) object.
## Returns
diff --git a/api/Excel.pivottable.pivotvaluecell.md b/api/Excel.pivottable.pivotvaluecell.md
index 6c56a84dd59..9faba3ec7e5 100644
--- a/api/Excel.pivottable.pivotvaluecell.md
+++ b/api/Excel.pivottable.pivotvaluecell.md
@@ -18,7 +18,7 @@ Retrieve the [PivotValueCell Object (Excel)](Excel.pivotvaluecell.md) object for
_expression_. `PivotValueCell`_(rowline,_ _columnline)_
- _expression_ A variable that represents a[PivotTable Object (Excel)](Excel.PivotTable.md) object.
+ _expression_ A variable that represents a [PivotTable Object (Excel)](Excel.PivotTable.md) object.
### Parameters
diff --git a/api/Excel.pivotvaluecell.application.md b/api/Excel.pivotvaluecell.application.md
index 79bb2fdcb68..559c0a1ef9e 100644
--- a/api/Excel.pivotvaluecell.application.md
+++ b/api/Excel.pivotvaluecell.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[PivotValueCell Object (Excel)](Excel.pivotvaluecell.md) object.
+ _expression_ A variable that represents a [PivotValueCell Object (Excel)](Excel.pivotvaluecell.md) object.
## Example
diff --git a/api/Excel.pivotvaluecell.creator.md b/api/Excel.pivotvaluecell.creator.md
index f0014e096fc..7ba8d8c485a 100644
--- a/api/Excel.pivotvaluecell.creator.md
+++ b/api/Excel.pivotvaluecell.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[PivotValueCell Object (Excel)](Excel.pivotvaluecell.md) object.
+ _expression_ A variable that represents a [PivotValueCell Object (Excel)](Excel.pivotvaluecell.md) object.
## Remarks
diff --git a/api/Excel.pivotvaluecell.parent.md b/api/Excel.pivotvaluecell.parent.md
index af0dfbaa57a..1cabc98ccf1 100644
--- a/api/Excel.pivotvaluecell.parent.md
+++ b/api/Excel.pivotvaluecell.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[PivotV
_expression_. `Parent`
- _expression_ A variable that represents a[PivotValueCell Object (Excel)](Excel.pivotvaluecell.md) object.
+ _expression_ A variable that represents a [PivotValueCell Object (Excel)](Excel.pivotvaluecell.md) object.
## Property value
diff --git a/api/Excel.pivotvaluecell.pivotcell.md b/api/Excel.pivotvaluecell.pivotcell.md
index e4f881ded94..bbd990b2f87 100644
--- a/api/Excel.pivotvaluecell.pivotcell.md
+++ b/api/Excel.pivotvaluecell.pivotcell.md
@@ -18,7 +18,7 @@ Returns the [PivotCell Object (Excel)](Excel.PivotCell.md) that specifies the lo
_expression_. `PivotCell`
- _expression_ A variable that represents a[PivotValueCell Object (Excel)](Excel.pivotvaluecell.md) object.
+ _expression_ A variable that represents a [PivotValueCell Object (Excel)](Excel.pivotvaluecell.md) object.
## Example
diff --git a/api/Excel.pivotvaluecell.serveractions.md b/api/Excel.pivotvaluecell.serveractions.md
index 8b5cb6bedd8..d5d233825c7 100644
--- a/api/Excel.pivotvaluecell.serveractions.md
+++ b/api/Excel.pivotvaluecell.serveractions.md
@@ -18,7 +18,7 @@ Returns a collection of OLAP Action name objects which will represent OLAP-defin
_expression_. `ServerActions`
- _expression_ A variable that represents a[PivotValueCell Object (Excel)](Excel.pivotvaluecell.md) object.
+ _expression_ A variable that represents a [PivotValueCell Object (Excel)](Excel.pivotvaluecell.md) object.
## Remarks
diff --git a/api/Excel.pivotvaluecell.showdetail.md b/api/Excel.pivotvaluecell.showdetail.md
index 6c7684f3bb1..25eb964df46 100644
--- a/api/Excel.pivotvaluecell.showdetail.md
+++ b/api/Excel.pivotvaluecell.showdetail.md
@@ -18,7 +18,7 @@ Puts the individual rows of an OLAP data source which contribute to an aggregate
_expression_. `ShowDetail`
- _expression_ A variable that represents a[PivotValueCell](Excel.pivotvaluecell.md) object.
+ _expression_ A variable that represents a [PivotValueCell](Excel.pivotvaluecell.md) object.
### Return value
diff --git a/api/Excel.pivotvaluecell.value.md b/api/Excel.pivotvaluecell.value.md
index 9e222aabc72..23a61e1a42e 100644
--- a/api/Excel.pivotvaluecell.value.md
+++ b/api/Excel.pivotvaluecell.value.md
@@ -18,7 +18,7 @@ Returns the value at the location. The value is the value after **ShowAs** and
_expression_. `Value`
- _expression_ A variable that represents a[PivotValueCell](Excel.pivotvaluecell.md) object.
+ _expression_ A variable that represents a [PivotValueCell](Excel.pivotvaluecell.md) object.
## Remarks
diff --git a/api/Excel.queries.fastcombine.md b/api/Excel.queries.fastcombine.md
index e5dd5862458..074dcee2b4d 100644
--- a/api/Excel.queries.fastcombine.md
+++ b/api/Excel.queries.fastcombine.md
@@ -23,7 +23,7 @@ ms.prod: excel
## Remarks
-For silent refresh operations, use the **FastCombine** property in conjunction with the[Application.DisplayAlerts](Excel.Application.DisplayAlerts.md) property, set to **False**.
+For silent refresh operations, use the **FastCombine** property in conjunction with the [Application.DisplayAlerts](Excel.Application.DisplayAlerts.md) property, set to **False**.
## See also
diff --git a/api/Excel.quickanalysis.application.md b/api/Excel.quickanalysis.application.md
index daed7ecff98..04804537d77 100644
--- a/api/Excel.quickanalysis.application.md
+++ b/api/Excel.quickanalysis.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[QuickAnalysis Object (Excel)](Excel.quickanalysis.md) object.
+ _expression_ A variable that represents a [QuickAnalysis Object (Excel)](Excel.quickanalysis.md) object.
## Example
diff --git a/api/Excel.quickanalysis.creator.md b/api/Excel.quickanalysis.creator.md
index 785c0b7748e..2a4c01a56d5 100644
--- a/api/Excel.quickanalysis.creator.md
+++ b/api/Excel.quickanalysis.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[QuickAnalysis Object (Excel)](Excel.quickanalysis.md) object.
+ _expression_ A variable that represents a [QuickAnalysis Object (Excel)](Excel.quickanalysis.md) object.
## Remarks
diff --git a/api/Excel.quickanalysis.hide.md b/api/Excel.quickanalysis.hide.md
index 39cf800c633..2c328952a7d 100644
--- a/api/Excel.quickanalysis.hide.md
+++ b/api/Excel.quickanalysis.hide.md
@@ -18,7 +18,7 @@ Hides specific members of the Analysis Lens user interface.
_expression_. `Hide`_(XlQuickAnalysisMode)_
- _expression_ A variable that represents a[QuickAnalysis](Excel.quickanalysis.md) object.
+ _expression_ A variable that represents a [QuickAnalysis](Excel.quickanalysis.md) object.
### Parameters
diff --git a/api/Excel.quickanalysis.parent.md b/api/Excel.quickanalysis.parent.md
index 9fc51c31b46..aaa60cfbe30 100644
--- a/api/Excel.quickanalysis.parent.md
+++ b/api/Excel.quickanalysis.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[QuickA
_expression_. `Parent`
- _expression_ A variable that represents a[QuickAnalysis Object (Excel)](Excel.quickanalysis.md) object.
+ _expression_ A variable that represents a [QuickAnalysis Object (Excel)](Excel.quickanalysis.md) object.
## Property value
diff --git a/api/Excel.quickanalysis.show.md b/api/Excel.quickanalysis.show.md
index 74a83f8b1b3..cfd752de332 100644
--- a/api/Excel.quickanalysis.show.md
+++ b/api/Excel.quickanalysis.show.md
@@ -18,7 +18,7 @@ Displays specific members of the Analysis Lens user interface.
_expression_. `Show`_(XlQuickAnalysisMode)_
- _expression_ A variable that represents a[QuickAnalysis](Excel.quickanalysis.md) object.
+ _expression_ A variable that represents a [QuickAnalysis](Excel.quickanalysis.md) object.
### Parameters
diff --git a/api/Excel.slicercache.clearallfilters.md b/api/Excel.slicercache.clearallfilters.md
index 7021e186e70..7c70e64f99f 100644
--- a/api/Excel.slicercache.clearallfilters.md
+++ b/api/Excel.slicercache.clearallfilters.md
@@ -18,7 +18,7 @@ Clears the filter for either slicer or timeline, depending on the slicer cache t
_expression_. `ClearAllFilters`
- _expression_ A variable that represents a[SlicerCache Object (Excel)](Excel.SlicerCache.md) object.
+ _expression_ A variable that represents a [SlicerCache Object (Excel)](Excel.SlicerCache.md) object.
### Return value
diff --git a/api/Excel.slicercache.cleardatefilter.md b/api/Excel.slicercache.cleardatefilter.md
index 4cefc114968..ba74de87705 100644
--- a/api/Excel.slicercache.cleardatefilter.md
+++ b/api/Excel.slicercache.cleardatefilter.md
@@ -18,7 +18,7 @@ Clears the filter for a timeline (date filter).
_expression_. `ClearDateFilter`
- _expression_ A variable that represents a[SlicerCache Object (Excel)](Excel.SlicerCache.md) object.
+ _expression_ A variable that represents a [SlicerCache Object (Excel)](Excel.SlicerCache.md) object.
### Return value
diff --git a/api/Excel.slicercache.filtercleared.md b/api/Excel.slicercache.filtercleared.md
index 38ee691886b..75ee2638d14 100644
--- a/api/Excel.slicercache.filtercleared.md
+++ b/api/Excel.slicercache.filtercleared.md
@@ -18,7 +18,7 @@ Returns whether the slicer or timeline filter state is cleared. **Boolean** . R
_expression_. `FilterCleared`
- _expression_ A variable that represents a[SlicerCache Object (Excel)](Excel.SlicerCache.md) object.
+ _expression_ A variable that represents a [SlicerCache Object (Excel)](Excel.SlicerCache.md) object.
## Property value
diff --git a/api/Excel.slicercache.listobject.md b/api/Excel.slicercache.listobject.md
index 801e106a7e2..759795f3f55 100644
--- a/api/Excel.slicercache.listobject.md
+++ b/api/Excel.slicercache.listobject.md
@@ -11,14 +11,14 @@ ms.date: 06/08/2017
# SlicerCache.ListObject Property (Excel)
-Returns a **ListObject** object for the[QueryTable Object (Excel)](Excel.QueryTable.md) object. Read-only
+Returns a **ListObject** object for the [QueryTable Object (Excel)](Excel.QueryTable.md) object. Read-only
## Syntax
_expression_. `ListObject`
- _expression_ A variable that represents a[SlicerCache Object (Excel)](Excel.SlicerCache.md) object.
+ _expression_ A variable that represents a [SlicerCache Object (Excel)](Excel.SlicerCache.md) object.
## Property value
diff --git a/api/Excel.slicercache.slicercachetype.md b/api/Excel.slicercache.slicercachetype.md
index b14a8a66108..5b079ffe667 100644
--- a/api/Excel.slicercache.slicercachetype.md
+++ b/api/Excel.slicercache.slicercachetype.md
@@ -18,7 +18,7 @@ Returns the type of the slicer cache - slicer or timeline. Read-only
_expression_. `SlicerCacheType`
- _expression_ A variable that represents a[SlicerCache Object (Excel)](Excel.SlicerCache.md) object.
+ _expression_ A variable that represents a [SlicerCache Object (Excel)](Excel.SlicerCache.md) object.
## Returns
diff --git a/api/Excel.slicercache.timelinestate.md b/api/Excel.slicercache.timelinestate.md
index 88e2321cae6..e82e46a8576 100644
--- a/api/Excel.slicercache.timelinestate.md
+++ b/api/Excel.slicercache.timelinestate.md
@@ -18,7 +18,7 @@ The timeline-specific state of the **SlicerCache** object. Read-only
_expression_. `TimelineState`
- _expression_ A variable that represents a[SlicerCache Object (Excel)](Excel.SlicerCache.md) object.
+ _expression_ A variable that represents a [SlicerCache Object (Excel)](Excel.SlicerCache.md) object.
## Returns
diff --git a/api/Excel.tableobject.adjustcolumnwidth.md b/api/Excel.tableobject.adjustcolumnwidth.md
index bba268892cb..b3683493a88 100644
--- a/api/Excel.tableobject.adjustcolumnwidth.md
+++ b/api/Excel.tableobject.adjustcolumnwidth.md
@@ -18,7 +18,7 @@ Specifies if the column widths are automatically adjusted for the best fit each
_expression_. `AdjustColumnWidth`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
## Property value
diff --git a/api/Excel.tableobject.application.md b/api/Excel.tableobject.application.md
index fd3d5264a54..29f7765baa9 100644
--- a/api/Excel.tableobject.application.md
+++ b/api/Excel.tableobject.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[TableObject Object (Excel)](Excel.tableobject.md) object.
+ _expression_ A variable that represents a [TableObject Object (Excel)](Excel.tableobject.md) object.
## Example
diff --git a/api/Excel.tableobject.creator.md b/api/Excel.tableobject.creator.md
index 8469a9e0121..bf7c19a9053 100644
--- a/api/Excel.tableobject.creator.md
+++ b/api/Excel.tableobject.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[TableObject Object (Excel)](Excel.tableobject.md) object.
+ _expression_ A variable that represents a [TableObject Object (Excel)](Excel.tableobject.md) object.
## Remarks
diff --git a/api/Excel.tableobject.delete.md b/api/Excel.tableobject.delete.md
index d31e1c28111..195eb769fd8 100644
--- a/api/Excel.tableobject.delete.md
+++ b/api/Excel.tableobject.delete.md
@@ -18,7 +18,7 @@ Deletes the **TableObject** object.
_expression_. `Delete`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
### Return value
diff --git a/api/Excel.tableobject.destination.md b/api/Excel.tableobject.destination.md
index d366eec5c43..73ad5bc2d7f 100644
--- a/api/Excel.tableobject.destination.md
+++ b/api/Excel.tableobject.destination.md
@@ -18,7 +18,7 @@ Returns the cell in the upper-left corner of the query table destination range (
_expression_. `Destination`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
## Property value
diff --git a/api/Excel.tableobject.enableediting.md b/api/Excel.tableobject.enableediting.md
index a114a679a88..939fca0d7f2 100644
--- a/api/Excel.tableobject.enableediting.md
+++ b/api/Excel.tableobject.enableediting.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `EnableEditing`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
## Property value
diff --git a/api/Excel.tableobject.enablerefresh.md b/api/Excel.tableobject.enablerefresh.md
index bd58a9a1838..813aa20375a 100644
--- a/api/Excel.tableobject.enablerefresh.md
+++ b/api/Excel.tableobject.enablerefresh.md
@@ -18,7 +18,7 @@ Specifies if the query table can be refreshed by the user. **Boolean** Read/Wri
_expression_. `EnableRefresh`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
## Property value
diff --git a/api/Excel.tableobject.fetchedrowoverflow.md b/api/Excel.tableobject.fetchedrowoverflow.md
index 93298af30e8..753e5eb4ebc 100644
--- a/api/Excel.tableobject.fetchedrowoverflow.md
+++ b/api/Excel.tableobject.fetchedrowoverflow.md
@@ -18,7 +18,7 @@ Specifies if the number of rows returned by the last use of the Refresh method i
_expression_. `FetchedRowOverflow`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
## Property value
diff --git a/api/Excel.tableobject.listobject.md b/api/Excel.tableobject.listobject.md
index 5716caf29bd..4d1993e3315 100644
--- a/api/Excel.tableobject.listobject.md
+++ b/api/Excel.tableobject.listobject.md
@@ -11,14 +11,14 @@ ms.date: 06/08/2017
# TableObject.ListObject Property (Excel)
-Returns a [ListObject Object (Excel)](Excel.ListObject.md) object for the[TableObject Object (Excel)](Excel.tableobject.md) object. Read-only
+Returns a [ListObject Object (Excel)](Excel.ListObject.md) object for the [TableObject Object (Excel)](Excel.tableobject.md) object. Read-only
## Syntax
_expression_. `ListObject`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
## Property value
diff --git a/api/Excel.tableobject.parent.md b/api/Excel.tableobject.parent.md
index cf2ff6d1af4..db927980b83 100644
--- a/api/Excel.tableobject.parent.md
+++ b/api/Excel.tableobject.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[TableO
_expression_. `Parent`
- _expression_ A variable that represents a[TableObject Object (Excel)](Excel.tableobject.md) object.
+ _expression_ A variable that represents a [TableObject Object (Excel)](Excel.tableobject.md) object.
## Property value
diff --git a/api/Excel.tableobject.preservecolumninfo.md b/api/Excel.tableobject.preservecolumninfo.md
index 1574518baf3..97dd0b71a59 100644
--- a/api/Excel.tableobject.preservecolumninfo.md
+++ b/api/Excel.tableobject.preservecolumninfo.md
@@ -18,7 +18,7 @@ Specifies if column sorting, filtering, and layout information is preserved when
_expression_. `PreserveColumnInfo`
- _expression_ A variable that represents a[TableObject](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [TableObject](Excel.modeltable.md) object.
## Property value
diff --git a/api/Excel.tableobject.preserveformatting.md b/api/Excel.tableobject.preserveformatting.md
index 3149fd6d0e5..34aecc98e38 100644
--- a/api/Excel.tableobject.preserveformatting.md
+++ b/api/Excel.tableobject.preserveformatting.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `PreserveFormatting`
- _expression_ A variable that represents a[TableObject](Excel.modeltable.md)object.
+ _expression_ A variable that represents a [TableObject](Excel.modeltable.md)object.
## Property value
diff --git a/api/Excel.tableobject.refresh.md b/api/Excel.tableobject.refresh.md
index 20919a3d2e8..9940158c119 100644
--- a/api/Excel.tableobject.refresh.md
+++ b/api/Excel.tableobject.refresh.md
@@ -18,7 +18,7 @@ This method updates the **TableObject** object.
_expression_. `Refresh`
- _expression_ A variable that represents a[ModelTable Object (Excel)](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [ModelTable Object (Excel)](Excel.modeltable.md) object.
### Return value
diff --git a/api/Excel.tableobject.refreshstyle.md b/api/Excel.tableobject.refreshstyle.md
index 6542e8d390c..45c851a2e56 100644
--- a/api/Excel.tableobject.refreshstyle.md
+++ b/api/Excel.tableobject.refreshstyle.md
@@ -18,7 +18,7 @@ Returns or sets the way rows on the specified worksheet are added or deleted to
_expression_. `RefreshStyle`
- _expression_ A variable that represents a[TableObject](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [TableObject](Excel.modeltable.md) object.
## Property value
diff --git a/api/Excel.tableobject.resultrange.md b/api/Excel.tableobject.resultrange.md
index 951266104fc..3a5e4855155 100644
--- a/api/Excel.tableobject.resultrange.md
+++ b/api/Excel.tableobject.resultrange.md
@@ -18,7 +18,7 @@ Returns a [Range Object (Excel)](Excel.Range(object).md) object that represents
_expression_. `ResultRange`
- _expression_ A variable that represents a[TableObject](Excel.modeltable.md)object.
+ _expression_ A variable that represents a [TableObject](Excel.modeltable.md)object.
## Property value
diff --git a/api/Excel.tableobject.rownumbers.md b/api/Excel.tableobject.rownumbers.md
index 33ac9a09a36..b2440bba81e 100644
--- a/api/Excel.tableobject.rownumbers.md
+++ b/api/Excel.tableobject.rownumbers.md
@@ -18,7 +18,7 @@ Specifies if row numbers are added as the first column of the specified query ta
_expression_. `RowNumbers`
- _expression_ A variable that represents a[TableObject](Excel.modeltable.md)object.
+ _expression_ A variable that represents a [TableObject](Excel.modeltable.md)object.
## Property value
diff --git a/api/Excel.tableobject.workbookconnection.md b/api/Excel.tableobject.workbookconnection.md
index 5f2c123d4ca..bcea8fa963b 100644
--- a/api/Excel.tableobject.workbookconnection.md
+++ b/api/Excel.tableobject.workbookconnection.md
@@ -18,7 +18,7 @@ Returns the [WorkbookConnection Object (Excel)](Excel.WorkbookConnection.md) use
_expression_. `WorkbookConnection`
- _expression_ A variable that represents a[TableObject](Excel.modeltable.md) object.
+ _expression_ A variable that represents a [TableObject](Excel.modeltable.md) object.
## Property value
diff --git a/api/Excel.tablestyle.showasavailabletimelinestyle.md b/api/Excel.tablestyle.showasavailabletimelinestyle.md
index 22de06fb208..5ec6b1a3b73 100644
--- a/api/Excel.tablestyle.showasavailabletimelinestyle.md
+++ b/api/Excel.tablestyle.showasavailabletimelinestyle.md
@@ -18,7 +18,7 @@ Returns or sets whether the specified table style is shown as available in the t
_expression_. `ShowAsAvailableTimelineStyle`
- _expression_ A variable that represents a[TableStyle Object (Excel)](Excel.TableStyle.md) object.
+ _expression_ A variable that represents a [TableStyle Object (Excel)](Excel.TableStyle.md) object.
## Property value
diff --git a/api/Excel.textconnection.application.md b/api/Excel.textconnection.application.md
index 476dc13735a..895f3ec2c33 100644
--- a/api/Excel.textconnection.application.md
+++ b/api/Excel.textconnection.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[TextConnection Object (Excel)](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection Object (Excel)](Excel.textconnection.md) object.
## Example
diff --git a/api/Excel.textconnection.connection.md b/api/Excel.textconnection.connection.md
index 0d07d1e0bd4..ac46ebc6adb 100644
--- a/api/Excel.textconnection.connection.md
+++ b/api/Excel.textconnection.connection.md
@@ -18,7 +18,7 @@ Returns or sets a string that contains text file names that enable Microsoft Exc
_expression_. `Connection`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.creator.md b/api/Excel.textconnection.creator.md
index a1b8c3bc104..6287d239dc7 100644
--- a/api/Excel.textconnection.creator.md
+++ b/api/Excel.textconnection.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[TextConnection Object (Excel)](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection Object (Excel)](Excel.textconnection.md) object.
## Remarks
diff --git a/api/Excel.textconnection.parent.md b/api/Excel.textconnection.parent.md
index ecc6d1c875b..59b0addb649 100644
--- a/api/Excel.textconnection.parent.md
+++ b/api/Excel.textconnection.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[TextCo
_expression_. `Parent`
- _expression_ A variable that represents a[TextConnection Object (Excel)](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection Object (Excel)](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfilecolumndatatypes.md b/api/Excel.textconnection.textfilecolumndatatypes.md
index 9eab3137307..d1c0dcc8d8b 100644
--- a/api/Excel.textconnection.textfilecolumndatatypes.md
+++ b/api/Excel.textconnection.textfilecolumndatatypes.md
@@ -18,7 +18,7 @@ Returns or sets an ordered array of constants that specify the data types applie
_expression_. `TextFileColumnDataTypes`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfilecommadelimiter.md b/api/Excel.textconnection.textfilecommadelimiter.md
index 1b13db8c57e..07a97457ae6 100644
--- a/api/Excel.textconnection.textfilecommadelimiter.md
+++ b/api/Excel.textconnection.textfilecommadelimiter.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `TextFileCommaDelimiter`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfileconsecutivedelimiter.md b/api/Excel.textconnection.textfileconsecutivedelimiter.md
index baa364aedac..a7901603e32 100644
--- a/api/Excel.textconnection.textfileconsecutivedelimiter.md
+++ b/api/Excel.textconnection.textfileconsecutivedelimiter.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `TextFileConsecutiveDelimiter`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfiledecimalseparator.md b/api/Excel.textconnection.textfiledecimalseparator.md
index 30fcb05471b..d4ae7a2d567 100644
--- a/api/Excel.textconnection.textfiledecimalseparator.md
+++ b/api/Excel.textconnection.textfiledecimalseparator.md
@@ -18,7 +18,7 @@ Returns or sets the decimal separator character that Microsoft Excel uses when y
_expression_. `TextFileDecimalSeparator`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfilefixedcolumnwidths.md b/api/Excel.textconnection.textfilefixedcolumnwidths.md
index 7ece161238a..91092649c28 100644
--- a/api/Excel.textconnection.textfilefixedcolumnwidths.md
+++ b/api/Excel.textconnection.textfilefixedcolumnwidths.md
@@ -18,7 +18,7 @@ Returns or sets an array of integers that correspond to the widths of the column
_expression_. `TextFileFixedColumnWidths`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfileheaderrow.md b/api/Excel.textconnection.textfileheaderrow.md
index a5fbdde803f..7ffe67e5b5a 100644
--- a/api/Excel.textconnection.textfileheaderrow.md
+++ b/api/Excel.textconnection.textfileheaderrow.md
@@ -18,7 +18,7 @@ Returns or sets value that specifies whether or not the first row (from the star
_expression_. `TextFileHeaderRow`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfileotherdelimiter.md b/api/Excel.textconnection.textfileotherdelimiter.md
index d694027107d..d4cae6912cb 100644
--- a/api/Excel.textconnection.textfileotherdelimiter.md
+++ b/api/Excel.textconnection.textfileotherdelimiter.md
@@ -18,7 +18,7 @@ Returns or sets the character used as the delimiter when you import a text file
_expression_. `TextFileOtherDelimiter`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfileparsetype.md b/api/Excel.textconnection.textfileparsetype.md
index ea7674eec2c..b0cc478f674 100644
--- a/api/Excel.textconnection.textfileparsetype.md
+++ b/api/Excel.textconnection.textfileparsetype.md
@@ -18,7 +18,7 @@ Returns or sets the column format for the data in the text file that you're impo
_expression_. `TextFileParseType`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfileplatform.md b/api/Excel.textconnection.textfileplatform.md
index 0239e246f36..58ad56bf510 100644
--- a/api/Excel.textconnection.textfileplatform.md
+++ b/api/Excel.textconnection.textfileplatform.md
@@ -18,7 +18,7 @@ Returns or sets the origin of the text file you're importing into the query tabl
_expression_. `TextFilePlatform`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfilepromptonrefresh.md b/api/Excel.textconnection.textfilepromptonrefresh.md
index e8423d0d3b3..f544a64b34e 100644
--- a/api/Excel.textconnection.textfilepromptonrefresh.md
+++ b/api/Excel.textconnection.textfilepromptonrefresh.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `TextFilePromptOnRefresh`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfilesemicolondelimiter.md b/api/Excel.textconnection.textfilesemicolondelimiter.md
index 7c3d3e3778c..eb5694af7fd 100644
--- a/api/Excel.textconnection.textfilesemicolondelimiter.md
+++ b/api/Excel.textconnection.textfilesemicolondelimiter.md
@@ -11,14 +11,14 @@ ms.date: 06/08/2017
# TextConnection.TextFileSemicolonDelimiter Property (Excel)
- **True** if the semicolon is the delimiter when you import a text file into a query table, and if the value of the[TextConnection.TextFileParseType Property (Excel)](Excel.textconnection.textfileparsetype.md) property is **xlDelimited** . The default value is **False** . Read/Write **Boolean** .
+ **True** if the semicolon is the delimiter when you import a text file into a query table, and if the value of the [TextConnection.TextFileParseType Property (Excel)](Excel.textconnection.textfileparsetype.md) property is **xlDelimited** . The default value is **False** . Read/Write **Boolean** .
## Syntax
_expression_. `TextFileSemicolonDelimiter`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfilespacedelimiter.md b/api/Excel.textconnection.textfilespacedelimiter.md
index 3cb9d6fbed9..29fff3c462e 100644
--- a/api/Excel.textconnection.textfilespacedelimiter.md
+++ b/api/Excel.textconnection.textfilespacedelimiter.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `TextFileSpaceDelimiter`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfilestartrow.md b/api/Excel.textconnection.textfilestartrow.md
index 3e95cfc7e72..2fbb2d39525 100644
--- a/api/Excel.textconnection.textfilestartrow.md
+++ b/api/Excel.textconnection.textfilestartrow.md
@@ -18,7 +18,7 @@ Returns or sets the row number at which text parsing will begin when you import
_expression_. `TextFileStartRow`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfiletabdelimiter.md b/api/Excel.textconnection.textfiletabdelimiter.md
index 356f224cb3e..aac1ecbbd4d 100644
--- a/api/Excel.textconnection.textfiletabdelimiter.md
+++ b/api/Excel.textconnection.textfiletabdelimiter.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `TextFileTabDelimiter`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfiletextqualifier.md b/api/Excel.textconnection.textfiletextqualifier.md
index 38e79e5b348..513e3b3421f 100644
--- a/api/Excel.textconnection.textfiletextqualifier.md
+++ b/api/Excel.textconnection.textfiletextqualifier.md
@@ -18,7 +18,7 @@ Returns or sets the text qualifier when you import a text file into a query tabl
_expression_. `TextFileTextQualifier`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfilethousandsseparator.md b/api/Excel.textconnection.textfilethousandsseparator.md
index e7d7c6e4b37..2d3dd1541b3 100644
--- a/api/Excel.textconnection.textfilethousandsseparator.md
+++ b/api/Excel.textconnection.textfilethousandsseparator.md
@@ -18,7 +18,7 @@ Returns or sets the thousands separator character that Microsoft Excel uses when
_expression_. `TextFileThousandsSeparator`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfiletrailingminusnumbers.md b/api/Excel.textconnection.textfiletrailingminusnumbers.md
index 32f5f3cc874..16002405b48 100644
--- a/api/Excel.textconnection.textfiletrailingminusnumbers.md
+++ b/api/Excel.textconnection.textfiletrailingminusnumbers.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `TextFileTrailingMinusNumbers`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.textconnection.textfilevisuallayout.md b/api/Excel.textconnection.textfilevisuallayout.md
index c05143249b9..461a836e4ee 100644
--- a/api/Excel.textconnection.textfilevisuallayout.md
+++ b/api/Excel.textconnection.textfilevisuallayout.md
@@ -18,7 +18,7 @@ Returns or sets a [XlTextVisualLayoutType Enumeration (Excel)](Excel.XlTextVisua
_expression_. `TextFileVisualLayout`
- _expression_ A variable that represents a[TextConnection](Excel.textconnection.md) object.
+ _expression_ A variable that represents a [TextConnection](Excel.textconnection.md) object.
## Property value
diff --git a/api/Excel.timelinestate.application.md b/api/Excel.timelinestate.application.md
index 52157365277..88201576c24 100644
--- a/api/Excel.timelinestate.application.md
+++ b/api/Excel.timelinestate.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[TimelineState Object (Excel)](Excel.timelinestate.md) object.
+ _expression_ A variable that represents a [TimelineState Object (Excel)](Excel.timelinestate.md) object.
## Example
diff --git a/api/Excel.timelinestate.creator.md b/api/Excel.timelinestate.creator.md
index b5c3e3ce1da..e1806321495 100644
--- a/api/Excel.timelinestate.creator.md
+++ b/api/Excel.timelinestate.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[TimelineState Object (Excel)](Excel.timelinestate.md) object.
+ _expression_ A variable that represents a [TimelineState Object (Excel)](Excel.timelinestate.md) object.
## Remarks
diff --git a/api/Excel.timelinestate.enddate.md b/api/Excel.timelinestate.enddate.md
index af2ed4f7895..7cedadcf99c 100644
--- a/api/Excel.timelinestate.enddate.md
+++ b/api/Excel.timelinestate.enddate.md
@@ -18,7 +18,7 @@ Returns the end of the filtering date range (equals to [TimelineState.StartDate
_expression_. `EndDate`
- _expression_ A variable that represents a[TimelineState](Excel.timelinestate.md) object.
+ _expression_ A variable that represents a [TimelineState](Excel.timelinestate.md) object.
## Remarks
diff --git a/api/Excel.timelinestate.filtertype.md b/api/Excel.timelinestate.filtertype.md
index 913864a254e..abc7d0b7c7d 100644
--- a/api/Excel.timelinestate.filtertype.md
+++ b/api/Excel.timelinestate.filtertype.md
@@ -18,7 +18,7 @@ Returns the type of the date filter. [XlPivotFilterType Enumeration (Excel)](Exc
_expression_. `FilterType`
- _expression_ A variable that represents a[TimelineState](Excel.timelinestate.md) object.
+ _expression_ A variable that represents a [TimelineState](Excel.timelinestate.md) object.
## Property value
diff --git a/api/Excel.timelinestate.filtervalue1.md b/api/Excel.timelinestate.filtervalue1.md
index 778cdd0b3d8..bc9435f412a 100644
--- a/api/Excel.timelinestate.filtervalue1.md
+++ b/api/Excel.timelinestate.filtervalue1.md
@@ -18,7 +18,7 @@ Returns the 1st value associated with the date filter (semantics vary by filter
_expression_. `FilterValue1`
- _expression_ A variable that represents a[TimelineState](Excel.timelinestate.md) object.
+ _expression_ A variable that represents a [TimelineState](Excel.timelinestate.md) object.
## Property value
diff --git a/api/Excel.timelinestate.filtervalue2.md b/api/Excel.timelinestate.filtervalue2.md
index b3f4fd548b0..977400531ae 100644
--- a/api/Excel.timelinestate.filtervalue2.md
+++ b/api/Excel.timelinestate.filtervalue2.md
@@ -18,7 +18,7 @@ Returns the 2nd value associated with the date filter (semantics vary by filter
_expression_. `FilterValue2`
- _expression_ A variable that represents a[TimelineState](Excel.timelinestate.md) object.
+ _expression_ A variable that represents a [TimelineState](Excel.timelinestate.md) object.
## Property value
diff --git a/api/Excel.timelinestate.md b/api/Excel.timelinestate.md
index a80af7088dc..223caae57b6 100644
--- a/api/Excel.timelinestate.md
+++ b/api/Excel.timelinestate.md
@@ -16,7 +16,7 @@ The timeline-specific state of a [SlicerCache Object (Excel)](Excel.SlicerCache.
## Remarks
-Supported contiguous ranges can be set through the [TimelineState.SetFilterDateRange Method (Excel)](Excel.timelinestate.setfilterdaterange.md) method. When the Timeline has such a contiguous filter state, the state can be retrieved from the two properties[TimelineState.StartDate Property (Excel)](Excel.timelinestate.startdate.md) and[TimelineState.EndDate Property (Excel)](Excel.timelinestate.enddate.md). Any state that the filter may have, including non-contiguous states, can be retrieved through the three properties: [TimelineState.FilterType Property (Excel)](Excel.timelinestate.filtertype.md), [TimelineState.FilterValue1 Property (Excel)](Excel.timelinestate.filtervalue1.md), and [TimelineState.FilterValue2 Property (Excel)](Excel.timelinestate.filtervalue2.md).
+Supported contiguous ranges can be set through the [TimelineState.SetFilterDateRange Method (Excel)](Excel.timelinestate.setfilterdaterange.md) method. When the Timeline has such a contiguous filter state, the state can be retrieved from the two properties[TimelineState.StartDate Property (Excel)](Excel.timelinestate.startdate.md) and [TimelineState.EndDate Property (Excel)](Excel.timelinestate.enddate.md). Any state that the filter may have, including non-contiguous states, can be retrieved through the three properties: [TimelineState.FilterType Property (Excel)](Excel.timelinestate.filtertype.md), [TimelineState.FilterValue1 Property (Excel)](Excel.timelinestate.filtervalue1.md), and [TimelineState.FilterValue2 Property (Excel)](Excel.timelinestate.filtervalue2.md).
## See also
diff --git a/api/Excel.timelinestate.parent.md b/api/Excel.timelinestate.parent.md
index 7f0e22d8def..b03e03a21b1 100644
--- a/api/Excel.timelinestate.parent.md
+++ b/api/Excel.timelinestate.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[Timeli
_expression_. `Parent`
- _expression_ A variable that represents a[TimelineState Object (Excel)](Excel.timelinestate.md) object.
+ _expression_ A variable that represents a [TimelineState Object (Excel)](Excel.timelinestate.md) object.
## Property value
diff --git a/api/Excel.timelinestate.setfilterdaterange.md b/api/Excel.timelinestate.setfilterdaterange.md
index 89a976db7df..46c7dd065c2 100644
--- a/api/Excel.timelinestate.setfilterdaterange.md
+++ b/api/Excel.timelinestate.setfilterdaterange.md
@@ -18,7 +18,7 @@ Sets the Timeline?s filter.
_expression_. `SetFilterDateRange`_(StartDate,_ _EndDate)_
- _expression_ A variable that represents a[TimelineState](Excel.timelinestate.md) object.
+ _expression_ A variable that represents a [TimelineState](Excel.timelinestate.md) object.
### Parameters
diff --git a/api/Excel.timelinestate.singlerangefilterstate.md b/api/Excel.timelinestate.singlerangefilterstate.md
index 6797e848e36..ca97f28c66d 100644
--- a/api/Excel.timelinestate.singlerangefilterstate.md
+++ b/api/Excel.timelinestate.singlerangefilterstate.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
_expression_. `SingleRangeFilterState`
- _expression_ A variable that represents a[TimelineState](Excel.timelinestate.md) object.
+ _expression_ A variable that represents a [TimelineState](Excel.timelinestate.md) object.
## Property value
diff --git a/api/Excel.timelinestate.startdate.md b/api/Excel.timelinestate.startdate.md
index be220b605b9..f08bfe5e518 100644
--- a/api/Excel.timelinestate.startdate.md
+++ b/api/Excel.timelinestate.startdate.md
@@ -18,7 +18,7 @@ Returns the start of the filtering date range. **Variant** Read-only
_expression_. `StartDate`
- _expression_ A variable that represents a[TimelineState](Excel.timelinestate.md) object.
+ _expression_ A variable that represents a [TimelineState](Excel.timelinestate.md) object.
## Remarks
diff --git a/api/Excel.timelineviewstate.application.md b/api/Excel.timelineviewstate.application.md
index 90570e15b51..f5c2758436e 100644
--- a/api/Excel.timelineviewstate.application.md
+++ b/api/Excel.timelineviewstate.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[TimelineViewState Object (Excel)](Excel.timelineviewstate.md) object.
+ _expression_ A variable that represents a [TimelineViewState Object (Excel)](Excel.timelineviewstate.md) object.
## Example
diff --git a/api/Excel.timelineviewstate.creator.md b/api/Excel.timelineviewstate.creator.md
index bd4d7d19ef4..1db5a87006d 100644
--- a/api/Excel.timelineviewstate.creator.md
+++ b/api/Excel.timelineviewstate.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[TimelineViewState Object (Excel)](Excel.timelineviewstate.md) object.
+ _expression_ A variable that represents a [TimelineViewState Object (Excel)](Excel.timelineviewstate.md) object.
## Remarks
diff --git a/api/Excel.timelineviewstate.level.md b/api/Excel.timelineviewstate.level.md
index 0e2f920ff56..e651b49d34b 100644
--- a/api/Excel.timelineviewstate.level.md
+++ b/api/Excel.timelineviewstate.level.md
@@ -18,7 +18,7 @@ Get or set the displayed level. [XlTimelineLevel Enumeration (Excel)](Excel.xlti
_expression_. `Level`
- _expression_ A variable that represents a[TimelineViewState](Excel.timelineviewstate.md) object.
+ _expression_ A variable that represents a [TimelineViewState](Excel.timelineviewstate.md) object.
## Property value
diff --git a/api/Excel.timelineviewstate.parent.md b/api/Excel.timelineviewstate.parent.md
index a67768c1a2a..aa98589ee0d 100644
--- a/api/Excel.timelineviewstate.parent.md
+++ b/api/Excel.timelineviewstate.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[Timeli
_expression_. `Parent`
- _expression_ A variable that represents a[TimelineViewState Object (Excel)](Excel.timelineviewstate.md) object.
+ _expression_ A variable that represents a [TimelineViewState Object (Excel)](Excel.timelineviewstate.md) object.
## Property value
diff --git a/api/Excel.timelineviewstate.showheader.md b/api/Excel.timelineviewstate.showheader.md
index 3bfe153617e..ac18eae166f 100644
--- a/api/Excel.timelineviewstate.showheader.md
+++ b/api/Excel.timelineviewstate.showheader.md
@@ -18,7 +18,7 @@ Get or set whether the control's header is displayed. **Boolean** Read/Write
_expression_. `ShowHeader`
- _expression_ A variable that represents a[TimelineViewState](Excel.timelineviewstate.md) object.
+ _expression_ A variable that represents a [TimelineViewState](Excel.timelineviewstate.md) object.
## Property value
diff --git a/api/Excel.timelineviewstate.showhorizontalscrollbar.md b/api/Excel.timelineviewstate.showhorizontalscrollbar.md
index e2d7d79a25b..e80868aa91a 100644
--- a/api/Excel.timelineviewstate.showhorizontalscrollbar.md
+++ b/api/Excel.timelineviewstate.showhorizontalscrollbar.md
@@ -18,7 +18,7 @@ Get or set whether the control's horizontal scrollbar is displayed. **Boolean**
_expression_. `ShowHorizontalScrollbar`
- _expression_ A variable that represents a[TimelineViewState](Excel.timelineviewstate.md)object.
+ _expression_ A variable that represents a [TimelineViewState](Excel.timelineviewstate.md)object.
## Property value
diff --git a/api/Excel.timelineviewstate.showselectionlabel.md b/api/Excel.timelineviewstate.showselectionlabel.md
index 8335d759523..628e689663c 100644
--- a/api/Excel.timelineviewstate.showselectionlabel.md
+++ b/api/Excel.timelineviewstate.showselectionlabel.md
@@ -18,7 +18,7 @@ Get or set whether the control's filter selection label is displayed. **Boolean
_expression_. `ShowSelectionLabel`
- _expression_ A variable that represents a[TimelineViewState](Excel.timelineviewstate.md) object.
+ _expression_ A variable that represents a [TimelineViewState](Excel.timelineviewstate.md) object.
## Property value
diff --git a/api/Excel.timelineviewstate.showtimelevel.md b/api/Excel.timelineviewstate.showtimelevel.md
index 24abb347940..62a642e34cf 100644
--- a/api/Excel.timelineviewstate.showtimelevel.md
+++ b/api/Excel.timelineviewstate.showtimelevel.md
@@ -18,7 +18,7 @@ Get or set whether the control's time level drop-down is displayed. **Boolean**
_expression_. `ShowTimeLevel`
- _expression_ A variable that represents a[TimelineViewState](Excel.timelineviewstate.md) object.
+ _expression_ A variable that represents a [TimelineViewState](Excel.timelineviewstate.md) object.
## Property value
diff --git a/api/Excel.workbook.defaulttimelinestyle.md b/api/Excel.workbook.defaulttimelinestyle.md
index 6239035a25d..081eaaf0f5c 100644
--- a/api/Excel.workbook.defaulttimelinestyle.md
+++ b/api/Excel.workbook.defaulttimelinestyle.md
@@ -18,7 +18,7 @@ The name of the default slicer style of the workbook. **Variant**. Read/Write
_expression_. `DefaultTimelineStyle`
- _expression_ A variable that represents a[Workbook Object (Excel)](Excel.Workbook.md) object.
+ _expression_ A variable that represents a [Workbook Object (Excel)](Excel.Workbook.md) object.
## Property value
diff --git a/api/Excel.workbook.pivottables.md b/api/Excel.workbook.pivottables.md
index 7f743d74844..c514bed6b70 100644
--- a/api/Excel.workbook.pivottables.md
+++ b/api/Excel.workbook.pivottables.md
@@ -18,7 +18,7 @@ Returns an object that represents a collection of all the PivotTable reports on
_expression_. `PivotTables`
- _expression_ A variable that represents a[Workbook Object (Excel)](Excel.Workbook.md) object.
+ _expression_ A variable that represents a [Workbook Object (Excel)](Excel.Workbook.md) object.
## Returns
diff --git a/api/Excel.workbookconnection.datafeedconnection.md b/api/Excel.workbookconnection.datafeedconnection.md
index a3b1bc8476c..c406d0cb95f 100644
--- a/api/Excel.workbookconnection.datafeedconnection.md
+++ b/api/Excel.workbookconnection.datafeedconnection.md
@@ -18,7 +18,7 @@ Returns a **DataFeedConnection** object that contains the data and functionalit
_expression_. `DataFeedConnection`
- _expression_ A variable that represents a[WorkbookConnection Object (Excel)](Excel.WorkbookConnection.md) object.
+ _expression_ A variable that represents a [WorkbookConnection Object (Excel)](Excel.WorkbookConnection.md) object.
## Property value
diff --git a/api/Excel.workbookconnection.inmodel.md b/api/Excel.workbookconnection.inmodel.md
index 57650183b3d..2f5fffaa044 100644
--- a/api/Excel.workbookconnection.inmodel.md
+++ b/api/Excel.workbookconnection.inmodel.md
@@ -18,7 +18,7 @@ Specifies whether or not the [WorkbookConnection Object (Excel)](Excel.WorkbookC
_expression_. `InModel`
- _expression_ A variable that represents a[WorkbookConnection Object (Excel)](Excel.WorkbookConnection.md) object.
+ _expression_ A variable that represents a [WorkbookConnection Object (Excel)](Excel.WorkbookConnection.md) object.
## Remarks
diff --git a/api/Excel.workbookconnection.modeltables.md b/api/Excel.workbookconnection.modeltables.md
index 144fc43f5b2..88499ee2c2b 100644
--- a/api/Excel.workbookconnection.modeltables.md
+++ b/api/Excel.workbookconnection.modeltables.md
@@ -18,7 +18,7 @@ Returns a [ModelTables Object (Excel)](Excel.modeltables.md) object associated w
_expression_. `ModelTables`
- _expression_ A variable that represents a[WorkbookConnection](Excel.WorkbookConnection.md) object.
+ _expression_ A variable that represents a [WorkbookConnection](Excel.WorkbookConnection.md) object.
## Property value
diff --git a/api/Excel.workbookconnection.textconnection.md b/api/Excel.workbookconnection.textconnection.md
index 2bea173d4a7..cc41ac54d36 100644
--- a/api/Excel.workbookconnection.textconnection.md
+++ b/api/Excel.workbookconnection.textconnection.md
@@ -18,7 +18,7 @@ Returns a [TextConnection Object (Excel)](Excel.textconnection.md) object that c
_expression_. `TextConnection`
- _expression_ A variable that represents a[WorkbookConnection](Excel.WorkbookConnection.md) object.
+ _expression_ A variable that represents a [WorkbookConnection](Excel.WorkbookConnection.md) object.
## Property value
diff --git a/api/Excel.workbookconnection.worksheetdataconnection.md b/api/Excel.workbookconnection.worksheetdataconnection.md
index fbbae3757ed..d6a72ac58f3 100644
--- a/api/Excel.workbookconnection.worksheetdataconnection.md
+++ b/api/Excel.workbookconnection.worksheetdataconnection.md
@@ -18,7 +18,7 @@ Returns an object that contains information for a connection from the PowerPivot
_expression_. `WorksheetDataConnection`
- _expression_ A variable that represents a[WorkbookConnection Object (Excel)](Excel.WorkbookConnection.md) object.
+ _expression_ A variable that represents a [WorkbookConnection Object (Excel)](Excel.WorkbookConnection.md) object.
## Property value
diff --git a/api/Excel.worksheetdataconnection.application.md b/api/Excel.worksheetdataconnection.application.md
index 9659f7198f6..02e564c20a2 100644
--- a/api/Excel.worksheetdataconnection.application.md
+++ b/api/Excel.worksheetdataconnection.application.md
@@ -18,7 +18,7 @@ Returns an **[Application](Excel.Application(object).md)** object that represen
_expression_. `Application`
- _expression_ A variable that represents a[WorksheetDataConnection Object (Excel)](Excel.worksheetdataconnection.md) object.
+ _expression_ A variable that represents a [WorksheetDataConnection Object (Excel)](Excel.worksheetdataconnection.md) object.
## Example
diff --git a/api/Excel.worksheetdataconnection.commandtext.md b/api/Excel.worksheetdataconnection.commandtext.md
index dc3477501b0..fdb8aa319aa 100644
--- a/api/Excel.worksheetdataconnection.commandtext.md
+++ b/api/Excel.worksheetdataconnection.commandtext.md
@@ -18,7 +18,7 @@ Returns or sets the command string for the specified data source. **Variant** R
_expression_. `CommandText`
- _expression_ A variable that represents a[WorksheetDataConnection](Excel.worksheetdataconnection.md) object.
+ _expression_ A variable that represents a [WorksheetDataConnection](Excel.worksheetdataconnection.md) object.
## Property value
diff --git a/api/Excel.worksheetdataconnection.commandtype.md b/api/Excel.worksheetdataconnection.commandtype.md
index e4ee3312775..3998da82ad5 100644
--- a/api/Excel.worksheetdataconnection.commandtype.md
+++ b/api/Excel.worksheetdataconnection.commandtype.md
@@ -18,7 +18,7 @@ Returns or sets one of the [XlCmdType Enumeration (Excel)](Excel.XlCmdType.md) c
_expression_. `CommandType`
- _expression_ A variable that represents a[WorksheetDataConnection](Excel.worksheetdataconnection.md) object.
+ _expression_ A variable that represents a [WorksheetDataConnection](Excel.worksheetdataconnection.md) object.
## Property value
diff --git a/api/Excel.worksheetdataconnection.connection.md b/api/Excel.worksheetdataconnection.connection.md
index a97d5b39aca..2bb208ab912 100644
--- a/api/Excel.worksheetdataconnection.connection.md
+++ b/api/Excel.worksheetdataconnection.connection.md
@@ -18,7 +18,7 @@ Returns the internal connection string to the object in Excel. **Variant** Read
_expression_. `Connection`
- _expression_ A variable that represents a[WorksheetDataConnection](Excel.worksheetdataconnection.md) object.
+ _expression_ A variable that represents a [WorksheetDataConnection](Excel.worksheetdataconnection.md) object.
## Property value
diff --git a/api/Excel.worksheetdataconnection.creator.md b/api/Excel.worksheetdataconnection.creator.md
index 6f35fc9638c..42ecd0d4802 100644
--- a/api/Excel.worksheetdataconnection.creator.md
+++ b/api/Excel.worksheetdataconnection.creator.md
@@ -18,7 +18,7 @@ Returns a 32-bit integer that indicates the application in which the specified o
_expression_. `Creator`
- _expression_ A variable that represents a[WorksheetDataConnection Object (Excel)](Excel.worksheetdataconnection.md) object.
+ _expression_ A variable that represents a [WorksheetDataConnection Object (Excel)](Excel.worksheetdataconnection.md) object.
## Remarks
diff --git a/api/Excel.worksheetdataconnection.parent.md b/api/Excel.worksheetdataconnection.parent.md
index e0c24d03f4e..677dcbda5e0 100644
--- a/api/Excel.worksheetdataconnection.parent.md
+++ b/api/Excel.worksheetdataconnection.parent.md
@@ -18,7 +18,7 @@ Returns an **Object** that represents the parent object of the specified[Worksh
_expression_. `Parent`
- _expression_ A variable that represents a[WorksheetDataConnection Object (Excel)](Excel.worksheetdataconnection.md) object.
+ _expression_ A variable that represents a [WorksheetDataConnection Object (Excel)](Excel.worksheetdataconnection.md) object.
## Property value
diff --git a/api/Excel.worksheetfunction.acot.md b/api/Excel.worksheetfunction.acot.md
index 621b6904c98..233141c0091 100644
--- a/api/Excel.worksheetfunction.acot.md
+++ b/api/Excel.worksheetfunction.acot.md
@@ -18,7 +18,7 @@ Returns the arccotangent of a number, in radians in the range 0 to Pi.
_expression_. `Acot`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.arabic.md b/api/Excel.worksheetfunction.arabic.md
index 3d7f6408a24..533006d62a5 100644
--- a/api/Excel.worksheetfunction.arabic.md
+++ b/api/Excel.worksheetfunction.arabic.md
@@ -18,7 +18,7 @@ Converts a Roman numeral to an Arabic numeral.
_expression_. `Arabic`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.binom_dist_range.md b/api/Excel.worksheetfunction.binom_dist_range.md
index 256bd380df0..23d3478d915 100644
--- a/api/Excel.worksheetfunction.binom_dist_range.md
+++ b/api/Excel.worksheetfunction.binom_dist_range.md
@@ -18,7 +18,7 @@ Returns the probability of a trial result using a binomial distribution.
_expression_. `Binom_Dist_Range`_(Arg1,_ _Arg2,_ _Arg3,_ _Arg4)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.bitand.md b/api/Excel.worksheetfunction.bitand.md
index 398973c3bea..9e04b9a7098 100644
--- a/api/Excel.worksheetfunction.bitand.md
+++ b/api/Excel.worksheetfunction.bitand.md
@@ -18,7 +18,7 @@ Returns a ?Bitwise And' of two numbers
_expression_. `Bitand`_(Arg1,_ _Arg2)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.bitlshift.md b/api/Excel.worksheetfunction.bitlshift.md
index e1344b34d17..a180c71a513 100644
--- a/api/Excel.worksheetfunction.bitlshift.md
+++ b/api/Excel.worksheetfunction.bitlshift.md
@@ -18,7 +18,7 @@ Returns a value number shifted left by shift_amount bits.
_expression_. `Bitlshift`_(Arg1,_ _Arg2)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.bitor.md b/api/Excel.worksheetfunction.bitor.md
index 02d5a03aec1..dfb7edad69b 100644
--- a/api/Excel.worksheetfunction.bitor.md
+++ b/api/Excel.worksheetfunction.bitor.md
@@ -18,7 +18,7 @@ Returns a bitwise OR of 2 numbers.
_expression_. `Bitor`_(Arg1,_ _Arg2)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.bitrshift.md b/api/Excel.worksheetfunction.bitrshift.md
index 60756d2c5a6..6c255a93588 100644
--- a/api/Excel.worksheetfunction.bitrshift.md
+++ b/api/Excel.worksheetfunction.bitrshift.md
@@ -18,7 +18,7 @@ Returns a value number shifted right by shift_amount bits.
_expression_. `Bitrshift`_(Arg1,_ _Arg2)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.bitxor.md b/api/Excel.worksheetfunction.bitxor.md
index bf01c458bd1..7a14df38d25 100644
--- a/api/Excel.worksheetfunction.bitxor.md
+++ b/api/Excel.worksheetfunction.bitxor.md
@@ -18,7 +18,7 @@ Returns a bitwise 'Exclusive Or' of two numbers.
_expression_. `Bitxor`_(Arg1,_ _Arg2)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.ceiling_math.md b/api/Excel.worksheetfunction.ceiling_math.md
index 07b7092f756..c86494b3765 100644
--- a/api/Excel.worksheetfunction.ceiling_math.md
+++ b/api/Excel.worksheetfunction.ceiling_math.md
@@ -18,7 +18,7 @@ Rounds a number up, to the nearest integer or to the nearest multiple of signifi
_expression_. `Ceiling_Math`_(Arg1,_ _Arg2,_ _Arg3)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.combina.md b/api/Excel.worksheetfunction.combina.md
index e0822aeb91b..b15b73ff4fe 100644
--- a/api/Excel.worksheetfunction.combina.md
+++ b/api/Excel.worksheetfunction.combina.md
@@ -18,7 +18,7 @@ Returns the number of combinations with repetitions for a given number of items.
_expression_. `Combina`_(Arg1,_ _Arg2)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.cot.md b/api/Excel.worksheetfunction.cot.md
index 1462e0a76d8..b6e953927cc 100644
--- a/api/Excel.worksheetfunction.cot.md
+++ b/api/Excel.worksheetfunction.cot.md
@@ -18,7 +18,7 @@ Returns the cotangent of an angle.
_expression_. `Cot`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.coth.md b/api/Excel.worksheetfunction.coth.md
index 49997cf0901..33cd2c2f0c4 100644
--- a/api/Excel.worksheetfunction.coth.md
+++ b/api/Excel.worksheetfunction.coth.md
@@ -18,7 +18,7 @@ Returns the hyperbolic cotangent of a number
_expression_. `Coth`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.csc.md b/api/Excel.worksheetfunction.csc.md
index 477a1fe6c1d..5bf376692cb 100644
--- a/api/Excel.worksheetfunction.csc.md
+++ b/api/Excel.worksheetfunction.csc.md
@@ -18,7 +18,7 @@ Returns the cosecant of an angle.
_expression_. `Csc`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.csch.md b/api/Excel.worksheetfunction.csch.md
index a4a275ca013..eed0dbe66c3 100644
--- a/api/Excel.worksheetfunction.csch.md
+++ b/api/Excel.worksheetfunction.csch.md
@@ -18,7 +18,7 @@ Returns the hyperbolic cosecant of an angle.
_expression_. `Csch`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.days.md b/api/Excel.worksheetfunction.days.md
index 625f86863a3..965b7d6b6d1 100644
--- a/api/Excel.worksheetfunction.days.md
+++ b/api/Excel.worksheetfunction.days.md
@@ -18,7 +18,7 @@ Returns the number of days between the two dates.
_expression_. `Days`_(Arg1,_ _Arg2)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.decimal.md b/api/Excel.worksheetfunction.decimal.md
index 955ead54716..3627eaa016e 100644
--- a/api/Excel.worksheetfunction.decimal.md
+++ b/api/Excel.worksheetfunction.decimal.md
@@ -18,7 +18,7 @@ Converts a text representation of a number in a given base into a decimal number
_expression_. `Decimal`_(Arg1,_ _Arg2)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.floor_math.md b/api/Excel.worksheetfunction.floor_math.md
index db255ad95ae..92de8f5e6d4 100644
--- a/api/Excel.worksheetfunction.floor_math.md
+++ b/api/Excel.worksheetfunction.floor_math.md
@@ -18,7 +18,7 @@ Rounds a number down, to the nearest integer or to the nearest multiple of signi
_expression_. `Floor_Math`_(Arg1,_ _Arg2,_ _Arg3)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.gamma.md b/api/Excel.worksheetfunction.gamma.md
index e98a5b3c844..92b7116790b 100644
--- a/api/Excel.worksheetfunction.gamma.md
+++ b/api/Excel.worksheetfunction.gamma.md
@@ -18,7 +18,7 @@ Returns the Gamma function value.
_expression_. `Gamma`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.gauss.md b/api/Excel.worksheetfunction.gauss.md
index 817023459d3..f5800579945 100644
--- a/api/Excel.worksheetfunction.gauss.md
+++ b/api/Excel.worksheetfunction.gauss.md
@@ -18,7 +18,7 @@ Returns 0.5 less than the standard normal cumulative distribution.
_expression_. `Gauss`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.ifna.md b/api/Excel.worksheetfunction.ifna.md
index 1412ec350f2..45803924571 100644
--- a/api/Excel.worksheetfunction.ifna.md
+++ b/api/Excel.worksheetfunction.ifna.md
@@ -18,7 +18,7 @@ Returns the value you specify if the expression resolves to #N/A, otherwise retu
_expression_. `IfNa`_(Arg1,_ _Arg2)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.imcosh.md b/api/Excel.worksheetfunction.imcosh.md
index d3d1bd59636..906a4b9c67e 100644
--- a/api/Excel.worksheetfunction.imcosh.md
+++ b/api/Excel.worksheetfunction.imcosh.md
@@ -18,7 +18,7 @@ Returns the hyperbolic cosine of a complex number.
_expression_. `ImCosh`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.imcot.md b/api/Excel.worksheetfunction.imcot.md
index 5f81d6c09fd..561868489bc 100644
--- a/api/Excel.worksheetfunction.imcot.md
+++ b/api/Excel.worksheetfunction.imcot.md
@@ -18,7 +18,7 @@ Returns the cotangent of a complex number.
_expression_. `ImCot`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.imcsc.md b/api/Excel.worksheetfunction.imcsc.md
index cb9ef59957c..0d580468753 100644
--- a/api/Excel.worksheetfunction.imcsc.md
+++ b/api/Excel.worksheetfunction.imcsc.md
@@ -18,7 +18,7 @@ Returns the cosecant of a complex number.
_expression_. `ImCsc`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.imcsch.md b/api/Excel.worksheetfunction.imcsch.md
index fee11089a5f..01b46da6efd 100644
--- a/api/Excel.worksheetfunction.imcsch.md
+++ b/api/Excel.worksheetfunction.imcsch.md
@@ -18,7 +18,7 @@ Returns the hyperbolic cosecant of a complex number.
_expression_. `ImCsch`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.imsec.md b/api/Excel.worksheetfunction.imsec.md
index 46c9d5e62cd..44738f5693e 100644
--- a/api/Excel.worksheetfunction.imsec.md
+++ b/api/Excel.worksheetfunction.imsec.md
@@ -18,7 +18,7 @@ Returns the hyperbolic cosecant of a complex number.
_expression_. `ImSec`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.imsech.md b/api/Excel.worksheetfunction.imsech.md
index ac775b994e4..26f757a5ccd 100644
--- a/api/Excel.worksheetfunction.imsech.md
+++ b/api/Excel.worksheetfunction.imsech.md
@@ -18,7 +18,7 @@ Returns the secant of a complex number.
_expression_. `ImSech`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.imsinh.md b/api/Excel.worksheetfunction.imsinh.md
index ca0936d335c..1ac309026bb 100644
--- a/api/Excel.worksheetfunction.imsinh.md
+++ b/api/Excel.worksheetfunction.imsinh.md
@@ -18,7 +18,7 @@ Returns the hyperbolic sine of a complex number.
_expression_. `ImSinh`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.imtan.md b/api/Excel.worksheetfunction.imtan.md
index 1779873cc3e..4d0640fa07e 100644
--- a/api/Excel.worksheetfunction.imtan.md
+++ b/api/Excel.worksheetfunction.imtan.md
@@ -18,7 +18,7 @@ Returns the tangent of a complex number.
_expression_. `ImTan`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.isformula.md b/api/Excel.worksheetfunction.isformula.md
index 463db150a9a..72f1c68fadd 100644
--- a/api/Excel.worksheetfunction.isformula.md
+++ b/api/Excel.worksheetfunction.isformula.md
@@ -18,7 +18,7 @@ Checks whether a reference is to a cell containing a formula, and returns **TRU
_expression_. `IsFormula`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.isoweeknum.md b/api/Excel.worksheetfunction.isoweeknum.md
index 3f0fa0309cf..fff8dff8468 100644
--- a/api/Excel.worksheetfunction.isoweeknum.md
+++ b/api/Excel.worksheetfunction.isoweeknum.md
@@ -18,7 +18,7 @@ Returns the ISO week number of the year for a given date. .
_expression_. `IsoWeekNum`_(Arg1,_ _Arg2)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.munit.md b/api/Excel.worksheetfunction.munit.md
index d5c481c5305..ac8094c5e73 100644
--- a/api/Excel.worksheetfunction.munit.md
+++ b/api/Excel.worksheetfunction.munit.md
@@ -18,7 +18,7 @@ Returns the unit matrix for the specified dimension.
_expression_. `Munit`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.numbervalue.md b/api/Excel.worksheetfunction.numbervalue.md
index 7b2c5f8c975..878a140fd49 100644
--- a/api/Excel.worksheetfunction.numbervalue.md
+++ b/api/Excel.worksheetfunction.numbervalue.md
@@ -18,7 +18,7 @@ Converts text to number in a locale-independent manner.
_expression_. `NumberValue`_(Arg1,_ _Arg2,_ _Arg3)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.pduration.md b/api/Excel.worksheetfunction.pduration.md
index 7ad30e4f540..94977bfed27 100644
--- a/api/Excel.worksheetfunction.pduration.md
+++ b/api/Excel.worksheetfunction.pduration.md
@@ -18,7 +18,7 @@ Returns the number of periods required by an investment to reach a specified val
_expression_. `PDuration`_(Arg1,_ _Arg2,_ _Arg3)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.permutationa.md b/api/Excel.worksheetfunction.permutationa.md
index 134cc63577d..f7833779756 100644
--- a/api/Excel.worksheetfunction.permutationa.md
+++ b/api/Excel.worksheetfunction.permutationa.md
@@ -18,7 +18,7 @@ Returns the number of permutations for a given number of objects (with repetitio
_expression_. `Permutationa`_(Arg1,_ _Arg2)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.phi.md b/api/Excel.worksheetfunction.phi.md
index 5cd13f5ab1d..b15c8af03d5 100644
--- a/api/Excel.worksheetfunction.phi.md
+++ b/api/Excel.worksheetfunction.phi.md
@@ -18,7 +18,7 @@ Returns the value of the density function for a standard normal distribution.
_expression_. `Phi`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.rri.md b/api/Excel.worksheetfunction.rri.md
index 0b12effabeb..d607a4ad9c1 100644
--- a/api/Excel.worksheetfunction.rri.md
+++ b/api/Excel.worksheetfunction.rri.md
@@ -18,7 +18,7 @@ Returns an equivalent interest rate for the growth of an investment.
_expression_. `Rri`_(Arg1,_ _Arg2,_ _Arg3)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.sec.md b/api/Excel.worksheetfunction.sec.md
index 69638613230..9ba3ccb371d 100644
--- a/api/Excel.worksheetfunction.sec.md
+++ b/api/Excel.worksheetfunction.sec.md
@@ -18,7 +18,7 @@ Returns the secant of an angle.
_expression_. `Sec`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.sech.md b/api/Excel.worksheetfunction.sech.md
index 134bffdbeaf..8176850bd93 100644
--- a/api/Excel.worksheetfunction.sech.md
+++ b/api/Excel.worksheetfunction.sech.md
@@ -18,7 +18,7 @@ Returns the hyperbolic secant of an angle.
_expression_. `Sech`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.skew_p.md b/api/Excel.worksheetfunction.skew_p.md
index cb2e89ac607..af51c8cc969 100644
--- a/api/Excel.worksheetfunction.skew_p.md
+++ b/api/Excel.worksheetfunction.skew_p.md
@@ -18,7 +18,7 @@ Returns the skewness of a distribution based on a population: a characterization
_expression_. `Skew_p`_(Arg1,_ _Arg2,_ _Arg3,_ _Arg4,_ _Arg5,_ _Arg6,_ _Arg7,_ _Arg8,_ _Arg9,_ _Arg10,_ _Arg11,_ _Arg12,_ _Arg13,_ _Arg14,_ _Arg15,_ _Arg16,_ _Arg17,_ _Arg18,_ _Arg19,_ _Arg20,_ _Arg21,_ _Arg22,_ _Arg23,_ _Arg24,_ _Arg25,_ _Arg26,_ _Arg27,_ _Arg28,_ _Arg29,_ _Arg30)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.unichar.md b/api/Excel.worksheetfunction.unichar.md
index fa0edd97c4b..478b9c83743 100644
--- a/api/Excel.worksheetfunction.unichar.md
+++ b/api/Excel.worksheetfunction.unichar.md
@@ -18,7 +18,7 @@ Returns the Unicode character referenced by the given numeric value.
_expression_. `Unichar`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.unicode.md b/api/Excel.worksheetfunction.unicode.md
index 496fc46c203..008608a81fe 100644
--- a/api/Excel.worksheetfunction.unicode.md
+++ b/api/Excel.worksheetfunction.unicode.md
@@ -18,7 +18,7 @@ Returns the number (code point) corresponding to the first character of the text
_expression_. `Unicode`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.webservice.md b/api/Excel.worksheetfunction.webservice.md
index 008f0ad2d11..48df46eeeb7 100644
--- a/api/Excel.worksheetfunction.webservice.md
+++ b/api/Excel.worksheetfunction.webservice.md
@@ -18,7 +18,7 @@ Underlying function that calls the web service asynchronously, using an HTTP GET
_expression_. `WebService`_(Arg1)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Excel.worksheetfunction.xor.md b/api/Excel.worksheetfunction.xor.md
index 6c988b354e7..f4d2022b914 100644
--- a/api/Excel.worksheetfunction.xor.md
+++ b/api/Excel.worksheetfunction.xor.md
@@ -18,7 +18,7 @@ Returns a logical exclusive OR of all arguments.
_expression_. `Xor`_(Arg1,_ _Arg2,_ _Arg3,_ _Arg4,_ _Arg5,_ _Arg6,_ _Arg7,_ _Arg8,_ _Arg9,_ _Arg10,_ _Arg11,_ _Arg12,_ _Arg13,_ _Arg14,_ _Arg15,_ _Arg16,_ _Arg17,_ _Arg18,_ _Arg19,_ _Arg20,_ _Arg21,_ _Arg22,_ _Arg23,_ _Arg24,_ _Arg25,_ _Arg26,_ _Arg27,_ _Arg28,_ _Arg29,_ _Arg30)_
- _expression_ A variable that represents a[WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
+ _expression_ A variable that represents a [WorksheetFunction Object (Excel)](Excel.WorksheetFunction.md) object.
### Parameters
diff --git a/api/Office.DocumentProperty.LinkToContent.md b/api/Office.DocumentProperty.LinkToContent.md
index 7915e18e326..55b3a5a526a 100644
--- a/api/Office.DocumentProperty.LinkToContent.md
+++ b/api/Office.DocumentProperty.LinkToContent.md
@@ -37,7 +37,7 @@ This property applies only to custom document properties. For built-in document
Use the **LinkSource** property to set the source for the specified linked property. Setting the **LinkSource** property sets the **LinkToContent** property to **True**.
-For Excel, If LinkToContent is set to **True**, you must supply an address or range name for the[LinkSource](./overview/Library-Reference.md) from the workbook. If the address or range name covers more than one cell, the custom document property takes the value from the top left cell of the range.
+For Excel, If LinkToContent is set to **True**, you must supply an address or range name for the [LinkSource](./overview/Library-Reference.md) from the workbook. If the address or range name covers more than one cell, the custom document property takes the value from the top left cell of the range.
## Example
diff --git a/api/Office.IRibbonUI.md b/api/Office.IRibbonUI.md
index 45526d78b4f..78699fc8291 100644
--- a/api/Office.IRibbonUI.md
+++ b/api/Office.IRibbonUI.md
@@ -15,7 +15,7 @@ ms.date: 08/29/2018
The object that is returned by the **onLoad** procedure specified on the **customUI** tag. The object contains methods for invalidating control properties and for refreshing the user interface.
-The iRibbonUI does not generate Events in its interaction with the user. Instead, ribbon elements perform *callbacks* to your code, and the linkage between ribbon elements and your code is defined in the XML that describes your ribbon additions. For information about the callback functions available for each UI element, see [Customizing the 2007 Office Fluent Ribbon for Developers](https://docs.microsoft.com/en-us/previous-versions/office/developer/office-2007/aa722523(v=office.12)) and search for "How can I determine the correct signatures for each callback procedure?"
+The iRibbonUI does not generate Events in its interaction with the user. Instead, ribbon elements perform *callbacks* to your code, and the linkage between ribbon elements and your code is defined in the XML that describes your ribbon additions. For information about the callback functions available for each UI element, see [Customizing the 2007 Office Fluent Ribbon for Developers](https://docs.microsoft.com/previous-versions/office/developer/office-2007/aa722523(v=office.12)) and search for "How can I determine the correct signatures for each callback procedure?"
@@ -51,6 +51,6 @@ End Sub
[Object Model Reference](./overview/Library-Reference/reference-object-library-reference-for-office.md)
-[RibbonXML Callbacks](https://docs.microsoft.com/en-us/previous-versions/office/developer/office-2007/aa722523(v=office.12))
+[RibbonXML Callbacks](https://docs.microsoft.com/previous-versions/office/developer/office-2007/aa722523(v=office.12))
[IRibbonUI Object Members](./overview/Library-Reference/iribbonui-members-office.md)
diff --git a/api/Outlook.Account.md b/api/Outlook.Account.md
index c7856559038..b42754b58bb 100644
--- a/api/Outlook.Account.md
+++ b/api/Outlook.Account.md
@@ -21,8 +21,8 @@ The **Account** object represents an account that is defined for the current pr
The purpose of the [Accounts](Outlook.Accounts.md) collection object and the **Account** object is to provide the capacity to enumerate **Account** objects in a given profile, to identify the type of **Account**, and to use a specific **Account** object to send mail.
- **Note** Helmut Obertanner provided the following code samples. Helmut is a [Microsoft Most Valuable Professional](https://mvp.microsoft.com/en-us/default.aspx
-) with expertise in Microsoft Office development tools in Microsoft Visual Studio and Microsoft Office Outlook.
+> [!NOTE]
+> Helmut Obertanner provided the following code samples. Helmut is a [Microsoft Most Valuable Professional](https://mvp.microsoft.com/) with expertise in Microsoft Office development tools in Microsoft Visual Studio and Microsoft Office Outlook.
## Example
diff --git a/api/Outlook.AddressRuleCondition.ConditionType.md b/api/Outlook.AddressRuleCondition.ConditionType.md
index d0ea89a3bd4..d2e6b044c81 100644
--- a/api/Outlook.AddressRuleCondition.ConditionType.md
+++ b/api/Outlook.AddressRuleCondition.ConditionType.md
@@ -27,7 +27,7 @@ Returns a constant from the **[OlRuleConditionType](Outlook.OlRuleConditionType
The **[AddressRuleCondition](Outlook.AddressRuleCondition.md)** object is used by rules of types **olRuleSend** and **olRuleReceive** . If the rule is created as an **olRuleSend** rule, then the type of the associated **AddressRuleCondition** object will be **olConditionSenderAddress** . If the rule is created as an **olRuleReceive** rule, then the type of the associated **AddressRuleCondition** object will be **olConditionRecipientAddress** .
-This however does not mean that the rule always has a defined rule condition for sender or recipient addresses. Regardless of whether there exists such a defined or enabled rule condition, the **AddressRuleCondition.ConditionType** property is always initialized once the associated rule is created. For more information on rule conditions, see[Specify Rule Conditions](../outlook/How-to/Rules/specifying-rule-conditions.md).
+This however does not mean that the rule always has a defined rule condition for sender or recipient addresses. Regardless of whether there exists such a defined or enabled rule condition, the **AddressRuleCondition.ConditionType** property is always initialized once the associated rule is created. For more information on rule conditions, see [Specify Rule Conditions](../outlook/How-to/Rules/specifying-rule-conditions.md).
## See also
diff --git a/api/Outlook.Application.AdvancedSearch.md b/api/Outlook.Application.AdvancedSearch.md
index 652b10f13ad..ca774e71d59 100644
--- a/api/Outlook.Application.AdvancedSearch.md
+++ b/api/Outlook.Application.AdvancedSearch.md
@@ -62,7 +62,7 @@ Scope = "'" & Application.Session.GetDefaultFolder(olFolderInbox).FolderPath _
& "','" & Application.Session.GetDefaultFolder(olFolderSentMail).FolderPath & "'"
```
-The _Filter_ parameter can be any valid DASL query. For additional information on DASL queries, see[Filtering Items](../outlook/How-to/Search-and-Filter/filtering-items.md) and[Referencing Properties by Namespace](../outlook/How-to/Navigation/referencing-properties-by-namespace.md). Note that you cannot use a JET query for the _Filter_ parameter of Advanced Search. If Instant Search is enabled on a store that contains a folder specified in the _Scope_ parameter, you can use Instant Search keywords to improve the performance of your search. If you use Instant Search keywords and Instant Search is not enabled, Outlook will return an error and your search will fail.
+The _Filter_ parameter can be any valid DASL query. For additional information on DASL queries, see [Filtering Items](../outlook/How-to/Search-and-Filter/filtering-items.md) and [Referencing Properties by Namespace](../outlook/How-to/Navigation/referencing-properties-by-namespace.md). Note that you cannot use a JET query for the _Filter_ parameter of Advanced Search. If Instant Search is enabled on a store that contains a folder specified in the _Scope_ parameter, you can use Instant Search keywords to improve the performance of your search. If you use Instant Search keywords and Instant Search is not enabled, Outlook will return an error and your search will fail.
## Example
diff --git a/api/Outlook.Application.OptionsPagesAdd.md b/api/Outlook.Application.OptionsPagesAdd.md
index ec7de372541..af071f794b7 100644
--- a/api/Outlook.Application.OptionsPagesAdd.md
+++ b/api/Outlook.Application.OptionsPagesAdd.md
@@ -41,7 +41,7 @@ Your program handles this event to add a custom property page. The property page
## Example
-This Microsoft Visual Basic for Applications (VBA) example adds a new property page to the Outlook **Options** dialog box. The sample code must be placed in a class module of a Component Object Model (COM) add-in. For information about COM add-ins, see[Customizing Outlook using COM add-ins](../outlook/Concepts/Getting-Started/customizing-outlook-using-com-add-ins.md).
+This Microsoft Visual Basic for Applications (VBA) example adds a new property page to the Outlook **Options** dialog box. The sample code must be placed in a class module of a Component Object Model (COM) add-in. For information about COM add-ins, see [Customizing Outlook using COM add-ins](../outlook/Concepts/Getting-Started/customizing-outlook-using-com-add-ins.md).
```vb
diff --git a/api/Outlook.AppointmentItem.AfterWrite.md b/api/Outlook.AppointmentItem.AfterWrite.md
index 1d02abff57c..94290a5d4f0 100644
--- a/api/Outlook.AppointmentItem.AfterWrite.md
+++ b/api/Outlook.AppointmentItem.AfterWrite.md
@@ -35,9 +35,9 @@ Only the following members of the item object can be accessed in the **AfterWri
- **MAPIOBJECT**
-The **MAPIOBJECT** property is a hidden property in the Outlook object model. This property provides access to the underlying MAPI **[IMessage](https://msdn.microsoft.com/en-us/library/cc842097%28office.14%29.aspx)** object, and can be invoked only via the **[IUnknown](https://msdn.microsoft.com/en-us/library/ms680509%28VS.85%29.aspx)** interface. The property is accessible to programs written in languages such as C or C++ that support **IUnknown** . **MAPIOBJECT** is not available through the **[IDispatch](https://msdn.microsoft.com/en-us/library/ms221608.aspx)** interface. Development languages such as Visual Basic for Applications (VBA), Visual C#, and Visual Basic support the **IDispatch** interface and not **IUnknown** , and therefore, they cannot access **MAPIOBJECT** . If other properties or methods of the parent item are accessed in this event, Outlook raises an error.
+The **MAPIOBJECT** property is a hidden property in the Outlook object model. This property provides access to the underlying MAPI **[IMessage](https://msdn.microsoft.com/library/cc842097%28office.14%29.aspx)** object, and can be invoked only via the **[IUnknown](https://msdn.microsoft.com/library/ms680509%28VS.85%29.aspx)** interface. The property is accessible to programs written in languages such as C or C++ that support **IUnknown** . **MAPIOBJECT** is not available through the **[IDispatch](https://msdn.microsoft.com/library/ms221608.aspx)** interface. Development languages such as Visual Basic for Applications (VBA), Visual C#, and Visual Basic support the **IDispatch** interface and not **IUnknown** , and therefore, they cannot access **MAPIOBJECT** . If other properties or methods of the parent item are accessed in this event, Outlook raises an error.
-The object obtained from the **MAPIOBJECT** property in this event must contain all the changes persisted by Outlook. The implementer can call the **[SaveChanges](https://msdn.microsoft.com/en-us/library/cc842181%28office.14%29.aspx)** method on the **IMessage** object to persist changes to the underlying **IMessage** object represented by **MAPIOBJECT** , and Outlook will not revert those changes.
+The object obtained from the **MAPIOBJECT** property in this event must contain all the changes persisted by Outlook. The implementer can call the **[SaveChanges](https://msdn.microsoft.com/library/cc842181%28office.14%29.aspx)** method on the **IMessage** object to persist changes to the underlying **IMessage** object represented by **MAPIOBJECT** , and Outlook will not revert those changes.
Implementers must release the object obtained from the **MAPIOBJECT** property in the event before the event completes. Attempting to use that object outside the context of the event is unsupported and will lead to unpredictable behavior.
diff --git a/api/Outlook.AppointmentItem.BeforeRead.md b/api/Outlook.AppointmentItem.BeforeRead.md
index a7b8dd8972f..3f92ce40bbd 100644
--- a/api/Outlook.AppointmentItem.BeforeRead.md
+++ b/api/Outlook.AppointmentItem.BeforeRead.md
@@ -35,9 +35,9 @@ Only the following members of the item object can be accessed in the **BeforeRe
- **MAPIOBJECT**
-The **MAPIOBJECT** property is a hidden property in the Outlook object model. This property provides access to the underlying MAPI **[IMessage](https://msdn.microsoft.com/en-us/library/cc842097%28office.14%29.aspx)** object, and can be invoked only via the **[IUnknown](https://msdn.microsoft.com/en-us/library/ms680509%28VS.85%29.aspx)** interface. The property is accessible to programs written in languages such as C or C++ that support **IUnknown** . **MAPIOBJECT** is not available through the **[IDispatch](https://msdn.microsoft.com/en-us/library/ms221608.aspx)** interface. Development languages such as Visual Basic for Applications (VBA), Visual C#, and Visual Basic support the **IDispatch** interface and not **IUnknown** , and therefore, they cannot access **MAPIOBJECT** . If other properties or methods of the parent item are accessed in this event, Outlook raises an error.
+The **MAPIOBJECT** property is a hidden property in the Outlook object model. This property provides access to the underlying MAPI **[IMessage](https://msdn.microsoft.com/library/cc842097%28office.14%29.aspx)** object, and can be invoked only via the **[IUnknown](https://msdn.microsoft.com/library/ms680509%28VS.85%29.aspx)** interface. The property is accessible to programs written in languages such as C or C++ that support **IUnknown** . **MAPIOBJECT** is not available through the **[IDispatch](https://msdn.microsoft.com/library/ms221608.aspx)** interface. Development languages such as Visual Basic for Applications (VBA), Visual C#, and Visual Basic support the **IDispatch** interface and not **IUnknown** , and therefore, they cannot access **MAPIOBJECT** . If other properties or methods of the parent item are accessed in this event, Outlook raises an error.
-If the implementer accesses the underlying **IMessage** object and changes properties on that object, Outlook will render that item reflecting the changes to the **IMessage** object. The implementer does not have to call **[SaveChanges](https://msdn.microsoft.com/en-us/library/cc842181%28office.14%29.aspx)** on the **IMessage** object to cause the changes to be reflected in Outlook.
+If the implementer accesses the underlying **IMessage** object and changes properties on that object, Outlook will render that item reflecting the changes to the **IMessage** object. The implementer does not have to call **[SaveChanges](https://msdn.microsoft.com/library/cc842181%28office.14%29.aspx)** on the **IMessage** object to cause the changes to be reflected in Outlook.
Implementers must release the object obtained from the **MAPIOBJECT** property in the event before the event completes. Attempting to use that object outside the context of the event is unsupported and will lead to unpredictable behavior.
diff --git a/api/Outlook.AppointmentItem.ForceUpdateToAllAttendees.md b/api/Outlook.AppointmentItem.ForceUpdateToAllAttendees.md
index b7dd90ab71e..e6de04f6a98 100644
--- a/api/Outlook.AppointmentItem.ForceUpdateToAllAttendees.md
+++ b/api/Outlook.AppointmentItem.ForceUpdateToAllAttendees.md
@@ -13,7 +13,7 @@ ms.date: 06/08/2017
# AppointmentItem.ForceUpdateToAllAttendees Property (Outlook)
-Returns or sets a **Boolean** value that indicates whether updates to the[AppointmentItem](Outlook.AppointmentItem.md) object should be sent to all attendees. Read/write.
+Returns or sets a **Boolean** value that indicates whether updates to the [AppointmentItem](Outlook.AppointmentItem.md) object should be sent to all attendees. Read/write.
## Syntax
diff --git a/api/Outlook.AssignToCategoryRuleAction.ActionType.md b/api/Outlook.AssignToCategoryRuleAction.ActionType.md
index 70200cd1afe..ccb6cc419c9 100644
--- a/api/Outlook.AssignToCategoryRuleAction.ActionType.md
+++ b/api/Outlook.AssignToCategoryRuleAction.ActionType.md
@@ -25,7 +25,7 @@ Returns a constant, **olRuleActionAssignToCategory** , from the **[OlRuleAction
## Remarks
- The category assigning rule action is supported by rules for receiving messages and rules for sending messages. For more information, see[Specifying Rule Actions](../outlook/How-to/Rules/specifying-rule-actions.md).
+ The category assigning rule action is supported by rules for receiving messages and rules for sending messages. For more information, see [Specifying Rule Actions](../outlook/How-to/Rules/specifying-rule-actions.md).
## See also
diff --git a/api/Outlook.Column.Name.md b/api/Outlook.Column.Name.md
index 458fdd85514..0bf279b76b3 100644
--- a/api/Outlook.Column.Name.md
+++ b/api/Outlook.Column.Name.md
@@ -27,7 +27,7 @@ Returns a **String** value that represents the name of the **[Column](Outlook.C
The **Name** property is the default member of the **Column** object.
-If the **Column** is a default column in the **[Table](Outlook.Table.md)** , or if it has been added to the **Table** with the explicit built-in name for the property, the value of **Name** is the explicit built-in name (without any enclosing brackets) for the property. If the **Column** has been added to the **Table** with a property name referencing a namespace, the value of **Name** will be the property name referenced by namespace. For more information on referencing properties by namespace, see[Referencing Properties by Namespace](../outlook/How-to/Navigation/referencing-properties-by-namespace.md).
+If the **Column** is a default column in the **[Table](Outlook.Table.md)** , or if it has been added to the **Table** with the explicit built-in name for the property, the value of **Name** is the explicit built-in name (without any enclosing brackets) for the property. If the **Column** has been added to the **Table** with a property name referencing a namespace, the value of **Name** will be the property name referenced by namespace. For more information on referencing properties by namespace, see [Referencing Properties by Namespace](../outlook/How-to/Navigation/referencing-properties-by-namespace.md).
## See also
diff --git a/api/Outlook.Columns.Add.md b/api/Outlook.Columns.Add.md
index 80a995b99b1..d0d3c03a2d5 100644
--- a/api/Outlook.Columns.Add.md
+++ b/api/Outlook.Columns.Add.md
@@ -40,13 +40,13 @@ A **Column** object that represents the new column.
**Columns.Add** adds the specified **Column** to the end of the **Columns** collection for the **Table** , and resets the **Table** by moving the current row to just before the first row of the **Table** . If **Columns.Add** returns an error, it will not change the current row.
- _Name_ can be an explicit built-in property name, or a property name referenced by namespace. It must be referenced as the name in the English locale. For more information on referencing properties by namespace, see[Referencing Properties by Namespace](../outlook/How-to/Navigation/referencing-properties-by-namespace.md).
+ _Name_ can be an explicit built-in property name, or a property name referenced by namespace. It must be referenced as the name in the English locale. For more information on referencing properties by namespace, see [Referencing Properties by Namespace](../outlook/How-to/Navigation/referencing-properties-by-namespace.md).
-If you are adding a property which is an explicit built-in property in the object model, for example, **[Contact.FirstName](Outlook.ContactItem.FirstName.md)** , you must specify _Name_ as the explicit built-in property name in English. For certain types of properties, the format used when adding these properties as columns affects how their values are expressed in the **Table** . For more information on property value representation in a **Table** , see[Factors Affecting Property Value Representation in the Table and View Classes](../outlook/How-to/Search-and-Filter/factors-affecting-property-value-representation-in-the-table-and-view-classes.md).
+If you are adding a property which is an explicit built-in property in the object model, for example, **[Contact.FirstName](Outlook.ContactItem.FirstName.md)** , you must specify _Name_ as the explicit built-in property name in English. For certain types of properties, the format used when adding these properties as columns affects how their values are expressed in the **Table** . For more information on property value representation in a **Table** , see [Factors Affecting Property Value Representation in the Table and View Classes](../outlook/How-to/Search-and-Filter/factors-affecting-property-value-representation-in-the-table-and-view-classes.md).
If you are adding a custom property to a **Table** , referencing the property by the MAPI string namespace, you will have to explicitly append the type of the property to the end of the property reference. For example, to add the custom property `MyCustomProperty`, which has the type Unicode string, you will have to explicitly append the type 001f to the reference, resulting in: `https://schemas.microsoft.com/mapi/string/{HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH}/MyCustomProperty/0x0000001f`, where `{HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH}` represents the namespace GUID.
-Certain properties cannot be added to a **Table** using **Columns.Add** , including binary properties, computed properties, and HTML or RTF body content. For more information, see[Unsupported Properties in a Table Object or Table Filter](../outlook/How-to/Search-and-Filter/unsupported-properties-in-a-table-object-or-table-filter.md).
+Certain properties cannot be added to a **Table** using **Columns.Add** , including binary properties, computed properties, and HTML or RTF body content. For more information, see [Unsupported Properties in a Table Object or Table Filter](../outlook/How-to/Search-and-Filter/unsupported-properties-in-a-table-object-or-table-filter.md).
While **[Items.SetColumns](Outlook.Items.SetColumns.md)** can be used to facilitate caching certain properties for extremely fast access to those properties of an **[Items](Outlook.Items.md)** collection, some properties are restricted from **SetColumns** . Since these restrictions do not apply to **Columns.Add** , the **Table** object is a less restrictive alternative than **Items** .
diff --git a/api/Outlook.ContactItem.AfterWrite.md b/api/Outlook.ContactItem.AfterWrite.md
index 9613ccd5ef6..4a3c77a65e1 100644
--- a/api/Outlook.ContactItem.AfterWrite.md
+++ b/api/Outlook.ContactItem.AfterWrite.md
@@ -35,9 +35,9 @@ Only the following members of the item object can be accessed in the **AfterWri
- **MAPIOBJECT**
-The **MAPIOBJECT** property is a hidden property in the Outlook object model. This property provides access to the underlying MAPI **[IMessage](https://msdn.microsoft.com/en-us/library/cc842097%28office.14%29.aspx)** object, and can be invoked only via the **[IUnknown](https://msdn.microsoft.com/en-us/library/ms680509%28VS.85%29.aspx)** interface. The property is accessible to programs written in languages such as C or C++ that support **IUnknown** . **MAPIOBJECT** is not available through the **[IDispatch](https://msdn.microsoft.com/en-us/library/ms221608.aspx)** interface. Development languages such as Visual Basic for Applications (VBA), Visual C#, and Visual Basic support the **IDispatch** interface and not **IUnknown** , and therefore, they cannot access **MAPIOBJECT** . If other properties or methods of the parent item are accessed in this event, Outlook raises an error.
+The **MAPIOBJECT** property is a hidden property in the Outlook object model. This property provides access to the underlying MAPI **[IMessage](https://msdn.microsoft.com/library/cc842097%28office.14%29.aspx)** object, and can be invoked only via the **[IUnknown](https://msdn.microsoft.com/library/ms680509%28VS.85%29.aspx)** interface. The property is accessible to programs written in languages such as C or C++ that support **IUnknown** . **MAPIOBJECT** is not available through the **[IDispatch](https://msdn.microsoft.com/library/ms221608.aspx)** interface. Development languages such as Visual Basic for Applications (VBA), Visual C#, and Visual Basic support the **IDispatch** interface and not **IUnknown** , and therefore, they cannot access **MAPIOBJECT** . If other properties or methods of the parent item are accessed in this event, Outlook raises an error.
-The object obtained from the **MAPIOBJECT** property in this event must contain all the changes persisted by Outlook. The implementer can call the **[SaveChanges](https://msdn.microsoft.com/en-us/library/cc842181%28office.14%29.aspx)** method on the **IMessage** object to persist changes to the underlying **IMessage** object represented by **MAPIOBJECT** , and Outlook will not revert those changes.
+The object obtained from the **MAPIOBJECT** property in this event must contain all the changes persisted by Outlook. The implementer can call the **[SaveChanges](https://msdn.microsoft.com/library/cc842181%28office.14%29.aspx)** method on the **IMessage** object to persist changes to the underlying **IMessage** object represented by **MAPIOBJECT** , and Outlook will not revert those changes.
Implementers must release the object obtained from the **MAPIOBJECT** property in the event before the event completes. Attempting to use that object outside the context of the event is unsupported and will lead to unpredictable behavior.
diff --git a/api/Outlook.ContactItem.BeforeRead.md b/api/Outlook.ContactItem.BeforeRead.md
index 92e579849c9..b64e3703fe8 100644
--- a/api/Outlook.ContactItem.BeforeRead.md
+++ b/api/Outlook.ContactItem.BeforeRead.md
@@ -35,9 +35,9 @@ Only the following members of the item object can be accessed in the **BeforeRe
- **MAPIOBJECT**
-The **MAPIOBJECT** property is a hidden property in the Outlook object model. This property provides access to the underlying MAPI **[IMessage](https://msdn.microsoft.com/en-us/library/cc842097%28office.14%29.aspx)** object, and can be invoked only via the **[IUnknown](https://msdn.microsoft.com/en-us/library/ms680509%28VS.85%29.aspx)** interface. The property is accessible to programs written in languages such as C or C++ that support **IUnknown** . **MAPIOBJECT** is not available through the **[IDispatch](https://msdn.microsoft.com/en-us/library/ms221608.aspx)** interface. Development languages such as Visual Basic for Applications (VBA), Visual C#, and Visual Basic support the **IDispatch** interface and not **IUnknown** , and therefore, they cannot access **MAPIOBJECT** . If other properties or methods of the parent item are accessed in this event, Outlook raises an error.
+The **MAPIOBJECT** property is a hidden property in the Outlook object model. This property provides access to the underlying MAPI **[IMessage](https://msdn.microsoft.com/library/cc842097%28office.14%29.aspx)** object, and can be invoked only via the **[IUnknown](https://msdn.microsoft.com/library/ms680509%28VS.85%29.aspx)** interface. The property is accessible to programs written in languages such as C or C++ that support **IUnknown** . **MAPIOBJECT** is not available through the **[IDispatch](https://msdn.microsoft.com/library/ms221608.aspx)** interface. Development languages such as Visual Basic for Applications (VBA), Visual C#, and Visual Basic support the **IDispatch** interface and not **IUnknown** , and therefore, they cannot access **MAPIOBJECT** . If other properties or methods of the parent item are accessed in this event, Outlook raises an error.
-If the implementer accesses the underlying **IMessage** object and changes properties on that object, Outlook will render that item reflecting the changes to the **IMessage** object. The implementer does not have to call **[SaveChanges](https://msdn.microsoft.com/en-us/library/cc842181%28office.14%29.aspx)** on the **IMessage** object to cause the changes to be reflected in Outlook.
+If the implementer accesses the underlying **IMessage** object and changes properties on that object, Outlook will render that item reflecting the changes to the **IMessage** object. The implementer does not have to call **[SaveChanges](https://msdn.microsoft.com/library/cc842181%28office.14%29.aspx)** on the **IMessage** object to cause the changes to be reflected in Outlook.
Implementers must release the object obtained from the **MAPIOBJECT** property in the event before the event completes. Attempting to use that object outside the context of the event is unsupported and will lead to unpredictable behavior.
diff --git a/api/Outlook.DistListItem.AfterWrite.md b/api/Outlook.DistListItem.AfterWrite.md
index 71f39547520..9098d8fb512 100644
--- a/api/Outlook.DistListItem.AfterWrite.md
+++ b/api/Outlook.DistListItem.AfterWrite.md
@@ -35,9 +35,9 @@ Only the following members of the item object can be accessed in the **AfterWri
- **MAPIOBJECT**
-The **MAPIOBJECT** property is a hidden property in the Outlook object model. This property provides access to the underlying MAPI **[IMessage](https://msdn.microsoft.com/en-us/library/cc842097%28office.14%29.aspx)** object, and can be invoked only via the **[IUnknown](https://msdn.microsoft.com/en-us/library/ms680509%28VS.85%29.aspx)** interface. The property is accessible to programs written in languages such as C or C++ that support **IUnknown** . **MAPIOBJECT** is not available through the **[IDispatch](https://msdn.microsoft.com/en-us/library/ms221608.aspx)** interface. Development languages such as Visual Basic for Applications (VBA), Visual C#, and Visual Basic support the **IDispatch** interface and not **IUnknown** , and therefore, they cannot access **MAPIOBJECT** . If other properties or methods of the parent item are accessed in this event, Outlook raises an error.
+The **MAPIOBJECT** property is a hidden property in the Outlook object model. This property provides access to the underlying MAPI **[IMessage](https://msdn.microsoft.com/library/cc842097%28office.14%29.aspx)** object, and can be invoked only via the **[IUnknown](https://msdn.microsoft.com/library/ms680509%28VS.85%29.aspx)** interface. The property is accessible to programs written in languages such as C or C++ that support **IUnknown** . **MAPIOBJECT** is not available through the **[IDispatch](https://msdn.microsoft.com/library/ms221608.aspx)** interface. Development languages such as Visual Basic for Applications (VBA), Visual C#, and Visual Basic support the **IDispatch** interface and not **IUnknown** , and therefore, they cannot access **MAPIOBJECT** . If other properties or methods of the parent item are accessed in this event, Outlook raises an error.
-The object obtained from the **MAPIOBJECT** property in this event must contain all the changes persisted by Outlook. The implementer can call the **[SaveChanges](https://msdn.microsoft.com/en-us/library/cc842181%28office.14%29.aspx)** method on the **IMessage** object to persist changes to the underlying **IMessage** object represented by **MAPIOBJECT** , and Outlook will not revert those changes.
+The object obtained from the **MAPIOBJECT** property in this event must contain all the changes persisted by Outlook. The implementer can call the **[SaveChanges](https://msdn.microsoft.com/library/cc842181%28office.14%29.aspx)** method on the **IMessage** object to persist changes to the underlying **IMessage** object represented by **MAPIOBJECT** , and Outlook will not revert those changes.
Implementers must release the object obtained from the **MAPIOBJECT** property in the event before the event completes. Attempting to use that object outside the context of the event is unsupported and will lead to unpredictable behavior.
diff --git a/api/Outlook.DistListItem.BeforeRead.md b/api/Outlook.DistListItem.BeforeRead.md
index 11631f62506..875a43557cc 100644
--- a/api/Outlook.DistListItem.BeforeRead.md
+++ b/api/Outlook.DistListItem.BeforeRead.md
@@ -35,9 +35,9 @@ Only the following members of the item object can be accessed in the **BeforeRe
- **MAPIOBJECT**
-The **MAPIOBJECT** property is a hidden property in the Outlook object model. This property provides access to the underlying MAPI **[IMessage](https://msdn.microsoft.com/en-us/library/cc842097%28office.14%29.aspx)** object, and can be invoked only via the **[IUnknown](https://msdn.microsoft.com/en-us/library/ms680509%28VS.85%29.aspx)** interface. The property is accessible to programs written in languages such as C or C++ that support **IUnknown** . **MAPIOBJECT** is not available through the **[IDispatch](https://msdn.microsoft.com/en-us/library/ms221608.aspx)** interface. Development languages such as Visual Basic for Applications (VBA), Visual C#, and Visual Basic support the **IDispatch** interface and not **IUnknown** , and therefore, they cannot access **MAPIOBJECT** . If other properties or methods of the parent item are accessed in this event, Outlook raises an error.
+The **MAPIOBJECT** property is a hidden property in the Outlook object model. This property provides access to the underlying MAPI **[IMessage](https://msdn.microsoft.com/library/cc842097%28office.14%29.aspx)** object, and can be invoked only via the **[IUnknown](https://msdn.microsoft.com/library/ms680509%28VS.85%29.aspx)** interface. The property is accessible to programs written in languages such as C or C++ that support **IUnknown** . **MAPIOBJECT** is not available through the **[IDispatch](https://msdn.microsoft.com/library/ms221608.aspx)** interface. Development languages such as Visual Basic for Applications (VBA), Visual C#, and Visual Basic support the **IDispatch** interface and not **IUnknown** , and therefore, they cannot access **MAPIOBJECT** . If other properties or methods of the parent item are accessed in this event, Outlook raises an error.
-If the implementer accesses the underlying **IMessage** object and changes properties on that object, Outlook will render that item reflecting the changes to the **IMessage** object. The implementer does not have to call **[SaveChanges](https://msdn.microsoft.com/en-us/library/cc842181%28office.14%29.aspx)** on the **IMessage** object to cause the changes to be reflected in Outlook.
+If the implementer accesses the underlying **IMessage** object and changes properties on that object, Outlook will render that item reflecting the changes to the **IMessage** object. The implementer does not have to call **[SaveChanges](https://msdn.microsoft.com/library/cc842181%28office.14%29.aspx)** on the **IMessage** object to cause the changes to be reflected in Outlook.
Implementers must release the object obtained from the **MAPIOBJECT** property in the event before the event completes. Attempting to use that object outside the context of the event is unsupported and will lead to unpredictable behavior.
diff --git a/api/Outlook.DocumentItem.AfterWrite.md b/api/Outlook.DocumentItem.AfterWrite.md
index a2e968ec521..6d9bf0e30ac 100644
--- a/api/Outlook.DocumentItem.AfterWrite.md
+++ b/api/Outlook.DocumentItem.AfterWrite.md
@@ -35,9 +35,9 @@ Only the following members of the item object can be accessed in the **AfterWri
- **MAPIOBJECT**
-The **MAPIOBJECT** property is a hidden property in the Outlook object model. This property provides access to the underlying MAPI **[IMessage](https://msdn.microsoft.com/en-us/library/cc842097%28office.14%29.aspx)** object, and can be invoked only via the **[IUnknown](https://msdn.microsoft.com/en-us/library/ms680509%28VS.85%29.aspx)** interface. The property is accessible to programs written in languages such as C or C++ that support **IUnknown** . **MAPIOBJECT** is not available through the **[IDispatch](https://msdn.microsoft.com/en-us/library/ms221608.aspx)** interface. Development languages such as Visual Basic for Applications (VBA), Visual C#, and Visual Basic support the **IDispatch** interface and not **IUnknown** , and therefore, they cannot access **MAPIOBJECT** . If other properties or methods of the parent item are accessed in this event, Outlook raises an error.
+The **MAPIOBJECT** property is a hidden property in the Outlook object model. This property provides access to the underlying MAPI **[IMessage](https://msdn.microsoft.com/library/cc842097%28office.14%29.aspx)** object, and can be invoked only via the **[IUnknown](https://msdn.microsoft.com/library/ms680509%28VS.85%29.aspx)** interface. The property is accessible to programs written in languages such as C or C++ that support **IUnknown** . **MAPIOBJECT** is not available through the **[IDispatch](https://msdn.microsoft.com/library/ms221608.aspx)** interface. Development languages such as Visual Basic for Applications (VBA), Visual C#, and Visual Basic support the **IDispatch** interface and not **IUnknown** , and therefore, they cannot access **MAPIOBJECT** . If other properties or methods of the parent item are accessed in this event, Outlook raises an error.
-The object obtained from the **MAPIOBJECT** property in this event must contain all the changes persisted by Outlook. The implementer can call the **[SaveChanges](https://msdn.microsoft.com/en-us/library/cc842181%28office.14%29.aspx)** method on the **IMessage** object to persist changes to the underlying **IMessage** object represented by **MAPIOBJECT** , and Outlook will not revert those changes.
+The object obtained from the **MAPIOBJECT** property in this event must contain all the changes persisted by Outlook. The implementer can call the **[SaveChanges](https://msdn.microsoft.com/library/cc842181%28office.14%29.aspx)** method on the **IMessage** object to persist changes to the underlying **IMessage** object represented by **MAPIOBJECT** , and Outlook will not revert those changes.
Implementers must release the object obtained from the **MAPIOBJECT** property in the event before the event completes. Attempting to use that object outside the context of the event is unsupported and will lead to unpredictable behavior.
diff --git a/api/Outlook.DocumentItem.BeforeRead.md b/api/Outlook.DocumentItem.BeforeRead.md
index 8482213cd7f..3363747bc5a 100644
--- a/api/Outlook.DocumentItem.BeforeRead.md
+++ b/api/Outlook.DocumentItem.BeforeRead.md
@@ -35,9 +35,9 @@ Only the following members of the item object can be accessed in the **BeforeRe
- **MAPIOBJECT**
-The **MAPIOBJECT** property is a hidden property in the Outlook object model. This property provides access to the underlying MAPI **[IMessage](https://msdn.microsoft.com/en-us/library/cc842097%28office.14%29.aspx)** object, and can be invoked only via the **[IUnknown](https://msdn.microsoft.com/en-us/library/ms680509%28VS.85%29.aspx)** interface. The property is accessible to programs written in languages such as C or C++ that support **IUnknown** . **MAPIOBJECT** is not available through the **[IDispatch](https://msdn.microsoft.com/en-us/library/ms221608.aspx)** interface. Development languages such as Visual Basic for Applications (VBA), Visual C#, and Visual Basic support the **IDispatch** interface and not **IUnknown** , and therefore, they cannot access **MAPIOBJECT** . If other properties or methods of the parent item are accessed in this event, Outlook raises an error.
+The **MAPIOBJECT** property is a hidden property in the Outlook object model. This property provides access to the underlying MAPI **[IMessage](https://msdn.microsoft.com/library/cc842097%28office.14%29.aspx)** object, and can be invoked only via the **[IUnknown](https://msdn.microsoft.com/library/ms680509%28VS.85%29.aspx)** interface. The property is accessible to programs written in languages such as C or C++ that support **IUnknown** . **MAPIOBJECT** is not available through the **[IDispatch](https://msdn.microsoft.com/library/ms221608.aspx)** interface. Development languages such as Visual Basic for Applications (VBA), Visual C#, and Visual Basic support the **IDispatch** interface and not **IUnknown** , and therefore, they cannot access **MAPIOBJECT** . If other properties or methods of the parent item are accessed in this event, Outlook raises an error.
-If the implementer accesses the underlying **IMessage** object and changes properties on that object, Outlook will render that item reflecting the changes to the **IMessage** object. The implementer does not have to call **[SaveChanges](https://msdn.microsoft.com/en-us/library/cc842181%28office.14%29.aspx)** on the **IMessage** object to cause the changes to be reflected in Outlook.
+If the implementer accesses the underlying **IMessage** object and changes properties on that object, Outlook will render that item reflecting the changes to the **IMessage** object. The implementer does not have to call **[SaveChanges](https://msdn.microsoft.com/library/cc842181%28office.14%29.aspx)** on the **IMessage** object to cause the changes to be reflected in Outlook.
Implementers must release the object obtained from the **MAPIOBJECT** property in the event before the event completes. Attempting to use that object outside the context of the event is unsupported and will lead to unpredictable behavior.
diff --git a/api/Outlook.ExchangeUser.GetPicture.md b/api/Outlook.ExchangeUser.GetPicture.md
index d4c256b54bf..7c37e280034 100644
--- a/api/Outlook.ExchangeUser.GetPicture.md
+++ b/api/Outlook.ExchangeUser.GetPicture.md
@@ -13,7 +13,7 @@ ms.date: 06/08/2017
# ExchangeUser.GetPicture Method (Outlook)
-Obtains an **[IPictureDisp](https://msdn.microsoft.com/en-us/library/ms680762%28VS.85%29.aspx)** object that represents the picture of the Microsoft Exchange user that is displayed in Microsoft Outlook.
+Obtains an **[IPictureDisp](https://msdn.microsoft.com/library/ms680762%28VS.85%29.aspx)** object that represents the picture of the Microsoft Exchange user that is displayed in Microsoft Outlook.
## Syntax
@@ -34,7 +34,7 @@ The picture of the Exchange user is stored in Active Directory and displayed in
If the picture does not exist for the user, **GetPicture** returns **Null** (**Nothing** for Visual Basic).
-You can only call **GetPicture** from code that runs in-process as Outlook. An **StdPicture** object cannot be marshaled across process boundaries. If you attempt to call **GetPicture** from out-of-process code, an exception occurs. For more information, see[An automation server cannot pass a pointer to the picture object's IPictureDisp implementation across process boundaries](https://support.microsoft.com/kb/150034).
+You can only call **GetPicture** from code that runs in-process as Outlook. An **StdPicture** object cannot be marshaled across process boundaries. If you attempt to call **GetPicture** from out-of-process code, an exception occurs. For more information, see [An automation server cannot pass a pointer to the picture object's IPictureDisp implementation across process boundaries](https://support.microsoft.com/kb/150034).
## See also
diff --git a/api/Outlook.Folder.GetCustomIcon.md b/api/Outlook.Folder.GetCustomIcon.md
index a88b42b36f5..726e3c6c055 100644
--- a/api/Outlook.Folder.GetCustomIcon.md
+++ b/api/Outlook.Folder.GetCustomIcon.md
@@ -13,7 +13,7 @@ ms.date: 06/08/2017
# Folder.GetCustomIcon Method (Outlook)
-Returns an **[IPictureDisp](https://msdn.microsoft.com/en-us/library/ms680762%28VS.85%29.aspx)** object that represents the custom icon for the folder.
+Returns an **[IPictureDisp](https://msdn.microsoft.com/library/ms680762%28VS.85%29.aspx)** object that represents the custom icon for the folder.
## Syntax
@@ -45,7 +45,7 @@ The returned **IPictureDisp** object has its **Type** property equal to **PICTY
- Hidden folders
-You can only call **GetCustomIcon** from code that runs in-process as Outlook. An **IPictureDisp** object cannot be marshaled across process boundaries. If you attempt to call **GetCustomIcon** from out-of-process code, an exception occurs. For more information, see[An automation server cannot pass a pointer to the picture object's IPictureDisp implementation across process boundaries](https://support.microsoft.com/kb/150034).
+You can only call **GetCustomIcon** from code that runs in-process as Outlook. An **IPictureDisp** object cannot be marshaled across process boundaries. If you attempt to call **GetCustomIcon** from out-of-process code, an exception occurs. For more information, see [An automation server cannot pass a pointer to the picture object's IPictureDisp implementation across process boundaries](https://support.microsoft.com/kb/150034).
## See also
diff --git a/api/Outlook.Folder.GetTable.md b/api/Outlook.Folder.GetTable.md
index 30791aa83fd..86ccb83f77f 100644
--- a/api/Outlook.Folder.GetTable.md
+++ b/api/Outlook.Folder.GetTable.md
@@ -41,9 +41,9 @@ A **Table** that contains items in the parent **[Folder](Outlook.Folder.md)** t
If _Filter_ is a blank string or the _Filter_ parameter is omitted, **GetTable** returns a **Table** with rows representing all the items in the **Folder** . If _Filter_ is a blank string or the _Filter_ parameter is omitted and _TableContents_ is **olHiddenItems** , **GetTable** returns a **Table** with rows representing all the hidden items in the **Folder** .
-For more information on filters, see [Filtering Items](../outlook/How-to/Search-and-Filter/filtering-items.md) and[Referencing Properties by Namespace](../outlook/How-to/Navigation/referencing-properties-by-namespace.md).
+For more information on filters, see [Filtering Items](../outlook/How-to/Search-and-Filter/filtering-items.md) and [Referencing Properties by Namespace](../outlook/How-to/Navigation/referencing-properties-by-namespace.md).
- **GetTable** returns a **Table** with the default column set for the folder type of the parent **Folder** . To modify the default column set, use the **[Add](Outlook.Columns.Add.md)** , **[Remove](Outlook.Columns.Remove.md)** , or **[RemoveAll](Outlook.Columns.RemoveAll.md)** methods of the **[Columns](Outlook.Columns.md)** collection object. When _TableContents_ is **olHiddenItems** , the default column set is always the default column set for a mail folder even though the parent **Folder** might be, for example, a Contacts folder. For more information on default column sets, see[Default Properties Displayed in a Table Object](../outlook/How-to/Search-and-Filter/default-properties-displayed-in-a-table-object.md).
+ **GetTable** returns a **Table** with the default column set for the folder type of the parent **Folder** . To modify the default column set, use the **[Add](Outlook.Columns.Add.md)** , **[Remove](Outlook.Columns.Remove.md)** , or **[RemoveAll](Outlook.Columns.RemoveAll.md)** methods of the **[Columns](Outlook.Columns.md)** collection object. When _TableContents_ is **olHiddenItems** , the default column set is always the default column set for a mail folder even though the parent **Folder** might be, for example, a Contacts folder. For more information on default column sets, see [Default Properties Displayed in a Table Object](../outlook/How-to/Search-and-Filter/default-properties-displayed-in-a-table-object.md).
You can use **[Table.Restrict](Outlook.Table.Restrict.md)** to apply subsequent filters to a **Table** that is based on the **Folder** object.
diff --git a/api/Outlook.Folder.SetCustomIcon.md b/api/Outlook.Folder.SetCustomIcon.md
index e12d1906e81..f5f60281ee8 100644
--- a/api/Outlook.Folder.SetCustomIcon.md
+++ b/api/Outlook.Folder.SetCustomIcon.md
@@ -29,7 +29,7 @@ Sets a custom icon that is specified by _Picture_ for the folder.
|**Name**|**Required/Optional**|**Data Type**|**Description**|
|:-----|:-----|:-----|:-----|
-| _Picture_|Required| **[IPictureDisp](https://msdn.microsoft.com/en-us/library/ms680762%28VS.85%29.aspx)**|Specifies the custom icon for the folder.|
+| _Picture_|Required| **[IPictureDisp](https://msdn.microsoft.com/library/ms680762%28VS.85%29.aspx)**|Specifies the custom icon for the folder.|
## Remarks
@@ -48,7 +48,7 @@ You can set a custom icon for a search folder and for all folders that do not re
- Hidden folders
-You can only call **SetCustomIcon** from code that runs in-process as Outlook. An **IPictureDisp** object cannot be marshaled across process boundaries. If you attempt to call **SetCustomIcon** from out-of-process code, an exception will occur. For more details, see[An automation server cannot pass a pointer to the picture object's IPictureDisp implementation across process boundaries](https://support.microsoft.com/kb/150034).
+You can only call **SetCustomIcon** from code that runs in-process as Outlook. An **IPictureDisp** object cannot be marshaled across process boundaries. If you attempt to call **SetCustomIcon** from out-of-process code, an exception will occur. For more details, see [An automation server cannot pass a pointer to the picture object's IPictureDisp implementation across process boundaries](https://support.microsoft.com/kb/150034).
The custom folder icon that this method provides does not persist beyond the running Outlook session. Add-ins therefore must set the custom folder icon every time that Outlook boots.
diff --git a/api/Outlook.FormRegion.DisplayName.md b/api/Outlook.FormRegion.DisplayName.md
index c3d1accb389..c15f667ee32 100644
--- a/api/Outlook.FormRegion.DisplayName.md
+++ b/api/Outlook.FormRegion.DisplayName.md
@@ -25,7 +25,7 @@ Returns a **String** representing the display name of the form region. Read-onl
## Remarks
-The display name is optional for a form region. If you have defined a value for the
|
+| [MDSCHEMA_CUBES](https://msdn.microsoft.com/library/aa179343.aspx)|IS_DRILLTHROUGH_ENABLED|TRUE|If set to TRUE, the drill-through (Show Details) feature is enabled for cells in the OLAP PivotTable values area.|
+| [MDSCHEMA_HIERARCHIES](https://msdn.microsoft.com/library/aa179350.aspx)|STRUCTURE|MD_STRUCTURE_UNBALANCED|Excel has special handling of filtering for unbalanced hierarchies, so these are marked as such for control purposes.|
+| [MDSCHEMA_HIERARCHIES](https://msdn.microsoft.com/library/ms126062.aspx)|HIERARCHY_ORIGIN|MD_ORIGIN_ATTRIBUTE set and not MD_ORIGIN_USER_DEFINED|Excel has special handling of attribute hierarchies in OLAP PivotTables, so attribute hierarchies are marked as such.|
+| [MDSCHEMA_HIERARCHIES](https://msdn.microsoft.com/library/ms126062.aspx)|HIERARCHY_DISPLAY_FOLDER||Based on this property, the PivotTable Field List displays hierarchies in folders under their dimensions.|
+| [MDSCHEMA_MEASUREGROUPS](https://msdn.microsoft.com/library/ms126178.aspx)|MEASUREGROUP_NAME|| **Measures** are listed in a folder representing their measure group in the PivotTable Field List.|
+| [MDSCHEMA_MEASUREGROUPS](https://msdn.microsoft.com/library/ms126178.aspx)|MEASUREGROUP_CAPTION|| **Measures** are listed in a folder representing their measure group with this caption in the PivotTable Field List.|
+| [MDSCHEMA_SETS](https://msdn.microsoft.com/library/ms126290.aspx)|SET_DISPLAY_FOLDER||Excel reads the display folder property to enable it to place sets in display folders in the PivotTable Field List.|
+| [MDSCHEMA_SETS](https://msdn.microsoft.com/library/ms126290.aspx)|SET_CAPTION||Excel reads the set caption for displaying in the PivotTable report and in the PivotTable Field List.|
+| [MDSCHEMA_KPIS](https://msdn.microsoft.com/library/ms126258.aspx)|KPI_DISPLAY_FOLDER||KPIs (key performance indicators) defined on the server are listed in the PivotTable field list, and the components (value, goal, status, and trend) can be added to the values area. Excel reads this property to place the KPI in the correct display folder in the PivotTable Field List.|
+| [MDSCHEMA_KPIS](https://msdn.microsoft.com/library/ms126258.aspx)|KPI_PARENT_KPI_NAME||Excel reads this property to place child KPIs in subfolders under their parent KPI in the PivotTable Field List (if display folders are defined, those are used instead).|
+| [MDSCHEMA_KPIS](https://msdn.microsoft.com/library/ms126258.aspx)|KPI_TREND_GRAPHIC||Excel reads this property and, based on the value, maps it to the closest conditional formatting icon set in Excel when Trend is added to the PivotTable.|
+| [MDSCHEMA_KPIS](https://msdn.microsoft.com/library/ms126258.aspx)|KPI_STATUS_GRAPHIC||Excel reads this property and, based on the value, maps it to the closest conditional formatting icon set in Excel when Status is added to the PivotTable.|
+| [MDSCHEMA_ACTIONS](https://msdn.microsoft.com/library/ms126032.aspx)|||Additional Actions feature. Excel exposes server-defined actions in the shortcut menu of an OLAP PivotTable report when actions exist on the server for the selected context.|
+| [MDSCHEMA_MEASURES](https://msdn.microsoft.com/library/ms126250.aspx)|MEASURE_DISPLAY_FOLDER||Read by Excel so it can place measures in the correct display folder in the PivotTable Field List.|
+| [MDSCHEMA_MEASURES](https://msdn.microsoft.com/library/ms126250.aspx)|EXPRESSION||Read by Excel to determine whether a measure is calculated. If it is a string and not empty, Excel considers it a calculated measure.|
+| [MDSCHEMA_PROPERTIES](https://msdn.microsoft.com/library/ms126309.aspx)|PROPERTY_NAME|"MEMBER_VALUE" This schema also used for getting regular member properties. The "MEMBER_VALUE" value is a special case, but there are other usage.|Excel gets the member value property of the key attribute in a dimension by restricting to "MEMBER_VALUE" in the PROPERTY_NAME column.If the data type (DATA_TYPE) of the MEMBER_VALUE property of the key attribute of a Time dimension is **Date**, the PivotTable exposes date filtering instead of label filtering. The actual date filtering is done based on the member value property of the key independent of which hierarchy of that dimension is filtered.**Note** Date filtering requires support for subselects (see MDPROP_MDX_SUBQUERIES above).
|
|MDSCHEMA_DISCOVER|RESTRICTIONS||Depending on usage, Excel restricts on hierarchies, levels, or measures when reading the MDSCHEMA_DISCOVER rowset to get the RESTRICTIONS. Excel reads schema row by row and finds list of restrictions for all other relevant schemas to obtain the index of the restrictions that affect Excel. The RESTRICTIONS column has a chapter handle to another row set from which Excel looks at the NAME column. In the NAME column, Excel expects to find the strings HIERARCHY_VISIBILITY, MEASURE_VISIBILITY, LEVEL_VISIBILITY (if the provider supports restriction on visibility). If Excel cannot find **Note** Date filtering requires support for subselects (see MDPROP_MDX_SUBQUERIES above).
Excel uses this property to determine which currency symbol to use when formatting values with `FORMAT_STRING` set to **Currency**.
[Retrieving Cell Properties](https://msdn.microsoft.com/en-us/library/ms715853.aspx)
Example of calculated measure definition specifying the LANGUAGE property for the client application to pick up:
```CREATE MEMBER CURRENTCUBE.[Measures].[Internet Gross Profit]```
```AS```
```[Measures].[Internet Sales Amount]```
```-```
```[Measures].[Internet Total Product Cost], ```
```FORMAT_STRING = "Currency",```
```BACK_COLOR = 12615680 /*R=0, G=128, B=192*/,```
```FORE_COLOR = 65408 /*R=128, G=255, B=0*/, ```
```FONT_FLAGS = 3 /*Bold, Italic*/, ```
```NON_EMPTY_BEHAVIOR = { [Internet Sales Amount],[Internet Total Product Cost] },```
```VISIBLE = 1,```
```LANGUAGE = 1033 /*Telling client application to display US currency symbol*/;```
| +| **Language**|LCID for determining how to interpret `FORMAT_STRING` when it is **CURRENCY**.
Excel uses this property to determine which currency symbol to use when formatting values with `FORMAT_STRING` set to **Currency**.
[Retrieving Cell Properties](https://msdn.microsoft.com/library/ms715853.aspx)
Example of calculated measure definition specifying the LANGUAGE property for the client application to pick up:
```CREATE MEMBER CURRENTCUBE.[Measures].[Internet Gross Profit]```
```AS```
```[Measures].[Internet Sales Amount]```
```-```
```[Measures].[Internet Total Product Cost], ```
```FORMAT_STRING = "Currency",```
```BACK_COLOR = 12615680 /*R=0, G=128, B=192*/,```
```FORE_COLOR = 65408 /*R=128, G=255, B=0*/, ```
```FONT_FLAGS = 3 /*Bold, Italic*/, ```
```NON_EMPTY_BEHAVIOR = { [Internet Sales Amount], [Internet Total Product Cost] },```
```VISIBLE = 1,```
```LANGUAGE = 1033 /*Telling client application to display US currency symbol*/;```
| diff --git a/outlook/How-to/Items-Folders-and-Stores/import-appointment-xml-data-into-outlook-appointment-objects-outlook.md b/outlook/How-to/Items-Folders-and-Stores/import-appointment-xml-data-into-outlook-appointment-objects-outlook.md index 14d6f418a95..d0f343c8d5b 100644 --- a/outlook/How-to/Items-Folders-and-Stores/import-appointment-xml-data-into-outlook-appointment-objects-outlook.md +++ b/outlook/How-to/Items-Folders-and-Stores/import-appointment-xml-data-into-outlook-appointment-objects-outlook.md @@ -15,8 +15,7 @@ This topic shows how to read appointment data formatted in XML, save the data to |  -|Helmut Obertanner provided the following code samples. Helmut is a [Microsoft Most Valuable Professional](https://mvp.microsoft.com/en-us/default.aspx -) with expertise in Microsoft Office development tools in Microsoft Visual Studio and Microsoft Office Outlook.| +|Helmut Obertanner provided the following code samples. Helmut is a [Microsoft Most Valuable Professional](https://mvp.microsoft.com/) with expertise in Microsoft Office development tools in Microsoft Visual Studio and Microsoft Office Outlook.| diff --git a/outlook/How-to/Items-Folders-and-Stores/send-an-e-mail-given-the-smtp-address-of-an-account-outlook.md b/outlook/How-to/Items-Folders-and-Stores/send-an-e-mail-given-the-smtp-address-of-an-account-outlook.md index a642c2fb215..cc5bb4743f2 100644 --- a/outlook/How-to/Items-Folders-and-Stores/send-an-e-mail-given-the-smtp-address-of-an-account-outlook.md +++ b/outlook/How-to/Items-Folders-and-Stores/send-an-e-mail-given-the-smtp-address-of-an-account-outlook.md @@ -15,8 +15,7 @@ This topic shows how to create an e-mail and send it from a Microsoft Outlook ac |  -|Helmut Obertanner provided the following code samples. Helmut is a [Microsoft Most Valuable Professional](https://mvp.microsoft.com/en-us/default.aspx -) with expertise in Microsoft Office development tools in Microsoft Visual Studio and Microsoft Office Outlook.| +|Helmut Obertanner provided the following code samples. Helmut is a [Microsoft Most Valuable Professional](https://mvp.microsoft.com/) with expertise in Microsoft Office development tools in Microsoft Visual Studio and Microsoft Office Outlook.| diff --git a/outlook/How-to/Office-Fluent-UI-Extensibility/customizing-shortcut-menus.md b/outlook/How-to/Office-Fluent-UI-Extensibility/customizing-shortcut-menus.md index 36610137d29..70887c5ccae 100644 --- a/outlook/How-to/Office-Fluent-UI-Extensibility/customizing-shortcut-menus.md +++ b/outlook/How-to/Office-Fluent-UI-Extensibility/customizing-shortcut-menus.md @@ -52,7 +52,7 @@ You can use Office Fluent UI extensibility to customize the following types of s - View and view user interface shortcut menus. -For more information about customizing shortcut menus, including examples, see [Extending the User Interface in Outlook 2010](https://msdn.microsoft.com/en-us/library/ee692172%28office.14%29.aspx) on the MSDN Web site. +For more information about customizing shortcut menus, including examples, see [Extending the User Interface in Outlook 2010](https://msdn.microsoft.com/library/ee692172%28office.14%29.aspx) on the MSDN Web site. ## See also diff --git a/outlook/How-to/Office-Fluent-UI-Extensibility/office-fluent-user-interface-extensibility-for-outlook.md b/outlook/How-to/Office-Fluent-UI-Extensibility/office-fluent-user-interface-extensibility-for-outlook.md index 9eaaad4ced6..6da013af987 100644 --- a/outlook/How-to/Office-Fluent-UI-Extensibility/office-fluent-user-interface-extensibility-for-outlook.md +++ b/outlook/How-to/Office-Fluent-UI-Extensibility/office-fluent-user-interface-extensibility-for-outlook.md @@ -26,7 +26,7 @@ Microsoft Office Fluent user interface (UI) extensibility refers to the mechanis Unlike other Office applications such as Microsoft Word or Microsoft Excel, you cannot customize the ribbon by using Visual Basic for Applications in Outlook. To programmatically customize the UI in Outlook, you must write an add-in. You can update an existing add-in or write an add-in that only targets Outlook. The add-in can be native or managed. Outlook does not support the customization of the ribbon by using Microsoft Office Open XML Format Files. -For more information and examples of different ways to customize the Outlook UI, see [Extending the User Interface in Outlook 2010](https://msdn.microsoft.com/en-us/library/ee692172%28office.14%29.aspx) on the MSDN Web site. +For more information and examples of different ways to customize the Outlook UI, see [Extending the User Interface in Outlook 2010](https://msdn.microsoft.com/library/ee692172%28office.14%29.aspx) on the MSDN Web site. ## See also diff --git a/outlook/How-to/Office-Fluent-UI-Extensibility/updating-earlier-code-for-commandbars.md b/outlook/How-to/Office-Fluent-UI-Extensibility/updating-earlier-code-for-commandbars.md index 1e21636fb9a..fffaaa87191 100644 --- a/outlook/How-to/Office-Fluent-UI-Extensibility/updating-earlier-code-for-commandbars.md +++ b/outlook/How-to/Office-Fluent-UI-Extensibility/updating-earlier-code-for-commandbars.md @@ -23,7 +23,7 @@ ms.date: 06/08/2017 Command bars have been deprecated since Outlook 2010. Explorer and inspector windows no longer use menu bars and toolbars. Instead, they use the Microsoft Office Fluent ribbon. Programmatically, although your add-in or VBScript code that customized command bars in an explorer or inspector might still work in Outlook, those who use your solution might not easily find the customizations that appear on the **Add-ins** tab of the customized ribbon in the explorer or inspector. -**Note** To find out more about issues to consider before you upgrade existing solutions, read [Developer Issues When Upgrading Solutions to Outlook 2010](https://msdn.microsoft.com/en-us/library/office/ff864759(v=office.14).aspx). +**Note** To find out more about issues to consider before you upgrade existing solutions, read [Developer Issues When Upgrading Solutions to Outlook 2010](https://msdn.microsoft.com/library/office/ff864759(v=office.14).aspx). Instead of using the **CommandBars** property of the [Explorer](../../../api/Outlook.Explorer.md) and [Inspector](../../../api/Outlook.Inspector.md) objects, use ribbon extensibility to customize the ribbon and to customize any menus and submenus off the ribbon. Ribbon extensibility requires an add-in that implements the [IRibbonExtensibility](../../../api/Office.IRibbonExtensibility.md) interface. diff --git a/outlook/How-to/Security/obtain-and-log-on-to-an-instance-of-outlook.md b/outlook/How-to/Security/obtain-and-log-on-to-an-instance-of-outlook.md index bc8227a3179..b50685ff0a3 100644 --- a/outlook/How-to/Security/obtain-and-log-on-to-an-instance-of-outlook.md +++ b/outlook/How-to/Security/obtain-and-log-on-to-an-instance-of-outlook.md @@ -10,7 +10,7 @@ ms.date: 06/08/2017 This topic shows how to obtain an **[Application](../../../api/Outlook.Application.md)** object that represents an active instance of Outlook, if there is one running on the local computer, or to create a new instance of Outlook, log on to the default profile, and return that instance of Outlook. -Helmut Obertanner provided the following code samples. Helmut is a [Microsoft Most Valuable Professional](https://mvp.microsoft.com/en-us/default.aspx) with expertise in Microsoft Office development tools in Microsoft Visual Studio and Microsoft Office Outlook. +Helmut Obertanner provided the following code samples. Helmut is a [Microsoft Most Valuable Professional](https://mvp.microsoft.com/) with expertise in Microsoft Office development tools in Microsoft Visual Studio and Microsoft Office Outlook. The following managed code samples are written in C# and Visual Basic. To run a .NET Framework managed code sample that needs to call into a Component Object Model (COM), you must use an interop assembly that defines and maps managed interfaces to the COM objects in the object model type library. diff --git a/powerpoint/How-to/use-activex-controls-on-slides.md b/powerpoint/How-to/use-activex-controls-on-slides.md index 30792ba8f30..94f8129f931 100644 --- a/powerpoint/How-to/use-activex-controls-on-slides.md +++ b/powerpoint/How-to/use-activex-controls-on-slides.md @@ -13,7 +13,7 @@ ms.date: 06/08/2017 You can add controls to your slides to provide a sophisticated way to exchange information with the user while a slide show is running. For example, you could use controls on slides to allow viewers of a show designed to be run in a kiosk a way to choose options and then run a custom show based on the viewer's choices. -For general information on adding and working with controls, see [How to: Use ActiveX Controls on Documents](use-activex-controls-on-documents.md) and[How to: Create Custom Dialog Boxes](create-custom-dialog-boxes.md). +For general information on adding and working with controls, see [How to: Use ActiveX Controls on Documents](use-activex-controls-on-documents.md) and [How to: Create Custom Dialog Boxes](create-custom-dialog-boxes.md). Keep the following points in mind when you are working with controls on slides. diff --git a/visio/Concepts/about-connecting-to-data-in-visio.md b/visio/Concepts/about-connecting-to-data-in-visio.md index 89647fedefd..aa9905a4b86 100644 --- a/visio/Concepts/about-connecting-to-data-in-visio.md +++ b/visio/Concepts/about-connecting-to-data-in-visio.md @@ -123,7 +123,7 @@ Just as you can get the connection string associated with a **DataConnection** When you import data, Visio assigns integer row IDs, starting with the number 1, to each data row in the resulting data recordset, based upon the order of rows in the original data source. Visio uses data row IDs to track the rows when they are linked to shapes and when data is refreshed. If you want to access data rows programmatically, you must use these data row IDs. For information about how data-refresh operations affect row order, see [About Linking Shapes to Data](about-linking-shapes-to-data.md). -You can use the **[DataRecordset.GetDataRowIDs](../../api/Visio.DataRecordset.GetDataRowIDs.md)** method to get an array of the IDs of all the rows in a data recordset, where each row represents a single data record. The **GetDataRowIDs** method takes as its parameter a criteria string, which is a string that conforms to the guidelines specified in the ActiveX Data Object (ADO) API for setting the **ADO.Filter** property. By specifying appropriate criteria and using AND and OR operators to separate clauses, you can filter the information in the data recordset to return only certain data recordset rows selectively. To apply no filter (that is, to get all the rows), pass an empty string (""). For more information about criteria strings, see the [Filter Property](https://msdn.microsoft.com/en-us/library/ms676691%28VS.85%29.aspx) topic in the ADO 2.x API Reference. After you retrieve the data-row IDs, you can use the **[DataRecordset.GetRowData](../../api/Visio.DataRecordset.GetRowData.md)** method to get all the data stored in each column in the data row. For more information about data columns, see [About Linking Shapes to Data](about-linking-shapes-to-data.md). +You can use the **[DataRecordset.GetDataRowIDs](../../api/Visio.DataRecordset.GetDataRowIDs.md)** method to get an array of the IDs of all the rows in a data recordset, where each row represents a single data record. The **GetDataRowIDs** method takes as its parameter a criteria string, which is a string that conforms to the guidelines specified in the ActiveX Data Object (ADO) API for setting the **ADO.Filter** property. By specifying appropriate criteria and using AND and OR operators to separate clauses, you can filter the information in the data recordset to return only certain data recordset rows selectively. To apply no filter (that is, to get all the rows), pass an empty string (""). For more information about criteria strings, see the [Filter Property](https://msdn.microsoft.com/library/ms676691%28VS.85%29.aspx) topic in the ADO 2.x API Reference. After you retrieve the data-row IDs, you can use the **[DataRecordset.GetRowData](../../api/Visio.DataRecordset.GetRowData.md)** method to get all the data stored in each column in the data row. For more information about data columns, see [About Linking Shapes to Data](about-linking-shapes-to-data.md). The following sample code shows how to use the **GetDataRowIDs** and **GetRowData** methods to return the row ID of each row and then get the data stored in each column in every row of the data recordset passed in. It uses two nested **For…Next** loops to iterate through all the rows in the recordset and then, for each row, iterate through all the columns in that row. The code displays the information returned in the **Immediate** window. Note that you pass an empty string to the **GetDataRowIDs** method to bypass filtering and get all the rows in the recordset. After you call the procedure, note that the first set of data shown (corresponding to the first data row) contains the headings for all the data columns in the data recordset. diff --git a/visio/Concepts/about-security-settings-and-running-code-in-visio.md b/visio/Concepts/about-security-settings-and-running-code-in-visio.md index 5db5727b636..3faec28c784 100644 --- a/visio/Concepts/about-security-settings-and-running-code-in-visio.md +++ b/visio/Concepts/about-security-settings-and-running-code-in-visio.md @@ -33,8 +33,8 @@ For more information about good security design practices and technologies, sear ## Additional Visio resources -- To learn more about Visio add-ons and COM add-ins, see the MSDN article, [Overview of Add-ons and COM Add-ins in Visio 2007](https://msdn.microsoft.com/en-us/library/bb851468.aspx). +- To learn more about Visio add-ons and COM add-ins, see the MSDN article, [Overview of Add-ons and COM Add-ins in Visio 2007](https://msdn.microsoft.com/library/bb851468.aspx). -- To learn more about the RUNADDON function and the **AddonName** property, see the MSDN article [Changes in the RUNADDON Function and the AddOnName Property for Visio 2002](https://msdn.microsoft.com/en-us/library/aa140368%28office.10%29.aspx). +- To learn more about the RUNADDON function and the **AddonName** property, see the MSDN article [Changes in the RUNADDON Function and the AddOnName Property for Visio 2002](https://msdn.microsoft.com/library/aa140368%28office.10%29.aspx). diff --git a/visio/How-to/use-information-rights-management-for-visio.md b/visio/How-to/use-information-rights-management-for-visio.md index 7cd535ab3ba..e6ad4d9ab6f 100644 --- a/visio/How-to/use-information-rights-management-for-visio.md +++ b/visio/How-to/use-information-rights-management-for-visio.md @@ -31,14 +31,14 @@ To use IRM for Visio, you must install the following: - Visio -- [Windows Rights Management Client](https://www.microsoft.com/en-us/download/details.aspx?id=4909) +- [Windows Rights Management Client](https://www.microsoft.com/download/details.aspx?id=4909) ## Protecting a Visio document -To protect the active document, use the [Permission.Add](https://msdn.microsoft.com/en-us/library/office/ff863139%28v=office.15%29.aspx) method. To check whether a document is protected, use the **Enabled** property of the **Permission** object. +To protect the active document, use the [Permission.Add](https://msdn.microsoft.com/library/office/ff863139%28v=office.15%29.aspx) method. To check whether a document is protected, use the **Enabled** property of the **Permission** object. -To remove protection from the active document, use the [Permission.RemoveAll](https://msdn.microsoft.com/en-us/library/office/ff861135%28v=office.15%29.aspx) method, or use the [UserPermission.Remove](https://msdn.microsoft.com/en-us/library/office/ff864865%28v=office.15%29.aspx) method for each user that has access. +To remove protection from the active document, use the [Permission.RemoveAll](https://msdn.microsoft.com/library/office/ff861135%28v=office.15%29.aspx) method, or use the [UserPermission.Remove](https://msdn.microsoft.com/library/office/ff864865%28v=office.15%29.aspx) method for each user that has access. ## Managing user access to an IRM-protected document @@ -61,11 +61,11 @@ To give permissions on the active document to a specified user, use the **Permi | **msoPermissionObjModel**|A user can access the document programmatically. All users need this permission to work with a protected document or to check their permissions on the document.| | **msoPermissionFullControl**|Full control over the document. All permissions are enabled.| -To check permissions for a user, use the [UserPermission.Permission](https://msdn.microsoft.com/en-us/library/office/ff862094%28v=office.15%29.aspx) property. +To check permissions for a user, use the [UserPermission.Permission](https://msdn.microsoft.com/library/office/ff862094%28v=office.15%29.aspx) property. -To apply permissions by using an administrative policy, use the [Permission.ApplyPolicy](https://msdn.microsoft.com/en-us/library/office/ff864678%28v=office.15%29.aspx) method. Use the **PermissionFromPolicy**, **PolicyName**, and **PolicyDescription** properties to return policy information. +To apply permissions by using an administrative policy, use the [Permission.ApplyPolicy](https://msdn.microsoft.com/library/office/ff864678%28v=office.15%29.aspx) method. Use the **PermissionFromPolicy**, **PolicyName**, and **PolicyDescription** properties to return policy information. -To remove permissions for a specified user, use the [UserPermission.Remove](https://msdn.microsoft.com/en-us/library/office/ff864865%28v=office.15%29.aspx) method. To remove all restrictions on the active document, use the [Permission.RemoveAll](https://msdn.microsoft.com/en-us/library/office/ff861135%28v=office.15%29.aspx) method. +To remove permissions for a specified user, use the [UserPermission.Remove](https://msdn.microsoft.com/library/office/ff864865%28v=office.15%29.aspx) method. To remove all restrictions on the active document, use the [Permission.RemoveAll](https://msdn.microsoft.com/library/office/ff861135%28v=office.15%29.aspx) method. ## Accessing an IRM-protected document diff --git a/word/Concepts/Customizing-Word/frequently-asked-visual-basic-questions.md b/word/Concepts/Customizing-Word/frequently-asked-visual-basic-questions.md index 90e26ca23dc..93ffd01e171 100644 --- a/word/Concepts/Customizing-Word/frequently-asked-visual-basic-questions.md +++ b/word/Concepts/Customizing-Word/frequently-asked-visual-basic-questions.md @@ -57,6 +57,6 @@ ms.date: 06/08/2017 [How do I convert my WordBasic macros to Microsoft Visual Basic?](converting-wordbasic-macros-to-visual-basic.md) - [How do I find the Visual Basic equivalent for a WordBasic command or function?](https://msdn.microsoft.com/en-us/library/office/aa158432%28v=office.10%29.aspx) + [How do I find the Visual Basic equivalent for a WordBasic command or function?](https://msdn.microsoft.com/library/office/aa158432%28v=office.10%29.aspx) diff --git a/word/Concepts/Objects-Properties-Methods/create-custom-bibliography-styles.md b/word/Concepts/Objects-Properties-Methods/create-custom-bibliography-styles.md index 71ff05f3f1a..b460c4b4d09 100644 --- a/word/Concepts/Objects-Properties-Methods/create-custom-bibliography-styles.md +++ b/word/Concepts/Objects-Properties-Methods/create-custom-bibliography-styles.md @@ -525,6 +525,6 @@ This article showed how to create a custom bibliography style in Word, first by - [What's new for Word 2013 developers](../../../api/overview/Word.md) - [Office and Office 365 Developer Blog](https://blogs.msdn.com/b/officedevdocs/) -- [Word for developers website](https://docs.microsoft.com/en-us/office/client-developer/word/word-home) +- [Word for developers website](https://docs.microsoft.com/office/client-developer/word/word-home) diff --git a/word/Concepts/Working-with-Word/working-with-content-controls.md b/word/Concepts/Working-with-Word/working-with-content-controls.md index 7602c9305ed..1dd97724845 100644 --- a/word/Concepts/Working-with-Word/working-with-content-controls.md +++ b/word/Concepts/Working-with-Word/working-with-content-controls.md @@ -36,7 +36,7 @@ The following table shows the objects in the Word object model that relate to co Each of these objects or collections has methods and properties that allow you to work with the content controls both individually and as a collection. Because there are various types of content controls (see the following section "Types of Content Controls"), the **ContentControl** object has members that might not apply to all the different types of content controls. The following table shows those properties and methods of the **ContentControl** object that only apply to certain types of content controls. > [!NOTE] -> For a complete list of all properties and methods of the **ContentControl** object, see [Content Controls](https://msdn.microsoft.com/en-us/library/bb157891.aspx). +> For a complete list of all properties and methods of the **ContentControl** object, see [Content Controls](https://msdn.microsoft.com/library/bb157891.aspx). |**Property/Method**|**Applies To**| |:-----|:-----| From 5b65174bc88e4fd4a155baab4fc85683aa40349b Mon Sep 17 00:00:00 2001 From: Linda Caputo| **Note** |
|---|
| This value is ignored if you are closing a Visual Basic module. The module will be closed, but changes to the module will not be saved. |
| **Note** |
|---|
| If you use the **Nz** function in an expression in a query without using the _valueifnull_ argument, the results will be a zero-length string in the fields that contain null values. |
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Attachment.MouseMove.md b/api/Access.Attachment.MouseMove.md index 3fc104c2d04..d1fdf8de745 100644 --- a/api/Access.Attachment.MouseMove.md +++ b/api/Access.Attachment.MouseMove.md @@ -1,5 +1,5 @@ --- -title: Attachment.MouseMove Event (Access) +title: Attachment.MouseMove event (Access) keywords: vbaac10.chm14030 f1_keywords: - vbaac10.chm14030 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Attachment.MouseMove Event (Access) +# Attachment.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Attachment.MouseUp.md b/api/Access.Attachment.MouseUp.md index 9d7acb89667..d0ba8637ce4 100644 --- a/api/Access.Attachment.MouseUp.md +++ b/api/Access.Attachment.MouseUp.md @@ -1,5 +1,5 @@ --- -title: Attachment.MouseUp Event (Access) +title: Attachment.MouseUp event (Access) keywords: vbaac10.chm14031 f1_keywords: - vbaac10.chm14031 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Attachment.MouseUp Event (Access) +# Attachment.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Attachment.Move.md b/api/Access.Attachment.Move.md index 70929b188a8..00ef9d76650 100644 --- a/api/Access.Attachment.Move.md +++ b/api/Access.Attachment.Move.md @@ -1,5 +1,5 @@ --- -title: Attachment.Move Method (Access) +title: Attachment.Move method (Access) keywords: vbaac10.chm13976 f1_keywords: - vbaac10.chm13976 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Attachment.Move Method (Access) +# Attachment.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.Attachment.Name.md b/api/Access.Attachment.Name.md index bb0a8a5847b..dec99be2135 100644 --- a/api/Access.Attachment.Name.md +++ b/api/Access.Attachment.Name.md @@ -1,5 +1,5 @@ --- -title: Attachment.Name Property (Access) +title: Attachment.Name property (Access) keywords: vbaac10.chm13974 f1_keywords: - vbaac10.chm13974 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.Name Property (Access) +# Attachment.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## See also diff --git a/api/Access.Attachment.OldBorderStyle.md b/api/Access.Attachment.OldBorderStyle.md index a51c5193761..2342fa45e1b 100644 --- a/api/Access.Attachment.OldBorderStyle.md +++ b/api/Access.Attachment.OldBorderStyle.md @@ -1,5 +1,5 @@ --- -title: Attachment.OldBorderStyle Property (Access) +title: Attachment.OldBorderStyle property (Access) keywords: vbaac10.chm13928 f1_keywords: - vbaac10.chm13928 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OldBorderStyle Property (Access) +# Attachment.OldBorderStyle property (Access) You can use this property to set or return the unedited value of the **BorderStyle** property for a form or control. This property is useful if you need to revert to an unedited or preferred border style. Read/write **Byte**. ## Syntax - _expression_. `OldBorderStyle` +_expression_. `OldBorderStyle` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.OldValue.md b/api/Access.Attachment.OldValue.md index 878f62eb6e0..665a39554a3 100644 --- a/api/Access.Attachment.OldValue.md +++ b/api/Access.Attachment.OldValue.md @@ -1,5 +1,5 @@ --- -title: Attachment.OldValue Property (Access) +title: Attachment.OldValue property (Access) keywords: vbaac10.chm13905 f1_keywords: - vbaac10.chm13905 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OldValue Property (Access) +# Attachment.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.OnAttachmentCurrent.md b/api/Access.Attachment.OnAttachmentCurrent.md index 41531f112e3..663ebb6c4d2 100644 --- a/api/Access.Attachment.OnAttachmentCurrent.md +++ b/api/Access.Attachment.OnAttachmentCurrent.md @@ -1,5 +1,5 @@ --- -title: Attachment.OnAttachmentCurrent Property (Access) +title: Attachment.OnAttachmentCurrent property (Access) keywords: vbaac10.chm13953,vbaac10.chm5830 f1_keywords: - vbaac10.chm13953,vbaac10.chm5830 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OnAttachmentCurrent Property (Access) +# Attachment.OnAttachmentCurrent property (Access) Sets or gets the value of the **On Attachment Current** box in the Properties window of the specified **Attachment**. Read/write. ## Syntax - _expression_. `OnAttachmentCurrent` +_expression_. `OnAttachmentCurrent` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.OnChange.md b/api/Access.Attachment.OnChange.md index 73289ab2eac..e8bbf277674 100644 --- a/api/Access.Attachment.OnChange.md +++ b/api/Access.Attachment.OnChange.md @@ -1,5 +1,5 @@ --- -title: Attachment.OnChange Property (Access) +title: Attachment.OnChange property (Access) keywords: vbaac10.chm13942 f1_keywords: - vbaac10.chm13942 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OnChange Property (Access) +# Attachment.OnChange property (Access) Sets or returns the value of the **On Change** box in the **Properties** window of one of the objects in the Applies To list. Read/write **String**. ## Syntax - _expression_. `OnChange` +_expression_. `OnChange` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Change** event occurs when the contents of a text box or the text portion The **OnChange** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Change** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Attachment.OnClick.md b/api/Access.Attachment.OnClick.md index 2fb0655d75b..2e3f678470e 100644 --- a/api/Access.Attachment.OnClick.md +++ b/api/Access.Attachment.OnClick.md @@ -1,5 +1,5 @@ --- -title: Attachment.OnClick Property (Access) +title: Attachment.OnClick property (Access) keywords: vbaac10.chm13945 f1_keywords: - vbaac10.chm13945 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OnClick Property (Access) +# Attachment.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Attachment.OnDblClick.md b/api/Access.Attachment.OnDblClick.md index 53fbd5563e9..5349d54795a 100644 --- a/api/Access.Attachment.OnDblClick.md +++ b/api/Access.Attachment.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: Attachment.OnDblClick Property (Access) +title: Attachment.OnDblClick property (Access) keywords: vbaac10.chm13946 f1_keywords: - vbaac10.chm13946 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OnDblClick Property (Access) +# Attachment.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Attachment.OnDirty.md b/api/Access.Attachment.OnDirty.md index 246c6950c15..a7a2cf2228c 100644 --- a/api/Access.Attachment.OnDirty.md +++ b/api/Access.Attachment.OnDirty.md @@ -1,5 +1,5 @@ --- -title: Attachment.OnDirty Property (Access) +title: Attachment.OnDirty property (Access) keywords: vbaac10.chm13941 f1_keywords: - vbaac10.chm13941 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OnDirty Property (Access) +# Attachment.OnDirty property (Access) Sets or returns the value of the **On Dirty** box in the **Properties** window of a form or report. Read/write **String**. ## Syntax - _expression_. `OnDirty` +_expression_. `OnDirty` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Dirty** event occurs when the contents of a form or the text portion of a The **OnClose** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dirty** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Attachment.OnEnter.md b/api/Access.Attachment.OnEnter.md index ea76a1f5c31..df2b552a11f 100644 --- a/api/Access.Attachment.OnEnter.md +++ b/api/Access.Attachment.OnEnter.md @@ -1,5 +1,5 @@ --- -title: Attachment.OnEnter Property (Access) +title: Attachment.OnEnter property (Access) keywords: vbaac10.chm13939 f1_keywords: - vbaac10.chm13939 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OnEnter Property (Access) +# Attachment.OnEnter property (Access) Sets or returns the value of the **On Enter** box in the **Properties** window of the specified object. Read/write **String**. . ## Syntax - _expression_. `OnEnter` +_expression_. `OnEnter` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Enter** event occurs before a control actually receives the focus from a The **OnEnter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Enter** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Attachment.OnExit.md b/api/Access.Attachment.OnExit.md index 81ce28b7deb..a6498ebff95 100644 --- a/api/Access.Attachment.OnExit.md +++ b/api/Access.Attachment.OnExit.md @@ -1,5 +1,5 @@ --- -title: Attachment.OnExit Property (Access) +title: Attachment.OnExit property (Access) keywords: vbaac10.chm13940 f1_keywords: - vbaac10.chm13940 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OnExit Property (Access) +# Attachment.OnExit property (Access) Sets or returns the value of the **On Exit** box in the **Properties** window of the specified object. Read/write **String**. . ## Syntax - _expression_. `OnExit` +_expression_. `OnExit` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Exit** event occurs just before a control loses the focus to another cont The **OnExit** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Exit** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Attachment.OnGotFocus.md b/api/Access.Attachment.OnGotFocus.md index df7ad33863e..d38e1d719fc 100644 --- a/api/Access.Attachment.OnGotFocus.md +++ b/api/Access.Attachment.OnGotFocus.md @@ -1,5 +1,5 @@ --- -title: Attachment.OnGotFocus Property (Access) +title: Attachment.OnGotFocus property (Access) keywords: vbaac10.chm13943 f1_keywords: - vbaac10.chm13943 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OnGotFocus Property (Access) +# Attachment.OnGotFocus property (Access) Sets or returns the value of the **On Got Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnGotFocus` +_expression_. `OnGotFocus` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks @@ -32,7 +32,7 @@ The **GotFocus** event occurs when the object receives the focus. The **OnGotFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Got Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Attachment.OnKeyDown.md b/api/Access.Attachment.OnKeyDown.md index fbb54cbb352..40c7a6bb5c4 100644 --- a/api/Access.Attachment.OnKeyDown.md +++ b/api/Access.Attachment.OnKeyDown.md @@ -1,5 +1,5 @@ --- -title: Attachment.OnKeyDown Property (Access) +title: Attachment.OnKeyDown property (Access) keywords: vbaac10.chm13950 f1_keywords: - vbaac10.chm13950 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OnKeyDown Property (Access) +# Attachment.OnKeyDown property (Access) Sets or returns the value of the **On Key Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyDown` +_expression_. `OnKeyDown` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyDown** event occurs when a user presses a key while a form or control The **OnKeyDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Attachment.OnKeyPress.md b/api/Access.Attachment.OnKeyPress.md index 219263dd104..7d6d523bddd 100644 --- a/api/Access.Attachment.OnKeyPress.md +++ b/api/Access.Attachment.OnKeyPress.md @@ -1,5 +1,5 @@ --- -title: Attachment.OnKeyPress Property (Access) +title: Attachment.OnKeyPress property (Access) keywords: vbaac10.chm13952 f1_keywords: - vbaac10.chm13952 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OnKeyPress Property (Access) +# Attachment.OnKeyPress property (Access) Sets or returns the value of the **On Key Press** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyPress` +_expression_. `OnKeyPress` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyPress** event occurs when a user presses a key while a form or control The **OnKeyPress** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Press** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Attachment.OnKeyUp.md b/api/Access.Attachment.OnKeyUp.md index 5029e7efe9d..a3ad9b239ba 100644 --- a/api/Access.Attachment.OnKeyUp.md +++ b/api/Access.Attachment.OnKeyUp.md @@ -1,5 +1,5 @@ --- -title: Attachment.OnKeyUp Property (Access) +title: Attachment.OnKeyUp property (Access) keywords: vbaac10.chm13951 f1_keywords: - vbaac10.chm13951 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OnKeyUp Property (Access) +# Attachment.OnKeyUp property (Access) Sets or returns the value of the **On Key Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyUp` +_expression_. `OnKeyUp` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyUp** event occurs when a user presses a key while a form or control ha The **OnKeyUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Attachment.OnLostFocus.md b/api/Access.Attachment.OnLostFocus.md index b15abe8627a..519970bc30a 100644 --- a/api/Access.Attachment.OnLostFocus.md +++ b/api/Access.Attachment.OnLostFocus.md @@ -1,5 +1,5 @@ --- -title: Attachment.OnLostFocus Property (Access) +title: Attachment.OnLostFocus property (Access) keywords: vbaac10.chm13944 f1_keywords: - vbaac10.chm13944 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OnLostFocus Property (Access) +# Attachment.OnLostFocus property (Access) Sets or returns the value of the **On Lost Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnLostFocus` +_expression_. `OnLostFocus` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks @@ -32,7 +32,7 @@ The **LostFocus** event occurs when the object loses the focus. The **OnLostFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Lost Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Attachment.OnMouseDown.md b/api/Access.Attachment.OnMouseDown.md index c22072fe2c2..0c99315b95a 100644 --- a/api/Access.Attachment.OnMouseDown.md +++ b/api/Access.Attachment.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: Attachment.OnMouseDown Property (Access) +title: Attachment.OnMouseDown property (Access) keywords: vbaac10.chm13947 f1_keywords: - vbaac10.chm13947 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OnMouseDown Property (Access) +# Attachment.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Attachment.OnMouseMove.md b/api/Access.Attachment.OnMouseMove.md index 72b293342f2..54fffa67fd7 100644 --- a/api/Access.Attachment.OnMouseMove.md +++ b/api/Access.Attachment.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: Attachment.OnMouseMove Property (Access) +title: Attachment.OnMouseMove property (Access) keywords: vbaac10.chm13948 f1_keywords: - vbaac10.chm13948 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OnMouseMove Property (Access) +# Attachment.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Attachment.OnMouseUp.md b/api/Access.Attachment.OnMouseUp.md index ffc0f421154..8edfbbc2c7a 100644 --- a/api/Access.Attachment.OnMouseUp.md +++ b/api/Access.Attachment.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: Attachment.OnMouseUp Property (Access) +title: Attachment.OnMouseUp property (Access) keywords: vbaac10.chm13949 f1_keywords: - vbaac10.chm13949 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.OnMouseUp Property (Access) +# Attachment.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Attachment.Parent.md b/api/Access.Attachment.Parent.md index db253baf09a..ac30583c43e 100644 --- a/api/Access.Attachment.Parent.md +++ b/api/Access.Attachment.Parent.md @@ -1,5 +1,5 @@ --- -title: Attachment.Parent Property (Access) +title: Attachment.Parent property (Access) keywords: vbaac10.chm13904 f1_keywords: - vbaac10.chm13904 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.Parent Property (Access) +# Attachment.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## See also diff --git a/api/Access.Attachment.PictureAlignment.md b/api/Access.Attachment.PictureAlignment.md index c386de517e6..f85e26fe3ef 100644 --- a/api/Access.Attachment.PictureAlignment.md +++ b/api/Access.Attachment.PictureAlignment.md @@ -1,5 +1,5 @@ --- -title: Attachment.PictureAlignment Property (Access) +title: Attachment.PictureAlignment property (Access) keywords: vbaac10.chm13916 f1_keywords: - vbaac10.chm13916 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.PictureAlignment Property (Access) +# Attachment.PictureAlignment property (Access) You can use the **PictureAlignment** property to specify where a background picture will appear in the **Attachment** control. Read/write **Byte**. ## Syntax - _expression_. `PictureAlignment` +_expression_. `PictureAlignment` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.PictureSizeMode.md b/api/Access.Attachment.PictureSizeMode.md index de4ab313777..737f125df9d 100644 --- a/api/Access.Attachment.PictureSizeMode.md +++ b/api/Access.Attachment.PictureSizeMode.md @@ -1,5 +1,5 @@ --- -title: Attachment.PictureSizeMode Property (Access) +title: Attachment.PictureSizeMode property (Access) keywords: vbaac10.chm13915 f1_keywords: - vbaac10.chm13915 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.PictureSizeMode Property (Access) +# Attachment.PictureSizeMode property (Access) You can use the **PictureSizeMode** property to specify how a picture for an attachment control is sized. Read/write **Byte**. ## Syntax - _expression_. `PictureSizeMode` +_expression_. `PictureSizeMode` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.PictureTiling.md b/api/Access.Attachment.PictureTiling.md index 733a8a37677..90fb55f3a16 100644 --- a/api/Access.Attachment.PictureTiling.md +++ b/api/Access.Attachment.PictureTiling.md @@ -1,5 +1,5 @@ --- -title: Attachment.PictureTiling Property (Access) +title: Attachment.PictureTiling property (Access) keywords: vbaac10.chm13917 f1_keywords: - vbaac10.chm13917 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.PictureTiling Property (Access) +# Attachment.PictureTiling property (Access) You can use the **PictureTiling** property to specify whether a background picture is tiled across the entire attachment control. Read/write **Boolean**. ## Syntax - _expression_. `PictureTiling` +_expression_. `PictureTiling` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.Properties.md b/api/Access.Attachment.Properties.md index fbf72758f98..4deb1dd09a5 100644 --- a/api/Access.Attachment.Properties.md +++ b/api/Access.Attachment.Properties.md @@ -1,5 +1,5 @@ --- -title: Attachment.Properties Property (Access) +title: Attachment.Properties property (Access) keywords: vbaac10.chm13906 f1_keywords: - vbaac10.chm13906 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.Properties Property (Access) +# Attachment.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.Requery.md b/api/Access.Attachment.Requery.md index 59ec9383c74..33ad57f43b3 100644 --- a/api/Access.Attachment.Requery.md +++ b/api/Access.Attachment.Requery.md @@ -1,5 +1,5 @@ --- -title: Attachment.Requery Method (Access) +title: Attachment.Requery method (Access) keywords: vbaac10.chm13908 f1_keywords: - vbaac10.chm13908 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.Requery Method (Access) +# Attachment.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.RightPadding.md b/api/Access.Attachment.RightPadding.md index 6dbca9af2d9..533c8384435 100644 --- a/api/Access.Attachment.RightPadding.md +++ b/api/Access.Attachment.RightPadding.md @@ -1,5 +1,5 @@ --- -title: Attachment.RightPadding Property (Access) +title: Attachment.RightPadding property (Access) keywords: vbaac10.chm13990 f1_keywords: - vbaac10.chm13990 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.RightPadding Property (Access) +# Attachment.RightPadding property (Access) Gets or sets the amount of space (in inches) between the attachment and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## See also diff --git a/api/Access.Attachment.Section.md b/api/Access.Attachment.Section.md index f2059fa3f57..984cb616aa9 100644 --- a/api/Access.Attachment.Section.md +++ b/api/Access.Attachment.Section.md @@ -1,5 +1,5 @@ --- -title: Attachment.Section Property (Access) +title: Attachment.Section property (Access) keywords: vbaac10.chm13934 f1_keywords: - vbaac10.chm13934 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.Section Property (Access) +# Attachment.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.SetFocus.md b/api/Access.Attachment.SetFocus.md index f297424bf86..04a172e3d0c 100644 --- a/api/Access.Attachment.SetFocus.md +++ b/api/Access.Attachment.SetFocus.md @@ -1,5 +1,5 @@ --- -title: Attachment.SetFocus Method (Access) +title: Attachment.SetFocus method (Access) keywords: vbaac10.chm13909 f1_keywords: - vbaac10.chm13909 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.SetFocus Method (Access) +# Attachment.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.ShortcutMenuBar.md b/api/Access.Attachment.ShortcutMenuBar.md index 73513bfdb0c..d0644da0204 100644 --- a/api/Access.Attachment.ShortcutMenuBar.md +++ b/api/Access.Attachment.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: Attachment.ShortcutMenuBar Property (Access) +title: Attachment.ShortcutMenuBar property (Access) keywords: vbaac10.chm13971 f1_keywords: - vbaac10.chm13971 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.ShortcutMenuBar Property (Access) +# Attachment.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.SizeToFit.md b/api/Access.Attachment.SizeToFit.md index 0a90776b4aa..c0443bbdeb8 100644 --- a/api/Access.Attachment.SizeToFit.md +++ b/api/Access.Attachment.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: Attachment.SizeToFit Method (Access) +title: Attachment.SizeToFit method (Access) keywords: vbaac10.chm13907 f1_keywords: - vbaac10.chm13907 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.SizeToFit Method (Access) +# Attachment.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.SpecialEffect.md b/api/Access.Attachment.SpecialEffect.md index b6b11d3552b..020c2f9b9a8 100644 --- a/api/Access.Attachment.SpecialEffect.md +++ b/api/Access.Attachment.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: Attachment.SpecialEffect Property (Access) +title: Attachment.SpecialEffect property (Access) keywords: vbaac10.chm13926 f1_keywords: - vbaac10.chm13926 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.SpecialEffect Property (Access) +# Attachment.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.StatusBarText.md b/api/Access.Attachment.StatusBarText.md index 7619e976de2..933e1273824 100644 --- a/api/Access.Attachment.StatusBarText.md +++ b/api/Access.Attachment.StatusBarText.md @@ -1,5 +1,5 @@ --- -title: Attachment.StatusBarText Property (Access) +title: Attachment.StatusBarText property (Access) keywords: vbaac10.chm14012 f1_keywords: - vbaac10.chm14012 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.StatusBarText Property (Access) +# Attachment.StatusBarText property (Access) You can use the **StatusBarText** property to specify the text that is displayed in the status bar when a control is selected. Read/write **String**. ## Syntax - _expression_. `StatusBarText` +_expression_. `StatusBarText` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.TabIndex.md b/api/Access.Attachment.TabIndex.md index 9c89ab708c6..dc379e6e410 100644 --- a/api/Access.Attachment.TabIndex.md +++ b/api/Access.Attachment.TabIndex.md @@ -1,5 +1,5 @@ --- -title: Attachment.TabIndex Property (Access) +title: Attachment.TabIndex property (Access) keywords: vbaac10.chm14014 f1_keywords: - vbaac10.chm14014 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.TabIndex Property (Access) +# Attachment.TabIndex property (Access) You can use the **TabIndex** property to specify a control's place in the tab order on a form. Read/write **Integer**. ## Syntax - _expression_. `TabIndex` +_expression_. `TabIndex` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.TabStop.md b/api/Access.Attachment.TabStop.md index 6174af0ffe7..623b9121ad1 100644 --- a/api/Access.Attachment.TabStop.md +++ b/api/Access.Attachment.TabStop.md @@ -1,5 +1,5 @@ --- -title: Attachment.TabStop Property (Access) +title: Attachment.TabStop property (Access) keywords: vbaac10.chm14013 f1_keywords: - vbaac10.chm14013 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.TabStop Property (Access) +# Attachment.TabStop property (Access) You can use the **TabStop** property to specify whether you can use the TAB key to move the focus to a control in Form view. Read/write **Boolean**. ## Syntax - _expression_. `TabStop` +_expression_. `TabStop` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.Tag.md b/api/Access.Attachment.Tag.md index b8fea024a18..b9d25b08f76 100644 --- a/api/Access.Attachment.Tag.md +++ b/api/Access.Attachment.Tag.md @@ -1,5 +1,5 @@ --- -title: Attachment.Tag Property (Access) +title: Attachment.Tag property (Access) keywords: vbaac10.chm13973 f1_keywords: - vbaac10.chm13973 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.Tag Property (Access) +# Attachment.Tag property (Access) Stores extra information about a control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.Top.md b/api/Access.Attachment.Top.md index a122d9502fa..2454a488096 100644 --- a/api/Access.Attachment.Top.md +++ b/api/Access.Attachment.Top.md @@ -1,5 +1,5 @@ --- -title: Attachment.Top Property (Access) +title: Attachment.Top property (Access) keywords: vbaac10.chm13921 f1_keywords: - vbaac10.chm13921 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.Top Property (Access) +# Attachment.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.TopPadding.md b/api/Access.Attachment.TopPadding.md index ae8230d682a..3d444d80d90 100644 --- a/api/Access.Attachment.TopPadding.md +++ b/api/Access.Attachment.TopPadding.md @@ -1,5 +1,5 @@ --- -title: Attachment.TopPadding Property (Access) +title: Attachment.TopPadding property (Access) keywords: vbaac10.chm13989 f1_keywords: - vbaac10.chm13989 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.TopPadding Property (Access) +# Attachment.TopPadding property (Access) Gets or sets the amount of space (in inches) between the attachment and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## See also diff --git a/api/Access.Attachment.VerticalAnchor.md b/api/Access.Attachment.VerticalAnchor.md index 27480a1550b..f5a0e6d19ad 100644 --- a/api/Access.Attachment.VerticalAnchor.md +++ b/api/Access.Attachment.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: Attachment.VerticalAnchor Property (Access) +title: Attachment.VerticalAnchor property (Access) keywords: vbaac10.chm13986 f1_keywords: - vbaac10.chm13986 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.VerticalAnchor Property (Access) +# Attachment.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified attachment is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.Visible.md b/api/Access.Attachment.Visible.md index 97664dc0a49..9fe10d977d5 100644 --- a/api/Access.Attachment.Visible.md +++ b/api/Access.Attachment.Visible.md @@ -1,5 +1,5 @@ --- -title: Attachment.Visible Property (Access) +title: Attachment.Visible property (Access) keywords: vbaac10.chm13918 f1_keywords: - vbaac10.chm13918 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.Visible Property (Access) +# Attachment.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.Width.md b/api/Access.Attachment.Width.md index b882b3be17a..c5b56449305 100644 --- a/api/Access.Attachment.Width.md +++ b/api/Access.Attachment.Width.md @@ -1,5 +1,5 @@ --- -title: Attachment.Width Property (Access) +title: Attachment.Width property (Access) keywords: vbaac10.chm13922 f1_keywords: - vbaac10.chm13922 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Attachment.Width Property (Access) +# Attachment.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents an [Attachment](Access.Attachment.md) object. +_expression_ A variable that represents an [Attachment](Access.Attachment.md) object. ## Remarks diff --git a/api/Access.Attachment.md b/api/Access.Attachment.md index 527c60909c3..66ceeb11ec0 100644 --- a/api/Access.Attachment.md +++ b/api/Access.Attachment.md @@ -1,5 +1,5 @@ --- -title: Attachment Object (Access) +title: Attachment object (Access) keywords: vbaac10.chm14036 f1_keywords: - vbaac10.chm14036 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Attachment Object (Access) +# Attachment object (Access) This object corresponds to an attachment control. Use an attachment control when you want to manipulate the contents fields of the attachment data type. diff --git a/api/Access.AutoCorrect.DisplayAutoCorrectOptions.md b/api/Access.AutoCorrect.DisplayAutoCorrectOptions.md index 7457f36455e..4d85da99264 100644 --- a/api/Access.AutoCorrect.DisplayAutoCorrectOptions.md +++ b/api/Access.AutoCorrect.DisplayAutoCorrectOptions.md @@ -1,5 +1,5 @@ --- -title: AutoCorrect.DisplayAutoCorrectOptions Property (Access) +title: AutoCorrect.DisplayAutoCorrectOptions property (Access) keywords: vbaac10.chm13262 f1_keywords: - vbaac10.chm13262 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# AutoCorrect.DisplayAutoCorrectOptions Property (Access) +# AutoCorrect.DisplayAutoCorrectOptions property (Access) Returns or sets a **Boolean** value that specifies whether the **AutoCorrect Options** button is displayed for the specified control. The default value is **True**. Read/write. ## Syntax - _expression_. `DisplayAutoCorrectOptions` +_expression_. `DisplayAutoCorrectOptions` - _expression_ A variable that represents an [AutoCorrect](Access.AutoCorrect.md) object. +_expression_ A variable that represents an [AutoCorrect](Access.AutoCorrect.md) object. ## See also diff --git a/api/Access.AutoCorrect.md b/api/Access.AutoCorrect.md index e3687bbbcbf..ae91e2a5e96 100644 --- a/api/Access.AutoCorrect.md +++ b/api/Access.AutoCorrect.md @@ -1,5 +1,5 @@ --- -title: AutoCorrect Object (Access) +title: AutoCorrect object (Access) keywords: vbaac10.chm13260 f1_keywords: - vbaac10.chm13260 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# AutoCorrect Object (Access) +# AutoCorrect object (Access) The **AutoCorrect** object represents the AutoCorrect functionality of Microsoft Access. diff --git a/api/Access.BoundObjectFrame.Action.md b/api/Access.BoundObjectFrame.Action.md index 0962ee742b0..8789a417c45 100644 --- a/api/Access.BoundObjectFrame.Action.md +++ b/api/Access.BoundObjectFrame.Action.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Action Property (Access) +title: BoundObjectFrame.Action property (Access) keywords: vbaac10.chm10956 f1_keywords: - vbaac10.chm10956 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Action Property (Access) +# BoundObjectFrame.Action property (Access) You can use the **Action** property in Visual Basic to specify the operation to perform on an OLE object. Read/write **Integer**. ## Syntax - _expression_. `Action` +_expression_. `Action` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.AddColon.md b/api/Access.BoundObjectFrame.AddColon.md index e531804bbd4..34820f365e1 100644 --- a/api/Access.BoundObjectFrame.AddColon.md +++ b/api/Access.BoundObjectFrame.AddColon.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.AddColon Property (Access) +title: BoundObjectFrame.AddColon property (Access) keywords: vbaac10.chm10946 f1_keywords: - vbaac10.chm10946 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.AddColon Property (Access) +# BoundObjectFrame.AddColon property (Access) Specifies whether a colon follows the text in labels for new controls. Read/write **Boolean**. ## Syntax - _expression_. `AddColon` +_expression_. `AddColon` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## See also diff --git a/api/Access.BoundObjectFrame.AfterUpdate(even).md b/api/Access.BoundObjectFrame.AfterUpdate(even).md index 3244625580c..604f2278312 100644 --- a/api/Access.BoundObjectFrame.AfterUpdate(even).md +++ b/api/Access.BoundObjectFrame.AfterUpdate(even).md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.AfterUpdate Event (Access) +title: BoundObjectFrame.AfterUpdate event (Access) keywords: vbaac10.chm14091 f1_keywords: - vbaac10.chm14091 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.AfterUpdate Event (Access) +# BoundObjectFrame.AfterUpdate event (Access) The **AfterUpdate** event occurs after changed data in a control or record is updated. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.AfterUpdate(property).md b/api/Access.BoundObjectFrame.AfterUpdate(property).md index cb192fc8f43..81d68d80911 100644 --- a/api/Access.BoundObjectFrame.AfterUpdate(property).md +++ b/api/Access.BoundObjectFrame.AfterUpdate(property).md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.AfterUpdate Property (Access) +title: BoundObjectFrame.AfterUpdate property (Access) keywords: vbaac10.chm10962 f1_keywords: - vbaac10.chm10962 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.AfterUpdate Property (Access) +# BoundObjectFrame.AfterUpdate property (Access) Returns or sets which macro, event procedure, or user-defined function runs when the **AfterUpdate** event occurs. Read/write **String**. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Application.md b/api/Access.BoundObjectFrame.Application.md index 369472fb640..3b4736dea43 100644 --- a/api/Access.BoundObjectFrame.Application.md +++ b/api/Access.BoundObjectFrame.Application.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Application Property (Access) +title: BoundObjectFrame.Application property (Access) keywords: vbaac10.chm10896 f1_keywords: - vbaac10.chm10896 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Application Property (Access) +# BoundObjectFrame.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.AutoActivate.md b/api/Access.BoundObjectFrame.AutoActivate.md index 8a5b38894e3..9648c842231 100644 --- a/api/Access.BoundObjectFrame.AutoActivate.md +++ b/api/Access.BoundObjectFrame.AutoActivate.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.AutoActivate Property (Access) +title: BoundObjectFrame.AutoActivate property (Access) keywords: vbaac10.chm10915 f1_keywords: - vbaac10.chm10915 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.AutoActivate Property (Access) +# BoundObjectFrame.AutoActivate property (Access) You can use the **AutoActivate** property to specify how the user can activate an OLE object. Read/write **Integer**. ## Syntax - _expression_. `AutoActivate` +_expression_. `AutoActivate` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.AutoLabel.md b/api/Access.BoundObjectFrame.AutoLabel.md index 5b28112d6fc..2886411a7e7 100644 --- a/api/Access.BoundObjectFrame.AutoLabel.md +++ b/api/Access.BoundObjectFrame.AutoLabel.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.AutoLabel Property (Access) +title: BoundObjectFrame.AutoLabel property (Access) keywords: vbaac10.chm10945 f1_keywords: - vbaac10.chm10945 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.AutoLabel Property (Access) +# BoundObjectFrame.AutoLabel property (Access) Specifies whether labels are automatically created and attached to new controls. Read/write **Boolean**. ## Syntax - _expression_. `AutoLabel` +_expression_. `AutoLabel` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## See also diff --git a/api/Access.BoundObjectFrame.BackColor.md b/api/Access.BoundObjectFrame.BackColor.md index 04275bac6c0..034e7841881 100644 --- a/api/Access.BoundObjectFrame.BackColor.md +++ b/api/Access.BoundObjectFrame.BackColor.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.BackColor Property (Access) +title: BoundObjectFrame.BackColor property (Access) keywords: vbaac10.chm10932 f1_keywords: - vbaac10.chm10932 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.BackColor Property (Access) +# BoundObjectFrame.BackColor property (Access) Gets or sets the interior color of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackColor` +_expression_. `BackColor` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.BackShade.md b/api/Access.BoundObjectFrame.BackShade.md index aeb7094dbe2..ed0e0c10ac2 100644 --- a/api/Access.BoundObjectFrame.BackShade.md +++ b/api/Access.BoundObjectFrame.BackShade.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.BackShade Property (Access) +title: BoundObjectFrame.BackShade property (Access) keywords: vbaac10.chm14633 f1_keywords: - vbaac10.chm14633 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.BackShade Property (Access) +# BoundObjectFrame.BackShade property (Access) Gets or sets the shade that is applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackShade` +_expression_. `BackShade` - _expression_ A variable that represents a '[BoundObjectFrame](Access.BoundObjectFrame.md)' object. +_expression_ A variable that represents a '[BoundObjectFrame](Access.BoundObjectFrame.md)' object. ## Remarks diff --git a/api/Access.BoundObjectFrame.BackStyle.md b/api/Access.BoundObjectFrame.BackStyle.md index 5ed157fdd1b..b57235269fa 100644 --- a/api/Access.BoundObjectFrame.BackStyle.md +++ b/api/Access.BoundObjectFrame.BackStyle.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.BackStyle Property (Access) +title: BoundObjectFrame.BackStyle property (Access) keywords: vbaac10.chm10931 f1_keywords: - vbaac10.chm10931 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.BackStyle Property (Access) +# BoundObjectFrame.BackStyle property (Access) You can use the **BackStyle** property to specify whether a control will be transparent. Read/write **Byte**. ## Syntax - _expression_. `BackStyle` +_expression_. `BackStyle` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.BackThemeColorIndex.md b/api/Access.BoundObjectFrame.BackThemeColorIndex.md index 9c8a74c67e2..f52a2018b52 100644 --- a/api/Access.BoundObjectFrame.BackThemeColorIndex.md +++ b/api/Access.BoundObjectFrame.BackThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.BackThemeColorIndex Property (Access) +title: BoundObjectFrame.BackThemeColorIndex property (Access) keywords: vbaac10.chm14631 f1_keywords: - vbaac10.chm14631 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.BackThemeColorIndex Property (Access) +# BoundObjectFrame.BackThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BackColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackThemeColorIndex` +_expression_. `BackThemeColorIndex` - _expression_ A variable that represents a '[BoundObjectFrame](Access.BoundObjectFrame.md)' object. +_expression_ A variable that represents a '[BoundObjectFrame](Access.BoundObjectFrame.md)' object. ## Remarks diff --git a/api/Access.BoundObjectFrame.BackTint.md b/api/Access.BoundObjectFrame.BackTint.md index ebbd6c8ae74..a6c8d4ca850 100644 --- a/api/Access.BoundObjectFrame.BackTint.md +++ b/api/Access.BoundObjectFrame.BackTint.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.BackTint Property (Access) +title: BoundObjectFrame.BackTint property (Access) keywords: vbaac10.chm14632 f1_keywords: - vbaac10.chm14632 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.BackTint Property (Access) +# BoundObjectFrame.BackTint property (Access) Gets or sets the tint that is applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackTint` +_expression_. `BackTint` - _expression_ A variable that represents a '[BoundObjectFrame](Access.BoundObjectFrame.md)' object. +_expression_ A variable that represents a '[BoundObjectFrame](Access.BoundObjectFrame.md)' object. ## Remarks diff --git a/api/Access.BoundObjectFrame.BeforeUpdate(even).md b/api/Access.BoundObjectFrame.BeforeUpdate(even).md index b7462ac9043..03aadcf64ab 100644 --- a/api/Access.BoundObjectFrame.BeforeUpdate(even).md +++ b/api/Access.BoundObjectFrame.BeforeUpdate(even).md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.BeforeUpdate Event (Access) +title: BoundObjectFrame.BeforeUpdate event (Access) keywords: vbaac10.chm14090 f1_keywords: - vbaac10.chm14090 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.BeforeUpdate Event (Access) +# BoundObjectFrame.BeforeUpdate event (Access) The **BeforeUpdate** event occurs before changed data in a control or record is updated. ## Syntax - _expression_. `BeforeUpdate`( ` _Cancel_` ) +_expression_. `BeforeUpdate`( ` _Cancel_` ) - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **BeforeUpdate** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **BeforeUpdate** event.| diff --git a/api/Access.BoundObjectFrame.BeforeUpdate(property).md b/api/Access.BoundObjectFrame.BeforeUpdate(property).md index 76a82f9877d..f1c606ca6d8 100644 --- a/api/Access.BoundObjectFrame.BeforeUpdate(property).md +++ b/api/Access.BoundObjectFrame.BeforeUpdate(property).md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.BeforeUpdate Property (Access) +title: BoundObjectFrame.BeforeUpdate property (Access) keywords: vbaac10.chm10961 f1_keywords: - vbaac10.chm10961 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.BeforeUpdate Property (Access) +# BoundObjectFrame.BeforeUpdate property (Access) Returns or sets which macro, event procedure, or user-defined function runs when the **BeforeUpdate** event occurs. Read/write **String**. ## Syntax - _expression_. `BeforeUpdate` +_expression_. `BeforeUpdate` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.BorderColor.md b/api/Access.BoundObjectFrame.BorderColor.md index 9f3c60b64b9..f97f7cc0e9d 100644 --- a/api/Access.BoundObjectFrame.BorderColor.md +++ b/api/Access.BoundObjectFrame.BorderColor.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.BorderColor Property (Access) +title: BoundObjectFrame.BorderColor property (Access) keywords: vbaac10.chm10936 f1_keywords: - vbaac10.chm10936 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.BorderColor Property (Access) +# BoundObjectFrame.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.BorderShade.md b/api/Access.BoundObjectFrame.BorderShade.md index 203ade4b6be..3d9087f97d2 100644 --- a/api/Access.BoundObjectFrame.BorderShade.md +++ b/api/Access.BoundObjectFrame.BorderShade.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.BorderShade Property (Access) +title: BoundObjectFrame.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.BorderShade Property (Access) +# BoundObjectFrame.BorderShade property (Access) Gets or sets the shade that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents a '[BoundObjectFrame](Access.BoundObjectFrame.md)' object. +_expression_ A variable that represents a '[BoundObjectFrame](Access.BoundObjectFrame.md)' object. ## Remarks diff --git a/api/Access.BoundObjectFrame.BorderStyle.md b/api/Access.BoundObjectFrame.BorderStyle.md index 27006b3a1e9..678d7d21a9c 100644 --- a/api/Access.BoundObjectFrame.BorderStyle.md +++ b/api/Access.BoundObjectFrame.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.BorderStyle Property (Access) +title: BoundObjectFrame.BorderStyle property (Access) keywords: vbaac10.chm10934 f1_keywords: - vbaac10.chm10934 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.BorderStyle Property (Access) +# BoundObjectFrame.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.BorderThemeColorIndex.md b/api/Access.BoundObjectFrame.BorderThemeColorIndex.md index b6a655b60ed..a4e62cb61fa 100644 --- a/api/Access.BoundObjectFrame.BorderThemeColorIndex.md +++ b/api/Access.BoundObjectFrame.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.BorderThemeColorIndex Property (Access) +title: BoundObjectFrame.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.BorderThemeColorIndex Property (Access) +# BoundObjectFrame.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents a '[BoundObjectFrame](Access.BoundObjectFrame.md)' object. +_expression_ A variable that represents a '[BoundObjectFrame](Access.BoundObjectFrame.md)' object. ## Remarks diff --git a/api/Access.BoundObjectFrame.BorderTint.md b/api/Access.BoundObjectFrame.BorderTint.md index fd8701376bc..7dc58c9c80f 100644 --- a/api/Access.BoundObjectFrame.BorderTint.md +++ b/api/Access.BoundObjectFrame.BorderTint.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.BorderTint Property (Access) +title: BoundObjectFrame.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.BorderTint Property (Access) +# BoundObjectFrame.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.BorderWidth.md b/api/Access.BoundObjectFrame.BorderWidth.md index f0c6f015b08..c3a0284679e 100644 --- a/api/Access.BoundObjectFrame.BorderWidth.md +++ b/api/Access.BoundObjectFrame.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.BorderWidth Property (Access) +title: BoundObjectFrame.BorderWidth property (Access) keywords: vbaac10.chm10937 f1_keywords: - vbaac10.chm10937 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.BorderWidth Property (Access) +# BoundObjectFrame.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.BottomPadding.md b/api/Access.BoundObjectFrame.BottomPadding.md index ab567d997f3..936639eb33a 100644 --- a/api/Access.BoundObjectFrame.BottomPadding.md +++ b/api/Access.BoundObjectFrame.BottomPadding.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.BottomPadding Property (Access) +title: BoundObjectFrame.BottomPadding property (Access) keywords: vbaac10.chm10998 f1_keywords: - vbaac10.chm10998 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.BottomPadding Property (Access) +# BoundObjectFrame.BottomPadding property (Access) Gets or sets the amount of space (in inches) between the object frame and its bottom gridline. Read/write **Integer**. ## Syntax - _expression_. `BottomPadding` +_expression_. `BottomPadding` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## See also diff --git a/api/Access.BoundObjectFrame.Class.md b/api/Access.BoundObjectFrame.Class.md index 274ccb71863..45e06c1afa7 100644 --- a/api/Access.BoundObjectFrame.Class.md +++ b/api/Access.BoundObjectFrame.Class.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Class Property (Access) +title: BoundObjectFrame.Class property (Access) keywords: vbaac10.chm10912 f1_keywords: - vbaac10.chm10912 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Class Property (Access) +# BoundObjectFrame.Class property (Access) You can use the **Class** property to specify or determine the class name of an embeddedOLE object. Read/write **String**. ## Syntax - _expression_. `Class` +_expression_. `Class` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Click.md b/api/Access.BoundObjectFrame.Click.md index 9a77ba4bffc..79ceac55a7a 100644 --- a/api/Access.BoundObjectFrame.Click.md +++ b/api/Access.BoundObjectFrame.Click.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Click Event (Access) +title: BoundObjectFrame.Click event (Access) keywords: vbaac10.chm14096 f1_keywords: - vbaac10.chm14096 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Click Event (Access) +# BoundObjectFrame.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.ColumnHidden.md b/api/Access.BoundObjectFrame.ColumnHidden.md index d83ca78b27d..bbcb382fd61 100644 --- a/api/Access.BoundObjectFrame.ColumnHidden.md +++ b/api/Access.BoundObjectFrame.ColumnHidden.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.ColumnHidden Property (Access) +title: BoundObjectFrame.ColumnHidden property (Access) keywords: vbaac10.chm10944 f1_keywords: - vbaac10.chm10944 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.ColumnHidden Property (Access) +# BoundObjectFrame.ColumnHidden property (Access) You can use the **ColumnHidden** property to show or hide a specified column in Datasheet view. Read/write **Boolean**. ## Syntax - _expression_. `ColumnHidden` +_expression_. `ColumnHidden` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.ColumnOrder.md b/api/Access.BoundObjectFrame.ColumnOrder.md index 3a6eafa80d4..61c0d9f7fba 100644 --- a/api/Access.BoundObjectFrame.ColumnOrder.md +++ b/api/Access.BoundObjectFrame.ColumnOrder.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.ColumnOrder Property (Access) +title: BoundObjectFrame.ColumnOrder property (Access) keywords: vbaac10.chm10943 f1_keywords: - vbaac10.chm10943 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.ColumnOrder Property (Access) +# BoundObjectFrame.ColumnOrder property (Access) You can use the **ColumnOrder** property to specify the order of the columns in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `ColumnOrder` +_expression_. `ColumnOrder` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.ColumnWidth.md b/api/Access.BoundObjectFrame.ColumnWidth.md index 272b299b0ea..56709a3ffd3 100644 --- a/api/Access.BoundObjectFrame.ColumnWidth.md +++ b/api/Access.BoundObjectFrame.ColumnWidth.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.ColumnWidth Property (Access) +title: BoundObjectFrame.ColumnWidth property (Access) keywords: vbaac10.chm10942 f1_keywords: - vbaac10.chm10942 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.ColumnWidth Property (Access) +# BoundObjectFrame.ColumnWidth property (Access) You can use the **ColumnWidth** property to specify the width of a column in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `ColumnWidth` +_expression_. `ColumnWidth` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.ControlSource.md b/api/Access.BoundObjectFrame.ControlSource.md index 6282989d3b3..569e8fb93a4 100644 --- a/api/Access.BoundObjectFrame.ControlSource.md +++ b/api/Access.BoundObjectFrame.ControlSource.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.ControlSource Property (Access) +title: BoundObjectFrame.ControlSource property (Access) keywords: vbaac10.chm10910 f1_keywords: - vbaac10.chm10910 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.ControlSource Property (Access) +# BoundObjectFrame.ControlSource property (Access) You can use the **ControlSource** property to specify what data appears in a control. You can display and edit data bound to a field in a table, query, or SQL statement. You can also display the result of an expression. Read/write **String**. ## Syntax - _expression_. `ControlSource` +_expression_. `ControlSource` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.ControlTipText.md b/api/Access.BoundObjectFrame.ControlTipText.md index 04b0942dee2..f500bcfe50b 100644 --- a/api/Access.BoundObjectFrame.ControlTipText.md +++ b/api/Access.BoundObjectFrame.ControlTipText.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.ControlTipText Property (Access) +title: BoundObjectFrame.ControlTipText property (Access) keywords: vbaac10.chm10940 f1_keywords: - vbaac10.chm10940 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.ControlTipText Property (Access) +# BoundObjectFrame.ControlTipText property (Access) You can use the **ControlTipText** property to specify the text that appears in a ScreenTip when you hold the mouse pointer over a control. Read/write **String**. ## Syntax - _expression_. `ControlTipText` +_expression_. `ControlTipText` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.ControlType.md b/api/Access.BoundObjectFrame.ControlType.md index 7882a76f3c2..6ed5f0bbf83 100644 --- a/api/Access.BoundObjectFrame.ControlType.md +++ b/api/Access.BoundObjectFrame.ControlType.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.ControlType Property (Access) +title: BoundObjectFrame.ControlType property (Access) keywords: vbaac10.chm10909 f1_keywords: - vbaac10.chm10909 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.ControlType Property (Access) +# BoundObjectFrame.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Controls.md b/api/Access.BoundObjectFrame.Controls.md index 5d31a69b734..67f184f8849 100644 --- a/api/Access.BoundObjectFrame.Controls.md +++ b/api/Access.BoundObjectFrame.Controls.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Controls Property (Access) +title: BoundObjectFrame.Controls property (Access) keywords: vbaac10.chm10905 f1_keywords: - vbaac10.chm10905 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Controls Property (Access) +# BoundObjectFrame.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.DblClick.md b/api/Access.BoundObjectFrame.DblClick.md index e490c53b6bc..84226304659 100644 --- a/api/Access.BoundObjectFrame.DblClick.md +++ b/api/Access.BoundObjectFrame.DblClick.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.DblClick Event (Access) +title: BoundObjectFrame.DblClick event (Access) keywords: vbaac10.chm14097 f1_keywords: - vbaac10.chm14097 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.DblClick Event (Access) +# BoundObjectFrame.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_` ) +_expression_. `DblClick`( ` _Cancel_` ) - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **DblClick** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **DblClick** event.| diff --git a/api/Access.BoundObjectFrame.DisplayType.md b/api/Access.BoundObjectFrame.DisplayType.md index 4a2988db19d..59796fb9432 100644 --- a/api/Access.BoundObjectFrame.DisplayType.md +++ b/api/Access.BoundObjectFrame.DisplayType.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.DisplayType Property (Access) +title: BoundObjectFrame.DisplayType property (Access) keywords: vbaac10.chm10916 f1_keywords: - vbaac10.chm10916 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.DisplayType Property (Access) +# BoundObjectFrame.DisplayType property (Access) You can use the **DisplayType** property to specify whether Microsoft Access displays an OLE object's content or an icon. Read/write **Boolean**. ## Syntax - _expression_. `DisplayType` +_expression_. `DisplayType` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.DisplayWhen.md b/api/Access.BoundObjectFrame.DisplayWhen.md index ae1d2b14bee..3d949b34438 100644 --- a/api/Access.BoundObjectFrame.DisplayWhen.md +++ b/api/Access.BoundObjectFrame.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.DisplayWhen Property (Access) +title: BoundObjectFrame.DisplayWhen property (Access) keywords: vbaac10.chm10922 f1_keywords: - vbaac10.chm10922 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.DisplayWhen Property (Access) +# BoundObjectFrame.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Enabled.md b/api/Access.BoundObjectFrame.Enabled.md index 7653d7ae176..0d792bef39e 100644 --- a/api/Access.BoundObjectFrame.Enabled.md +++ b/api/Access.BoundObjectFrame.Enabled.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Enabled Property (Access) +title: BoundObjectFrame.Enabled property (Access) keywords: vbaac10.chm10923 f1_keywords: - vbaac10.chm10923 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Enabled Property (Access) +# BoundObjectFrame.Enabled property (Access) You can use the **Enabled** property to set or return the status of the conditional format in the **[FormatCondition](Access.FormatCondition.md)** object. Read/write **Boolean**. ## Syntax - _expression_. `Enabled` +_expression_. `Enabled` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Enter.md b/api/Access.BoundObjectFrame.Enter.md index c9a5cee1c62..1f6a3a6e8d3 100644 --- a/api/Access.BoundObjectFrame.Enter.md +++ b/api/Access.BoundObjectFrame.Enter.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Enter Event (Access) +title: BoundObjectFrame.Enter event (Access) keywords: vbaac10.chm14092 f1_keywords: - vbaac10.chm14092 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Enter Event (Access) +# BoundObjectFrame.Enter event (Access) The **Enter** event occurs before a control actually receives the focus from a control on the same form or report. ## Syntax - _expression_. `Enter` +_expression_. `Enter` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.EventProcPrefix.md b/api/Access.BoundObjectFrame.EventProcPrefix.md index 7ae2d87587b..14c88d5f796 100644 --- a/api/Access.BoundObjectFrame.EventProcPrefix.md +++ b/api/Access.BoundObjectFrame.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.EventProcPrefix Property (Access) +title: BoundObjectFrame.EventProcPrefix property (Access) keywords: vbaac10.chm10907 f1_keywords: - vbaac10.chm10907 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.EventProcPrefix Property (Access) +# BoundObjectFrame.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Exit.md b/api/Access.BoundObjectFrame.Exit.md index e26c37c090d..264a9401247 100644 --- a/api/Access.BoundObjectFrame.Exit.md +++ b/api/Access.BoundObjectFrame.Exit.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Exit Event (Access) +title: BoundObjectFrame.Exit event (Access) keywords: vbaac10.chm14093 f1_keywords: - vbaac10.chm14093 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Exit Event (Access) +# BoundObjectFrame.Exit event (Access) The **Exit** event occurs just before a control loses the focus to another control on the same form or report. ## Syntax - _expression_. `Exit`( ` _Cancel_` ) +_expression_. `Exit`( ` _Cancel_` ) - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|Set to **True** to cancel the event.| diff --git a/api/Access.BoundObjectFrame.GotFocus.md b/api/Access.BoundObjectFrame.GotFocus.md index 2230770795e..5c61bafe6c4 100644 --- a/api/Access.BoundObjectFrame.GotFocus.md +++ b/api/Access.BoundObjectFrame.GotFocus.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.GotFocus Event (Access) +title: BoundObjectFrame.GotFocus event (Access) keywords: vbaac10.chm14094 f1_keywords: - vbaac10.chm14094 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.GotFocus Event (Access) +# BoundObjectFrame.GotFocus event (Access) The **GotFocus** event occurs when the specified object receives the focus. ## Syntax - _expression_. `GotFocus` +_expression_. `GotFocus` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.GridlineColor.md b/api/Access.BoundObjectFrame.GridlineColor.md index a8a88cced6f..6fc728b7312 100644 --- a/api/Access.BoundObjectFrame.GridlineColor.md +++ b/api/Access.BoundObjectFrame.GridlineColor.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.GridlineColor Property (Access) +title: BoundObjectFrame.GridlineColor property (Access) keywords: vbaac10.chm11007 f1_keywords: - vbaac10.chm11007 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.GridlineColor Property (Access) +# BoundObjectFrame.GridlineColor property (Access) Gets or sets the color of the gridline for the specified object frame. Read/write **Long**. ## Syntax - _expression_. `GridlineColor` +_expression_. `GridlineColor` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.GridlineShade.md b/api/Access.BoundObjectFrame.GridlineShade.md index 28249bbf285..6261a3c4eed 100644 --- a/api/Access.BoundObjectFrame.GridlineShade.md +++ b/api/Access.BoundObjectFrame.GridlineShade.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.GridlineShade Property (Access) +title: BoundObjectFrame.GridlineShade property (Access) keywords: vbaac10.chm14637 f1_keywords: - vbaac10.chm14637 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.GridlineShade Property (Access) +# BoundObjectFrame.GridlineShade property (Access) Gets or sets the shade applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineShade` +_expression_. `GridlineShade` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.GridlineStyleBottom.md b/api/Access.BoundObjectFrame.GridlineStyleBottom.md index 181adbc7acb..95a2907f97a 100644 --- a/api/Access.BoundObjectFrame.GridlineStyleBottom.md +++ b/api/Access.BoundObjectFrame.GridlineStyleBottom.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.GridlineStyleBottom Property (Access) +title: BoundObjectFrame.GridlineStyleBottom property (Access) keywords: vbaac10.chm11002 f1_keywords: - vbaac10.chm11002 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.GridlineStyleBottom Property (Access) +# BoundObjectFrame.GridlineStyleBottom property (Access) Gets or sets the bottom gridline style of the specified frame. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleBottom` +_expression_. `GridlineStyleBottom` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.GridlineStyleLeft.md b/api/Access.BoundObjectFrame.GridlineStyleLeft.md index c51a3b384d8..7c1a6f59300 100644 --- a/api/Access.BoundObjectFrame.GridlineStyleLeft.md +++ b/api/Access.BoundObjectFrame.GridlineStyleLeft.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.GridlineStyleLeft Property (Access) +title: BoundObjectFrame.GridlineStyleLeft property (Access) keywords: vbaac10.chm10999 f1_keywords: - vbaac10.chm10999 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.GridlineStyleLeft Property (Access) +# BoundObjectFrame.GridlineStyleLeft property (Access) Gets or sets the width of the bottom gridline for the specified frame. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleLeft` +_expression_. `GridlineStyleLeft` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.GridlineStyleRight.md b/api/Access.BoundObjectFrame.GridlineStyleRight.md index 2fa3ab8470f..b5c422aab3f 100644 --- a/api/Access.BoundObjectFrame.GridlineStyleRight.md +++ b/api/Access.BoundObjectFrame.GridlineStyleRight.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.GridlineStyleRight Property (Access) +title: BoundObjectFrame.GridlineStyleRight property (Access) keywords: vbaac10.chm11001 f1_keywords: - vbaac10.chm11001 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.GridlineStyleRight Property (Access) +# BoundObjectFrame.GridlineStyleRight property (Access) Gets or sets the right gridline style of the specified frame. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleRight` +_expression_. `GridlineStyleRight` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.GridlineStyleTop.md b/api/Access.BoundObjectFrame.GridlineStyleTop.md index 6d705eaaad7..643fab566ce 100644 --- a/api/Access.BoundObjectFrame.GridlineStyleTop.md +++ b/api/Access.BoundObjectFrame.GridlineStyleTop.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.GridlineStyleTop Property (Access) +title: BoundObjectFrame.GridlineStyleTop property (Access) keywords: vbaac10.chm11000 f1_keywords: - vbaac10.chm11000 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.GridlineStyleTop Property (Access) +# BoundObjectFrame.GridlineStyleTop property (Access) Gets or sets the top gridline style of the specified frame. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleTop` +_expression_. `GridlineStyleTop` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.GridlineThemeColorIndex.md b/api/Access.BoundObjectFrame.GridlineThemeColorIndex.md index 7d8223da7d9..ffd1fa98651 100644 --- a/api/Access.BoundObjectFrame.GridlineThemeColorIndex.md +++ b/api/Access.BoundObjectFrame.GridlineThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.GridlineThemeColorIndex Property (Access) +title: BoundObjectFrame.GridlineThemeColorIndex property (Access) keywords: vbaac10.chm14635 f1_keywords: - vbaac10.chm14635 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.GridlineThemeColorIndex Property (Access) +# BoundObjectFrame.GridlineThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **GridlineColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `GridlineThemeColorIndex` +_expression_. `GridlineThemeColorIndex` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.GridlineTint.md b/api/Access.BoundObjectFrame.GridlineTint.md index 922a4393e1e..d456ef5c7c0 100644 --- a/api/Access.BoundObjectFrame.GridlineTint.md +++ b/api/Access.BoundObjectFrame.GridlineTint.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.GridlineTint Property (Access) +title: BoundObjectFrame.GridlineTint property (Access) keywords: vbaac10.chm14636 f1_keywords: - vbaac10.chm14636 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.GridlineTint Property (Access) +# BoundObjectFrame.GridlineTint property (Access) Gets or sets the tint applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineTint` +_expression_. `GridlineTint` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.GridlineWidthBottom.md b/api/Access.BoundObjectFrame.GridlineWidthBottom.md index 2c93f54c4da..13d7b6e0a70 100644 --- a/api/Access.BoundObjectFrame.GridlineWidthBottom.md +++ b/api/Access.BoundObjectFrame.GridlineWidthBottom.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.GridlineWidthBottom Property (Access) +title: BoundObjectFrame.GridlineWidthBottom property (Access) keywords: vbaac10.chm11006 f1_keywords: - vbaac10.chm11006 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.GridlineWidthBottom Property (Access) +# BoundObjectFrame.GridlineWidthBottom property (Access) Gets or sets the width of the bottom gridline for the specified frame. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthBottom` +_expression_. `GridlineWidthBottom` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.GridlineWidthLeft.md b/api/Access.BoundObjectFrame.GridlineWidthLeft.md index eabb107815c..65569dbc28a 100644 --- a/api/Access.BoundObjectFrame.GridlineWidthLeft.md +++ b/api/Access.BoundObjectFrame.GridlineWidthLeft.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.GridlineWidthLeft Property (Access) +title: BoundObjectFrame.GridlineWidthLeft property (Access) keywords: vbaac10.chm11003 f1_keywords: - vbaac10.chm11003 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.GridlineWidthLeft Property (Access) +# BoundObjectFrame.GridlineWidthLeft property (Access) Gets or sets the width of the left gridline for the specified frame. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthLeft` +_expression_. `GridlineWidthLeft` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.GridlineWidthRight.md b/api/Access.BoundObjectFrame.GridlineWidthRight.md index 6175139c7dd..868532233ad 100644 --- a/api/Access.BoundObjectFrame.GridlineWidthRight.md +++ b/api/Access.BoundObjectFrame.GridlineWidthRight.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.GridlineWidthRight Property (Access) +title: BoundObjectFrame.GridlineWidthRight property (Access) keywords: vbaac10.chm11005 f1_keywords: - vbaac10.chm11005 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.GridlineWidthRight Property (Access) +# BoundObjectFrame.GridlineWidthRight property (Access) Gets or sets the width of the right gridline for the specified frame. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthRight` +_expression_. `GridlineWidthRight` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.GridlineWidthTop.md b/api/Access.BoundObjectFrame.GridlineWidthTop.md index 4e25b6d730b..bf1a21ec827 100644 --- a/api/Access.BoundObjectFrame.GridlineWidthTop.md +++ b/api/Access.BoundObjectFrame.GridlineWidthTop.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.GridlineWidthTop Property (Access) +title: BoundObjectFrame.GridlineWidthTop property (Access) keywords: vbaac10.chm11004 f1_keywords: - vbaac10.chm11004 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.GridlineWidthTop Property (Access) +# BoundObjectFrame.GridlineWidthTop property (Access) Gets or sets the width of the top gridline for the specified frame. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthTop` +_expression_. `GridlineWidthTop` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Height.md b/api/Access.BoundObjectFrame.Height.md index 9dc5f2a48d8..f465adab115 100644 --- a/api/Access.BoundObjectFrame.Height.md +++ b/api/Access.BoundObjectFrame.Height.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Height Property (Access) +title: BoundObjectFrame.Height property (Access) keywords: vbaac10.chm10930 f1_keywords: - vbaac10.chm10930 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Height Property (Access) +# BoundObjectFrame.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.HelpContextId.md b/api/Access.BoundObjectFrame.HelpContextId.md index d6afbbc4d65..223e008e7b3 100644 --- a/api/Access.BoundObjectFrame.HelpContextId.md +++ b/api/Access.BoundObjectFrame.HelpContextId.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.HelpContextId Property (Access) +title: BoundObjectFrame.HelpContextId property (Access) keywords: vbaac10.chm10941 f1_keywords: - vbaac10.chm10941 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.HelpContextId Property (Access) +# BoundObjectFrame.HelpContextId property (Access) The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**. ## Syntax - _expression_. `HelpContextId` +_expression_. `HelpContextId` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.HorizontalAnchor.md b/api/Access.BoundObjectFrame.HorizontalAnchor.md index d95fc6cbaa6..6257c15898c 100644 --- a/api/Access.BoundObjectFrame.HorizontalAnchor.md +++ b/api/Access.BoundObjectFrame.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.HorizontalAnchor Property (Access) +title: BoundObjectFrame.HorizontalAnchor property (Access) keywords: vbaac10.chm11008 f1_keywords: - vbaac10.chm11008 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.HorizontalAnchor Property (Access) +# BoundObjectFrame.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the object frame is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.InSelection.md b/api/Access.BoundObjectFrame.InSelection.md index e86dc5a32eb..d97e464fb4e 100644 --- a/api/Access.BoundObjectFrame.InSelection.md +++ b/api/Access.BoundObjectFrame.InSelection.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.InSelection Property (Access) +title: BoundObjectFrame.InSelection property (Access) keywords: vbaac10.chm10960 f1_keywords: - vbaac10.chm10960 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.InSelection Property (Access) +# BoundObjectFrame.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.IsVisible.md b/api/Access.BoundObjectFrame.IsVisible.md index 6428ab8e72b..5a8e59d4d2e 100644 --- a/api/Access.BoundObjectFrame.IsVisible.md +++ b/api/Access.BoundObjectFrame.IsVisible.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.IsVisible Property (Access) +title: BoundObjectFrame.IsVisible property (Access) keywords: vbaac10.chm10959 f1_keywords: - vbaac10.chm10959 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.IsVisible Property (Access) +# BoundObjectFrame.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.KeyDown.md b/api/Access.BoundObjectFrame.KeyDown.md index 7744bca8861..9ed18f043dc 100644 --- a/api/Access.BoundObjectFrame.KeyDown.md +++ b/api/Access.BoundObjectFrame.KeyDown.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.KeyDown Event (Access) +title: BoundObjectFrame.KeyDown event (Access) keywords: vbaac10.chm14101 f1_keywords: - vbaac10.chm14101 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.KeyDown Event (Access) +# BoundObjectFrame.KeyDown event (Access) The **KeyDown** event occurs when the user presses a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|A key code, such as **vbKeyF1** (the F1 key) or **vbKeyHome** (the HOME key). To specify key codes, use the intrinsic constants shown in the Object Browser. You can prevent an object from receiving a keystroke by setting KeyCode to 0.| | _Shift_|Required|**Integer**|The state of the SHIFT, CTRL, and ALT keys at the time of the event. If you need to test for the Shift argument, you can use one of the following intrinsic constants as bit masks: diff --git a/api/Access.BoundObjectFrame.KeyPress.md b/api/Access.BoundObjectFrame.KeyPress.md index eec12c551fe..9e15451036a 100644 --- a/api/Access.BoundObjectFrame.KeyPress.md +++ b/api/Access.BoundObjectFrame.KeyPress.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.KeyPress Event (Access) +title: BoundObjectFrame.KeyPress event (Access) keywords: vbaac10.chm14102 f1_keywords: - vbaac10.chm14102 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.KeyPress Event (Access) +# BoundObjectFrame.KeyPress event (Access) The **KeyPress** event occurs when the user presses and releases a key or key combination that corresponds to an ANSI code while a form or control has the focus. This event also occurs if you send an ANSI keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyPress`( ` _KeyAscii_` ) +_expression_. `KeyPress`( ` _KeyAscii_` ) - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyAscii_|Required|**Integer**| Returns a numeric ANSI key code. The _KeyAscii_ argument is passed by reference; changing it sends a different character to the object. Setting the _KeyAscii_ argument to 0 cancels the keystroke so that the object doesn't recognize that a key was pressed.| diff --git a/api/Access.BoundObjectFrame.KeyUp.md b/api/Access.BoundObjectFrame.KeyUp.md index f7c45f3663a..1511ab19a3e 100644 --- a/api/Access.BoundObjectFrame.KeyUp.md +++ b/api/Access.BoundObjectFrame.KeyUp.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.KeyUp Event (Access) +title: BoundObjectFrame.KeyUp event (Access) keywords: vbaac10.chm14103 f1_keywords: - vbaac10.chm14103 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.KeyUp Event (Access) +# BoundObjectFrame.KeyUp event (Access) The **KeyUp** event occurs when the user releases a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|A key code, such as **vbKeyF1** (the F1 key) or **vbKeyHome** (the HOME key). To specify key codes, use the intrinsic constants shown in the Object Browser. You can prevent an object from receiving a keystroke by setting KeyCode to 0.| | _Shift_|Required|**Integer**|The state of the SHIFT, CTRL, and ALT keys at the time of the event. If you need to test for the Shift argument, you can use one of the following intrinsic constants as bit masks: diff --git a/api/Access.BoundObjectFrame.LabelAlign.md b/api/Access.BoundObjectFrame.LabelAlign.md index 99f9884c57f..c262ae2cf67 100644 --- a/api/Access.BoundObjectFrame.LabelAlign.md +++ b/api/Access.BoundObjectFrame.LabelAlign.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.LabelAlign Property (Access) +title: BoundObjectFrame.LabelAlign property (Access) keywords: vbaac10.chm10949 f1_keywords: - vbaac10.chm10949 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.LabelAlign Property (Access) +# BoundObjectFrame.LabelAlign property (Access) The property specifies the text alignment within attached labels on new controls. Read/write **Byte**. ## Syntax - _expression_. `LabelAlign` +_expression_. `LabelAlign` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.LabelX.md b/api/Access.BoundObjectFrame.LabelX.md index 4e8395c52a0..c39a81555e2 100644 --- a/api/Access.BoundObjectFrame.LabelX.md +++ b/api/Access.BoundObjectFrame.LabelX.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.LabelX Property (Access) +title: BoundObjectFrame.LabelX property (Access) keywords: vbaac10.chm10947 f1_keywords: - vbaac10.chm10947 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.LabelX Property (Access) +# BoundObjectFrame.LabelX property (Access) The **LabelX** property (along with the **LabelY** property) specifies the placement of the label for a new control. Read/write **Integer**. @@ -19,9 +19,9 @@ The **LabelX** property (along with the **LabelY** property) specifies the plac ## Syntax - _expression_. `LabelX` +_expression_. `LabelX` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.LabelY.md b/api/Access.BoundObjectFrame.LabelY.md index b85b5ac6989..c7c2674ab7c 100644 --- a/api/Access.BoundObjectFrame.LabelY.md +++ b/api/Access.BoundObjectFrame.LabelY.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.LabelY Property (Access) +title: BoundObjectFrame.LabelY property (Access) keywords: vbaac10.chm10948 f1_keywords: - vbaac10.chm10948 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.LabelY Property (Access) +# BoundObjectFrame.LabelY property (Access) The **LabelY** property (along with the **LabelX** property) specifies the placement of the label for a new control. Read/write **Integer**. @@ -19,9 +19,9 @@ The **LabelY** property (along with the **LabelX** property) specifies the plac ## Syntax - _expression_. `LabelY` +_expression_. `LabelY` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Layout.md b/api/Access.BoundObjectFrame.Layout.md index 76d38136d31..5bf481c0d81 100644 --- a/api/Access.BoundObjectFrame.Layout.md +++ b/api/Access.BoundObjectFrame.Layout.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Layout Property (Access) +title: BoundObjectFrame.Layout property (Access) keywords: vbaac10.chm10994 f1_keywords: - vbaac10.chm10994 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Layout Property (Access) +# BoundObjectFrame.Layout property (Access) Returns the type of layout for the specified object frame. Read-only **[AcLayoutType](Access.AcLayoutType.md)**. ## Syntax - _expression_. `Layout` +_expression_. `Layout` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## See also diff --git a/api/Access.BoundObjectFrame.LayoutID.md b/api/Access.BoundObjectFrame.LayoutID.md index a56bf308b91..205ae2d74ce 100644 --- a/api/Access.BoundObjectFrame.LayoutID.md +++ b/api/Access.BoundObjectFrame.LayoutID.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.LayoutID Property (Access) +title: BoundObjectFrame.LayoutID property (Access) keywords: vbaac10.chm11010 f1_keywords: - vbaac10.chm11010 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.LayoutID Property (Access) +# BoundObjectFrame.LayoutID property (Access) Returns the unique identifier for the layout that contains the specified object frame. Read-only **Long**. ## Syntax - _expression_. `LayoutID` +_expression_. `LayoutID` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Left.md b/api/Access.BoundObjectFrame.Left.md index 40662e2ab50..7ac48178d39 100644 --- a/api/Access.BoundObjectFrame.Left.md +++ b/api/Access.BoundObjectFrame.Left.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Left Property (Access) +title: BoundObjectFrame.Left property (Access) keywords: vbaac10.chm10927 f1_keywords: - vbaac10.chm10927 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Left Property (Access) +# BoundObjectFrame.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.LeftPadding.md b/api/Access.BoundObjectFrame.LeftPadding.md index 9732a0eafba..cd5ab00d38f 100644 --- a/api/Access.BoundObjectFrame.LeftPadding.md +++ b/api/Access.BoundObjectFrame.LeftPadding.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.LeftPadding Property (Access) +title: BoundObjectFrame.LeftPadding property (Access) keywords: vbaac10.chm10995 f1_keywords: - vbaac10.chm10995 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.LeftPadding Property (Access) +# BoundObjectFrame.LeftPadding property (Access) Gets or sets the amount of space (in inches) between the object frame and its left gridline. Read/write **Integer**. ## Syntax - _expression_. `LeftPadding` +_expression_. `LeftPadding` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## See also diff --git a/api/Access.BoundObjectFrame.Locked.md b/api/Access.BoundObjectFrame.Locked.md index 67d8042ecaf..4418a712857 100644 --- a/api/Access.BoundObjectFrame.Locked.md +++ b/api/Access.BoundObjectFrame.Locked.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Locked Property (Access) +title: BoundObjectFrame.Locked property (Access) keywords: vbaac10.chm10924 f1_keywords: - vbaac10.chm10924 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Locked Property (Access) +# BoundObjectFrame.Locked property (Access) The **Locked** property specifies whether you can edit data in a control in Form view. Read/write **Boolean**. ## Syntax - _expression_. `Locked` +_expression_. `Locked` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.LostFocus.md b/api/Access.BoundObjectFrame.LostFocus.md index d9e3a57615d..3716baa5e29 100644 --- a/api/Access.BoundObjectFrame.LostFocus.md +++ b/api/Access.BoundObjectFrame.LostFocus.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.LostFocus Event (Access) +title: BoundObjectFrame.LostFocus event (Access) keywords: vbaac10.chm14095 f1_keywords: - vbaac10.chm14095 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.LostFocus Event (Access) +# BoundObjectFrame.LostFocus event (Access) The **LostFocus** event occurs when the specified object loses the focus. ## Syntax - _expression_. `LostFocus` +_expression_. `LostFocus` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.MouseDown.md b/api/Access.BoundObjectFrame.MouseDown.md index dc604add65d..66f15401536 100644 --- a/api/Access.BoundObjectFrame.MouseDown.md +++ b/api/Access.BoundObjectFrame.MouseDown.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.MouseDown Event (Access) +title: BoundObjectFrame.MouseDown event (Access) keywords: vbaac10.chm14098 f1_keywords: - vbaac10.chm14098 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.MouseDown Event (Access) +# BoundObjectFrame.MouseDown event (Access) The **MouseDown** event occurs when the user presses a mouse button. ## Syntax - _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.BoundObjectFrame.MouseMove.md b/api/Access.BoundObjectFrame.MouseMove.md index 3df0e426158..e642755f186 100644 --- a/api/Access.BoundObjectFrame.MouseMove.md +++ b/api/Access.BoundObjectFrame.MouseMove.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.MouseMove Event (Access) +title: BoundObjectFrame.MouseMove event (Access) keywords: vbaac10.chm14099 f1_keywords: - vbaac10.chm14099 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.MouseMove Event (Access) +# BoundObjectFrame.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.BoundObjectFrame.MouseUp.md b/api/Access.BoundObjectFrame.MouseUp.md index 3069155f38b..30b67b86759 100644 --- a/api/Access.BoundObjectFrame.MouseUp.md +++ b/api/Access.BoundObjectFrame.MouseUp.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.MouseUp Event (Access) +title: BoundObjectFrame.MouseUp event (Access) keywords: vbaac10.chm14100 f1_keywords: - vbaac10.chm14100 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.MouseUp Event (Access) +# BoundObjectFrame.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.BoundObjectFrame.Move.md b/api/Access.BoundObjectFrame.Move.md index ed72c25a7fe..21f014040bf 100644 --- a/api/Access.BoundObjectFrame.Move.md +++ b/api/Access.BoundObjectFrame.Move.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Move Method (Access) +title: BoundObjectFrame.Move method (Access) keywords: vbaac10.chm10977 f1_keywords: - vbaac10.chm10977 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Move Method (Access) +# BoundObjectFrame.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.BoundObjectFrame.Name.md b/api/Access.BoundObjectFrame.Name.md index d8d71cbc07d..22500a82414 100644 --- a/api/Access.BoundObjectFrame.Name.md +++ b/api/Access.BoundObjectFrame.Name.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Name Property (Access) +title: BoundObjectFrame.Name property (Access) keywords: vbaac10.chm10976 f1_keywords: - vbaac10.chm10976 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Name Property (Access) +# BoundObjectFrame.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.OLEType.md b/api/Access.BoundObjectFrame.OLEType.md index bd534da3f99..662bae0aed9 100644 --- a/api/Access.BoundObjectFrame.OLEType.md +++ b/api/Access.BoundObjectFrame.OLEType.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OLEType Property (Access) +title: BoundObjectFrame.OLEType property (Access) keywords: vbaac10.chm10958 f1_keywords: - vbaac10.chm10958 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OLEType Property (Access) +# BoundObjectFrame.OLEType property (Access) You can use the **OLEType** property to determine if a control contains an OLE object, and, if so, whether the object is linked or embedded. Read/write **Byte**. ## Syntax - _expression_. `OLEType` +_expression_. `OLEType` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.OLETypeAllowed.md b/api/Access.BoundObjectFrame.OLETypeAllowed.md index 9e541e6366c..9f0fa9a0598 100644 --- a/api/Access.BoundObjectFrame.OLETypeAllowed.md +++ b/api/Access.BoundObjectFrame.OLETypeAllowed.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OLETypeAllowed Property (Access) +title: BoundObjectFrame.OLETypeAllowed property (Access) keywords: vbaac10.chm10919 f1_keywords: - vbaac10.chm10919 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OLETypeAllowed Property (Access) +# BoundObjectFrame.OLETypeAllowed property (Access) You can use the **OLETypeAllowed** property to specify the type of OLE object a control can contain. Read/write **Byte**. ## Syntax - _expression_. `OLETypeAllowed` +_expression_. `OLETypeAllowed` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Object.md b/api/Access.BoundObjectFrame.Object.md index 1edf0111d4f..d5d95b3549f 100644 --- a/api/Access.BoundObjectFrame.Object.md +++ b/api/Access.BoundObjectFrame.Object.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Object Property (Access) +title: BoundObjectFrame.Object property (Access) keywords: vbaac10.chm10899 f1_keywords: - vbaac10.chm10899 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Object Property (Access) +# BoundObjectFrame.Object property (Access) You can use the **Object** property in Visual Basic to return a reference to the ActiveX object that is associated with a linked or embedded OLE object in a control. By using this reference, you can access the properties or invoke the methods of the OLE object. Read-only **Object**. ## Syntax - _expression_. `Object` +_expression_. `Object` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.ObjectPalette.md b/api/Access.BoundObjectFrame.ObjectPalette.md index 4b37587678f..3e10cf922b8 100644 --- a/api/Access.BoundObjectFrame.ObjectPalette.md +++ b/api/Access.BoundObjectFrame.ObjectPalette.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.ObjectPalette Property (Access) +title: BoundObjectFrame.ObjectPalette property (Access) keywords: vbaac10.chm10953 f1_keywords: - vbaac10.chm10953 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.ObjectPalette Property (Access) +# BoundObjectFrame.ObjectPalette property (Access) The **ObjectPalette** property specifies the palette in the application used to create an OLE object. Read/write **Variant**. ## Syntax - _expression_. `ObjectPalette` +_expression_. `ObjectPalette` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.ObjectVerbs.md b/api/Access.BoundObjectFrame.ObjectVerbs.md index 9ebf53ad38e..b90e34ffdf2 100644 --- a/api/Access.BoundObjectFrame.ObjectVerbs.md +++ b/api/Access.BoundObjectFrame.ObjectVerbs.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.ObjectVerbs Property (Access) +title: BoundObjectFrame.ObjectVerbs property (Access) keywords: vbaac10.chm10900 f1_keywords: - vbaac10.chm10900 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.ObjectVerbs Property (Access) +# BoundObjectFrame.ObjectVerbs property (Access) You can use the **ObjectVerbs** property in Visual Basic to determine the list of verbs an OLE object supports. Read-only **String**. ## Syntax - _expression_. `ObjectVerbs`( ` _Index_` ) +_expression_. `ObjectVerbs`( ` _Index_` ) - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required|**Long**|An element in the array of supported verbs. This is a zero-based index, meaning zero (0) represents the first verb in the array, one (1) represents the second verb in the array, and so on.| diff --git a/api/Access.BoundObjectFrame.ObjectVerbsCount.md b/api/Access.BoundObjectFrame.ObjectVerbsCount.md index f75f4c3ab7c..30ed264af7d 100644 --- a/api/Access.BoundObjectFrame.ObjectVerbsCount.md +++ b/api/Access.BoundObjectFrame.ObjectVerbsCount.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.ObjectVerbsCount Property (Access) +title: BoundObjectFrame.ObjectVerbsCount property (Access) keywords: vbaac10.chm10955 f1_keywords: - vbaac10.chm10955 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.ObjectVerbsCount Property (Access) +# BoundObjectFrame.ObjectVerbsCount property (Access) You can use the **ObjectVerbsCount** property in Visual Basic to determine the number of verbs supported by an OLE object. Read-only **Long**. ## Syntax - _expression_. `ObjectVerbsCount` +_expression_. `ObjectVerbsCount` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.OldBorderStyle.md b/api/Access.BoundObjectFrame.OldBorderStyle.md index 75fd79744f4..1ae83d9bf91 100644 --- a/api/Access.BoundObjectFrame.OldBorderStyle.md +++ b/api/Access.BoundObjectFrame.OldBorderStyle.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OldBorderStyle Property (Access) +title: BoundObjectFrame.OldBorderStyle property (Access) keywords: vbaac10.chm10935 f1_keywords: - vbaac10.chm10935 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OldBorderStyle Property (Access) +# BoundObjectFrame.OldBorderStyle property (Access) You can use this property to set or returns the unedited value of the **BorderStyle** property for a form or control. This property is useful if you need to revert to an unedited or preferred border style. Read/write **Byte**. ## Syntax - _expression_. `OldBorderStyle` +_expression_. `OldBorderStyle` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.OldValue.md b/api/Access.BoundObjectFrame.OldValue.md index af5b394306a..4cf3230418e 100644 --- a/api/Access.BoundObjectFrame.OldValue.md +++ b/api/Access.BoundObjectFrame.OldValue.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OldValue Property (Access) +title: BoundObjectFrame.OldValue property (Access) keywords: vbaac10.chm10898 f1_keywords: - vbaac10.chm10898 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OldValue Property (Access) +# BoundObjectFrame.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.OnClick.md b/api/Access.BoundObjectFrame.OnClick.md index 740cf62c0a9..e1f8e27510d 100644 --- a/api/Access.BoundObjectFrame.OnClick.md +++ b/api/Access.BoundObjectFrame.OnClick.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OnClick Property (Access) +title: BoundObjectFrame.OnClick property (Access) keywords: vbaac10.chm10968 f1_keywords: - vbaac10.chm10968 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OnClick Property (Access) +# BoundObjectFrame.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.BoundObjectFrame.OnDblClick.md b/api/Access.BoundObjectFrame.OnDblClick.md index 6d4ba427b57..378797c7db1 100644 --- a/api/Access.BoundObjectFrame.OnDblClick.md +++ b/api/Access.BoundObjectFrame.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OnDblClick Property (Access) +title: BoundObjectFrame.OnDblClick property (Access) keywords: vbaac10.chm10969 f1_keywords: - vbaac10.chm10969 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OnDblClick Property (Access) +# BoundObjectFrame.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.BoundObjectFrame.OnEnter.md b/api/Access.BoundObjectFrame.OnEnter.md index 84c73a44786..f6cf7eac487 100644 --- a/api/Access.BoundObjectFrame.OnEnter.md +++ b/api/Access.BoundObjectFrame.OnEnter.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OnEnter Property (Access) +title: BoundObjectFrame.OnEnter property (Access) keywords: vbaac10.chm10964 f1_keywords: - vbaac10.chm10964 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OnEnter Property (Access) +# BoundObjectFrame.OnEnter property (Access) Sets or returns the value of the **On Enter** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnEnter` +_expression_. `OnEnter` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Enter** event occurs before a control actually receives the focus from a The **OnEnter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Enter** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.BoundObjectFrame.OnExit.md b/api/Access.BoundObjectFrame.OnExit.md index cfb2004bebb..7e02dc0cd82 100644 --- a/api/Access.BoundObjectFrame.OnExit.md +++ b/api/Access.BoundObjectFrame.OnExit.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OnExit Property (Access) +title: BoundObjectFrame.OnExit property (Access) keywords: vbaac10.chm10965 f1_keywords: - vbaac10.chm10965 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OnExit Property (Access) +# BoundObjectFrame.OnExit property (Access) Sets or returns the value of the **On Exit** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnExit` +_expression_. `OnExit` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Exit** event occurs just before a control loses the focus to another cont The **OnExit** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Exit** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.BoundObjectFrame.OnGotFocus.md b/api/Access.BoundObjectFrame.OnGotFocus.md index 87a92a94220..3c5570b4b55 100644 --- a/api/Access.BoundObjectFrame.OnGotFocus.md +++ b/api/Access.BoundObjectFrame.OnGotFocus.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OnGotFocus Property (Access) +title: BoundObjectFrame.OnGotFocus property (Access) keywords: vbaac10.chm10966 f1_keywords: - vbaac10.chm10966 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OnGotFocus Property (Access) +# BoundObjectFrame.OnGotFocus property (Access) Sets or returns the value of the **On Got Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnGotFocus` +_expression_. `OnGotFocus` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **GotFocus** event occurs when the object receives the focus. The **OnGotFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Got Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.BoundObjectFrame.OnKeyDown.md b/api/Access.BoundObjectFrame.OnKeyDown.md index d58c433cf5b..fb1de34611c 100644 --- a/api/Access.BoundObjectFrame.OnKeyDown.md +++ b/api/Access.BoundObjectFrame.OnKeyDown.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OnKeyDown Property (Access) +title: BoundObjectFrame.OnKeyDown property (Access) keywords: vbaac10.chm10973 f1_keywords: - vbaac10.chm10973 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OnKeyDown Property (Access) +# BoundObjectFrame.OnKeyDown property (Access) Sets or returns the value of the **On Key Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyDown` +_expression_. `OnKeyDown` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyDown** event occurs when a user presses a key while a form or control The **OnKeyDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.BoundObjectFrame.OnKeyPress.md b/api/Access.BoundObjectFrame.OnKeyPress.md index e3acdc80035..b0ffca5359a 100644 --- a/api/Access.BoundObjectFrame.OnKeyPress.md +++ b/api/Access.BoundObjectFrame.OnKeyPress.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OnKeyPress Property (Access) +title: BoundObjectFrame.OnKeyPress property (Access) keywords: vbaac10.chm10975 f1_keywords: - vbaac10.chm10975 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OnKeyPress Property (Access) +# BoundObjectFrame.OnKeyPress property (Access) Sets or returns the value of the **On Key Press** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyPress` +_expression_. `OnKeyPress` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyPress** event occurs when a user presses a key while a form or control The **OnKeyPress** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Press** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.BoundObjectFrame.OnKeyUp.md b/api/Access.BoundObjectFrame.OnKeyUp.md index 13946b08403..40e0c844cd1 100644 --- a/api/Access.BoundObjectFrame.OnKeyUp.md +++ b/api/Access.BoundObjectFrame.OnKeyUp.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OnKeyUp Property (Access) +title: BoundObjectFrame.OnKeyUp property (Access) keywords: vbaac10.chm10974 f1_keywords: - vbaac10.chm10974 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OnKeyUp Property (Access) +# BoundObjectFrame.OnKeyUp property (Access) Sets or returns the value of the **On Key Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyUp` +_expression_. `OnKeyUp` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyUp** event occurs when a user releases a key while a form or control h The **OnKeyUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.BoundObjectFrame.OnLostFocus.md b/api/Access.BoundObjectFrame.OnLostFocus.md index e7a23b55b22..27b6dd75b24 100644 --- a/api/Access.BoundObjectFrame.OnLostFocus.md +++ b/api/Access.BoundObjectFrame.OnLostFocus.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OnLostFocus Property (Access) +title: BoundObjectFrame.OnLostFocus property (Access) keywords: vbaac10.chm10967 f1_keywords: - vbaac10.chm10967 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OnLostFocus Property (Access) +# BoundObjectFrame.OnLostFocus property (Access) Sets or returns the value of the **On Lost Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnLostFocus` +_expression_. `OnLostFocus` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **LostFocus** event occurs when the object loses the focus. The **OnLostFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Lost Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.BoundObjectFrame.OnMouseDown.md b/api/Access.BoundObjectFrame.OnMouseDown.md index 58d4a805ef5..8c98c3dacb8 100644 --- a/api/Access.BoundObjectFrame.OnMouseDown.md +++ b/api/Access.BoundObjectFrame.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OnMouseDown Property (Access) +title: BoundObjectFrame.OnMouseDown property (Access) keywords: vbaac10.chm10970 f1_keywords: - vbaac10.chm10970 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OnMouseDown Property (Access) +# BoundObjectFrame.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.BoundObjectFrame.OnMouseMove.md b/api/Access.BoundObjectFrame.OnMouseMove.md index 485562dba30..3dea9abdec3 100644 --- a/api/Access.BoundObjectFrame.OnMouseMove.md +++ b/api/Access.BoundObjectFrame.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OnMouseMove Property (Access) +title: BoundObjectFrame.OnMouseMove property (Access) keywords: vbaac10.chm10971 f1_keywords: - vbaac10.chm10971 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OnMouseMove Property (Access) +# BoundObjectFrame.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.BoundObjectFrame.OnMouseUp.md b/api/Access.BoundObjectFrame.OnMouseUp.md index 3e8247e3d26..f2cbcb26c57 100644 --- a/api/Access.BoundObjectFrame.OnMouseUp.md +++ b/api/Access.BoundObjectFrame.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OnMouseUp Property (Access) +title: BoundObjectFrame.OnMouseUp property (Access) keywords: vbaac10.chm10972 f1_keywords: - vbaac10.chm10972 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OnMouseUp Property (Access) +# BoundObjectFrame.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.BoundObjectFrame.OnUpdated.md b/api/Access.BoundObjectFrame.OnUpdated.md index 54717689e15..3995c5e9fd7 100644 --- a/api/Access.BoundObjectFrame.OnUpdated.md +++ b/api/Access.BoundObjectFrame.OnUpdated.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.OnUpdated Property (Access) +title: BoundObjectFrame.OnUpdated property (Access) keywords: vbaac10.chm10963 f1_keywords: - vbaac10.chm10963 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.OnUpdated Property (Access) +# BoundObjectFrame.OnUpdated property (Access) Sets or returns the value of the **On Updated** box in the **Properties** window of a form or report. Read/write **String**. ## Syntax - _expression_. `OnUpdated` +_expression_. `OnUpdated` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks @@ -30,7 +30,7 @@ This property is helpful for programmatically changing the action Microsoft Acce The **OnUpdated** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Updated** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.BoundObjectFrame.Parent.md b/api/Access.BoundObjectFrame.Parent.md index c6d24dc6b68..e57566a05e1 100644 --- a/api/Access.BoundObjectFrame.Parent.md +++ b/api/Access.BoundObjectFrame.Parent.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Parent Property (Access) +title: BoundObjectFrame.Parent property (Access) keywords: vbaac10.chm10897 f1_keywords: - vbaac10.chm10897 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Parent Property (Access) +# BoundObjectFrame.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## See also diff --git a/api/Access.BoundObjectFrame.Properties.md b/api/Access.BoundObjectFrame.Properties.md index 22e414f5242..94e36625200 100644 --- a/api/Access.BoundObjectFrame.Properties.md +++ b/api/Access.BoundObjectFrame.Properties.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Properties Property (Access) +title: BoundObjectFrame.Properties property (Access) keywords: vbaac10.chm10901 f1_keywords: - vbaac10.chm10901 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Properties Property (Access) +# BoundObjectFrame.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Requery.md b/api/Access.BoundObjectFrame.Requery.md index 99c04b47f36..b14675c6f17 100644 --- a/api/Access.BoundObjectFrame.Requery.md +++ b/api/Access.BoundObjectFrame.Requery.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Requery Method (Access) +title: BoundObjectFrame.Requery method (Access) keywords: vbaac10.chm10903 f1_keywords: - vbaac10.chm10903 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Requery Method (Access) +# BoundObjectFrame.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.RightPadding.md b/api/Access.BoundObjectFrame.RightPadding.md index 5f94ca5568c..d2666f94e70 100644 --- a/api/Access.BoundObjectFrame.RightPadding.md +++ b/api/Access.BoundObjectFrame.RightPadding.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.RightPadding Property (Access) +title: BoundObjectFrame.RightPadding property (Access) keywords: vbaac10.chm10997 f1_keywords: - vbaac10.chm10997 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.RightPadding Property (Access) +# BoundObjectFrame.RightPadding property (Access) Gets or sets the amount of space (in inches) between the object frame and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## See also diff --git a/api/Access.BoundObjectFrame.Scaling.md b/api/Access.BoundObjectFrame.Scaling.md index 23a38b8a951..2b74b0b4acc 100644 --- a/api/Access.BoundObjectFrame.Scaling.md +++ b/api/Access.BoundObjectFrame.Scaling.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Scaling Property (Access) +title: BoundObjectFrame.Scaling property (Access) keywords: vbaac10.chm10957 f1_keywords: - vbaac10.chm10957 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Scaling Property (Access) +# BoundObjectFrame.Scaling property (Access) Controls how the contents of an object frame control are displayed. Read/write **Byte**. ## Syntax - _expression_. `Scaling` +_expression_. `Scaling` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Section.md b/api/Access.BoundObjectFrame.Section.md index 17fd619293d..0ccce0fd40d 100644 --- a/api/Access.BoundObjectFrame.Section.md +++ b/api/Access.BoundObjectFrame.Section.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Section Property (Access) +title: BoundObjectFrame.Section property (Access) keywords: vbaac10.chm10950 f1_keywords: - vbaac10.chm10950 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Section Property (Access) +# BoundObjectFrame.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.SetFocus.md b/api/Access.BoundObjectFrame.SetFocus.md index ce37ec9653f..145ec15b739 100644 --- a/api/Access.BoundObjectFrame.SetFocus.md +++ b/api/Access.BoundObjectFrame.SetFocus.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.SetFocus Method (Access) +title: BoundObjectFrame.SetFocus method (Access) keywords: vbaac10.chm10904 f1_keywords: - vbaac10.chm10904 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.SetFocus Method (Access) +# BoundObjectFrame.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.BoundObjectFrame.ShortcutMenuBar.md b/api/Access.BoundObjectFrame.ShortcutMenuBar.md index 605f5aa0dd9..258243538b3 100644 --- a/api/Access.BoundObjectFrame.ShortcutMenuBar.md +++ b/api/Access.BoundObjectFrame.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.ShortcutMenuBar Property (Access) +title: BoundObjectFrame.ShortcutMenuBar property (Access) keywords: vbaac10.chm10939 f1_keywords: - vbaac10.chm10939 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.ShortcutMenuBar Property (Access) +# BoundObjectFrame.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.SizeMode.md b/api/Access.BoundObjectFrame.SizeMode.md index e7ef3b31bcc..d22355897c2 100644 --- a/api/Access.BoundObjectFrame.SizeMode.md +++ b/api/Access.BoundObjectFrame.SizeMode.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.SizeMode Property (Access) +title: BoundObjectFrame.SizeMode property (Access) keywords: vbaac10.chm10911 f1_keywords: - vbaac10.chm10911 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.SizeMode Property (Access) +# BoundObjectFrame.SizeMode property (Access) You can use the **SizeMode** property to specify how to size a picture or other object in a bound object frame, an unbound object frame, or an image control. ## Syntax - _expression_. `SizeMode` +_expression_. `SizeMode` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.SizeToFit.md b/api/Access.BoundObjectFrame.SizeToFit.md index 06f1f595c18..61be444352e 100644 --- a/api/Access.BoundObjectFrame.SizeToFit.md +++ b/api/Access.BoundObjectFrame.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.SizeToFit Method (Access) +title: BoundObjectFrame.SizeToFit method (Access) keywords: vbaac10.chm10902 f1_keywords: - vbaac10.chm10902 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.SizeToFit Method (Access) +# BoundObjectFrame.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.SourceDoc.md b/api/Access.BoundObjectFrame.SourceDoc.md index fd373ecb5f4..c828b2229a8 100644 --- a/api/Access.BoundObjectFrame.SourceDoc.md +++ b/api/Access.BoundObjectFrame.SourceDoc.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.SourceDoc Property (Access) +title: BoundObjectFrame.SourceDoc property (Access) keywords: vbaac10.chm10913 f1_keywords: - vbaac10.chm10913 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.SourceDoc Property (Access) +# BoundObjectFrame.SourceDoc property (Access) You can use the **SourceDoc** property to specify the file to create a link to or to embed when you create a linked object or embedded object by using the **Action** property in Visual Basic. Read/write **String**. ## Syntax - _expression_. `SourceDoc` +_expression_. `SourceDoc` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.SourceItem.md b/api/Access.BoundObjectFrame.SourceItem.md index 3718fdc1432..71d9abf686c 100644 --- a/api/Access.BoundObjectFrame.SourceItem.md +++ b/api/Access.BoundObjectFrame.SourceItem.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.SourceItem Property (Access) +title: BoundObjectFrame.SourceItem property (Access) keywords: vbaac10.chm10914 f1_keywords: - vbaac10.chm10914 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.SourceItem Property (Access) +# BoundObjectFrame.SourceItem property (Access) You can use the **SourceItem** property to specify the data within a file to be linked when you create a linked OLE object. Read/write **String**. ## Syntax - _expression_. `SourceItem` +_expression_. `SourceItem` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.SpecialEffect.md b/api/Access.BoundObjectFrame.SpecialEffect.md index ec1632551ba..2db481d28c2 100644 --- a/api/Access.BoundObjectFrame.SpecialEffect.md +++ b/api/Access.BoundObjectFrame.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.SpecialEffect Property (Access) +title: BoundObjectFrame.SpecialEffect property (Access) keywords: vbaac10.chm10933 f1_keywords: - vbaac10.chm10933 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.SpecialEffect Property (Access) +# BoundObjectFrame.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.StatusBarText.md b/api/Access.BoundObjectFrame.StatusBarText.md index 44dfe65cd81..94a5fe1359d 100644 --- a/api/Access.BoundObjectFrame.StatusBarText.md +++ b/api/Access.BoundObjectFrame.StatusBarText.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.StatusBarText Property (Access) +title: BoundObjectFrame.StatusBarText property (Access) keywords: vbaac10.chm10920 f1_keywords: - vbaac10.chm10920 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.StatusBarText Property (Access) +# BoundObjectFrame.StatusBarText property (Access) You can use the **StatusBarText** property to specify the text that is displayed in the status bar when a control is selected. Read/write **String**. ## Syntax - _expression_. `StatusBarText` +_expression_. `StatusBarText` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.TabIndex.md b/api/Access.BoundObjectFrame.TabIndex.md index 3b1cf13c087..118ec8349c1 100644 --- a/api/Access.BoundObjectFrame.TabIndex.md +++ b/api/Access.BoundObjectFrame.TabIndex.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.TabIndex Property (Access) +title: BoundObjectFrame.TabIndex property (Access) keywords: vbaac10.chm10926 f1_keywords: - vbaac10.chm10926 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.TabIndex Property (Access) +# BoundObjectFrame.TabIndex property (Access) You can use the **TabIndex** property to specify a control's place in the tab order on a form or report. Read/write **Integer**. ## Syntax - _expression_. `TabIndex` +_expression_. `TabIndex` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.TabStop.md b/api/Access.BoundObjectFrame.TabStop.md index cadaaa48716..59fa233af1f 100644 --- a/api/Access.BoundObjectFrame.TabStop.md +++ b/api/Access.BoundObjectFrame.TabStop.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.TabStop Property (Access) +title: BoundObjectFrame.TabStop property (Access) keywords: vbaac10.chm10925 f1_keywords: - vbaac10.chm10925 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.TabStop Property (Access) +# BoundObjectFrame.TabStop property (Access) You can use the **TabStop** property to specify whether you can use the TAB key to move the focus to a control. Read/write **Boolean**. ## Syntax - _expression_. `TabStop` +_expression_. `TabStop` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Tag.md b/api/Access.BoundObjectFrame.Tag.md index a0959d8229c..76ee772e0b9 100644 --- a/api/Access.BoundObjectFrame.Tag.md +++ b/api/Access.BoundObjectFrame.Tag.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Tag Property (Access) +title: BoundObjectFrame.Tag property (Access) keywords: vbaac10.chm10952 f1_keywords: - vbaac10.chm10952 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Tag Property (Access) +# BoundObjectFrame.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Top.md b/api/Access.BoundObjectFrame.Top.md index 2d2f5f1fdb0..1599c90533e 100644 --- a/api/Access.BoundObjectFrame.Top.md +++ b/api/Access.BoundObjectFrame.Top.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Top Property (Access) +title: BoundObjectFrame.Top property (Access) keywords: vbaac10.chm10928 f1_keywords: - vbaac10.chm10928 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Top Property (Access) +# BoundObjectFrame.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.TopPadding.md b/api/Access.BoundObjectFrame.TopPadding.md index 77d042a824c..7ac90ad88c8 100644 --- a/api/Access.BoundObjectFrame.TopPadding.md +++ b/api/Access.BoundObjectFrame.TopPadding.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.TopPadding Property (Access) +title: BoundObjectFrame.TopPadding property (Access) keywords: vbaac10.chm10996 f1_keywords: - vbaac10.chm10996 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.TopPadding Property (Access) +# BoundObjectFrame.TopPadding property (Access) Gets or sets the amount of space (in inches) between the object frame and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## See also diff --git a/api/Access.BoundObjectFrame.UpdateOptions.md b/api/Access.BoundObjectFrame.UpdateOptions.md index 4169563c323..36af6e1beae 100644 --- a/api/Access.BoundObjectFrame.UpdateOptions.md +++ b/api/Access.BoundObjectFrame.UpdateOptions.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.UpdateOptions Property (Access) +title: BoundObjectFrame.UpdateOptions property (Access) keywords: vbaac10.chm10917 f1_keywords: - vbaac10.chm10917 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.UpdateOptions Property (Access) +# BoundObjectFrame.UpdateOptions property (Access) You can use the **UpdateOptions** property to specify how a linkedOLE object is updated. Read/write **Integer**. ## Syntax - _expression_. `UpdateOptions` +_expression_. `UpdateOptions` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Updated.md b/api/Access.BoundObjectFrame.Updated.md index e4940a2c1e5..2879689573c 100644 --- a/api/Access.BoundObjectFrame.Updated.md +++ b/api/Access.BoundObjectFrame.Updated.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Updated Event (Access) +title: BoundObjectFrame.Updated event (Access) keywords: vbaac10.chm14089 f1_keywords: - vbaac10.chm14089 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Updated Event (Access) +# BoundObjectFrame.Updated event (Access) The **Updated** event occurs when an OLE object's data has been modified. ## Syntax - _expression_. `Updated`( ` _Code_` ) +_expression_. `Updated`( ` _Code_` ) - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Value.md b/api/Access.BoundObjectFrame.Value.md index d3778d1f088..b8e31f04158 100644 --- a/api/Access.BoundObjectFrame.Value.md +++ b/api/Access.BoundObjectFrame.Value.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Value Property (Access) +title: BoundObjectFrame.Value property (Access) keywords: vbaac10.chm10906 f1_keywords: - vbaac10.chm10906 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Value Property (Access) +# BoundObjectFrame.Value property (Access) Gets of sets the value of the field that the control is bound to. Read/write **Variant**. ## Syntax - _expression_. `Value` +_expression_. `Value` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.VarOleObject.md b/api/Access.BoundObjectFrame.VarOleObject.md index 9d46fdbb449..6349277a389 100644 --- a/api/Access.BoundObjectFrame.VarOleObject.md +++ b/api/Access.BoundObjectFrame.VarOleObject.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.VarOleObject Property (Access) +title: BoundObjectFrame.VarOleObject property (Access) keywords: vbaac10.chm10954 f1_keywords: - vbaac10.chm10954 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.VarOleObject Property (Access) +# BoundObjectFrame.VarOleObject property (Access) Gets a pointer to an **IOLEObject** that represents the memory address of an OLE object. Read-only **Variant**. ## Syntax - _expression_. `VarOleObject` +_expression_. `VarOleObject` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Verb.md b/api/Access.BoundObjectFrame.Verb.md index 4d207858760..881eb72f8ea 100644 --- a/api/Access.BoundObjectFrame.Verb.md +++ b/api/Access.BoundObjectFrame.Verb.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Verb Property (Access) +title: BoundObjectFrame.Verb property (Access) keywords: vbaac10.chm10918 f1_keywords: - vbaac10.chm10918 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Verb Property (Access) +# BoundObjectFrame.Verb property (Access) You can use the **Verb** property to specify the operation to perform when an OLE object is activated, which is permitted when the control's **Action** property is set to **acOLEActivate**. Read/write **Long**. ## Syntax - _expression_. `Verb` +_expression_. `Verb` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.VerticalAnchor.md b/api/Access.BoundObjectFrame.VerticalAnchor.md index b990305eb8f..4eb4fa1f5f4 100644 --- a/api/Access.BoundObjectFrame.VerticalAnchor.md +++ b/api/Access.BoundObjectFrame.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.VerticalAnchor Property (Access) +title: BoundObjectFrame.VerticalAnchor property (Access) keywords: vbaac10.chm11009 f1_keywords: - vbaac10.chm11009 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.VerticalAnchor Property (Access) +# BoundObjectFrame.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified object frame is anchored vertically within its layout. Read/write. ## Syntax - _expression_. **VerticalAnchor** +_expression_. **VerticalAnchor** - _expression_. A variable that represents a **BoundObjectFrame** object. +_expression_. A variable that represents a **BoundObjectFrame** object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Visible.md b/api/Access.BoundObjectFrame.Visible.md index e91426029b6..2825a574c22 100644 --- a/api/Access.BoundObjectFrame.Visible.md +++ b/api/Access.BoundObjectFrame.Visible.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Visible Property (Access) +title: BoundObjectFrame.Visible property (Access) keywords: vbaac10.chm10921 f1_keywords: - vbaac10.chm10921 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Visible Property (Access) +# BoundObjectFrame.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.Width.md b/api/Access.BoundObjectFrame.Width.md index 8ea4cd23d60..fd9a8df7712 100644 --- a/api/Access.BoundObjectFrame.Width.md +++ b/api/Access.BoundObjectFrame.Width.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame.Width Property (Access) +title: BoundObjectFrame.Width property (Access) keywords: vbaac10.chm10929 f1_keywords: - vbaac10.chm10929 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame.Width Property (Access) +# BoundObjectFrame.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. +_expression_ A variable that represents a [BoundObjectFrame](Access.BoundObjectFrame.md) object. ## Remarks diff --git a/api/Access.BoundObjectFrame.md b/api/Access.BoundObjectFrame.md index ff3d03f0e45..d1af59f5037 100644 --- a/api/Access.BoundObjectFrame.md +++ b/api/Access.BoundObjectFrame.md @@ -1,5 +1,5 @@ --- -title: BoundObjectFrame Object (Access) +title: BoundObjectFrame object (Access) keywords: vbaac10.chm11026 f1_keywords: - vbaac10.chm11026 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# BoundObjectFrame Object (Access) +# BoundObjectFrame object (Access) A bound object frame object displays a picture, chart, or any OLE object stored in a table in a Microsoft Access database. For example, if you store pictures of your employees in a table in Microsoft Access, you can use a bound object frame to display these pictures on a form or report. diff --git a/api/Access.CheckBox.AddColon.md b/api/Access.CheckBox.AddColon.md index 91ff5a5edbc..35138066448 100644 --- a/api/Access.CheckBox.AddColon.md +++ b/api/Access.CheckBox.AddColon.md @@ -1,5 +1,5 @@ --- -title: CheckBox.AddColon Property (Access) +title: CheckBox.AddColon property (Access) keywords: vbaac10.chm10726 f1_keywords: - vbaac10.chm10726 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.AddColon Property (Access) +# CheckBox.AddColon property (Access) Specifies whether a colon follows the text in labels for new controls. Read/write **Boolean**. ## Syntax - _expression_. `AddColon` +_expression_. `AddColon` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## See also diff --git a/api/Access.CheckBox.AfterUpdate(even).md b/api/Access.CheckBox.AfterUpdate(even).md index 98372b9262a..e2e41992008 100644 --- a/api/Access.CheckBox.AfterUpdate(even).md +++ b/api/Access.CheckBox.AfterUpdate(even).md @@ -1,5 +1,5 @@ --- -title: CheckBox.AfterUpdate Event (Access) +title: CheckBox.AfterUpdate event (Access) keywords: vbaac10.chm14121 f1_keywords: - vbaac10.chm14121 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.AfterUpdate Event (Access) +# CheckBox.AfterUpdate event (Access) The **AfterUpdate** event occurs after changed data in a control or record is updated. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.AfterUpdate(property).md b/api/Access.CheckBox.AfterUpdate(property).md index a508d4df143..a6c4c1ec21e 100644 --- a/api/Access.CheckBox.AfterUpdate(property).md +++ b/api/Access.CheckBox.AfterUpdate(property).md @@ -1,5 +1,5 @@ --- -title: CheckBox.AfterUpdate Property (Access) +title: CheckBox.AfterUpdate property (Access) keywords: vbaac10.chm10736 f1_keywords: - vbaac10.chm10736 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.AfterUpdate Property (Access) +# CheckBox.AfterUpdate property (Access) Returns or sets which macro, event procedure, or user-defined function runs when the **AfterUpdate** event occurs. Read/write **String**. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.Application.md b/api/Access.CheckBox.Application.md index a3a2469ea12..93779c23b81 100644 --- a/api/Access.CheckBox.Application.md +++ b/api/Access.CheckBox.Application.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Application Property (Access) +title: CheckBox.Application property (Access) keywords: vbaac10.chm10682 f1_keywords: - vbaac10.chm10682 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Application Property (Access) +# CheckBox.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.AutoLabel.md b/api/Access.CheckBox.AutoLabel.md index 6b0f4542c1b..403bb26fb5e 100644 --- a/api/Access.CheckBox.AutoLabel.md +++ b/api/Access.CheckBox.AutoLabel.md @@ -1,5 +1,5 @@ --- -title: CheckBox.AutoLabel Property (Access) +title: CheckBox.AutoLabel property (Access) keywords: vbaac10.chm10725 f1_keywords: - vbaac10.chm10725 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.AutoLabel Property (Access) +# CheckBox.AutoLabel property (Access) Specifies whether labels are automatically created and attached to new controls. Read/write **Boolean**. ## Syntax - _expression_. `AutoLabel` +_expression_. `AutoLabel` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## See also diff --git a/api/Access.CheckBox.BeforeUpdate(even).md b/api/Access.CheckBox.BeforeUpdate(even).md index 3213d651f17..cc6d985935f 100644 --- a/api/Access.CheckBox.BeforeUpdate(even).md +++ b/api/Access.CheckBox.BeforeUpdate(even).md @@ -1,5 +1,5 @@ --- -title: CheckBox.BeforeUpdate Event (Access) +title: CheckBox.BeforeUpdate event (Access) keywords: vbaac10.chm14120 f1_keywords: - vbaac10.chm14120 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CheckBox.BeforeUpdate Event (Access) +# CheckBox.BeforeUpdate event (Access) The **BeforeUpdate** event occurs before changed data in a control or record is updated. ## Syntax - _expression_. `BeforeUpdate`( ` _Cancel_` ) +_expression_. `BeforeUpdate`( ` _Cancel_` ) - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **BeforeUpdate** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **BeforeUpdate** event.| diff --git a/api/Access.CheckBox.BeforeUpdate(property).md b/api/Access.CheckBox.BeforeUpdate(property).md index cae36325b42..e93ae788219 100644 --- a/api/Access.CheckBox.BeforeUpdate(property).md +++ b/api/Access.CheckBox.BeforeUpdate(property).md @@ -1,5 +1,5 @@ --- -title: CheckBox.BeforeUpdate Property (Access) +title: CheckBox.BeforeUpdate property (Access) keywords: vbaac10.chm10735 f1_keywords: - vbaac10.chm10735 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.BeforeUpdate Property (Access) +# CheckBox.BeforeUpdate property (Access) Returns or sets which macro, event procedure, or user-defined function runs when the **BeforeUpdate** event occurs. Read/write **String**. ## Syntax - _expression_. `BeforeUpdate` +_expression_. `BeforeUpdate` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.BorderColor.md b/api/Access.CheckBox.BorderColor.md index 6cb36e7bb94..979696d9fa8 100644 --- a/api/Access.CheckBox.BorderColor.md +++ b/api/Access.CheckBox.BorderColor.md @@ -1,5 +1,5 @@ --- -title: CheckBox.BorderColor Property (Access) +title: CheckBox.BorderColor property (Access) keywords: vbaac10.chm10718 f1_keywords: - vbaac10.chm10718 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.BorderColor Property (Access) +# CheckBox.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.BorderShade.md b/api/Access.CheckBox.BorderShade.md index b6c90b8a5d3..f46d6154ae7 100644 --- a/api/Access.CheckBox.BorderShade.md +++ b/api/Access.CheckBox.BorderShade.md @@ -1,5 +1,5 @@ --- -title: CheckBox.BorderShade Property (Access) +title: CheckBox.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.BorderShade Property (Access) +# CheckBox.BorderShade property (Access) Gets or sets the shade that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents a '[CheckBox](Access.CheckBox.md)' object. +_expression_ A variable that represents a '[CheckBox](Access.CheckBox.md)' object. ## Remarks diff --git a/api/Access.CheckBox.BorderStyle.md b/api/Access.CheckBox.BorderStyle.md index ab3de45a8c0..9ff1d8315cf 100644 --- a/api/Access.CheckBox.BorderStyle.md +++ b/api/Access.CheckBox.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: CheckBox.BorderStyle Property (Access) +title: CheckBox.BorderStyle property (Access) keywords: vbaac10.chm10714 f1_keywords: - vbaac10.chm10714 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.BorderStyle Property (Access) +# CheckBox.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.BorderThemeColorIndex.md b/api/Access.CheckBox.BorderThemeColorIndex.md index 93d9650ce46..143ef36d68f 100644 --- a/api/Access.CheckBox.BorderThemeColorIndex.md +++ b/api/Access.CheckBox.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: CheckBox.BorderThemeColorIndex Property (Access) +title: CheckBox.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.BorderThemeColorIndex Property (Access) +# CheckBox.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents a '[CheckBox](Access.CheckBox.md)' object. +_expression_ A variable that represents a '[CheckBox](Access.CheckBox.md)' object. ## Remarks diff --git a/api/Access.CheckBox.BorderTint.md b/api/Access.CheckBox.BorderTint.md index 401165a091c..c0515e50c9a 100644 --- a/api/Access.CheckBox.BorderTint.md +++ b/api/Access.CheckBox.BorderTint.md @@ -1,5 +1,5 @@ --- -title: CheckBox.BorderTint Property (Access) +title: CheckBox.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.BorderTint Property (Access) +# CheckBox.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.BorderWidth.md b/api/Access.CheckBox.BorderWidth.md index 5801a81a9b2..d4be42f9ac0 100644 --- a/api/Access.CheckBox.BorderWidth.md +++ b/api/Access.CheckBox.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: CheckBox.BorderWidth Property (Access) +title: CheckBox.BorderWidth property (Access) keywords: vbaac10.chm10716 f1_keywords: - vbaac10.chm10716 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.BorderWidth Property (Access) +# CheckBox.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.BottomPadding.md b/api/Access.CheckBox.BottomPadding.md index e6c075f25bc..9d682163b9f 100644 --- a/api/Access.CheckBox.BottomPadding.md +++ b/api/Access.CheckBox.BottomPadding.md @@ -1,5 +1,5 @@ --- -title: CheckBox.BottomPadding Property (Access) +title: CheckBox.BottomPadding property (Access) keywords: vbaac10.chm10771 f1_keywords: - vbaac10.chm10771 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.BottomPadding Property (Access) +# CheckBox.BottomPadding property (Access) Gets or sets the amount of space (in inches) between the check box and its bottom gridline. Read/write **Integer**. ## Syntax - _expression_. `BottomPadding` +_expression_. `BottomPadding` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## See also diff --git a/api/Access.CheckBox.Click.md b/api/Access.CheckBox.Click.md index f1d12be0098..ecd107be028 100644 --- a/api/Access.CheckBox.Click.md +++ b/api/Access.CheckBox.Click.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Click Event (Access) +title: CheckBox.Click event (Access) keywords: vbaac10.chm14119 f1_keywords: - vbaac10.chm14119 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Click Event (Access) +# CheckBox.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.ColumnHidden.md b/api/Access.CheckBox.ColumnHidden.md index efdc2bcb3c6..b82fadf1a95 100644 --- a/api/Access.CheckBox.ColumnHidden.md +++ b/api/Access.CheckBox.ColumnHidden.md @@ -1,5 +1,5 @@ --- -title: CheckBox.ColumnHidden Property (Access) +title: CheckBox.ColumnHidden property (Access) keywords: vbaac10.chm10724 f1_keywords: - vbaac10.chm10724 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.ColumnHidden Property (Access) +# CheckBox.ColumnHidden property (Access) You can use the **ColumnHidden** property to show or hide a specified column in Datasheet view. Read/write **Boolean**. ## Syntax - _expression_. `ColumnHidden` +_expression_. `ColumnHidden` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.ColumnOrder.md b/api/Access.CheckBox.ColumnOrder.md index 666ce07f7f1..8965333ef02 100644 --- a/api/Access.CheckBox.ColumnOrder.md +++ b/api/Access.CheckBox.ColumnOrder.md @@ -1,5 +1,5 @@ --- -title: CheckBox.ColumnOrder Property (Access) +title: CheckBox.ColumnOrder property (Access) keywords: vbaac10.chm10723 f1_keywords: - vbaac10.chm10723 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.ColumnOrder Property (Access) +# CheckBox.ColumnOrder property (Access) You can use the **ColumnOrder** property to specify the order of the columns in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `ColumnOrder` +_expression_. `ColumnOrder` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.ColumnWidth.md b/api/Access.CheckBox.ColumnWidth.md index cbd21d04ff8..23aa95fe72b 100644 --- a/api/Access.CheckBox.ColumnWidth.md +++ b/api/Access.CheckBox.ColumnWidth.md @@ -1,5 +1,5 @@ --- -title: CheckBox.ColumnWidth Property (Access) +title: CheckBox.ColumnWidth property (Access) keywords: vbaac10.chm10722 f1_keywords: - vbaac10.chm10722 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.ColumnWidth Property (Access) +# CheckBox.ColumnWidth property (Access) You can use the **ColumnWidth** property to specify the width of a column in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `ColumnWidth` +_expression_. `ColumnWidth` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.ControlSource.md b/api/Access.CheckBox.ControlSource.md index c7e6b4cd8ea..4b5e254d699 100644 --- a/api/Access.CheckBox.ControlSource.md +++ b/api/Access.CheckBox.ControlSource.md @@ -1,5 +1,5 @@ --- -title: CheckBox.ControlSource Property (Access) +title: CheckBox.ControlSource property (Access) keywords: vbaac10.chm10696 f1_keywords: - vbaac10.chm10696 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.ControlSource Property (Access) +# CheckBox.ControlSource property (Access) You can use the **ControlSource** property to specify what data appears in a control. You can display and edit data bound to a field in a table, query, or SQL statement. You can also display the result of an expression. Read/write **String**. ## Syntax - _expression_. `ControlSource` +_expression_. `ControlSource` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.ControlTipText.md b/api/Access.CheckBox.ControlTipText.md index d22d628755b..0d8c639b473 100644 --- a/api/Access.CheckBox.ControlTipText.md +++ b/api/Access.CheckBox.ControlTipText.md @@ -1,5 +1,5 @@ --- -title: CheckBox.ControlTipText Property (Access) +title: CheckBox.ControlTipText property (Access) keywords: vbaac10.chm10720 f1_keywords: - vbaac10.chm10720 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.ControlTipText Property (Access) +# CheckBox.ControlTipText property (Access) You can use the **ControlTipText** property to specify the text that appears in a ScreenTip when you hold the mouse pointer over a control. Read/write **String**. ## Syntax - _expression_. `ControlTipText` +_expression_. `ControlTipText` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.ControlType.md b/api/Access.CheckBox.ControlType.md index 5f1bd7a02f9..e78950a39e4 100644 --- a/api/Access.CheckBox.ControlType.md +++ b/api/Access.CheckBox.ControlType.md @@ -1,5 +1,5 @@ --- -title: CheckBox.ControlType Property (Access) +title: CheckBox.ControlType property (Access) keywords: vbaac10.chm10694 f1_keywords: - vbaac10.chm10694 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.ControlType Property (Access) +# CheckBox.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.Controls.md b/api/Access.CheckBox.Controls.md index 4022f5e1e4b..89253e3c329 100644 --- a/api/Access.CheckBox.Controls.md +++ b/api/Access.CheckBox.Controls.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Controls Property (Access) +title: CheckBox.Controls property (Access) keywords: vbaac10.chm10690 f1_keywords: - vbaac10.chm10690 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Controls Property (Access) +# CheckBox.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.DblClick.md b/api/Access.CheckBox.DblClick.md index 35b372b71af..9bfbc17bac3 100644 --- a/api/Access.CheckBox.DblClick.md +++ b/api/Access.CheckBox.DblClick.md @@ -1,5 +1,5 @@ --- -title: CheckBox.DblClick Event (Access) +title: CheckBox.DblClick event (Access) keywords: vbaac10.chm14126 f1_keywords: - vbaac10.chm14126 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CheckBox.DblClick Event (Access) +# CheckBox.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_` ) +_expression_. `DblClick`( ` _Cancel_` ) - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **DblClick** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **DblClick** event.| diff --git a/api/Access.CheckBox.DefaultValue.md b/api/Access.CheckBox.DefaultValue.md index 0b723802a17..637ed7ba8ef 100644 --- a/api/Access.CheckBox.DefaultValue.md +++ b/api/Access.CheckBox.DefaultValue.md @@ -1,5 +1,5 @@ --- -title: CheckBox.DefaultValue Property (Access) +title: CheckBox.DefaultValue property (Access) keywords: vbaac10.chm10697 f1_keywords: - vbaac10.chm10697 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.DefaultValue Property (Access) +# CheckBox.DefaultValue property (Access) Specifies a value that is automatically entered in a field when a new record is created. For example, in an Addresses table you can set the default value for the City field to New York. When users add a record to the table, they can either accept this value or enter the name of a different city. Read/write **String**. ## Syntax - _expression_. `DefaultValue` +_expression_. `DefaultValue` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.DisplayWhen.md b/api/Access.CheckBox.DisplayWhen.md index b71564c7d67..b8be1022466 100644 --- a/api/Access.CheckBox.DisplayWhen.md +++ b/api/Access.CheckBox.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: CheckBox.DisplayWhen Property (Access) +title: CheckBox.DisplayWhen property (Access) keywords: vbaac10.chm10702 f1_keywords: - vbaac10.chm10702 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.DisplayWhen Property (Access) +# CheckBox.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.Enabled.md b/api/Access.CheckBox.Enabled.md index 54054b3fc2f..5e061e82736 100644 --- a/api/Access.CheckBox.Enabled.md +++ b/api/Access.CheckBox.Enabled.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Enabled Property (Access) +title: CheckBox.Enabled property (Access) keywords: vbaac10.chm10703 f1_keywords: - vbaac10.chm10703 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Enabled Property (Access) +# CheckBox.Enabled property (Access) You can use the **Enabled** property to set or return the status of the conditional format in the **[FormatCondition](Access.FormatCondition.md)** object. Read/write **Boolean**. ## Syntax - _expression_. `Enabled` +_expression_. `Enabled` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.Enter.md b/api/Access.CheckBox.Enter.md index 983b226fb96..a2ee6d9def7 100644 --- a/api/Access.CheckBox.Enter.md +++ b/api/Access.CheckBox.Enter.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Enter Event (Access) +title: CheckBox.Enter event (Access) keywords: vbaac10.chm14122 f1_keywords: - vbaac10.chm14122 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Enter Event (Access) +# CheckBox.Enter event (Access) The **Enter** event occurs before a control actually receives the focus from a control on the same form or report. ## Syntax - _expression_. `Enter` +_expression_. `Enter` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.EventProcPrefix.md b/api/Access.CheckBox.EventProcPrefix.md index 7d53a47202c..adf0b471c3e 100644 --- a/api/Access.CheckBox.EventProcPrefix.md +++ b/api/Access.CheckBox.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: CheckBox.EventProcPrefix Property (Access) +title: CheckBox.EventProcPrefix property (Access) keywords: vbaac10.chm10692 f1_keywords: - vbaac10.chm10692 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.EventProcPrefix Property (Access) +# CheckBox.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.Exit.md b/api/Access.CheckBox.Exit.md index 613df5a336f..54d8d266b45 100644 --- a/api/Access.CheckBox.Exit.md +++ b/api/Access.CheckBox.Exit.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Exit Event (Access) +title: CheckBox.Exit event (Access) keywords: vbaac10.chm14123 f1_keywords: - vbaac10.chm14123 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CheckBox.Exit Event (Access) +# CheckBox.Exit event (Access) The **Exit** event occurs just before a control loses the focus to another control on the same form or report. ## Syntax - _expression_. `Exit`( ` _Cancel_` ) +_expression_. `Exit`( ` _Cancel_` ) - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|Set to **True** to cancel the event.| diff --git a/api/Access.CheckBox.GotFocus.md b/api/Access.CheckBox.GotFocus.md index 84ac60ec093..6272694da6f 100644 --- a/api/Access.CheckBox.GotFocus.md +++ b/api/Access.CheckBox.GotFocus.md @@ -1,5 +1,5 @@ --- -title: CheckBox.GotFocus Event (Access) +title: CheckBox.GotFocus event (Access) keywords: vbaac10.chm14124 f1_keywords: - vbaac10.chm14124 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.GotFocus Event (Access) +# CheckBox.GotFocus event (Access) The **GotFocus** event occurs when the specified object receives the focus. ## Syntax - _expression_. `GotFocus` +_expression_. `GotFocus` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.GridlineColor.md b/api/Access.CheckBox.GridlineColor.md index c07b135bbf3..46914ca9892 100644 --- a/api/Access.CheckBox.GridlineColor.md +++ b/api/Access.CheckBox.GridlineColor.md @@ -1,5 +1,5 @@ --- -title: CheckBox.GridlineColor Property (Access) +title: CheckBox.GridlineColor property (Access) keywords: vbaac10.chm10780 f1_keywords: - vbaac10.chm10780 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.GridlineColor Property (Access) +# CheckBox.GridlineColor property (Access) Gets or sets the color of the gridline for the specified check box. Read/write **Long**. ## Syntax - _expression_. `GridlineColor` +_expression_. `GridlineColor` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.GridlineShade.md b/api/Access.CheckBox.GridlineShade.md index d0c5f465982..f4666b91aa4 100644 --- a/api/Access.CheckBox.GridlineShade.md +++ b/api/Access.CheckBox.GridlineShade.md @@ -1,5 +1,5 @@ --- -title: CheckBox.GridlineShade Property (Access) +title: CheckBox.GridlineShade property (Access) keywords: vbaac10.chm14637 f1_keywords: - vbaac10.chm14637 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.GridlineShade Property (Access) +# CheckBox.GridlineShade property (Access) Gets or sets the shade applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineShade` +_expression_. `GridlineShade` - _expression_ A variable that represents an [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents an [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.GridlineStyleBottom.md b/api/Access.CheckBox.GridlineStyleBottom.md index 0bb6a0dc213..74bf5a71eac 100644 --- a/api/Access.CheckBox.GridlineStyleBottom.md +++ b/api/Access.CheckBox.GridlineStyleBottom.md @@ -1,5 +1,5 @@ --- -title: CheckBox.GridlineStyleBottom Property (Access) +title: CheckBox.GridlineStyleBottom property (Access) keywords: vbaac10.chm10775 f1_keywords: - vbaac10.chm10775 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.GridlineStyleBottom Property (Access) +# CheckBox.GridlineStyleBottom property (Access) Gets or sets the bottom gridline style of the specified check box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleBottom` +_expression_. `GridlineStyleBottom` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.GridlineStyleLeft.md b/api/Access.CheckBox.GridlineStyleLeft.md index 141098d5786..d796bcddd83 100644 --- a/api/Access.CheckBox.GridlineStyleLeft.md +++ b/api/Access.CheckBox.GridlineStyleLeft.md @@ -1,5 +1,5 @@ --- -title: CheckBox.GridlineStyleLeft Property (Access) +title: CheckBox.GridlineStyleLeft property (Access) keywords: vbaac10.chm10772 f1_keywords: - vbaac10.chm10772 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.GridlineStyleLeft Property (Access) +# CheckBox.GridlineStyleLeft property (Access) Gets or sets the width of the bottom gridline for the specified check box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleLeft` +_expression_. `GridlineStyleLeft` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.GridlineStyleRight.md b/api/Access.CheckBox.GridlineStyleRight.md index ee2bb299af1..7d3abd0a99e 100644 --- a/api/Access.CheckBox.GridlineStyleRight.md +++ b/api/Access.CheckBox.GridlineStyleRight.md @@ -1,5 +1,5 @@ --- -title: CheckBox.GridlineStyleRight Property (Access) +title: CheckBox.GridlineStyleRight property (Access) keywords: vbaac10.chm10774 f1_keywords: - vbaac10.chm10774 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.GridlineStyleRight Property (Access) +# CheckBox.GridlineStyleRight property (Access) Gets or sets the right gridline style of the specified check box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleRight` +_expression_. `GridlineStyleRight` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.GridlineStyleTop.md b/api/Access.CheckBox.GridlineStyleTop.md index 2503728bfe3..c1755e3a1cc 100644 --- a/api/Access.CheckBox.GridlineStyleTop.md +++ b/api/Access.CheckBox.GridlineStyleTop.md @@ -1,5 +1,5 @@ --- -title: CheckBox.GridlineStyleTop Property (Access) +title: CheckBox.GridlineStyleTop property (Access) keywords: vbaac10.chm10773 f1_keywords: - vbaac10.chm10773 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.GridlineStyleTop Property (Access) +# CheckBox.GridlineStyleTop property (Access) Gets or sets the top gridline style of the specified check box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleTop` +_expression_. `GridlineStyleTop` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.GridlineThemeColorIndex.md b/api/Access.CheckBox.GridlineThemeColorIndex.md index 333273a81b7..7ee34475b74 100644 --- a/api/Access.CheckBox.GridlineThemeColorIndex.md +++ b/api/Access.CheckBox.GridlineThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: CheckBox.GridlineThemeColorIndex Property (Access) +title: CheckBox.GridlineThemeColorIndex property (Access) keywords: vbaac10.chm14635 f1_keywords: - vbaac10.chm14635 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.GridlineThemeColorIndex Property (Access) +# CheckBox.GridlineThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **GridlineColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `GridlineThemeColorIndex` +_expression_. `GridlineThemeColorIndex` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.GridlineTint.md b/api/Access.CheckBox.GridlineTint.md index 054373bb25e..d74fba91c0e 100644 --- a/api/Access.CheckBox.GridlineTint.md +++ b/api/Access.CheckBox.GridlineTint.md @@ -1,5 +1,5 @@ --- -title: CheckBox.GridlineTint Property (Access) +title: CheckBox.GridlineTint property (Access) keywords: vbaac10.chm14636 f1_keywords: - vbaac10.chm14636 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.GridlineTint Property (Access) +# CheckBox.GridlineTint property (Access) Gets or sets the tint applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineTint` +_expression_. `GridlineTint` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.GridlineWidthBottom.md b/api/Access.CheckBox.GridlineWidthBottom.md index 98e6219dff7..e8a9ffa49dc 100644 --- a/api/Access.CheckBox.GridlineWidthBottom.md +++ b/api/Access.CheckBox.GridlineWidthBottom.md @@ -1,5 +1,5 @@ --- -title: CheckBox.GridlineWidthBottom Property (Access) +title: CheckBox.GridlineWidthBottom property (Access) keywords: vbaac10.chm10779 f1_keywords: - vbaac10.chm10779 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.GridlineWidthBottom Property (Access) +# CheckBox.GridlineWidthBottom property (Access) Gets or sets the width of the bottom gridline for the specified check box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthBottom` +_expression_. `GridlineWidthBottom` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.GridlineWidthLeft.md b/api/Access.CheckBox.GridlineWidthLeft.md index 616a271f829..99cea8eb224 100644 --- a/api/Access.CheckBox.GridlineWidthLeft.md +++ b/api/Access.CheckBox.GridlineWidthLeft.md @@ -1,5 +1,5 @@ --- -title: CheckBox.GridlineWidthLeft Property (Access) +title: CheckBox.GridlineWidthLeft property (Access) keywords: vbaac10.chm10776 f1_keywords: - vbaac10.chm10776 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.GridlineWidthLeft Property (Access) +# CheckBox.GridlineWidthLeft property (Access) Gets or sets the width of the left gridline for the specified check box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthLeft` +_expression_. `GridlineWidthLeft` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.GridlineWidthRight.md b/api/Access.CheckBox.GridlineWidthRight.md index 724f6f3e420..b6e3a0e3ead 100644 --- a/api/Access.CheckBox.GridlineWidthRight.md +++ b/api/Access.CheckBox.GridlineWidthRight.md @@ -1,5 +1,5 @@ --- -title: CheckBox.GridlineWidthRight Property (Access) +title: CheckBox.GridlineWidthRight property (Access) keywords: vbaac10.chm10778 f1_keywords: - vbaac10.chm10778 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.GridlineWidthRight Property (Access) +# CheckBox.GridlineWidthRight property (Access) Gets or sets the width of the right gridline for the specified check box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthRight` +_expression_. `GridlineWidthRight` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.GridlineWidthTop.md b/api/Access.CheckBox.GridlineWidthTop.md index 97945189b7e..958bc1da8a2 100644 --- a/api/Access.CheckBox.GridlineWidthTop.md +++ b/api/Access.CheckBox.GridlineWidthTop.md @@ -1,5 +1,5 @@ --- -title: CheckBox.GridlineWidthTop Property (Access) +title: CheckBox.GridlineWidthTop property (Access) keywords: vbaac10.chm10777 f1_keywords: - vbaac10.chm10777 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.GridlineWidthTop Property (Access) +# CheckBox.GridlineWidthTop property (Access) Gets or sets the width of the top gridline for the specified check box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthTop` +_expression_. `GridlineWidthTop` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.Height.md b/api/Access.CheckBox.Height.md index d02cb0382e5..b02ed318e6b 100644 --- a/api/Access.CheckBox.Height.md +++ b/api/Access.CheckBox.Height.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Height Property (Access) +title: CheckBox.Height property (Access) keywords: vbaac10.chm10712 f1_keywords: - vbaac10.chm10712 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Height Property (Access) +# CheckBox.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.HelpContextId.md b/api/Access.CheckBox.HelpContextId.md index 0f22cb1ba27..c70b01c0f9c 100644 --- a/api/Access.CheckBox.HelpContextId.md +++ b/api/Access.CheckBox.HelpContextId.md @@ -1,5 +1,5 @@ --- -title: CheckBox.HelpContextId Property (Access) +title: CheckBox.HelpContextId property (Access) keywords: vbaac10.chm10721 f1_keywords: - vbaac10.chm10721 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.HelpContextId Property (Access) +# CheckBox.HelpContextId property (Access) The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**. ## Syntax - _expression_. `HelpContextId` +_expression_. `HelpContextId` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.HideDuplicates.md b/api/Access.CheckBox.HideDuplicates.md index 90ff58e2d6b..838e1894561 100644 --- a/api/Access.CheckBox.HideDuplicates.md +++ b/api/Access.CheckBox.HideDuplicates.md @@ -1,5 +1,5 @@ --- -title: CheckBox.HideDuplicates Property (Access) +title: CheckBox.HideDuplicates property (Access) keywords: vbaac10.chm10708 f1_keywords: - vbaac10.chm10708 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.HideDuplicates Property (Access) +# CheckBox.HideDuplicates property (Access) You can use the **HideDuplicates** property to hide a control on a report when its value is the same as in the preceding record. Read/write **Boolean**. ## Syntax - _expression_. `HideDuplicates` +_expression_. `HideDuplicates` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.HorizontalAnchor.md b/api/Access.CheckBox.HorizontalAnchor.md index 1144af1ccf6..58edb89bf50 100644 --- a/api/Access.CheckBox.HorizontalAnchor.md +++ b/api/Access.CheckBox.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: CheckBox.HorizontalAnchor Property (Access) +title: CheckBox.HorizontalAnchor property (Access) keywords: vbaac10.chm10781 f1_keywords: - vbaac10.chm10781 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.HorizontalAnchor Property (Access) +# CheckBox.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the check box is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.InSelection.md b/api/Access.CheckBox.InSelection.md index a6529aa9b66..205e175caf2 100644 --- a/api/Access.CheckBox.InSelection.md +++ b/api/Access.CheckBox.InSelection.md @@ -1,5 +1,5 @@ --- -title: CheckBox.InSelection Property (Access) +title: CheckBox.InSelection property (Access) keywords: vbaac10.chm10734 f1_keywords: - vbaac10.chm10734 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.InSelection Property (Access) +# CheckBox.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.IsVisible.md b/api/Access.CheckBox.IsVisible.md index dc2556523a0..eebb0d7a89a 100644 --- a/api/Access.CheckBox.IsVisible.md +++ b/api/Access.CheckBox.IsVisible.md @@ -1,5 +1,5 @@ --- -title: CheckBox.IsVisible Property (Access) +title: CheckBox.IsVisible property (Access) keywords: vbaac10.chm10733 f1_keywords: - vbaac10.chm10733 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.IsVisible Property (Access) +# CheckBox.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.KeyDown.md b/api/Access.CheckBox.KeyDown.md index 79cf4b81817..4990efb8ad5 100644 --- a/api/Access.CheckBox.KeyDown.md +++ b/api/Access.CheckBox.KeyDown.md @@ -1,5 +1,5 @@ --- -title: CheckBox.KeyDown Event (Access) +title: CheckBox.KeyDown event (Access) keywords: vbaac10.chm14130 f1_keywords: - vbaac10.chm14130 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CheckBox.KeyDown Event (Access) +# CheckBox.KeyDown event (Access) The **KeyDown** event occurs when the user presses a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|A key code, such as **vbKeyF1** (the F1 key) or **vbKeyHome** (the HOME key). To specify key codes, use the intrinsic constants shown in the Object Browser. You can prevent an object from receiving a keystroke by setting KeyCode to 0.| | _Shift_|Required|**Integer**|The state of the SHIFT, CTRL, and ALT keys at the time of the event. If you need to test for the Shift argument, you can use one of the following intrinsic constants as bit masks: diff --git a/api/Access.CheckBox.KeyPress.md b/api/Access.CheckBox.KeyPress.md index 83efcc63dd0..434e79bab2f 100644 --- a/api/Access.CheckBox.KeyPress.md +++ b/api/Access.CheckBox.KeyPress.md @@ -1,5 +1,5 @@ --- -title: CheckBox.KeyPress Event (Access) +title: CheckBox.KeyPress event (Access) keywords: vbaac10.chm14131 f1_keywords: - vbaac10.chm14131 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CheckBox.KeyPress Event (Access) +# CheckBox.KeyPress event (Access) The **KeyPress** event occurs when the user presses and releases a key or key combination that corresponds to an ANSI code while a form or control has the focus. This event also occurs if you send an ANSI keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyPress`( ` _KeyAscii_` ) +_expression_. `KeyPress`( ` _KeyAscii_` ) - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyAscii_|Required|**Integer**| Returns a numeric ANSI key code. The _KeyAscii_ argument is passed by reference; changing it sends a different character to the object. Setting the _KeyAscii_ argument to 0 cancels the keystroke so that the object doesn't recognize that a key was pressed.| diff --git a/api/Access.CheckBox.KeyUp.md b/api/Access.CheckBox.KeyUp.md index 9a3a0f76eff..642189e343d 100644 --- a/api/Access.CheckBox.KeyUp.md +++ b/api/Access.CheckBox.KeyUp.md @@ -1,5 +1,5 @@ --- -title: CheckBox.KeyUp Event (Access) +title: CheckBox.KeyUp event (Access) keywords: vbaac10.chm14132 f1_keywords: - vbaac10.chm14132 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CheckBox.KeyUp Event (Access) +# CheckBox.KeyUp event (Access) The **KeyUp** event occurs when the user releases a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|A key code, such as **vbKeyF1** (the F1 key) or **vbKeyHome** (the HOME key). To specify key codes, use the intrinsic constants shown in the Object Browser. You can prevent an object from receiving a keystroke by setting KeyCode to 0.| | _Shift_|Required|**Integer**|The state of the SHIFT, CTRL, and ALT keys at the time of the event. If you need to test for the Shift argument, you can use one of the following intrinsic constants as bit masks: diff --git a/api/Access.CheckBox.LabelAlign.md b/api/Access.CheckBox.LabelAlign.md index 60cb6814427..633c1766018 100644 --- a/api/Access.CheckBox.LabelAlign.md +++ b/api/Access.CheckBox.LabelAlign.md @@ -1,5 +1,5 @@ --- -title: CheckBox.LabelAlign Property (Access) +title: CheckBox.LabelAlign property (Access) keywords: vbaac10.chm10729 f1_keywords: - vbaac10.chm10729 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.LabelAlign Property (Access) +# CheckBox.LabelAlign property (Access) The property specifies the text alignment within attached labels on new controls. Read/write **Byte**. ## Syntax - _expression_. `LabelAlign` +_expression_. `LabelAlign` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.LabelX.md b/api/Access.CheckBox.LabelX.md index 65f444f82ec..7148c89f0de 100644 --- a/api/Access.CheckBox.LabelX.md +++ b/api/Access.CheckBox.LabelX.md @@ -1,5 +1,5 @@ --- -title: CheckBox.LabelX Property (Access) +title: CheckBox.LabelX property (Access) keywords: vbaac10.chm10727 f1_keywords: - vbaac10.chm10727 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# CheckBox.LabelX Property (Access) +# CheckBox.LabelX property (Access) The **LabelX** property (along with the **LabelY** property) specifies the placement of the label for a new control. Read/write **Integer**. @@ -19,9 +19,9 @@ The **LabelX** property (along with the **LabelY** property) specifies the plac ## Syntax - _expression_. `LabelX` +_expression_. `LabelX` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.LabelY.md b/api/Access.CheckBox.LabelY.md index 1e0f875ab68..198986beb70 100644 --- a/api/Access.CheckBox.LabelY.md +++ b/api/Access.CheckBox.LabelY.md @@ -1,5 +1,5 @@ --- -title: CheckBox.LabelY Property (Access) +title: CheckBox.LabelY property (Access) keywords: vbaac10.chm10728 f1_keywords: - vbaac10.chm10728 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# CheckBox.LabelY Property (Access) +# CheckBox.LabelY property (Access) The **LabelY** property (along with the **LabelX** property) specifies the placement of the label for a new control. Read/write **Integer**. @@ -19,9 +19,9 @@ The **LabelY** property (along with the **LabelX** property) specifies the plac ## Syntax - _expression_. `LabelY` +_expression_. `LabelY` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.Layout.md b/api/Access.CheckBox.Layout.md index 6076e257027..69f995faf9b 100644 --- a/api/Access.CheckBox.Layout.md +++ b/api/Access.CheckBox.Layout.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Layout Property (Access) +title: CheckBox.Layout property (Access) keywords: vbaac10.chm10767 f1_keywords: - vbaac10.chm10767 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Layout Property (Access) +# CheckBox.Layout property (Access) Returns the type of layout for the specified check box. Read-only **[AcLayoutType](Access.AcLayoutType.md)**. ## Syntax - _expression_. `Layout` +_expression_. `Layout` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## See also diff --git a/api/Access.CheckBox.LayoutID.md b/api/Access.CheckBox.LayoutID.md index af06963bc8c..9e5e9b46819 100644 --- a/api/Access.CheckBox.LayoutID.md +++ b/api/Access.CheckBox.LayoutID.md @@ -1,5 +1,5 @@ --- -title: CheckBox.LayoutID Property (Access) +title: CheckBox.LayoutID property (Access) keywords: vbaac10.chm10783 f1_keywords: - vbaac10.chm10783 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.LayoutID Property (Access) +# CheckBox.LayoutID property (Access) Returns the unique identifier for the layout that contains the specified check box. Read-only **Long**. ## Syntax - _expression_. `LayoutID` +_expression_. `LayoutID` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.Left.md b/api/Access.CheckBox.Left.md index 11e7dc144b6..9ba2d809ea2 100644 --- a/api/Access.CheckBox.Left.md +++ b/api/Access.CheckBox.Left.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Left Property (Access) +title: CheckBox.Left property (Access) keywords: vbaac10.chm10709 f1_keywords: - vbaac10.chm10709 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Left Property (Access) +# CheckBox.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.LeftPadding.md b/api/Access.CheckBox.LeftPadding.md index 30efed6a3fc..c2a60cb1e54 100644 --- a/api/Access.CheckBox.LeftPadding.md +++ b/api/Access.CheckBox.LeftPadding.md @@ -1,5 +1,5 @@ --- -title: CheckBox.LeftPadding Property (Access) +title: CheckBox.LeftPadding property (Access) keywords: vbaac10.chm10768 f1_keywords: - vbaac10.chm10768 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.LeftPadding Property (Access) +# CheckBox.LeftPadding property (Access) Gets or sets the amount of space (in inches) between the check box and its left gridline. Read/write **Integer**. ## Syntax - _expression_. `LeftPadding` +_expression_. `LeftPadding` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## See also diff --git a/api/Access.CheckBox.Locked.md b/api/Access.CheckBox.Locked.md index 1f265783701..711ebfdab08 100644 --- a/api/Access.CheckBox.Locked.md +++ b/api/Access.CheckBox.Locked.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Locked Property (Access) +title: CheckBox.Locked property (Access) keywords: vbaac10.chm10704 f1_keywords: - vbaac10.chm10704 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Locked Property (Access) +# CheckBox.Locked property (Access) The **Locked** property specifies whether you can edit data in a control in Form view. Read/write **Boolean**. ## Syntax - _expression_. `Locked` +_expression_. `Locked` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.LostFocus.md b/api/Access.CheckBox.LostFocus.md index c4cf6763c00..1b35ccf9cb5 100644 --- a/api/Access.CheckBox.LostFocus.md +++ b/api/Access.CheckBox.LostFocus.md @@ -1,5 +1,5 @@ --- -title: CheckBox.LostFocus Event (Access) +title: CheckBox.LostFocus event (Access) keywords: vbaac10.chm14125 f1_keywords: - vbaac10.chm14125 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.LostFocus Event (Access) +# CheckBox.LostFocus event (Access) The **LostFocus** event occurs when the specified object loses the focus. ## Syntax - _expression_. `LostFocus` +_expression_. `LostFocus` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.MouseDown.md b/api/Access.CheckBox.MouseDown.md index d161851c638..4e0232eb55b 100644 --- a/api/Access.CheckBox.MouseDown.md +++ b/api/Access.CheckBox.MouseDown.md @@ -1,5 +1,5 @@ --- -title: CheckBox.MouseDown Event (Access) +title: CheckBox.MouseDown event (Access) keywords: vbaac10.chm14127 f1_keywords: - vbaac10.chm14127 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CheckBox.MouseDown Event (Access) +# CheckBox.MouseDown event (Access) The **MouseDown** event occurs when the user presses a mouse button. ## Syntax - _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.CheckBox.MouseMove.md b/api/Access.CheckBox.MouseMove.md index 245012ead77..e9a69fdff27 100644 --- a/api/Access.CheckBox.MouseMove.md +++ b/api/Access.CheckBox.MouseMove.md @@ -1,5 +1,5 @@ --- -title: CheckBox.MouseMove Event (Access) +title: CheckBox.MouseMove event (Access) keywords: vbaac10.chm14128 f1_keywords: - vbaac10.chm14128 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CheckBox.MouseMove Event (Access) +# CheckBox.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.CheckBox.MouseUp.md b/api/Access.CheckBox.MouseUp.md index d2e67e990b0..12e513eb077 100644 --- a/api/Access.CheckBox.MouseUp.md +++ b/api/Access.CheckBox.MouseUp.md @@ -1,5 +1,5 @@ --- -title: CheckBox.MouseUp Event (Access) +title: CheckBox.MouseUp event (Access) keywords: vbaac10.chm14129 f1_keywords: - vbaac10.chm14129 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CheckBox.MouseUp Event (Access) +# CheckBox.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.CheckBox.Move.md b/api/Access.CheckBox.Move.md index b42b368ccc0..86ef891eb10 100644 --- a/api/Access.CheckBox.Move.md +++ b/api/Access.CheckBox.Move.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Move Method (Access) +title: CheckBox.Move method (Access) keywords: vbaac10.chm10751 f1_keywords: - vbaac10.chm10751 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CheckBox.Move Method (Access) +# CheckBox.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.CheckBox.Name.md b/api/Access.CheckBox.Name.md index 9921de54881..30b89e55c73 100644 --- a/api/Access.CheckBox.Name.md +++ b/api/Access.CheckBox.Name.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Name Property (Access) +title: CheckBox.Name property (Access) keywords: vbaac10.chm10750 f1_keywords: - vbaac10.chm10750 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Name Property (Access) +# CheckBox.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.OldBorderStyle.md b/api/Access.CheckBox.OldBorderStyle.md index 693caa25b17..534bfff2588 100644 --- a/api/Access.CheckBox.OldBorderStyle.md +++ b/api/Access.CheckBox.OldBorderStyle.md @@ -1,5 +1,5 @@ --- -title: CheckBox.OldBorderStyle Property (Access) +title: CheckBox.OldBorderStyle property (Access) keywords: vbaac10.chm10715 f1_keywords: - vbaac10.chm10715 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.OldBorderStyle Property (Access) +# CheckBox.OldBorderStyle property (Access) You can use this property to set or returns the unedited value of the **BorderStyle** property for a form or control. This property is useful if you need to revert to an unedited or preferred border style. Read/write **Byte**. ## Syntax - _expression_. `OldBorderStyle` +_expression_. `OldBorderStyle` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.OldValue.md b/api/Access.CheckBox.OldValue.md index 2564cb86931..a4124fd481e 100644 --- a/api/Access.CheckBox.OldValue.md +++ b/api/Access.CheckBox.OldValue.md @@ -1,5 +1,5 @@ --- -title: CheckBox.OldValue Property (Access) +title: CheckBox.OldValue property (Access) keywords: vbaac10.chm10685 f1_keywords: - vbaac10.chm10685 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.OldValue Property (Access) +# CheckBox.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.OnClick.md b/api/Access.CheckBox.OnClick.md index e15440f0de3..580f080b812 100644 --- a/api/Access.CheckBox.OnClick.md +++ b/api/Access.CheckBox.OnClick.md @@ -1,5 +1,5 @@ --- -title: CheckBox.OnClick Property (Access) +title: CheckBox.OnClick property (Access) keywords: vbaac10.chm10741 f1_keywords: - vbaac10.chm10741 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.OnClick Property (Access) +# CheckBox.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CheckBox.OnDblClick.md b/api/Access.CheckBox.OnDblClick.md index 25a378640c7..071f03fed32 100644 --- a/api/Access.CheckBox.OnDblClick.md +++ b/api/Access.CheckBox.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: CheckBox.OnDblClick Property (Access) +title: CheckBox.OnDblClick property (Access) keywords: vbaac10.chm10742 f1_keywords: - vbaac10.chm10742 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.OnDblClick Property (Access) +# CheckBox.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CheckBox.OnEnter.md b/api/Access.CheckBox.OnEnter.md index cf60b42a1b6..65571aad001 100644 --- a/api/Access.CheckBox.OnEnter.md +++ b/api/Access.CheckBox.OnEnter.md @@ -1,5 +1,5 @@ --- -title: CheckBox.OnEnter Property (Access) +title: CheckBox.OnEnter property (Access) keywords: vbaac10.chm10737 f1_keywords: - vbaac10.chm10737 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.OnEnter Property (Access) +# CheckBox.OnEnter property (Access) Sets or returns the value of the **On Enter** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnEnter` +_expression_. `OnEnter` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Enter** event occurs before a control actually receives the focus from a The **OnEnter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Enter** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CheckBox.OnExit.md b/api/Access.CheckBox.OnExit.md index c76399fcb33..acd59c5e727 100644 --- a/api/Access.CheckBox.OnExit.md +++ b/api/Access.CheckBox.OnExit.md @@ -1,5 +1,5 @@ --- -title: CheckBox.OnExit Property (Access) +title: CheckBox.OnExit property (Access) keywords: vbaac10.chm10738 f1_keywords: - vbaac10.chm10738 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.OnExit Property (Access) +# CheckBox.OnExit property (Access) Sets or returns the value of the **On Exit** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnExit` +_expression_. `OnExit` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Exit** event occurs just before a control loses the focus to another cont The **OnExit** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Exit** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CheckBox.OnGotFocus.md b/api/Access.CheckBox.OnGotFocus.md index e22da7bd42f..29edea52f0f 100644 --- a/api/Access.CheckBox.OnGotFocus.md +++ b/api/Access.CheckBox.OnGotFocus.md @@ -1,5 +1,5 @@ --- -title: CheckBox.OnGotFocus Property (Access) +title: CheckBox.OnGotFocus property (Access) keywords: vbaac10.chm10739 f1_keywords: - vbaac10.chm10739 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.OnGotFocus Property (Access) +# CheckBox.OnGotFocus property (Access) Sets or returns the value of the **On Got Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnGotFocus` +_expression_. `OnGotFocus` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **GotFocus** event occurs when the object receives the focus. The **OnGotFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Got Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CheckBox.OnKeyDown.md b/api/Access.CheckBox.OnKeyDown.md index 669bde2f81a..17d125cf9b2 100644 --- a/api/Access.CheckBox.OnKeyDown.md +++ b/api/Access.CheckBox.OnKeyDown.md @@ -1,5 +1,5 @@ --- -title: CheckBox.OnKeyDown Property (Access) +title: CheckBox.OnKeyDown property (Access) keywords: vbaac10.chm10746 f1_keywords: - vbaac10.chm10746 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.OnKeyDown Property (Access) +# CheckBox.OnKeyDown property (Access) Sets or returns the value of the **On Key Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyDown` +_expression_. `OnKeyDown` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyDown** event occurs when a user presses a key while a form or control The **OnKeyDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CheckBox.OnKeyPress.md b/api/Access.CheckBox.OnKeyPress.md index ffdc7fb0a07..0fff4d98fb9 100644 --- a/api/Access.CheckBox.OnKeyPress.md +++ b/api/Access.CheckBox.OnKeyPress.md @@ -1,5 +1,5 @@ --- -title: CheckBox.OnKeyPress Property (Access) +title: CheckBox.OnKeyPress property (Access) keywords: vbaac10.chm10748 f1_keywords: - vbaac10.chm10748 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.OnKeyPress Property (Access) +# CheckBox.OnKeyPress property (Access) Sets or returns the value of the **On Key Press** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyPress` +_expression_. `OnKeyPress` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyPress** event occurs when a user presses a key while a form or control The **OnKeyPress** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Press** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CheckBox.OnKeyUp.md b/api/Access.CheckBox.OnKeyUp.md index 2e58110584a..dadd3f102c9 100644 --- a/api/Access.CheckBox.OnKeyUp.md +++ b/api/Access.CheckBox.OnKeyUp.md @@ -1,5 +1,5 @@ --- -title: CheckBox.OnKeyUp Property (Access) +title: CheckBox.OnKeyUp property (Access) keywords: vbaac10.chm10747 f1_keywords: - vbaac10.chm10747 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.OnKeyUp Property (Access) +# CheckBox.OnKeyUp property (Access) Sets or returns the value of the **On Key Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyUp` +_expression_. `OnKeyUp` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyUp** event occurs when a user presses a key while a form or control ha The **OnKeyUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CheckBox.OnLostFocus.md b/api/Access.CheckBox.OnLostFocus.md index b0df2788445..b1d1bb247b7 100644 --- a/api/Access.CheckBox.OnLostFocus.md +++ b/api/Access.CheckBox.OnLostFocus.md @@ -1,5 +1,5 @@ --- -title: CheckBox.OnLostFocus Property (Access) +title: CheckBox.OnLostFocus property (Access) keywords: vbaac10.chm10740 f1_keywords: - vbaac10.chm10740 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.OnLostFocus Property (Access) +# CheckBox.OnLostFocus property (Access) Sets or returns the value of the **On Lost Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnLostFocus` +_expression_. `OnLostFocus` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **LostFocus** event occurs when the object loses the focus. The **OnLostFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Lost Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CheckBox.OnMouseDown.md b/api/Access.CheckBox.OnMouseDown.md index 849ed6d06bd..dd15e7e98bb 100644 --- a/api/Access.CheckBox.OnMouseDown.md +++ b/api/Access.CheckBox.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: CheckBox.OnMouseDown Property (Access) +title: CheckBox.OnMouseDown property (Access) keywords: vbaac10.chm10743 f1_keywords: - vbaac10.chm10743 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.OnMouseDown Property (Access) +# CheckBox.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CheckBox.OnMouseMove.md b/api/Access.CheckBox.OnMouseMove.md index 7c7aea5fed5..a4b12d9e419 100644 --- a/api/Access.CheckBox.OnMouseMove.md +++ b/api/Access.CheckBox.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: CheckBox.OnMouseMove Property (Access) +title: CheckBox.OnMouseMove property (Access) keywords: vbaac10.chm10744 f1_keywords: - vbaac10.chm10744 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.OnMouseMove Property (Access) +# CheckBox.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CheckBox.OnMouseUp.md b/api/Access.CheckBox.OnMouseUp.md index 323622bef06..2a118f2f4ff 100644 --- a/api/Access.CheckBox.OnMouseUp.md +++ b/api/Access.CheckBox.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: CheckBox.OnMouseUp Property (Access) +title: CheckBox.OnMouseUp property (Access) keywords: vbaac10.chm10745 f1_keywords: - vbaac10.chm10745 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.OnMouseUp Property (Access) +# CheckBox.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CheckBox.OptionValue.md b/api/Access.CheckBox.OptionValue.md index c8036603d4a..959d8551087 100644 --- a/api/Access.CheckBox.OptionValue.md +++ b/api/Access.CheckBox.OptionValue.md @@ -1,5 +1,5 @@ --- -title: CheckBox.OptionValue Property (Access) +title: CheckBox.OptionValue property (Access) keywords: vbaac10.chm10695 f1_keywords: - vbaac10.chm10695 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.OptionValue Property (Access) +# CheckBox.OptionValue property (Access) Each control in an option group has a numeric value that you can set with the **OptionValue** property. Read/write **Long**. ## Syntax - _expression_. `OptionValue` +_expression_. `OptionValue` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.Parent.md b/api/Access.CheckBox.Parent.md index f3b67769114..2226f1f54f7 100644 --- a/api/Access.CheckBox.Parent.md +++ b/api/Access.CheckBox.Parent.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Parent Property (Access) +title: CheckBox.Parent property (Access) keywords: vbaac10.chm10683 f1_keywords: - vbaac10.chm10683 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Parent Property (Access) +# CheckBox.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.Properties.md b/api/Access.CheckBox.Properties.md index dbac3e13a91..58a23153241 100644 --- a/api/Access.CheckBox.Properties.md +++ b/api/Access.CheckBox.Properties.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Properties Property (Access) +title: CheckBox.Properties property (Access) keywords: vbaac10.chm10686 f1_keywords: - vbaac10.chm10686 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Properties Property (Access) +# CheckBox.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.ReadingOrder.md b/api/Access.CheckBox.ReadingOrder.md index 0648c2441a9..82f5332943e 100644 --- a/api/Access.CheckBox.ReadingOrder.md +++ b/api/Access.CheckBox.ReadingOrder.md @@ -1,5 +1,5 @@ --- -title: CheckBox.ReadingOrder Property (Access) +title: CheckBox.ReadingOrder property (Access) keywords: vbaac10.chm10749 f1_keywords: - vbaac10.chm10749 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.ReadingOrder Property (Access) +# CheckBox.ReadingOrder property (Access) You can use the **ReadingOrder** property to specify or determine the reading order of words in text. Read/write **Byte**. ## Syntax - _expression_. `ReadingOrder` +_expression_. `ReadingOrder` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.Requery.md b/api/Access.CheckBox.Requery.md index 0aa721ca3c4..5545699382c 100644 --- a/api/Access.CheckBox.Requery.md +++ b/api/Access.CheckBox.Requery.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Requery Method (Access) +title: CheckBox.Requery method (Access) keywords: vbaac10.chm10688 f1_keywords: - vbaac10.chm10688 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Requery Method (Access) +# CheckBox.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.RightPadding.md b/api/Access.CheckBox.RightPadding.md index c09789742ad..ce501232a8e 100644 --- a/api/Access.CheckBox.RightPadding.md +++ b/api/Access.CheckBox.RightPadding.md @@ -1,5 +1,5 @@ --- -title: CheckBox.RightPadding Property (Access) +title: CheckBox.RightPadding property (Access) keywords: vbaac10.chm10770 f1_keywords: - vbaac10.chm10770 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.RightPadding Property (Access) +# CheckBox.RightPadding property (Access) Gets or sets the amount of space (in inches) between the check box and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## See also diff --git a/api/Access.CheckBox.Section.md b/api/Access.CheckBox.Section.md index e2c577e01be..9c6231ae63d 100644 --- a/api/Access.CheckBox.Section.md +++ b/api/Access.CheckBox.Section.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Section Property (Access) +title: CheckBox.Section property (Access) keywords: vbaac10.chm10730 f1_keywords: - vbaac10.chm10730 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Section Property (Access) +# CheckBox.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.SetFocus.md b/api/Access.CheckBox.SetFocus.md index 4864ffadf2e..19334a0a5bb 100644 --- a/api/Access.CheckBox.SetFocus.md +++ b/api/Access.CheckBox.SetFocus.md @@ -1,5 +1,5 @@ --- -title: CheckBox.SetFocus Method (Access) +title: CheckBox.SetFocus method (Access) keywords: vbaac10.chm10689 f1_keywords: - vbaac10.chm10689 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# CheckBox.SetFocus Method (Access) +# CheckBox.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.CheckBox.ShortcutMenuBar.md b/api/Access.CheckBox.ShortcutMenuBar.md index 1443d88b220..dd2fcb270ae 100644 --- a/api/Access.CheckBox.ShortcutMenuBar.md +++ b/api/Access.CheckBox.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: CheckBox.ShortcutMenuBar Property (Access) +title: CheckBox.ShortcutMenuBar property (Access) keywords: vbaac10.chm10719 f1_keywords: - vbaac10.chm10719 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.ShortcutMenuBar Property (Access) +# CheckBox.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.SizeToFit.md b/api/Access.CheckBox.SizeToFit.md index dff787a4617..8021d5f28fb 100644 --- a/api/Access.CheckBox.SizeToFit.md +++ b/api/Access.CheckBox.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: CheckBox.SizeToFit Method (Access) +title: CheckBox.SizeToFit method (Access) keywords: vbaac10.chm10687 f1_keywords: - vbaac10.chm10687 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.SizeToFit Method (Access) +# CheckBox.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.SpecialEffect.md b/api/Access.CheckBox.SpecialEffect.md index 482181cde4e..42f27ef5fc9 100644 --- a/api/Access.CheckBox.SpecialEffect.md +++ b/api/Access.CheckBox.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: CheckBox.SpecialEffect Property (Access) +title: CheckBox.SpecialEffect property (Access) keywords: vbaac10.chm10713 f1_keywords: - vbaac10.chm10713 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.SpecialEffect Property (Access) +# CheckBox.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.StatusBarText.md b/api/Access.CheckBox.StatusBarText.md index bd8a3cc7a0c..260ff0b91b9 100644 --- a/api/Access.CheckBox.StatusBarText.md +++ b/api/Access.CheckBox.StatusBarText.md @@ -1,5 +1,5 @@ --- -title: CheckBox.StatusBarText Property (Access) +title: CheckBox.StatusBarText property (Access) keywords: vbaac10.chm10700 f1_keywords: - vbaac10.chm10700 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.StatusBarText Property (Access) +# CheckBox.StatusBarText property (Access) You can use the **StatusBarText** property to specify the text that is displayed in the status bar when a control is selected. Read/write **String**. ## Syntax - _expression_. `StatusBarText` +_expression_. `StatusBarText` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.TabIndex.md b/api/Access.CheckBox.TabIndex.md index 9fec3bb2f55..43df371ef5a 100644 --- a/api/Access.CheckBox.TabIndex.md +++ b/api/Access.CheckBox.TabIndex.md @@ -1,5 +1,5 @@ --- -title: CheckBox.TabIndex Property (Access) +title: CheckBox.TabIndex property (Access) keywords: vbaac10.chm10707 f1_keywords: - vbaac10.chm10707 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.TabIndex Property (Access) +# CheckBox.TabIndex property (Access) You can use the **TabIndex** property to specify a control's place in the tab order on a form or report. Read/write **Integer**. ## Syntax - _expression_. `TabIndex` +_expression_. `TabIndex` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.TabStop.md b/api/Access.CheckBox.TabStop.md index 8285e30a930..8b0f46a3d26 100644 --- a/api/Access.CheckBox.TabStop.md +++ b/api/Access.CheckBox.TabStop.md @@ -1,5 +1,5 @@ --- -title: CheckBox.TabStop Property (Access) +title: CheckBox.TabStop property (Access) keywords: vbaac10.chm10706 f1_keywords: - vbaac10.chm10706 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.TabStop Property (Access) +# CheckBox.TabStop property (Access) You can use the **TabStop** property to specify whether you can use the TAB key to move the focus to a control. Read/write **Boolean**. ## Syntax - _expression_. `TabStop` +_expression_. `TabStop` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.Tag.md b/api/Access.CheckBox.Tag.md index 77cbb53c993..1b09f70983c 100644 --- a/api/Access.CheckBox.Tag.md +++ b/api/Access.CheckBox.Tag.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Tag Property (Access) +title: CheckBox.Tag property (Access) keywords: vbaac10.chm10732 f1_keywords: - vbaac10.chm10732 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Tag Property (Access) +# CheckBox.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.Top.md b/api/Access.CheckBox.Top.md index 1a6c4dce546..09a2974005b 100644 --- a/api/Access.CheckBox.Top.md +++ b/api/Access.CheckBox.Top.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Top Property (Access) +title: CheckBox.Top property (Access) keywords: vbaac10.chm10710 f1_keywords: - vbaac10.chm10710 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Top Property (Access) +# CheckBox.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.TopPadding.md b/api/Access.CheckBox.TopPadding.md index 4b55c8a026d..e2a6b971542 100644 --- a/api/Access.CheckBox.TopPadding.md +++ b/api/Access.CheckBox.TopPadding.md @@ -1,5 +1,5 @@ --- -title: CheckBox.TopPadding Property (Access) +title: CheckBox.TopPadding property (Access) keywords: vbaac10.chm10769 f1_keywords: - vbaac10.chm10769 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.TopPadding Property (Access) +# CheckBox.TopPadding property (Access) Gets or sets the amount of space (in inches) between the check box and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## See also diff --git a/api/Access.CheckBox.TripleState.md b/api/Access.CheckBox.TripleState.md index ba804afddff..3418effa859 100644 --- a/api/Access.CheckBox.TripleState.md +++ b/api/Access.CheckBox.TripleState.md @@ -1,5 +1,5 @@ --- -title: CheckBox.TripleState Property (Access) +title: CheckBox.TripleState property (Access) keywords: vbaac10.chm10705 f1_keywords: - vbaac10.chm10705 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.TripleState Property (Access) +# CheckBox.TripleState property (Access) You can use the **TripleState** property to specify how the specified control will display Null values. Read/write **Boolean**. ## Syntax - _expression_. `TripleState` +_expression_. `TripleState` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.Undo.md b/api/Access.CheckBox.Undo.md index a66801f83b6..8f6ce883116 100644 --- a/api/Access.CheckBox.Undo.md +++ b/api/Access.CheckBox.Undo.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Undo Method (Access) +title: CheckBox.Undo method (Access) keywords: vbaac10.chm10684 f1_keywords: - vbaac10.chm10684 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Undo Method (Access) +# CheckBox.Undo method (Access) You can use the **Undo** method to reset a control or form when its value has been changed. ## Syntax - _expression_. `Undo` +_expression_. `Undo` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.ValidationRule.md b/api/Access.CheckBox.ValidationRule.md index c95711af2f2..59e33628673 100644 --- a/api/Access.CheckBox.ValidationRule.md +++ b/api/Access.CheckBox.ValidationRule.md @@ -1,5 +1,5 @@ --- -title: CheckBox.ValidationRule Property (Access) +title: CheckBox.ValidationRule property (Access) keywords: vbaac10.chm10698 f1_keywords: - vbaac10.chm10698 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.ValidationRule Property (Access) +# CheckBox.ValidationRule property (Access) You can use the **ValidationRule** property to specify requirements for data entered into a record, field, or control. When data is entered that violates the **ValidationRule** setting, you can use the **ValidationText** property to specify the message to be displayed to the user. Read/write **String**. ## Syntax - _expression_. `ValidationRule` +_expression_. `ValidationRule` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.ValidationText.md b/api/Access.CheckBox.ValidationText.md index 48e60c0aeb9..7dc5e8c4ac2 100644 --- a/api/Access.CheckBox.ValidationText.md +++ b/api/Access.CheckBox.ValidationText.md @@ -1,5 +1,5 @@ --- -title: CheckBox.ValidationText Property (Access) +title: CheckBox.ValidationText property (Access) keywords: vbaac10.chm10699 f1_keywords: - vbaac10.chm10699 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.ValidationText Property (Access) +# CheckBox.ValidationText property (Access) Use the **ValidationText** property to specify a message to be displayed to the user when data is entered that violates a **ValidationRule** setting for a record, field, or control. Read/write **String**. ## Syntax - _expression_. `ValidationText` +_expression_. `ValidationText` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.Value.md b/api/Access.CheckBox.Value.md index 4751059134b..bb493059a2e 100644 --- a/api/Access.CheckBox.Value.md +++ b/api/Access.CheckBox.Value.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Value Property (Access) +title: CheckBox.Value property (Access) keywords: vbaac10.chm10691 f1_keywords: - vbaac10.chm10691 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Value Property (Access) +# CheckBox.Value property (Access) Determines or specifies whether or not the specifed check box is checked. Read /write **Variant**. ## Syntax - _expression_. `Value` +_expression_. `Value` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.VerticalAnchor.md b/api/Access.CheckBox.VerticalAnchor.md index 69a5f40bd5a..d4d9bcdf2b4 100644 --- a/api/Access.CheckBox.VerticalAnchor.md +++ b/api/Access.CheckBox.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: CheckBox.VerticalAnchor Property (Access) +title: CheckBox.VerticalAnchor property (Access) keywords: vbaac10.chm10782 f1_keywords: - vbaac10.chm10782 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.VerticalAnchor Property (Access) +# CheckBox.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified check box is anchored vertically within its layout. Read/write. ## Syntax - _expression_. **VerticalAnchor** +_expression_. **VerticalAnchor** - _expression_. A variable that represents a **CheckBox** object. +_expression_. A variable that represents a **CheckBox** object. ## Remarks diff --git a/api/Access.CheckBox.Visible.md b/api/Access.CheckBox.Visible.md index 037ff0772d6..83e5f990f10 100644 --- a/api/Access.CheckBox.Visible.md +++ b/api/Access.CheckBox.Visible.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Visible Property (Access) +title: CheckBox.Visible property (Access) keywords: vbaac10.chm10701 f1_keywords: - vbaac10.chm10701 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Visible Property (Access) +# CheckBox.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.Width.md b/api/Access.CheckBox.Width.md index 6505db72e66..8c2455aa65f 100644 --- a/api/Access.CheckBox.Width.md +++ b/api/Access.CheckBox.Width.md @@ -1,5 +1,5 @@ --- -title: CheckBox.Width Property (Access) +title: CheckBox.Width property (Access) keywords: vbaac10.chm10711 f1_keywords: - vbaac10.chm10711 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CheckBox.Width Property (Access) +# CheckBox.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. +_expression_ A variable that represents a [CheckBox](Access.CheckBox.md) object. ## Remarks diff --git a/api/Access.CheckBox.md b/api/Access.CheckBox.md index 91642a093f5..89578102731 100644 --- a/api/Access.CheckBox.md +++ b/api/Access.CheckBox.md @@ -1,5 +1,5 @@ --- -title: CheckBox Object (Access) +title: CheckBox object (Access) keywords: vbaac10.chm10798 f1_keywords: - vbaac10.chm10798 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# CheckBox Object (Access) +# CheckBox object (Access) This object corresponds to a check box on a form or report. This check box is a stand-alone control that displays a Yes/No value from an underlying record source. diff --git a/api/Access.CodeData.AllDatabaseDiagrams.md b/api/Access.CodeData.AllDatabaseDiagrams.md index f7d05913c54..99faaed9a99 100644 --- a/api/Access.CodeData.AllDatabaseDiagrams.md +++ b/api/Access.CodeData.AllDatabaseDiagrams.md @@ -1,5 +1,5 @@ --- -title: CodeData.AllDatabaseDiagrams Property (Access) +title: CodeData.AllDatabaseDiagrams property (Access) keywords: vbaac10.chm12736 f1_keywords: - vbaac10.chm12736 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeData.AllDatabaseDiagrams Property (Access) +# CodeData.AllDatabaseDiagrams property (Access) You can use the **AllDatabaseDiagrams** property to reference the **[AllDatabaseDiagrams](Access.AllDatabaseDiagrams.md)** collection and its related properties. Read-only **AllDatabaseDiagrams** object. ## Syntax - _expression_. `AllDatabaseDiagrams` +_expression_. `AllDatabaseDiagrams` - _expression_ A variable that represents a [CodeData](Access.CodeData.md) object. +_expression_ A variable that represents a [CodeData](Access.CodeData.md) object. ## See also diff --git a/api/Access.CodeData.AllFunctions.md b/api/Access.CodeData.AllFunctions.md index 32b77930410..52bcfeec044 100644 --- a/api/Access.CodeData.AllFunctions.md +++ b/api/Access.CodeData.AllFunctions.md @@ -1,5 +1,5 @@ --- -title: CodeData.AllFunctions Property (Access) +title: CodeData.AllFunctions property (Access) keywords: vbaac10.chm12737 f1_keywords: - vbaac10.chm12737 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeData.AllFunctions Property (Access) +# CodeData.AllFunctions property (Access) You can use the **AllFunctions** property to reference the **[AllFunctions](Access.AllFunctions.md)** collection and its related properties. Read-only **AllFunctions** object. ## Syntax - _expression_. `AllFunctions` +_expression_. `AllFunctions` - _expression_ A variable that represents a [CodeData](Access.CodeData.md) object. +_expression_ A variable that represents a [CodeData](Access.CodeData.md) object. ## See also diff --git a/api/Access.CodeData.AllQueries.md b/api/Access.CodeData.AllQueries.md index c88be334d5f..cf9b9424c55 100644 --- a/api/Access.CodeData.AllQueries.md +++ b/api/Access.CodeData.AllQueries.md @@ -1,5 +1,5 @@ --- -title: CodeData.AllQueries Property (Access) +title: CodeData.AllQueries property (Access) keywords: vbaac10.chm12733 f1_keywords: - vbaac10.chm12733 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeData.AllQueries Property (Access) +# CodeData.AllQueries property (Access) You can use the **AllQueries** property to reference the **[AllQueries](Access.AllQueries.md)** collection and its related properties. Read-only **AllQueries** object. ## Syntax - _expression_. `AllQueries` +_expression_. `AllQueries` - _expression_ A variable that represents a [CodeData](Access.CodeData.md) object. +_expression_ A variable that represents a [CodeData](Access.CodeData.md) object. ## See also diff --git a/api/Access.CodeData.AllStoredProcedures.md b/api/Access.CodeData.AllStoredProcedures.md index 50403b4312b..277f8e55067 100644 --- a/api/Access.CodeData.AllStoredProcedures.md +++ b/api/Access.CodeData.AllStoredProcedures.md @@ -1,5 +1,5 @@ --- -title: CodeData.AllStoredProcedures Property (Access) +title: CodeData.AllStoredProcedures property (Access) keywords: vbaac10.chm12735 f1_keywords: - vbaac10.chm12735 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeData.AllStoredProcedures Property (Access) +# CodeData.AllStoredProcedures property (Access) You can use the **AllStoredProcedures** property to reference the **[AllStoredProcedures](Access.AllStoredProcedures.md)** collection and its related properties. Read-only **AllStoredProcedures** object. ## Syntax - _expression_. `AllStoredProcedures` +_expression_. `AllStoredProcedures` - _expression_ A variable that represents a [CodeData](Access.CodeData.md) object. +_expression_ A variable that represents a [CodeData](Access.CodeData.md) object. ## See also diff --git a/api/Access.CodeData.AllTables.md b/api/Access.CodeData.AllTables.md index 4afde0eac19..8984cd97cf8 100644 --- a/api/Access.CodeData.AllTables.md +++ b/api/Access.CodeData.AllTables.md @@ -1,5 +1,5 @@ --- -title: CodeData.AllTables Property (Access) +title: CodeData.AllTables property (Access) keywords: vbaac10.chm12732 f1_keywords: - vbaac10.chm12732 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeData.AllTables Property (Access) +# CodeData.AllTables property (Access) You can use the **AllTables** property to reference the **[AllTables](Access.AllTables.md)** collection and its related properties. Read-only **AllTables** object. ## Syntax - _expression_. `AllTables` +_expression_. `AllTables` - _expression_ A variable that represents a [CodeData](Access.CodeData.md) object. +_expression_ A variable that represents a [CodeData](Access.CodeData.md) object. ## See also diff --git a/api/Access.CodeData.AllViews.md b/api/Access.CodeData.AllViews.md index e70444a219a..e3cdec784bf 100644 --- a/api/Access.CodeData.AllViews.md +++ b/api/Access.CodeData.AllViews.md @@ -1,5 +1,5 @@ --- -title: CodeData.AllViews Property (Access) +title: CodeData.AllViews property (Access) keywords: vbaac10.chm12734 f1_keywords: - vbaac10.chm12734 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeData.AllViews Property (Access) +# CodeData.AllViews property (Access) You can use the **AllViews** property to reference the **[AllViews](Access.AllViews.md)** collection and its related properties. Read-only **AllViews** object. ## Syntax - _expression_. `AllViews` +_expression_. `AllViews` - _expression_ A variable that represents a [CodeData](Access.CodeData.md) object. +_expression_ A variable that represents a [CodeData](Access.CodeData.md) object. ## See also diff --git a/api/Access.CodeData.md b/api/Access.CodeData.md index 1036e118901..d6155e63976 100644 --- a/api/Access.CodeData.md +++ b/api/Access.CodeData.md @@ -1,5 +1,5 @@ --- -title: CodeData Object (Access) +title: CodeData object (Access) keywords: vbaac10.chm12742 f1_keywords: - vbaac10.chm12742 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# CodeData Object (Access) +# CodeData object (Access) The **CodeData** object refers to objects stored within the code database by the source (server) application. diff --git a/api/Access.CodeProject.AccessConnection.md b/api/Access.CodeProject.AccessConnection.md index 2f87c17f0b4..28e3bc83527 100644 --- a/api/Access.CodeProject.AccessConnection.md +++ b/api/Access.CodeProject.AccessConnection.md @@ -1,5 +1,5 @@ --- -title: CodeProject.AccessConnection Property (Access) +title: CodeProject.AccessConnection property (Access) keywords: vbaac10.chm12726 f1_keywords: - vbaac10.chm12726 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.AccessConnection Property (Access) +# CodeProject.AccessConnection property (Access) You can use the **AccessConnection** property to return a reference to the current Microsoft ActiveX Data Objects (ADO) **Connection** object and its related properties. Read-only **Connection**. ## Syntax - _expression_. `AccessConnection` +_expression_. `AccessConnection` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## Remarks diff --git a/api/Access.CodeProject.AddSharedImage.md b/api/Access.CodeProject.AddSharedImage.md index 459ecc33be4..2e8c62b6580 100644 --- a/api/Access.CodeProject.AddSharedImage.md +++ b/api/Access.CodeProject.AddSharedImage.md @@ -1,5 +1,5 @@ --- -title: CodeProject.AddSharedImage Method (Access) +title: CodeProject.AddSharedImage method (Access) keywords: vbaac10.chm14660 f1_keywords: - vbaac10.chm14660 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CodeProject.AddSharedImage Method (Access) +# CodeProject.AddSharedImage method (Access) Imports the specified image into the database and adds it to the **[SharedResources](Access.SharedResources.md)** collection. ## Syntax - _expression_. `AddSharedImage`( ` _SharedImageName_`, ` _FileName_` ) +_expression_. `AddSharedImage`( ` _SharedImageName_`, ` _FileName_` ) - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SharedImageName_|Required|**String**|Specifies the string used to identify the image in the collection.| | _FileName_|Required|**String**|Specifies the full name and path to the image file.| diff --git a/api/Access.CodeProject.AllForms.md b/api/Access.CodeProject.AllForms.md index 365f07a2ee9..a51e170933d 100644 --- a/api/Access.CodeProject.AllForms.md +++ b/api/Access.CodeProject.AllForms.md @@ -1,5 +1,5 @@ --- -title: CodeProject.AllForms Property (Access) +title: CodeProject.AllForms property (Access) keywords: vbaac10.chm12707 f1_keywords: - vbaac10.chm12707 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.AllForms Property (Access) +# CodeProject.AllForms property (Access) You can use the **AllForms** property to reference the **[AllForms](Access.AllForms.md)** collection and its related properties. Read-only **AllForms** object. ## Syntax - _expression_. `AllForms` +_expression_. `AllForms` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## See also diff --git a/api/Access.CodeProject.AllMacros.md b/api/Access.CodeProject.AllMacros.md index 9645edd8c1e..16cbe86cfb6 100644 --- a/api/Access.CodeProject.AllMacros.md +++ b/api/Access.CodeProject.AllMacros.md @@ -1,5 +1,5 @@ --- -title: CodeProject.AllMacros Property (Access) +title: CodeProject.AllMacros property (Access) keywords: vbaac10.chm12709 f1_keywords: - vbaac10.chm12709 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.AllMacros Property (Access) +# CodeProject.AllMacros property (Access) You can use the **AllMacros** property to reference the **[AllMacros](Access.allmacros.md)** collection and its related properties. Read-only **AllMacros** object. ## Syntax - _expression_. `AllMacros` +_expression_. `AllMacros` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## See also diff --git a/api/Access.CodeProject.AllModules.md b/api/Access.CodeProject.AllModules.md index 71a429b66cb..62ed3237bdc 100644 --- a/api/Access.CodeProject.AllModules.md +++ b/api/Access.CodeProject.AllModules.md @@ -1,5 +1,5 @@ --- -title: CodeProject.AllModules Property (Access) +title: CodeProject.AllModules property (Access) keywords: vbaac10.chm12710 f1_keywords: - vbaac10.chm12710 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.AllModules Property (Access) +# CodeProject.AllModules property (Access) You can use the **AllModules** property to reference the **[AllModules](Access.AllModules.md)** collection and its related properties. Read-only **AllModules** object. ## Syntax - _expression_. `AllModules` +_expression_. `AllModules` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## See also diff --git a/api/Access.CodeProject.AllReports.md b/api/Access.CodeProject.AllReports.md index 6408119ff0c..8a230c1cbe9 100644 --- a/api/Access.CodeProject.AllReports.md +++ b/api/Access.CodeProject.AllReports.md @@ -1,5 +1,5 @@ --- -title: CodeProject.AllReports Property (Access) +title: CodeProject.AllReports property (Access) keywords: vbaac10.chm12708 f1_keywords: - vbaac10.chm12708 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.AllReports Property (Access) +# CodeProject.AllReports property (Access) You can use the **AllReports** property to reference the **[AllReports](Access.AllReports.md)** collection and its related properties. Read-only **AllReports** object. ## Syntax - _expression_. `AllReports` +_expression_. `AllReports` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## See also diff --git a/api/Access.CodeProject.Application.md b/api/Access.CodeProject.Application.md index d15cd2a986c..03dc35c9d8b 100644 --- a/api/Access.CodeProject.Application.md +++ b/api/Access.CodeProject.Application.md @@ -1,5 +1,5 @@ --- -title: CodeProject.Application Property (Access) +title: CodeProject.Application property (Access) keywords: vbaac10.chm12722 f1_keywords: - vbaac10.chm12722 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.Application Property (Access) +# CodeProject.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## Remarks diff --git a/api/Access.CodeProject.BaseConnectionString.md b/api/Access.CodeProject.BaseConnectionString.md index f7847d2081f..7c81000b541 100644 --- a/api/Access.CodeProject.BaseConnectionString.md +++ b/api/Access.CodeProject.BaseConnectionString.md @@ -1,5 +1,5 @@ --- -title: CodeProject.BaseConnectionString Property (Access) +title: CodeProject.BaseConnectionString property (Access) keywords: vbaac10.chm12713 f1_keywords: - vbaac10.chm12713 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.BaseConnectionString Property (Access) +# CodeProject.BaseConnectionString property (Access) You can use the **BaseConnectionString** property to return the base connection string for the specified object. Read-only **String**. ## Syntax - _expression_. `BaseConnectionString` +_expression_. `BaseConnectionString` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## Remarks diff --git a/api/Access.CodeProject.CloseConnection.md b/api/Access.CodeProject.CloseConnection.md index bcfc0053a46..e183ceb8b82 100644 --- a/api/Access.CodeProject.CloseConnection.md +++ b/api/Access.CodeProject.CloseConnection.md @@ -1,5 +1,5 @@ --- -title: CodeProject.CloseConnection Method (Access) +title: CodeProject.CloseConnection method (Access) keywords: vbaac10.chm12716 f1_keywords: - vbaac10.chm12716 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# CodeProject.CloseConnection Method (Access) +# CodeProject.CloseConnection method (Access) You can use the **CloseConnection** method to close the current connection between the **CodeProject** object in a Microsoft Access project (.adp) or Access database and the database specified in the project's base connection string. ## Syntax - _expression_. `CloseConnection` +_expression_. `CloseConnection` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.CodeProject.Connection.md b/api/Access.CodeProject.Connection.md index af92d5e4a1b..fb6f76f0aeb 100644 --- a/api/Access.CodeProject.Connection.md +++ b/api/Access.CodeProject.Connection.md @@ -1,5 +1,5 @@ --- -title: CodeProject.Connection Property (Access) +title: CodeProject.Connection property (Access) keywords: vbaac10.chm12720 f1_keywords: - vbaac10.chm12720 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.Connection Property (Access) +# CodeProject.Connection property (Access) You can use the **Connection** property to return a reference to the current ActiveX Data Objects (ADO) **Connection** object and its related properties. Read-only **Connection**. ## Syntax - _expression_. `Connection` +_expression_. `Connection` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## Remarks diff --git a/api/Access.CodeProject.FileFormat.md b/api/Access.CodeProject.FileFormat.md index 5023381f335..4c7b65e0f20 100644 --- a/api/Access.CodeProject.FileFormat.md +++ b/api/Access.CodeProject.FileFormat.md @@ -1,5 +1,5 @@ --- -title: CodeProject.FileFormat Property (Access) +title: CodeProject.FileFormat property (Access) keywords: vbaac10.chm12725 f1_keywords: - vbaac10.chm12725 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.FileFormat Property (Access) +# CodeProject.FileFormat property (Access) Returns an **[AcFileFormat](Access.AcFileFormat.md)** constant indicating the Microsoft Access version format of the specified project. Read-only. ## Syntax - _expression_. `FileFormat` +_expression_. `FileFormat` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## Remarks diff --git a/api/Access.CodeProject.FullName.md b/api/Access.CodeProject.FullName.md index 9c950a0cb38..d6539242d4f 100644 --- a/api/Access.CodeProject.FullName.md +++ b/api/Access.CodeProject.FullName.md @@ -1,5 +1,5 @@ --- -title: CodeProject.FullName Property (Access) +title: CodeProject.FullName property (Access) keywords: vbaac10.chm12719 f1_keywords: - vbaac10.chm12719 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.FullName Property (Access) +# CodeProject.FullName property (Access) Sets or returns the full path (including file name) of a specific object. Read-only **String**. ## Syntax - _expression_. `FullName` +_expression_. `FullName` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## See also diff --git a/api/Access.CodeProject.ImportExportSpecifications.md b/api/Access.CodeProject.ImportExportSpecifications.md index 5905e4f45bc..e64d6fb21bd 100644 --- a/api/Access.CodeProject.ImportExportSpecifications.md +++ b/api/Access.CodeProject.ImportExportSpecifications.md @@ -1,5 +1,5 @@ --- -title: CodeProject.ImportExportSpecifications Property (Access) +title: CodeProject.ImportExportSpecifications property (Access) keywords: vbaac10.chm12729 f1_keywords: - vbaac10.chm12729 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.ImportExportSpecifications Property (Access) +# CodeProject.ImportExportSpecifications property (Access) Returns a **[ImportExportSpecifications](Access.ImportExportSpecifications.md)** collection that represents the collection of saved import or export operations for the specified object. Read-only. ## Syntax - _expression_. `ImportExportSpecifications` +_expression_. `ImportExportSpecifications` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## See also diff --git a/api/Access.CodeProject.IsConnected.md b/api/Access.CodeProject.IsConnected.md index 82645a11357..7fef9dcce81 100644 --- a/api/Access.CodeProject.IsConnected.md +++ b/api/Access.CodeProject.IsConnected.md @@ -1,5 +1,5 @@ --- -title: CodeProject.IsConnected Property (Access) +title: CodeProject.IsConnected property (Access) keywords: vbaac10.chm12714 f1_keywords: - vbaac10.chm12714 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.IsConnected Property (Access) +# CodeProject.IsConnected property (Access) You can use the **IsConnected** property to determine if the **[CodeProject](Access.CodeProject.md)** object is currently connected. Read-only **Boolean**. ## Syntax - _expression_. `IsConnected` +_expression_. `IsConnected` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## See also diff --git a/api/Access.CodeProject.IsSQLBackend.md b/api/Access.CodeProject.IsSQLBackend.md index e2503b47680..4f8831502d6 100644 --- a/api/Access.CodeProject.IsSQLBackend.md +++ b/api/Access.CodeProject.IsSQLBackend.md @@ -1,5 +1,5 @@ --- -title: CodeProject.IsSQLBackend Property (Access) +title: CodeProject.IsSQLBackend property (Access) keywords: vbaac10.chm14747 f1_keywords: - vbaac10.chm14747 @@ -9,16 +9,16 @@ ms.prod: access --- -# CodeProject.IsSQLBackend Property (Access) +# CodeProject.IsSQLBackend property (Access) Returns **true** if the code project was created in Access 2013 and onwards and **false** if the code project was created prior to Access 2013 . Read-only **Boolean** Introduced in Office 2016. ## Syntax - _expression_. `IsSQLBackend` +_expression_. `IsSQLBackend` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## See also diff --git a/api/Access.CodeProject.IsTrusted.md b/api/Access.CodeProject.IsTrusted.md index 0f1671d788b..5d548d83603 100644 --- a/api/Access.CodeProject.IsTrusted.md +++ b/api/Access.CodeProject.IsTrusted.md @@ -1,5 +1,5 @@ --- -title: CodeProject.IsTrusted Property (Access) +title: CodeProject.IsTrusted property (Access) keywords: vbaac10.chm12730 f1_keywords: - vbaac10.chm12730 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.IsTrusted Property (Access) +# CodeProject.IsTrusted property (Access) Gets whether or not macros and Visual Basic for Applications (VBA) code have been enabled in the current project. Read-only **Boolean**. ## Syntax - _expression_. `IsTrusted` +_expression_. `IsTrusted` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## See also diff --git a/api/Access.CodeProject.IsWeb.md b/api/Access.CodeProject.IsWeb.md index 2603833affe..f39139df68b 100644 --- a/api/Access.CodeProject.IsWeb.md +++ b/api/Access.CodeProject.IsWeb.md @@ -1,5 +1,5 @@ --- -title: CodeProject.IsWeb Property (Access) +title: CodeProject.IsWeb property (Access) keywords: vbaac10.chm14677 f1_keywords: - vbaac10.chm14677 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.IsWeb Property (Access) +# CodeProject.IsWeb property (Access) Gets whether the database is a Web database. Read-only **Boolean**. ## Syntax - _expression_. `IsWeb` +_expression_. `IsWeb` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## Remarks diff --git a/api/Access.CodeProject.Name.md b/api/Access.CodeProject.Name.md index 60487bbb499..24cb77bd2a3 100644 --- a/api/Access.CodeProject.Name.md +++ b/api/Access.CodeProject.Name.md @@ -1,5 +1,5 @@ --- -title: CodeProject.Name Property (Access) +title: CodeProject.Name property (Access) keywords: vbaac10.chm12717 f1_keywords: - vbaac10.chm12717 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.Name Property (Access) +# CodeProject.Name property (Access) You can use the **Name** property to determine the string expression that identifies the name of an object. Read-only **String**. ## Syntax - _expression_.Name +_expression_.Name - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## Remarks diff --git a/api/Access.CodeProject.OpenConnection.md b/api/Access.CodeProject.OpenConnection.md index 4df7af3b62a..f29ef3f2ea4 100644 --- a/api/Access.CodeProject.OpenConnection.md +++ b/api/Access.CodeProject.OpenConnection.md @@ -1,5 +1,5 @@ --- -title: CodeProject.OpenConnection Method (Access) +title: CodeProject.OpenConnection method (Access) keywords: vbaac10.chm12715 f1_keywords: - vbaac10.chm12715 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CodeProject.OpenConnection Method (Access) +# CodeProject.OpenConnection method (Access) You can use the **OpenConnection** method to open an ADO connection to an existing Microsoft Access project (.adp) or Access database as the current Access project or database in the Microsoft Access window. ## Syntax - _expression_. `OpenConnection`( ` _BaseConnectionString_`, ` _UserID_`, ` _Password_` ) +_expression_. `OpenConnection`( ` _BaseConnectionString_`, ` _UserID_`, ` _Password_` ) - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _BaseConnectionString_|Optional|**Variant**|A string expression that is the base connection string of the database.| | _UserID_|Optional|**Variant**|A string expression that is the name of the existing Access project, including the path name and the file name extension. If your network supports it, you can also specify a network path in the following form: \\Server\Share\Folder\Filename.adp| diff --git a/api/Access.CodeProject.Parent.md b/api/Access.CodeProject.Parent.md index fb5ed9a67a2..655b93f2a4f 100644 --- a/api/Access.CodeProject.Parent.md +++ b/api/Access.CodeProject.Parent.md @@ -1,5 +1,5 @@ --- -title: CodeProject.Parent Property (Access) +title: CodeProject.Parent property (Access) keywords: vbaac10.chm12723 f1_keywords: - vbaac10.chm12723 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.Parent Property (Access) +# CodeProject.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## See also diff --git a/api/Access.CodeProject.Path.md b/api/Access.CodeProject.Path.md index 6ac6f30ab95..54e1ae2abb7 100644 --- a/api/Access.CodeProject.Path.md +++ b/api/Access.CodeProject.Path.md @@ -1,5 +1,5 @@ --- -title: CodeProject.Path Property (Access) +title: CodeProject.Path property (Access) keywords: vbaac10.chm12718 f1_keywords: - vbaac10.chm12718 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.Path Property (Access) +# CodeProject.Path property (Access) You can use the **Path** property to determine the location where data is stored for a Microsoft Access project (.adp) or Microsoft Access database. Read-only **String**. ## Syntax - _expression_. `Path` +_expression_. `Path` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## Remarks diff --git a/api/Access.CodeProject.ProjectType.md b/api/Access.CodeProject.ProjectType.md index f1491c69c73..5446da70076 100644 --- a/api/Access.CodeProject.ProjectType.md +++ b/api/Access.CodeProject.ProjectType.md @@ -1,5 +1,5 @@ --- -title: CodeProject.ProjectType Property (Access) +title: CodeProject.ProjectType property (Access) keywords: vbaac10.chm12712 f1_keywords: - vbaac10.chm12712 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.ProjectType Property (Access) +# CodeProject.ProjectType property (Access) You can use the **ProjectType** property to determine the type of project that is currently open. Read-only **[AcProjectType](Access.AcProjectType.md)**. ## Syntax - _expression_. `ProjectType` +_expression_. `ProjectType` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## See also diff --git a/api/Access.CodeProject.Properties.md b/api/Access.CodeProject.Properties.md index 72f315c77dc..fa33b04bfc9 100644 --- a/api/Access.CodeProject.Properties.md +++ b/api/Access.CodeProject.Properties.md @@ -1,5 +1,5 @@ --- -title: CodeProject.Properties Property (Access) +title: CodeProject.Properties property (Access) keywords: vbaac10.chm12721 f1_keywords: - vbaac10.chm12721 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.Properties Property (Access) +# CodeProject.Properties property (Access) Returns a reference to a **[CodeProject](Access.CodeProject.md)** object's **[AccessObjectProperties](Access.AccessObjectProperties.md)** collection. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## Remarks diff --git a/api/Access.CodeProject.RemovePersonalInformation.md b/api/Access.CodeProject.RemovePersonalInformation.md index a4f1464a2f8..9485a18f0ed 100644 --- a/api/Access.CodeProject.RemovePersonalInformation.md +++ b/api/Access.CodeProject.RemovePersonalInformation.md @@ -1,5 +1,5 @@ --- -title: CodeProject.RemovePersonalInformation Property (Access) +title: CodeProject.RemovePersonalInformation property (Access) keywords: vbaac10.chm12724 f1_keywords: - vbaac10.chm12724 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.RemovePersonalInformation Property (Access) +# CodeProject.RemovePersonalInformation property (Access) Returns or sets a **Boolean** indicating whether personal information about the user is stored in the specified project. **True** if personal information is removed. Read-write. ## Syntax - _expression_. `RemovePersonalInformation` +_expression_. `RemovePersonalInformation` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## See also diff --git a/api/Access.CodeProject.Resources.md b/api/Access.CodeProject.Resources.md index 28e42f43d4d..1585eece580 100644 --- a/api/Access.CodeProject.Resources.md +++ b/api/Access.CodeProject.Resources.md @@ -1,5 +1,5 @@ --- -title: CodeProject.Resources Property (Access) +title: CodeProject.Resources property (Access) keywords: vbaac10.chm14653 f1_keywords: - vbaac10.chm14653 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.Resources Property (Access) +# CodeProject.Resources property (Access) Gets the **[SharedResources](Access.SharedResources.md)** collection for the specified object. Read-only **SharedResources**. ## Syntax - _expression_. `Resources` +_expression_. `Resources` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## See also diff --git a/api/Access.CodeProject.UpdateDependencyInfo.md b/api/Access.CodeProject.UpdateDependencyInfo.md index d846b598307..d739d29914a 100644 --- a/api/Access.CodeProject.UpdateDependencyInfo.md +++ b/api/Access.CodeProject.UpdateDependencyInfo.md @@ -1,5 +1,5 @@ --- -title: CodeProject.UpdateDependencyInfo Method (Access) +title: CodeProject.UpdateDependencyInfo method (Access) keywords: vbaac10.chm12727 f1_keywords: - vbaac10.chm12727 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# CodeProject.UpdateDependencyInfo Method (Access) +# CodeProject.UpdateDependencyInfo method (Access) Updates the dependency information for the database. ## Syntax - _expression_. `UpdateDependencyInfo` +_expression_. `UpdateDependencyInfo` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.CodeProject.WebSite.md b/api/Access.CodeProject.WebSite.md index ae982a46d57..199752c2c4b 100644 --- a/api/Access.CodeProject.WebSite.md +++ b/api/Access.CodeProject.WebSite.md @@ -1,5 +1,5 @@ --- -title: CodeProject.WebSite Property (Access) +title: CodeProject.WebSite property (Access) keywords: vbaac10.chm14663 f1_keywords: - vbaac10.chm14663 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CodeProject.WebSite Property (Access) +# CodeProject.WebSite property (Access) Gets the Uniform Resource Locator (URL) of the Web site to which the database has been published. Read-only **String**. ## Syntax - _expression_. `WebSite` +_expression_. `WebSite` - _expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. +_expression_ A variable that represents a [CodeProject](Access.CodeProject.md) object. ## Remarks diff --git a/api/Access.CodeProject.md b/api/Access.CodeProject.md index 4d13028cb8c..1dbfc89d883 100644 --- a/api/Access.CodeProject.md +++ b/api/Access.CodeProject.md @@ -1,5 +1,5 @@ --- -title: CodeProject Object (Access) +title: CodeProject object (Access) keywords: vbaac10.chm12741 f1_keywords: - vbaac10.chm12741 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# CodeProject Object (Access) +# CodeProject object (Access) The **CodeProject** object refers to the project for the code database of a Microsoft Access project (.adp) or Access database. diff --git a/api/Access.ComboBox.AddColon.md b/api/Access.ComboBox.AddColon.md index c351490cfc0..95b7f6e2a39 100644 --- a/api/Access.ComboBox.AddColon.md +++ b/api/Access.ComboBox.AddColon.md @@ -1,5 +1,5 @@ --- -title: ComboBox.AddColon Property (Access) +title: ComboBox.AddColon property (Access) keywords: vbaac10.chm11429 f1_keywords: - vbaac10.chm11429 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.AddColon Property (Access) +# ComboBox.AddColon property (Access) Specifies whether a colon follows the text in labels for new controls. Read/write **Boolean**. ## Syntax - _expression_. `AddColon` +_expression_. `AddColon` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## See also diff --git a/api/Access.ComboBox.AddItem.md b/api/Access.ComboBox.AddItem.md index c84cb2f8044..5da4c4f7b4c 100644 --- a/api/Access.ComboBox.AddItem.md +++ b/api/Access.ComboBox.AddItem.md @@ -1,5 +1,5 @@ --- -title: ComboBox.AddItem Method (Access) +title: ComboBox.AddItem method (Access) keywords: vbaac10.chm11476 f1_keywords: - vbaac10.chm11476 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ComboBox.AddItem Method (Access) +# ComboBox.AddItem method (Access) Adds a new item to the list of values displayed by the specified combo box control. ## Syntax - _expression_. `AddItem`( ` _Item_`, ` _Index_` ) +_expression_. `AddItem`( ` _Item_`, ` _Index_` ) - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Item_|Required|**String**|The display text for the new item.| | _Index_|Optional|**Variant**|The position of the item in the list. If this argument is omitted, the item is added to the end of the list.| diff --git a/api/Access.ComboBox.AfterUpdate(even).md b/api/Access.ComboBox.AfterUpdate(even).md index b1156946683..a2238dfdfd0 100644 --- a/api/Access.ComboBox.AfterUpdate(even).md +++ b/api/Access.ComboBox.AfterUpdate(even).md @@ -1,5 +1,5 @@ --- -title: ComboBox.AfterUpdate Event (Access) +title: ComboBox.AfterUpdate event (Access) keywords: vbaac10.chm14212 f1_keywords: - vbaac10.chm14212 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.AfterUpdate Event (Access) +# ComboBox.AfterUpdate event (Access) The **AfterUpdate** event occurs after changed data in a control or record is updated. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.AfterUpdate(property).md b/api/Access.ComboBox.AfterUpdate(property).md index f67ff2ba5e7..7d54b6a1666 100644 --- a/api/Access.ComboBox.AfterUpdate(property).md +++ b/api/Access.ComboBox.AfterUpdate(property).md @@ -1,5 +1,5 @@ --- -title: ComboBox.AfterUpdate Property (Access) +title: ComboBox.AfterUpdate property (Access) keywords: vbaac10.chm11448 f1_keywords: - vbaac10.chm11448 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.AfterUpdate Property (Access) +# ComboBox.AfterUpdate property (Access) Returns or sets which macro, event procedure, or user-defined function runs when the **AfterUpdate** event occurs. Read/write **String**. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.AllowAutoCorrect.md b/api/Access.ComboBox.AllowAutoCorrect.md index 017395a10f7..f3d06996c68 100644 --- a/api/Access.ComboBox.AllowAutoCorrect.md +++ b/api/Access.ComboBox.AllowAutoCorrect.md @@ -1,5 +1,5 @@ --- -title: ComboBox.AllowAutoCorrect Property (Access) +title: ComboBox.AllowAutoCorrect property (Access) keywords: vbaac10.chm11397 f1_keywords: - vbaac10.chm11397 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.AllowAutoCorrect Property (Access) +# ComboBox.AllowAutoCorrect property (Access) You can use the **AllowAutoCorrect** property to specify whetherthe specified control will automatically correct entries made by the user. Read/write **Boolean**. ## Syntax - _expression_. `AllowAutoCorrect` +_expression_. `AllowAutoCorrect` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.AllowValueListEdits.md b/api/Access.ComboBox.AllowValueListEdits.md index b378d176ada..dd1e4e3da49 100644 --- a/api/Access.ComboBox.AllowValueListEdits.md +++ b/api/Access.ComboBox.AllowValueListEdits.md @@ -1,5 +1,5 @@ --- -title: ComboBox.AllowValueListEdits Property (Access) +title: ComboBox.AllowValueListEdits property (Access) keywords: vbaac10.chm11517 f1_keywords: - vbaac10.chm11517 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.AllowValueListEdits Property (Access) +# ComboBox.AllowValueListEdits property (Access) Gets or sets whether the **Edit List Items** command is available when the user right-clicks a combo box. Read/write **Boolean**. ## Syntax - _expression_. `AllowValueListEdits` +_expression_. `AllowValueListEdits` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.Application.md b/api/Access.ComboBox.Application.md index fce1d3b8ac7..893e83d8d99 100644 --- a/api/Access.ComboBox.Application.md +++ b/api/Access.ComboBox.Application.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Application Property (Access) +title: ComboBox.Application property (Access) keywords: vbaac10.chm11356 f1_keywords: - vbaac10.chm11356 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.Application Property (Access) +# ComboBox.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.AutoExpand.md b/api/Access.ComboBox.AutoExpand.md index dbe73182314..a03b8b12030 100644 --- a/api/Access.ComboBox.AutoExpand.md +++ b/api/Access.ComboBox.AutoExpand.md @@ -1,5 +1,5 @@ --- -title: ComboBox.AutoExpand Property (Access) +title: ComboBox.AutoExpand property (Access) keywords: vbaac10.chm11388,vbaac10.chm4275 f1_keywords: - vbaac10.chm11388,vbaac10.chm4275 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.AutoExpand Property (Access) +# ComboBox.AutoExpand property (Access) You can use the **AutoExpand** property to specify whether Microsoft Access automatically fills the text box portion of a combo box with a value from the combo box list that matches the characters you enter as you type in the combo box. This lets you quickly enter an existing value in a combo box without displaying the list box portion of the combo box. Read/write **Boolean**. ## Syntax - _expression_. `AutoExpand` +_expression_. `AutoExpand` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.AutoLabel.md b/api/Access.ComboBox.AutoLabel.md index f4ba02b5db4..5f942176031 100644 --- a/api/Access.ComboBox.AutoLabel.md +++ b/api/Access.ComboBox.AutoLabel.md @@ -1,5 +1,5 @@ --- -title: ComboBox.AutoLabel Property (Access) +title: ComboBox.AutoLabel property (Access) keywords: vbaac10.chm11428 f1_keywords: - vbaac10.chm11428 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.AutoLabel Property (Access) +# ComboBox.AutoLabel property (Access) Specifies whether labels are automatically created and attached to new controls. Read/write **Boolean**. ## Syntax - _expression_. `AutoLabel` +_expression_. `AutoLabel` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## See also diff --git a/api/Access.ComboBox.BackColor.md b/api/Access.ComboBox.BackColor.md index ca63ce60d6f..e802b155788 100644 --- a/api/Access.ComboBox.BackColor.md +++ b/api/Access.ComboBox.BackColor.md @@ -1,5 +1,5 @@ --- -title: ComboBox.BackColor Property (Access) +title: ComboBox.BackColor property (Access) keywords: vbaac10.chm11406 f1_keywords: - vbaac10.chm11406 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.BackColor Property (Access) +# ComboBox.BackColor property (Access) Gets or sets the interior color of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackColor` +_expression_. `BackColor` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.BackShade.md b/api/Access.ComboBox.BackShade.md index 74e39f0a7a2..41f16de8dcf 100644 --- a/api/Access.ComboBox.BackShade.md +++ b/api/Access.ComboBox.BackShade.md @@ -1,5 +1,5 @@ --- -title: ComboBox.BackShade Property (Access) +title: ComboBox.BackShade property (Access) keywords: vbaac10.chm14633 f1_keywords: - vbaac10.chm14633 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.BackShade Property (Access) +# ComboBox.BackShade property (Access) Gets or sets the shade that is applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackShade` +_expression_. `BackShade` - _expression_ A variable that represents a '[ComboBox](Access.ComboBox.md)' object. +_expression_ A variable that represents a '[ComboBox](Access.ComboBox.md)' object. ## Remarks diff --git a/api/Access.ComboBox.BackStyle.md b/api/Access.ComboBox.BackStyle.md index d64415a230f..1c8b9950c05 100644 --- a/api/Access.ComboBox.BackStyle.md +++ b/api/Access.ComboBox.BackStyle.md @@ -1,5 +1,5 @@ --- -title: ComboBox.BackStyle Property (Access) +title: ComboBox.BackStyle property (Access) keywords: vbaac10.chm11405 f1_keywords: - vbaac10.chm11405 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.BackStyle Property (Access) +# ComboBox.BackStyle property (Access) You can use the **BackStyle** property to specify whether a control will be transparent. Read/write **Byte**. ## Syntax - _expression_. `BackStyle` +_expression_. `BackStyle` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.BackThemeColorIndex.md b/api/Access.ComboBox.BackThemeColorIndex.md index 10da2203297..875a4ea6813 100644 --- a/api/Access.ComboBox.BackThemeColorIndex.md +++ b/api/Access.ComboBox.BackThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ComboBox.BackThemeColorIndex Property (Access) +title: ComboBox.BackThemeColorIndex property (Access) keywords: vbaac10.chm14631 f1_keywords: - vbaac10.chm14631 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.BackThemeColorIndex Property (Access) +# ComboBox.BackThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BackColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackThemeColorIndex` +_expression_. `BackThemeColorIndex` - _expression_ A variable that represents a '[ComboBox](Access.ComboBox.md)' object. +_expression_ A variable that represents a '[ComboBox](Access.ComboBox.md)' object. ## Remarks diff --git a/api/Access.ComboBox.BackTint.md b/api/Access.ComboBox.BackTint.md index 9cc1fedae83..2c759c8fe56 100644 --- a/api/Access.ComboBox.BackTint.md +++ b/api/Access.ComboBox.BackTint.md @@ -1,5 +1,5 @@ --- -title: ComboBox.BackTint Property (Access) +title: ComboBox.BackTint property (Access) keywords: vbaac10.chm14632 f1_keywords: - vbaac10.chm14632 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.BackTint Property (Access) +# ComboBox.BackTint property (Access) Gets or sets the tint that is applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackTint` +_expression_. `BackTint` - _expression_ A variable that represents a '[ComboBox](Access.ComboBox.md)' object. +_expression_ A variable that represents a '[ComboBox](Access.ComboBox.md)' object. ## Remarks diff --git a/api/Access.ComboBox.BeforeUpdate(even).md b/api/Access.ComboBox.BeforeUpdate(even).md index d2c6481f431..f31058504b6 100644 --- a/api/Access.ComboBox.BeforeUpdate(even).md +++ b/api/Access.ComboBox.BeforeUpdate(even).md @@ -1,5 +1,5 @@ --- -title: ComboBox.BeforeUpdate Event (Access) +title: ComboBox.BeforeUpdate event (Access) keywords: vbaac10.chm14211 f1_keywords: - vbaac10.chm14211 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ComboBox.BeforeUpdate Event (Access) +# ComboBox.BeforeUpdate event (Access) The **BeforeUpdate** event occurs before changed data in a control or record is updated. ## Syntax - _expression_. `BeforeUpdate`( ` _Cancel_` ) +_expression_. `BeforeUpdate`( ` _Cancel_` ) - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **BeforeUpdate** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **BeforeUpdate** event.| diff --git a/api/Access.ComboBox.BeforeUpdate(property).md b/api/Access.ComboBox.BeforeUpdate(property).md index 29e71e28c07..c1bb837961c 100644 --- a/api/Access.ComboBox.BeforeUpdate(property).md +++ b/api/Access.ComboBox.BeforeUpdate(property).md @@ -1,5 +1,5 @@ --- -title: ComboBox.BeforeUpdate Property (Access) +title: ComboBox.BeforeUpdate property (Access) keywords: vbaac10.chm11447 f1_keywords: - vbaac10.chm11447 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.BeforeUpdate Property (Access) +# ComboBox.BeforeUpdate property (Access) Returns or sets which macro, event procedure, or user-defined function runs when the **BeforeUpdate** event occurs. Read/write **String**. ## Syntax - _expression_. `BeforeUpdate` +_expression_. `BeforeUpdate` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.BorderColor.md b/api/Access.ComboBox.BorderColor.md index cdd53a03af2..438fd2c6f72 100644 --- a/api/Access.ComboBox.BorderColor.md +++ b/api/Access.ComboBox.BorderColor.md @@ -1,5 +1,5 @@ --- -title: ComboBox.BorderColor Property (Access) +title: ComboBox.BorderColor property (Access) keywords: vbaac10.chm11410 f1_keywords: - vbaac10.chm11410 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.BorderColor Property (Access) +# ComboBox.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.BorderShade.md b/api/Access.ComboBox.BorderShade.md index bd9a9a0a08e..a85bb49eb55 100644 --- a/api/Access.ComboBox.BorderShade.md +++ b/api/Access.ComboBox.BorderShade.md @@ -1,5 +1,5 @@ --- -title: ComboBox.BorderShade Property (Access) +title: ComboBox.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.BorderShade Property (Access) +# ComboBox.BorderShade property (Access) Gets or sets the shade that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents a '[ComboBox](Access.ComboBox.md)' object. +_expression_ A variable that represents a '[ComboBox](Access.ComboBox.md)' object. ## Remarks diff --git a/api/Access.ComboBox.BorderStyle.md b/api/Access.ComboBox.BorderStyle.md index 41bce4c81d3..fadc02ff51d 100644 --- a/api/Access.ComboBox.BorderStyle.md +++ b/api/Access.ComboBox.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: ComboBox.BorderStyle Property (Access) +title: ComboBox.BorderStyle property (Access) keywords: vbaac10.chm11408 f1_keywords: - vbaac10.chm11408 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.BorderStyle Property (Access) +# ComboBox.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.BorderThemeColorIndex.md b/api/Access.ComboBox.BorderThemeColorIndex.md index c6377dbcb7c..12358531d58 100644 --- a/api/Access.ComboBox.BorderThemeColorIndex.md +++ b/api/Access.ComboBox.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ComboBox.BorderThemeColorIndex Property (Access) +title: ComboBox.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.BorderThemeColorIndex Property (Access) +# ComboBox.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.BorderTint.md b/api/Access.ComboBox.BorderTint.md index a903424c12c..7fc361cccd0 100644 --- a/api/Access.ComboBox.BorderTint.md +++ b/api/Access.ComboBox.BorderTint.md @@ -1,5 +1,5 @@ --- -title: ComboBox.BorderTint Property (Access) +title: ComboBox.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.BorderTint Property (Access) +# ComboBox.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.BorderWidth.md b/api/Access.ComboBox.BorderWidth.md index 5fb47079bf3..2df62a40404 100644 --- a/api/Access.ComboBox.BorderWidth.md +++ b/api/Access.ComboBox.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: ComboBox.BorderWidth Property (Access) +title: ComboBox.BorderWidth property (Access) keywords: vbaac10.chm11411 f1_keywords: - vbaac10.chm11411 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.BorderWidth Property (Access) +# ComboBox.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.BottomMargin.md b/api/Access.ComboBox.BottomMargin.md index 82bb3cdb9c7..f89b411502e 100644 --- a/api/Access.ComboBox.BottomMargin.md +++ b/api/Access.ComboBox.BottomMargin.md @@ -1,5 +1,5 @@ --- -title: ComboBox.BottomMargin Property (Access) +title: ComboBox.BottomMargin property (Access) keywords: vbaac10.chm11523 f1_keywords: - vbaac10.chm11523 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.BottomMargin Property (Access) +# ComboBox.BottomMargin property (Access) Along with the **LeftMargin**, **RightMargin**, and **TopMargin** properties, specifies the location of information displayed within a text box control. Read/write **Integer**. ## Syntax - _expression_. `BottomMargin` +_expression_. `BottomMargin` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.BottomPadding.md b/api/Access.ComboBox.BottomPadding.md index c7f788d789a..ea8aa1fb512 100644 --- a/api/Access.ComboBox.BottomPadding.md +++ b/api/Access.ComboBox.BottomPadding.md @@ -1,5 +1,5 @@ --- -title: ComboBox.BottomPadding Property (Access) +title: ComboBox.BottomPadding property (Access) keywords: vbaac10.chm11484 f1_keywords: - vbaac10.chm11484 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.BottomPadding Property (Access) +# ComboBox.BottomPadding property (Access) Gets or sets the amount of space (in inches) between the combo box and its bottom gridline. Read/write **Integer**. ## Syntax - _expression_. `BottomPadding` +_expression_. `BottomPadding` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## See also diff --git a/api/Access.ComboBox.BoundColumn.md b/api/Access.ComboBox.BoundColumn.md index 083a9e5ad11..b20a9d65866 100644 --- a/api/Access.ComboBox.BoundColumn.md +++ b/api/Access.ComboBox.BoundColumn.md @@ -1,5 +1,5 @@ --- -title: ComboBox.BoundColumn Property (Access) +title: ComboBox.BoundColumn property (Access) keywords: vbaac10.chm11383 f1_keywords: - vbaac10.chm11383 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.BoundColumn Property (Access) +# ComboBox.BoundColumn property (Access) When you make a selection from a combo box, the **BoundColumn** property tells Microsoft Access which column's values to use as the value of the control. If the control is bound to a field, the value in the column specified by the **BoundColumn** property is stored in the field named in the **ControlSource** property. Read/write **Long**. ## Syntax - _expression_. `BoundColumn` +_expression_. `BoundColumn` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.CanGrow.md b/api/Access.ComboBox.CanGrow.md index 3076a139d3f..dd8db530e29 100644 --- a/api/Access.ComboBox.CanGrow.md +++ b/api/Access.ComboBox.CanGrow.md @@ -1,5 +1,5 @@ --- -title: ComboBox.CanGrow Property (Access) +title: ComboBox.CanGrow property (Access) keywords: vbaac10.chm11496 f1_keywords: - vbaac10.chm11496 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.CanGrow Property (Access) +# ComboBox.CanGrow property (Access) Gets or sets whether the specified control automatically adjusts vertically to print or preview all the data the control contains. Read/write **Boolean**. ## Syntax - _expression_. `CanGrow` +_expression_. `CanGrow` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.CanShrink.md b/api/Access.ComboBox.CanShrink.md index 31397939f3e..a99033371bb 100644 --- a/api/Access.ComboBox.CanShrink.md +++ b/api/Access.ComboBox.CanShrink.md @@ -1,5 +1,5 @@ --- -title: ComboBox.CanShrink Property (Access) +title: ComboBox.CanShrink property (Access) keywords: vbaac10.chm11497 f1_keywords: - vbaac10.chm11497 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.CanShrink Property (Access) +# ComboBox.CanShrink property (Access) Gets or sets whether the specified control automatically adjusts vertically to print or preview all the data the control contains. Read/write **Boolean**. ## Syntax - _expression_. `CanShrink` +_expression_. `CanShrink` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.Change.md b/api/Access.ComboBox.Change.md index f3506b76662..4b161b2ed75 100644 --- a/api/Access.ComboBox.Change.md +++ b/api/Access.ComboBox.Change.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Change Event (Access) +title: ComboBox.Change event (Access) keywords: vbaac10.chm14213 f1_keywords: - vbaac10.chm14213 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.Change Event (Access) +# ComboBox.Change event (Access) The **Change** event occurs when the contents of the specified control changes. ## Syntax - _expression_. `Change` +_expression_. `Change` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.Click.md b/api/Access.ComboBox.Click.md index 8a917a1e36a..e8951d5df26 100644 --- a/api/Access.ComboBox.Click.md +++ b/api/Access.ComboBox.Click.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Click Event (Access) +title: ComboBox.Click event (Access) keywords: vbaac10.chm14219 f1_keywords: - vbaac10.chm14219 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.Click Event (Access) +# ComboBox.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.Column.md b/api/Access.ComboBox.Column.md index 80f35c6bd0d..710377524c4 100644 --- a/api/Access.ComboBox.Column.md +++ b/api/Access.ComboBox.Column.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Column Property (Access) +title: ComboBox.Column property (Access) keywords: vbaac10.chm11360 f1_keywords: - vbaac10.chm11360 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ComboBox.Column Property (Access) +# ComboBox.Column property (Access) You can use the **Column** property to refer to a specific column, or column and row combination, in a multiple-column combo box or list box. Read-only **Variant**. ## Syntax - _expression_. `Column`( ` _Index_`, ` _Row_` ) +_expression_. `Column`( ` _Index_`, ` _Row_` ) - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required|**Long**|A long integer that can range from 0 to the setting of the **ColumnCount** property minus one.| | _Row_|Optional|**Variant**|An integer that can range from 0 to the setting of the **ListCount** property minus 1.| diff --git a/api/Access.ComboBox.ColumnCount.md b/api/Access.ComboBox.ColumnCount.md index f62a55f1f4d..1cec3250656 100644 --- a/api/Access.ComboBox.ColumnCount.md +++ b/api/Access.ComboBox.ColumnCount.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ColumnCount Property (Access) +title: ComboBox.ColumnCount property (Access) keywords: vbaac10.chm11380 f1_keywords: - vbaac10.chm11380 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ColumnCount Property (Access) +# ComboBox.ColumnCount property (Access) You can use the **ColumnCount** property to specify the number of columns displayed in a list box or in the list box portion of a combo box, or sent to OLE objects in a chart control or unbound object frame . Read/write **Integer**. ## Syntax - _expression_. `ColumnCount` +_expression_. `ColumnCount` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ColumnHeads.md b/api/Access.ComboBox.ColumnHeads.md index 29ccc2254f7..f74bcae8c31 100644 --- a/api/Access.ComboBox.ColumnHeads.md +++ b/api/Access.ComboBox.ColumnHeads.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ColumnHeads Property (Access) +title: ComboBox.ColumnHeads property (Access) keywords: vbaac10.chm11381 f1_keywords: - vbaac10.chm11381 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ColumnHeads Property (Access) +# ComboBox.ColumnHeads property (Access) You can use the **ColumnHeads** property to display a single row of column headings for list boxes, combo boxes, and OLE objects that accept column headings. You can also use this property to create a label for each entry in a chart control . What is actually displayed as the first-row column heading depends on the object's **RowSourceType** property setting. Read/write **Boolean**. ## Syntax - _expression_. `ColumnHeads` +_expression_. `ColumnHeads` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ColumnHidden.md b/api/Access.ComboBox.ColumnHidden.md index 973c630f638..f0b0899375e 100644 --- a/api/Access.ComboBox.ColumnHidden.md +++ b/api/Access.ComboBox.ColumnHidden.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ColumnHidden Property (Access) +title: ComboBox.ColumnHidden property (Access) keywords: vbaac10.chm11427 f1_keywords: - vbaac10.chm11427 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ColumnHidden Property (Access) +# ComboBox.ColumnHidden property (Access) You can use the **ColumnHidden** property to show or hide a specified column in Datasheet view. Read/write **Boolean**. ## Syntax - _expression_. `ColumnHidden` +_expression_. `ColumnHidden` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ColumnOrder.md b/api/Access.ComboBox.ColumnOrder.md index 3912c8fd752..6a36dd39655 100644 --- a/api/Access.ComboBox.ColumnOrder.md +++ b/api/Access.ComboBox.ColumnOrder.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ColumnOrder Property (Access) +title: ComboBox.ColumnOrder property (Access) keywords: vbaac10.chm11426 f1_keywords: - vbaac10.chm11426 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ColumnOrder Property (Access) +# ComboBox.ColumnOrder property (Access) You can use the **ColumnOrder** property to specify the order of the columns in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `ColumnOrder` +_expression_. `ColumnOrder` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ColumnWidth.md b/api/Access.ComboBox.ColumnWidth.md index a43dac6c6f4..b2652d47e0c 100644 --- a/api/Access.ComboBox.ColumnWidth.md +++ b/api/Access.ComboBox.ColumnWidth.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ColumnWidth Property (Access) +title: ComboBox.ColumnWidth property (Access) keywords: vbaac10.chm11425 f1_keywords: - vbaac10.chm11425 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ColumnWidth Property (Access) +# ComboBox.ColumnWidth property (Access) You can use the **ColumnWidth** property to specify the width of a column in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `ColumnWidth` +_expression_. `ColumnWidth` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ColumnWidths.md b/api/Access.ComboBox.ColumnWidths.md index 33d1813fd94..bd867924d2a 100644 --- a/api/Access.ComboBox.ColumnWidths.md +++ b/api/Access.ComboBox.ColumnWidths.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ColumnWidths Property (Access) +title: ComboBox.ColumnWidths property (Access) keywords: vbaac10.chm11382 f1_keywords: - vbaac10.chm11382 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ColumnWidths Property (Access) +# ComboBox.ColumnWidths property (Access) You can use the **ColumnWidths** property to specify the width of each column in a multiple-column combo box. Read/write **String**. ## Syntax - _expression_. `ColumnWidths` +_expression_. `ColumnWidths` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ControlSource.md b/api/Access.ComboBox.ControlSource.md index efdf2dad08a..02ce57f3aa2 100644 --- a/api/Access.ComboBox.ControlSource.md +++ b/api/Access.ComboBox.ControlSource.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ControlSource Property (Access) +title: ComboBox.ControlSource property (Access) keywords: vbaac10.chm11374 f1_keywords: - vbaac10.chm11374 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ControlSource Property (Access) +# ComboBox.ControlSource property (Access) You can use the **ControlSource** property to specify what data appears in a control. You can display and edit data bound to a field in a table, query, or SQL statement. You can also display the result of an expression. Read/write **String**. ## Syntax - _expression_. `ControlSource` +_expression_. `ControlSource` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ControlTipText.md b/api/Access.ComboBox.ControlTipText.md index a415ea06c39..87a81547745 100644 --- a/api/Access.ComboBox.ControlTipText.md +++ b/api/Access.ComboBox.ControlTipText.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ControlTipText Property (Access) +title: ComboBox.ControlTipText property (Access) keywords: vbaac10.chm11423 f1_keywords: - vbaac10.chm11423 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ControlTipText Property (Access) +# ComboBox.ControlTipText property (Access) You can use the **ControlTipText** property to specify the text that appears in a ScreenTip when you hold the mouse pointer over a control. Read/write **String**. ## Syntax - _expression_. `ControlTipText` +_expression_. `ControlTipText` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ControlType.md b/api/Access.ComboBox.ControlType.md index 5e560f94664..50815b05325 100644 --- a/api/Access.ComboBox.ControlType.md +++ b/api/Access.ComboBox.ControlType.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ControlType Property (Access) +title: ComboBox.ControlType property (Access) keywords: vbaac10.chm11373 f1_keywords: - vbaac10.chm11373 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ControlType Property (Access) +# ComboBox.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.Controls.md b/api/Access.ComboBox.Controls.md index a81f5eaf166..ac1434d132c 100644 --- a/api/Access.ComboBox.Controls.md +++ b/api/Access.ComboBox.Controls.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Controls Property (Access) +title: ComboBox.Controls property (Access) keywords: vbaac10.chm11367 f1_keywords: - vbaac10.chm11367 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.Controls Property (Access) +# ComboBox.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.DblClick.md b/api/Access.ComboBox.DblClick.md index f079ea5ab2c..81a843ae9f4 100644 --- a/api/Access.ComboBox.DblClick.md +++ b/api/Access.ComboBox.DblClick.md @@ -1,5 +1,5 @@ --- -title: ComboBox.DblClick Event (Access) +title: ComboBox.DblClick event (Access) keywords: vbaac10.chm14220 f1_keywords: - vbaac10.chm14220 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ComboBox.DblClick Event (Access) +# ComboBox.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_` ) +_expression_. `DblClick`( ` _Cancel_` ) - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **DblClick** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **DblClick** event.| diff --git a/api/Access.ComboBox.DecimalPlaces.md b/api/Access.ComboBox.DecimalPlaces.md index 656526944a0..e851222d7b8 100644 --- a/api/Access.ComboBox.DecimalPlaces.md +++ b/api/Access.ComboBox.DecimalPlaces.md @@ -1,5 +1,5 @@ --- -title: ComboBox.DecimalPlaces Property (Access) +title: ComboBox.DecimalPlaces property (Access) keywords: vbaac10.chm11376 f1_keywords: - vbaac10.chm11376 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.DecimalPlaces Property (Access) +# ComboBox.DecimalPlaces property (Access) You can use the **DecimalPlaces** property to specify the number of decimal places Microsoft Access uses to display numbers. Read/write **Byte**. ## Syntax - _expression_. `DecimalPlaces` +_expression_. `DecimalPlaces` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.DefaultValue.md b/api/Access.ComboBox.DefaultValue.md index 7cca94fe101..9b7c1b7cfff 100644 --- a/api/Access.ComboBox.DefaultValue.md +++ b/api/Access.ComboBox.DefaultValue.md @@ -1,5 +1,5 @@ --- -title: ComboBox.DefaultValue Property (Access) +title: ComboBox.DefaultValue property (Access) keywords: vbaac10.chm11389 f1_keywords: - vbaac10.chm11389 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.DefaultValue Property (Access) +# ComboBox.DefaultValue property (Access) Specifies a value that is automatically entered in a field when a new record is created. For example, in an Addresses table you can set the default value for the City field to New York. When users add a record to the table, they can either accept this value or enter the name of a different city. Read/write **String**. ## Syntax - _expression_. `DefaultValue` +_expression_. `DefaultValue` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.Dirty.md b/api/Access.ComboBox.Dirty.md index e94c820305d..2717c61b86a 100644 --- a/api/Access.ComboBox.Dirty.md +++ b/api/Access.ComboBox.Dirty.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Dirty Event (Access) +title: ComboBox.Dirty event (Access) keywords: vbaac10.chm14227 f1_keywords: - vbaac10.chm14227 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ComboBox.Dirty Event (Access) +# ComboBox.Dirty event (Access) The Dirty event occurs when the contents of the specified control changes. ## Syntax - _expression_. `Dirty`( ` _Cancel_`, ) +_expression_. `Dirty`( ` _Cancel_`, ) - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **Dirty** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **Dirty** event.| diff --git a/api/Access.ComboBox.DisplayAsHyperlink.md b/api/Access.ComboBox.DisplayAsHyperlink.md index 58a544b8e72..695bb4b93af 100644 --- a/api/Access.ComboBox.DisplayAsHyperlink.md +++ b/api/Access.ComboBox.DisplayAsHyperlink.md @@ -1,5 +1,5 @@ --- -title: ComboBox.DisplayAsHyperlink Property (Access) +title: ComboBox.DisplayAsHyperlink property (Access) keywords: vbaac10.chm11526 f1_keywords: - vbaac10.chm11526 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.DisplayAsHyperlink Property (Access) +# ComboBox.DisplayAsHyperlink property (Access) Gets or sets an **[AcDisplayAsHyperlink](Access.AcDisplayAsHyperlink.md)** constant that specifies whether to display the contents of the specified combo box as a hyperlink. Read/write. ## Syntax - _expression_. `DisplayAsHyperlink` +_expression_. `DisplayAsHyperlink` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## See also diff --git a/api/Access.ComboBox.DisplayWhen.md b/api/Access.ComboBox.DisplayWhen.md index 3be4c70f5dd..26429e2d489 100644 --- a/api/Access.ComboBox.DisplayWhen.md +++ b/api/Access.ComboBox.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: ComboBox.DisplayWhen Property (Access) +title: ComboBox.DisplayWhen property (Access) keywords: vbaac10.chm11394 f1_keywords: - vbaac10.chm11394 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.DisplayWhen Property (Access) +# ComboBox.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.Dropdown.md b/api/Access.ComboBox.Dropdown.md index 8377f4a4f31..ca0322e1b5e 100644 --- a/api/Access.ComboBox.Dropdown.md +++ b/api/Access.ComboBox.Dropdown.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Dropdown Method (Access) +title: ComboBox.Dropdown method (Access) keywords: vbaac10.chm11359 f1_keywords: - vbaac10.chm11359 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# ComboBox.Dropdown Method (Access) +# ComboBox.Dropdown method (Access) You can use the **Dropdown** method to force the list in the specified combo box to drop down. ## Syntax - _expression_. `Dropdown` +_expression_. `Dropdown` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.ComboBox.Enabled.md b/api/Access.ComboBox.Enabled.md index e2286c9762d..fdc83407e99 100644 --- a/api/Access.ComboBox.Enabled.md +++ b/api/Access.ComboBox.Enabled.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Enabled Property (Access) +title: ComboBox.Enabled property (Access) keywords: vbaac10.chm11395 f1_keywords: - vbaac10.chm11395 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.Enabled Property (Access) +# ComboBox.Enabled property (Access) You can use the **Enabled** property to set or return the status of the conditional format in the **[FormatCondition](Access.FormatCondition.md)** object. Read/write **Boolean**. ## Syntax - _expression_. `Enabled` +_expression_. `Enabled` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.Enter.md b/api/Access.ComboBox.Enter.md index 6739540f698..774f33fc719 100644 --- a/api/Access.ComboBox.Enter.md +++ b/api/Access.ComboBox.Enter.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Enter Event (Access) +title: ComboBox.Enter event (Access) keywords: vbaac10.chm14215 f1_keywords: - vbaac10.chm14215 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.Enter Event (Access) +# ComboBox.Enter event (Access) The **Enter** event occurs before a control actually receives the focus from a control on the same form or report. ## Syntax - _expression_. `Enter` +_expression_. `Enter` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.EventProcPrefix.md b/api/Access.ComboBox.EventProcPrefix.md index f1a00ef8673..198f64b7b7c 100644 --- a/api/Access.ComboBox.EventProcPrefix.md +++ b/api/Access.ComboBox.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: ComboBox.EventProcPrefix Property (Access) +title: ComboBox.EventProcPrefix property (Access) keywords: vbaac10.chm11371 f1_keywords: - vbaac10.chm11371 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.EventProcPrefix Property (Access) +# ComboBox.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.Exit.md b/api/Access.ComboBox.Exit.md index c5589801a8f..df830025d36 100644 --- a/api/Access.ComboBox.Exit.md +++ b/api/Access.ComboBox.Exit.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Exit Event (Access) +title: ComboBox.Exit event (Access) keywords: vbaac10.chm14216 f1_keywords: - vbaac10.chm14216 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ComboBox.Exit Event (Access) +# ComboBox.Exit event (Access) The **Exit** event occurs just before a control loses the focus to another control on the same form or report. ## Syntax - _expression_. `Exit`( ` _Cancel_` ) +_expression_. `Exit`( ` _Cancel_` ) - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **Exit** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **Exit** event.| diff --git a/api/Access.ComboBox.FontBold.md b/api/Access.ComboBox.FontBold.md index 4702c239913..d3f57f4156d 100644 --- a/api/Access.ComboBox.FontBold.md +++ b/api/Access.ComboBox.FontBold.md @@ -1,5 +1,5 @@ --- -title: ComboBox.FontBold Property (Access) +title: ComboBox.FontBold property (Access) keywords: vbaac10.chm11421 f1_keywords: - vbaac10.chm11421 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ComboBox.FontBold Property (Access) +# ComboBox.FontBold property (Access) You can use the **FontBold** property to specify whether a font appears in a bold style in the following situations: @@ -26,9 +26,9 @@ You can use the **FontBold** property to specify whether a font appears in a bo ## Syntax - _expression_. `FontBold` +_expression_. `FontBold` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.FontItalic.md b/api/Access.ComboBox.FontItalic.md index 314ae103281..c1eeec90a23 100644 --- a/api/Access.ComboBox.FontItalic.md +++ b/api/Access.ComboBox.FontItalic.md @@ -1,5 +1,5 @@ --- -title: ComboBox.FontItalic Property (Access) +title: ComboBox.FontItalic property (Access) keywords: vbaac10.chm11417 f1_keywords: - vbaac10.chm11417 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ComboBox.FontItalic Property (Access) +# ComboBox.FontItalic property (Access) You can use the **FontItalic** property to specify whether text is italic in the following situations: @@ -26,9 +26,9 @@ You can use the **FontItalic** property to specify whether text is italic in th ## Syntax - _expression_. `FontItalic` +_expression_. `FontItalic` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.FontName.md b/api/Access.ComboBox.FontName.md index 3053c04f366..63b74556e75 100644 --- a/api/Access.ComboBox.FontName.md +++ b/api/Access.ComboBox.FontName.md @@ -1,5 +1,5 @@ --- -title: ComboBox.FontName Property (Access) +title: ComboBox.FontName property (Access) keywords: vbaac10.chm11414 f1_keywords: - vbaac10.chm11414 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ComboBox.FontName Property (Access) +# ComboBox.FontName property (Access) You can use the **FontName** property to specify the font for text in the following situations: @@ -26,9 +26,9 @@ Read/write **String**. ## Syntax - _expression_. `FontName` +_expression_. `FontName` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.FontSize.md b/api/Access.ComboBox.FontSize.md index d1bbd5c3023..589f4ec62e5 100644 --- a/api/Access.ComboBox.FontSize.md +++ b/api/Access.ComboBox.FontSize.md @@ -1,5 +1,5 @@ --- -title: ComboBox.FontSize Property (Access) +title: ComboBox.FontSize property (Access) keywords: vbaac10.chm11415 f1_keywords: - vbaac10.chm11415 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ComboBox.FontSize Property (Access) +# ComboBox.FontSize property (Access) You can use the **FontSize** property to specify the point size for text in the following situations: @@ -26,9 +26,9 @@ Read/write **Integer**. ## Syntax - _expression_. `FontSize` +_expression_. `FontSize` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.FontUnderline.md b/api/Access.ComboBox.FontUnderline.md index c33e343dfaf..62abf598d6d 100644 --- a/api/Access.ComboBox.FontUnderline.md +++ b/api/Access.ComboBox.FontUnderline.md @@ -1,5 +1,5 @@ --- -title: ComboBox.FontUnderline Property (Access) +title: ComboBox.FontUnderline property (Access) keywords: vbaac10.chm11418 f1_keywords: - vbaac10.chm11418 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ComboBox.FontUnderline Property (Access) +# ComboBox.FontUnderline property (Access) You can use the **FontUnderline** property to specify whether text is underlined in the following situations: @@ -26,9 +26,9 @@ You can use the **FontUnderline** property to specify whether text is underline ## Syntax - _expression_. `FontUnderline` +_expression_. `FontUnderline` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.FontWeight.md b/api/Access.ComboBox.FontWeight.md index 739adfcaa39..a3ce4e8a227 100644 --- a/api/Access.ComboBox.FontWeight.md +++ b/api/Access.ComboBox.FontWeight.md @@ -1,5 +1,5 @@ --- -title: ComboBox.FontWeight Property (Access) +title: ComboBox.FontWeight property (Access) keywords: vbaac10.chm11416 f1_keywords: - vbaac10.chm11416 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.FontWeight Property (Access) +# ComboBox.FontWeight property (Access) You can use the **DatasheetFontWeight** property to specify the line width of the font used to display and print characters for field names and data in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `FontWeight` +_expression_. `FontWeight` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ForeColor.md b/api/Access.ComboBox.ForeColor.md index 4d2912c06a4..f7f43fb15d4 100644 --- a/api/Access.ComboBox.ForeColor.md +++ b/api/Access.ComboBox.ForeColor.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ForeColor Property (Access) +title: ComboBox.ForeColor property (Access) keywords: vbaac10.chm11413 f1_keywords: - vbaac10.chm11413 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ForeColor Property (Access) +# ComboBox.ForeColor property (Access) You can use the **ForeColor** property to specify the color for text in a control. Read/write **Long**. ## Syntax - _expression_. `ForeColor` +_expression_. `ForeColor` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ForeShade.md b/api/Access.ComboBox.ForeShade.md index ebc6180dc3d..50335ebc025 100644 --- a/api/Access.ComboBox.ForeShade.md +++ b/api/Access.ComboBox.ForeShade.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ForeShade Property (Access) +title: ComboBox.ForeShade property (Access) keywords: vbaac10.chm14606 f1_keywords: - vbaac10.chm14606 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ForeShade Property (Access) +# ComboBox.ForeShade property (Access) Gets or sets the shade that is applied to the theme color in the **ForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `ForeShade` +_expression_. `ForeShade` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ForeThemeColorIndex.md b/api/Access.ComboBox.ForeThemeColorIndex.md index ce44a2db36c..d51cf23ec5b 100644 --- a/api/Access.ComboBox.ForeThemeColorIndex.md +++ b/api/Access.ComboBox.ForeThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ForeThemeColorIndex Property (Access) +title: ComboBox.ForeThemeColorIndex property (Access) keywords: vbaac10.chm14604 f1_keywords: - vbaac10.chm14604 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ForeThemeColorIndex Property (Access) +# ComboBox.ForeThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **ForeColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `ForeThemeColorIndex` +_expression_. `ForeThemeColorIndex` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ForeTint.md b/api/Access.ComboBox.ForeTint.md index 812b82bbe75..a1f673adc2c 100644 --- a/api/Access.ComboBox.ForeTint.md +++ b/api/Access.ComboBox.ForeTint.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ForeTint Property (Access) +title: ComboBox.ForeTint property (Access) keywords: vbaac10.chm14605 f1_keywords: - vbaac10.chm14605 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ForeTint Property (Access) +# ComboBox.ForeTint property (Access) Gets or sets the tint that is applied to the theme color in the **ForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `ForeTint` +_expression_. `ForeTint` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.Format.md b/api/Access.ComboBox.Format.md index 424027abc5a..8f08cd68eb8 100644 --- a/api/Access.ComboBox.Format.md +++ b/api/Access.ComboBox.Format.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Format Property (Access) +title: ComboBox.Format property (Access) keywords: vbaac10.chm11375 f1_keywords: - vbaac10.chm11375 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.Format Property (Access) +# ComboBox.Format property (Access) You can use the **Format** property to customize the way numbers, dates, times, and text are displayed and printed. Read/write **String**. ## Syntax - _expression_. `Format` +_expression_. `Format` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.FormatConditions.md b/api/Access.ComboBox.FormatConditions.md index d6c508f1bd5..009e6cce129 100644 --- a/api/Access.ComboBox.FormatConditions.md +++ b/api/Access.ComboBox.FormatConditions.md @@ -1,5 +1,5 @@ --- -title: ComboBox.FormatConditions Property (Access) +title: ComboBox.FormatConditions property (Access) keywords: vbaac10.chm11369 f1_keywords: - vbaac10.chm11369 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.FormatConditions Property (Access) +# ComboBox.FormatConditions property (Access) You can use the **FormatConditions** property to return a read-only reference to the **[FormatConditions](Access.FormatConditions.md)** collection and its related properties. ## Syntax - _expression_. `FormatConditions` +_expression_. `FormatConditions` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Example diff --git a/api/Access.ComboBox.GotFocus.md b/api/Access.ComboBox.GotFocus.md index 96390f0b830..e1fc2693c56 100644 --- a/api/Access.ComboBox.GotFocus.md +++ b/api/Access.ComboBox.GotFocus.md @@ -1,5 +1,5 @@ --- -title: ComboBox.GotFocus Event (Access) +title: ComboBox.GotFocus event (Access) keywords: vbaac10.chm14217 f1_keywords: - vbaac10.chm14217 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.GotFocus Event (Access) +# ComboBox.GotFocus event (Access) The **GotFocus** event occurs when the specified object receives the focus. ## Syntax - _expression_. `GotFocus` +_expression_. `GotFocus` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.GridlineColor.md b/api/Access.ComboBox.GridlineColor.md index 3a60a61faaa..42db441f2f3 100644 --- a/api/Access.ComboBox.GridlineColor.md +++ b/api/Access.ComboBox.GridlineColor.md @@ -1,5 +1,5 @@ --- -title: ComboBox.GridlineColor Property (Access) +title: ComboBox.GridlineColor property (Access) keywords: vbaac10.chm11493 f1_keywords: - vbaac10.chm11493 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.GridlineColor Property (Access) +# ComboBox.GridlineColor property (Access) Gets or sets the color of the gridline for the specified combo box. Read/write **Long**. ## Syntax - _expression_. `GridlineColor` +_expression_. `GridlineColor` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.GridlineShade.md b/api/Access.ComboBox.GridlineShade.md index 31e88d5afa0..3c811c2b2a7 100644 --- a/api/Access.ComboBox.GridlineShade.md +++ b/api/Access.ComboBox.GridlineShade.md @@ -1,5 +1,5 @@ --- -title: ComboBox.GridlineShade Property (Access) +title: ComboBox.GridlineShade property (Access) keywords: vbaac10.chm14637 f1_keywords: - vbaac10.chm14637 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.GridlineShade Property (Access) +# ComboBox.GridlineShade property (Access) Gets or sets the shade applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineShade` +_expression_. `GridlineShade` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.GridlineStyleBottom.md b/api/Access.ComboBox.GridlineStyleBottom.md index 698dbb75beb..faf07a0f5a2 100644 --- a/api/Access.ComboBox.GridlineStyleBottom.md +++ b/api/Access.ComboBox.GridlineStyleBottom.md @@ -1,5 +1,5 @@ --- -title: ComboBox.GridlineStyleBottom Property (Access) +title: ComboBox.GridlineStyleBottom property (Access) keywords: vbaac10.chm11488 f1_keywords: - vbaac10.chm11488 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.GridlineStyleBottom Property (Access) +# ComboBox.GridlineStyleBottom property (Access) Gets or sets the bottom gridline style of the specified combo box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleBottom` +_expression_. `GridlineStyleBottom` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.GridlineStyleLeft.md b/api/Access.ComboBox.GridlineStyleLeft.md index 216be5c8efd..d0c72aad465 100644 --- a/api/Access.ComboBox.GridlineStyleLeft.md +++ b/api/Access.ComboBox.GridlineStyleLeft.md @@ -1,5 +1,5 @@ --- -title: ComboBox.GridlineStyleLeft Property (Access) +title: ComboBox.GridlineStyleLeft property (Access) keywords: vbaac10.chm11485 f1_keywords: - vbaac10.chm11485 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.GridlineStyleLeft Property (Access) +# ComboBox.GridlineStyleLeft property (Access) Gets or sets the width of the bottom gridline for the specified combo box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleLeft` +_expression_. `GridlineStyleLeft` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.GridlineStyleRight.md b/api/Access.ComboBox.GridlineStyleRight.md index dbdc061d312..db791f65fda 100644 --- a/api/Access.ComboBox.GridlineStyleRight.md +++ b/api/Access.ComboBox.GridlineStyleRight.md @@ -1,5 +1,5 @@ --- -title: ComboBox.GridlineStyleRight Property (Access) +title: ComboBox.GridlineStyleRight property (Access) keywords: vbaac10.chm11487 f1_keywords: - vbaac10.chm11487 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.GridlineStyleRight Property (Access) +# ComboBox.GridlineStyleRight property (Access) Gets or sets the right gridline style of the specified combo box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleRight` +_expression_. `GridlineStyleRight` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.GridlineStyleTop.md b/api/Access.ComboBox.GridlineStyleTop.md index adaa69767c5..cd208bfa773 100644 --- a/api/Access.ComboBox.GridlineStyleTop.md +++ b/api/Access.ComboBox.GridlineStyleTop.md @@ -1,5 +1,5 @@ --- -title: ComboBox.GridlineStyleTop Property (Access) +title: ComboBox.GridlineStyleTop property (Access) keywords: vbaac10.chm11486 f1_keywords: - vbaac10.chm11486 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.GridlineStyleTop Property (Access) +# ComboBox.GridlineStyleTop property (Access) Gets or sets the top gridline style of the specified combo box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleTop` +_expression_. `GridlineStyleTop` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.GridlineThemeColorIndex.md b/api/Access.ComboBox.GridlineThemeColorIndex.md index 04455e825db..af726db469f 100644 --- a/api/Access.ComboBox.GridlineThemeColorIndex.md +++ b/api/Access.ComboBox.GridlineThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ComboBox.GridlineThemeColorIndex Property (Access) +title: ComboBox.GridlineThemeColorIndex property (Access) keywords: vbaac10.chm14635 f1_keywords: - vbaac10.chm14635 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.GridlineThemeColorIndex Property (Access) +# ComboBox.GridlineThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **GridlineColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `GridlineThemeColorIndex` +_expression_. `GridlineThemeColorIndex` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.GridlineTint.md b/api/Access.ComboBox.GridlineTint.md index 352e309feba..b72f195e813 100644 --- a/api/Access.ComboBox.GridlineTint.md +++ b/api/Access.ComboBox.GridlineTint.md @@ -1,5 +1,5 @@ --- -title: ComboBox.GridlineTint Property (Access) +title: ComboBox.GridlineTint property (Access) keywords: vbaac10.chm14636 f1_keywords: - vbaac10.chm14636 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.GridlineTint Property (Access) +# ComboBox.GridlineTint property (Access) Gets or sets the tint applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineTint` +_expression_. `GridlineTint` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.GridlineWidthBottom.md b/api/Access.ComboBox.GridlineWidthBottom.md index 63800250a0a..68f5717880c 100644 --- a/api/Access.ComboBox.GridlineWidthBottom.md +++ b/api/Access.ComboBox.GridlineWidthBottom.md @@ -1,5 +1,5 @@ --- -title: ComboBox.GridlineWidthBottom Property (Access) +title: ComboBox.GridlineWidthBottom property (Access) keywords: vbaac10.chm11492 f1_keywords: - vbaac10.chm11492 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.GridlineWidthBottom Property (Access) +# ComboBox.GridlineWidthBottom property (Access) Gets or sets the width of the bottom gridline for the specified combo box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthBottom` +_expression_. `GridlineWidthBottom` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.GridlineWidthLeft.md b/api/Access.ComboBox.GridlineWidthLeft.md index 7c796782fd0..89cfbbf7b89 100644 --- a/api/Access.ComboBox.GridlineWidthLeft.md +++ b/api/Access.ComboBox.GridlineWidthLeft.md @@ -1,5 +1,5 @@ --- -title: ComboBox.GridlineWidthLeft Property (Access) +title: ComboBox.GridlineWidthLeft property (Access) keywords: vbaac10.chm11489 f1_keywords: - vbaac10.chm11489 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.GridlineWidthLeft Property (Access) +# ComboBox.GridlineWidthLeft property (Access) Gets or sets the width of the left gridline for the specified combo box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthLeft` +_expression_. `GridlineWidthLeft` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.GridlineWidthRight.md b/api/Access.ComboBox.GridlineWidthRight.md index 2aac30f36b0..982ea055230 100644 --- a/api/Access.ComboBox.GridlineWidthRight.md +++ b/api/Access.ComboBox.GridlineWidthRight.md @@ -1,5 +1,5 @@ --- -title: ComboBox.GridlineWidthRight Property (Access) +title: ComboBox.GridlineWidthRight property (Access) keywords: vbaac10.chm11491 f1_keywords: - vbaac10.chm11491 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.GridlineWidthRight Property (Access) +# ComboBox.GridlineWidthRight property (Access) Gets or sets the width of the right gridline for the specified combo box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthRight` +_expression_. `GridlineWidthRight` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.GridlineWidthTop.md b/api/Access.ComboBox.GridlineWidthTop.md index 9c73f34f5b1..d7f2a94bb9e 100644 --- a/api/Access.ComboBox.GridlineWidthTop.md +++ b/api/Access.ComboBox.GridlineWidthTop.md @@ -1,5 +1,5 @@ --- -title: ComboBox.GridlineWidthTop Property (Access) +title: ComboBox.GridlineWidthTop property (Access) keywords: vbaac10.chm11490 f1_keywords: - vbaac10.chm11490 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.GridlineWidthTop Property (Access) +# ComboBox.GridlineWidthTop property (Access) Gets or sets the width of the top gridline for the specified combo box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthTop` +_expression_. `GridlineWidthTop` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.Height.md b/api/Access.ComboBox.Height.md index c94d7fad90a..4eb735db6d6 100644 --- a/api/Access.ComboBox.Height.md +++ b/api/Access.ComboBox.Height.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Height Property (Access) +title: ComboBox.Height property (Access) keywords: vbaac10.chm11404 f1_keywords: - vbaac10.chm11404 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.Height Property (Access) +# ComboBox.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.HelpContextId.md b/api/Access.ComboBox.HelpContextId.md index 602a336bede..1732e492b8e 100644 --- a/api/Access.ComboBox.HelpContextId.md +++ b/api/Access.ComboBox.HelpContextId.md @@ -1,5 +1,5 @@ --- -title: ComboBox.HelpContextId Property (Access) +title: ComboBox.HelpContextId property (Access) keywords: vbaac10.chm11424 f1_keywords: - vbaac10.chm11424 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.HelpContextId Property (Access) +# ComboBox.HelpContextId property (Access) The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**. ## Syntax - _expression_. `HelpContextId` +_expression_. `HelpContextId` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.HideDuplicates.md b/api/Access.ComboBox.HideDuplicates.md index 33c30acf3f0..d527b4f3a7e 100644 --- a/api/Access.ComboBox.HideDuplicates.md +++ b/api/Access.ComboBox.HideDuplicates.md @@ -1,5 +1,5 @@ --- -title: ComboBox.HideDuplicates Property (Access) +title: ComboBox.HideDuplicates property (Access) keywords: vbaac10.chm11400 f1_keywords: - vbaac10.chm11400 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.HideDuplicates Property (Access) +# ComboBox.HideDuplicates property (Access) You can use the **HideDuplicates** property to hide a control on a report when its value is the same as in the preceding record. Read/write **Boolean**. ## Syntax - _expression_. `HideDuplicates` +_expression_. `HideDuplicates` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.HorizontalAnchor.md b/api/Access.ComboBox.HorizontalAnchor.md index 339371bcfd2..6a5a6bc2dd8 100644 --- a/api/Access.ComboBox.HorizontalAnchor.md +++ b/api/Access.ComboBox.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: ComboBox.HorizontalAnchor Property (Access) +title: ComboBox.HorizontalAnchor property (Access) keywords: vbaac10.chm11499 f1_keywords: - vbaac10.chm11499 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.HorizontalAnchor Property (Access) +# ComboBox.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the combo box is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.Hyperlink.md b/api/Access.ComboBox.Hyperlink.md index 409d37f0542..982ed0e3a58 100644 --- a/api/Access.ComboBox.Hyperlink.md +++ b/api/Access.ComboBox.Hyperlink.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Hyperlink Property (Access) +title: ComboBox.Hyperlink property (Access) keywords: vbaac10.chm11368 f1_keywords: - vbaac10.chm11368 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.Hyperlink Property (Access) +# ComboBox.Hyperlink property (Access) You can use the **Hyperlink** property to return a reference to a **Hyperlink** object. You can use the **Hyperlink** property to access the properties and methods of a control's hyperlink. Read-only. ## Syntax - _expression_. `Hyperlink` +_expression_. `Hyperlink` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Example diff --git a/api/Access.ComboBox.IMEHold.md b/api/Access.ComboBox.IMEHold.md index 2ccfb814ffe..438a9b4c707 100644 --- a/api/Access.ComboBox.IMEHold.md +++ b/api/Access.ComboBox.IMEHold.md @@ -1,5 +1,5 @@ --- -title: ComboBox.IMEHold Property (Access) +title: ComboBox.IMEHold property (Access) keywords: vbaac10.chm11390 f1_keywords: - vbaac10.chm11390 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.IMEHold Property (Access) +# ComboBox.IMEHold property (Access) [Language-specific information](overview/learn-about-language-specific-information-access.md)You can use the **IMEHold/Hold KanjiConversionMode** property to show whether the Kanji Conversion Mode is maintained when the control loses the focus. Read/write **Boolean**. ## Syntax - _expression_. `IMEHold` +_expression_. `IMEHold` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.IMEMode.md b/api/Access.ComboBox.IMEMode.md index 8cbc288ed77..f604e26b324 100644 --- a/api/Access.ComboBox.IMEMode.md +++ b/api/Access.ComboBox.IMEMode.md @@ -1,5 +1,5 @@ --- -title: ComboBox.IMEMode Property (Access) +title: ComboBox.IMEMode property (Access) keywords: vbaac10.chm11468 f1_keywords: - vbaac10.chm11468 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ComboBox.IMEMode Property (Access) +# ComboBox.IMEMode property (Access) @@ -19,9 +19,9 @@ ms.date: 06/08/2017 ## Syntax - _expression_. `IMEMode` +_expression_. `IMEMode` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.IMESentenceMode.md b/api/Access.ComboBox.IMESentenceMode.md index 0ca4631d33b..b78912074cb 100644 --- a/api/Access.ComboBox.IMESentenceMode.md +++ b/api/Access.ComboBox.IMESentenceMode.md @@ -1,5 +1,5 @@ --- -title: ComboBox.IMESentenceMode Property (Access) +title: ComboBox.IMESentenceMode property (Access) keywords: vbaac10.chm11470 f1_keywords: - vbaac10.chm11470 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ComboBox.IMESentenceMode Property (Access) +# ComboBox.IMESentenceMode property (Access) @@ -19,9 +19,9 @@ ms.date: 06/08/2017 ## Syntax - _expression_. `IMESentenceMode` +_expression_. `IMESentenceMode` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.InSelection.md b/api/Access.ComboBox.InSelection.md index 5b6611e8170..17e642400b2 100644 --- a/api/Access.ComboBox.InSelection.md +++ b/api/Access.ComboBox.InSelection.md @@ -1,5 +1,5 @@ --- -title: ComboBox.InSelection Property (Access) +title: ComboBox.InSelection property (Access) keywords: vbaac10.chm11446 f1_keywords: - vbaac10.chm11446 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.InSelection Property (Access) +# ComboBox.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.InheritValueList.md b/api/Access.ComboBox.InheritValueList.md index c8f0efe5a43..df2d017e76f 100644 --- a/api/Access.ComboBox.InheritValueList.md +++ b/api/Access.ComboBox.InheritValueList.md @@ -1,5 +1,5 @@ --- -title: ComboBox.InheritValueList Property (Access) +title: ComboBox.InheritValueList property (Access) keywords: vbaac10.chm11519 f1_keywords: - vbaac10.chm11519 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.InheritValueList Property (Access) +# ComboBox.InheritValueList property (Access) Gets or sets whether a combo box's value list is inherited from its field. Read/write **Boolean**. ## Syntax - _expression_. `InheritValueList` +_expression_. `InheritValueList` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.InputMask.md b/api/Access.ComboBox.InputMask.md index 8c5382991fb..0f323292507 100644 --- a/api/Access.ComboBox.InputMask.md +++ b/api/Access.ComboBox.InputMask.md @@ -1,5 +1,5 @@ --- -title: ComboBox.InputMask Property (Access) +title: ComboBox.InputMask property (Access) keywords: vbaac10.chm11377 f1_keywords: - vbaac10.chm11377 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.InputMask Property (Access) +# ComboBox.InputMask property (Access) You can use the **InputMask** property to make data entry easier and to control the values users can enter in a combo box control. Read/write **String**. ## Syntax - _expression_. `InputMask` +_expression_. `InputMask` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.IsHyperlink.md b/api/Access.ComboBox.IsHyperlink.md index 967cb81c45c..f47136b0b9e 100644 --- a/api/Access.ComboBox.IsHyperlink.md +++ b/api/Access.ComboBox.IsHyperlink.md @@ -1,5 +1,5 @@ --- -title: ComboBox.IsHyperlink Property (Access) +title: ComboBox.IsHyperlink property (Access) keywords: vbaac10.chm11471 f1_keywords: - vbaac10.chm11471 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.IsHyperlink Property (Access) +# ComboBox.IsHyperlink property (Access) You can use the **IsHyperlink** property to specify or determine if the data contained in a combo box is a hyperlink. Read/write **Boolean**. ## Syntax - _expression_. `IsHyperlink` +_expression_. `IsHyperlink` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## See also diff --git a/api/Access.ComboBox.IsVisible.md b/api/Access.ComboBox.IsVisible.md index 14e7f525ab3..0f844a398d3 100644 --- a/api/Access.ComboBox.IsVisible.md +++ b/api/Access.ComboBox.IsVisible.md @@ -1,5 +1,5 @@ --- -title: ComboBox.IsVisible Property (Access) +title: ComboBox.IsVisible property (Access) keywords: vbaac10.chm11445 f1_keywords: - vbaac10.chm11445 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.IsVisible Property (Access) +# ComboBox.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ItemData.md b/api/Access.ComboBox.ItemData.md index 123ec7992a2..ce972655e78 100644 --- a/api/Access.ComboBox.ItemData.md +++ b/api/Access.ComboBox.ItemData.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ItemData Property (Access) +title: ComboBox.ItemData property (Access) keywords: vbaac10.chm11362 f1_keywords: - vbaac10.chm11362 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ComboBox.ItemData Property (Access) +# ComboBox.ItemData property (Access) The **ItemData** property returns the data in the bound column for the specified row in a combo box. Read-only **Variant**. ## Syntax - _expression_. `ItemData`( ` _Index_` ) +_expression_. `ItemData`( ` _Index_` ) - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required|**Long**|The row in the combo box or list box containing the data you want to return. Rows in combo and list boxes are indexed starting with zero. For example, to return the item in the sixth row of a combo box, you'd specify 5 for the _rowindex_ argument.| diff --git a/api/Access.ComboBox.ItemsSelected.md b/api/Access.ComboBox.ItemsSelected.md index 4be574c5bbe..c66790a828f 100644 --- a/api/Access.ComboBox.ItemsSelected.md +++ b/api/Access.ComboBox.ItemsSelected.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ItemsSelected Property (Access) +title: ComboBox.ItemsSelected property (Access) keywords: vbaac10.chm11495 f1_keywords: - vbaac10.chm11495 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ItemsSelected Property (Access) +# ComboBox.ItemsSelected property (Access) You can use the **ItemsSelected** property to return a read-only reference to the hidden **ItemsSelected** collection. This hidden collection can be used to access data in the selected rows of a multiselect combo box control. ## Syntax - _expression_. `ItemsSelected` +_expression_. `ItemsSelected` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.KeyDown.md b/api/Access.ComboBox.KeyDown.md index 7082b7f9336..16733541d7f 100644 --- a/api/Access.ComboBox.KeyDown.md +++ b/api/Access.ComboBox.KeyDown.md @@ -1,5 +1,5 @@ --- -title: ComboBox.KeyDown Event (Access) +title: ComboBox.KeyDown event (Access) keywords: vbaac10.chm14224 f1_keywords: - vbaac10.chm14224 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ComboBox.KeyDown Event (Access) +# ComboBox.KeyDown event (Access) The **KeyDown** event occurs when the user presses a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|A key code, such as **vbKeyF1** (the F1 key) or **vbKeyHome** (the HOME key). To specify key codes, use the intrinsic constants shown in the Object Browser. You can prevent an object from receiving a keystroke by setting KeyCode to 0.| | _Shift_|Required|**Integer**|The state of the SHIFT, CTRL, and ALT keys at the time of the event. If you need to test for the Shift argument, you can use one of the following intrinsic constants as bit masks: diff --git a/api/Access.ComboBox.KeyPress.md b/api/Access.ComboBox.KeyPress.md index a561ba862e8..c102ed35b77 100644 --- a/api/Access.ComboBox.KeyPress.md +++ b/api/Access.ComboBox.KeyPress.md @@ -1,5 +1,5 @@ --- -title: ComboBox.KeyPress Event (Access) +title: ComboBox.KeyPress event (Access) keywords: vbaac10.chm14225 f1_keywords: - vbaac10.chm14225 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ComboBox.KeyPress Event (Access) +# ComboBox.KeyPress event (Access) The **KeyPress** event occurs when the user presses and releases a key or key combination that corresponds to an ANSI code while a form or control has the focus. This event also occurs if you send an ANSI keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyPress`( ` _KeyAscii_` ) +_expression_. `KeyPress`( ` _KeyAscii_` ) - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyAscii_|Required|**Integer**| Returns a numeric ANSI key code. The _KeyAscii_ argument is passed by reference; changing it sends a different character to the object. Setting the _KeyAscii_ argument to 0 cancels the keystroke so that the object doesn't recognize that a key was pressed.| diff --git a/api/Access.ComboBox.KeyUp.md b/api/Access.ComboBox.KeyUp.md index 9b3f7985e37..af9eb0161fe 100644 --- a/api/Access.ComboBox.KeyUp.md +++ b/api/Access.ComboBox.KeyUp.md @@ -1,5 +1,5 @@ --- -title: ComboBox.KeyUp Event (Access) +title: ComboBox.KeyUp event (Access) keywords: vbaac10.chm14226 f1_keywords: - vbaac10.chm14226 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ComboBox.KeyUp Event (Access) +# ComboBox.KeyUp event (Access) The **KeyUp** event occurs when the user releases a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|A key code, such as **vbKeyF1** (the F1 key) or **vbKeyHome** (the HOME key). To specify key codes, use the intrinsic constants shown in the Object Browser. You can prevent an object from receiving a keystroke by setting KeyCode to 0.| | _Shift_|Required|**Integer**|The state of the SHIFT, CTRL, and ALT keys at the time of the event. If you need to test for the Shift argument, you can use one of the following intrinsic constants as bit masks: diff --git a/api/Access.ComboBox.KeyboardLanguage.md b/api/Access.ComboBox.KeyboardLanguage.md index ccece2c27f2..a17758c0d57 100644 --- a/api/Access.ComboBox.KeyboardLanguage.md +++ b/api/Access.ComboBox.KeyboardLanguage.md @@ -1,5 +1,5 @@ --- -title: ComboBox.KeyboardLanguage Property (Access) +title: ComboBox.KeyboardLanguage property (Access) keywords: vbaac10.chm11464 f1_keywords: - vbaac10.chm11464 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ComboBox.KeyboardLanguage Property (Access) +# ComboBox.KeyboardLanguage property (Access) @@ -19,9 +19,9 @@ ms.date: 06/08/2017 ## Syntax - _expression_. `KeyboardLanguage` +_expression_. `KeyboardLanguage` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.LabelAlign.md b/api/Access.ComboBox.LabelAlign.md index 940c15c94e8..c32b257b3e0 100644 --- a/api/Access.ComboBox.LabelAlign.md +++ b/api/Access.ComboBox.LabelAlign.md @@ -1,5 +1,5 @@ --- -title: ComboBox.LabelAlign Property (Access) +title: ComboBox.LabelAlign property (Access) keywords: vbaac10.chm11432 f1_keywords: - vbaac10.chm11432 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.LabelAlign Property (Access) +# ComboBox.LabelAlign property (Access) The property specifies the text alignment within attached labels on new controls. Read/write **Byte**. ## Syntax - _expression_. `LabelAlign` +_expression_. `LabelAlign` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.LabelX.md b/api/Access.ComboBox.LabelX.md index 40d970c6d31..45fd3586837 100644 --- a/api/Access.ComboBox.LabelX.md +++ b/api/Access.ComboBox.LabelX.md @@ -1,5 +1,5 @@ --- -title: ComboBox.LabelX Property (Access) +title: ComboBox.LabelX property (Access) keywords: vbaac10.chm11430 f1_keywords: - vbaac10.chm11430 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ComboBox.LabelX Property (Access) +# ComboBox.LabelX property (Access) The **LabelX** property (along with the **LabelY** property) specifies the placement of the label for a new control. Read/write **Integer**. @@ -19,9 +19,9 @@ The **LabelX** property (along with the **LabelY** property) specifies the plac ## Syntax - _expression_. `LabelX` +_expression_. `LabelX` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.LabelY.md b/api/Access.ComboBox.LabelY.md index 5e7be0be989..7f106c4365d 100644 --- a/api/Access.ComboBox.LabelY.md +++ b/api/Access.ComboBox.LabelY.md @@ -1,5 +1,5 @@ --- -title: ComboBox.LabelY Property (Access) +title: ComboBox.LabelY property (Access) keywords: vbaac10.chm11431 f1_keywords: - vbaac10.chm11431 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ComboBox.LabelY Property (Access) +# ComboBox.LabelY property (Access) The **LabelY** property (along with the **LabelX** property) specifies the placement of the label for a new control. Read/write **Integer**. @@ -19,9 +19,9 @@ The **LabelY** property (along with the **LabelX** property) specifies the plac ## Syntax - _expression_. `LabelY` +_expression_. `LabelY` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.Layout.md b/api/Access.ComboBox.Layout.md index f35235212e5..893686b9cd2 100644 --- a/api/Access.ComboBox.Layout.md +++ b/api/Access.ComboBox.Layout.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Layout Property (Access) +title: ComboBox.Layout property (Access) keywords: vbaac10.chm11480 f1_keywords: - vbaac10.chm11480 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.Layout Property (Access) +# ComboBox.Layout property (Access) Returns the type of layout for the specified combo box. Read-only **[AcLayoutType](Access.AcLayoutType.md)**. ## Syntax - _expression_. `Layout` +_expression_. `Layout` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## See also diff --git a/api/Access.ComboBox.LayoutID.md b/api/Access.ComboBox.LayoutID.md index 785dcbb7d02..7a0b20259b0 100644 --- a/api/Access.ComboBox.LayoutID.md +++ b/api/Access.ComboBox.LayoutID.md @@ -1,5 +1,5 @@ --- -title: ComboBox.LayoutID Property (Access) +title: ComboBox.LayoutID property (Access) keywords: vbaac10.chm11524 f1_keywords: - vbaac10.chm11524 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.LayoutID Property (Access) +# ComboBox.LayoutID property (Access) Returns the unique identifier for the layout that contains the specified combo box. Read-only **Long**. ## Syntax - _expression_. `LayoutID` +_expression_. `LayoutID` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.Left.md b/api/Access.ComboBox.Left.md index 271ab49022c..346b5f956a1 100644 --- a/api/Access.ComboBox.Left.md +++ b/api/Access.ComboBox.Left.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Left Property (Access) +title: ComboBox.Left property (Access) keywords: vbaac10.chm11401 f1_keywords: - vbaac10.chm11401 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.Left Property (Access) +# ComboBox.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.LeftMargin.md b/api/Access.ComboBox.LeftMargin.md index 9aef80ab301..a7ba28c8ad4 100644 --- a/api/Access.ComboBox.LeftMargin.md +++ b/api/Access.ComboBox.LeftMargin.md @@ -1,5 +1,5 @@ --- -title: ComboBox.LeftMargin Property (Access) +title: ComboBox.LeftMargin property (Access) keywords: vbaac10.chm11520 f1_keywords: - vbaac10.chm11520 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.LeftMargin Property (Access) +# ComboBox.LeftMargin property (Access) Along with the **TopMargin**, **RightMargin**, and **BottomMargin** properties, specifies the location of information displayed within a text box control. Read/write **Integer**. . ## Syntax - _expression_. `LeftMargin` +_expression_. `LeftMargin` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.LeftPadding.md b/api/Access.ComboBox.LeftPadding.md index 267c6ddf3f3..d2a827efaa9 100644 --- a/api/Access.ComboBox.LeftPadding.md +++ b/api/Access.ComboBox.LeftPadding.md @@ -1,5 +1,5 @@ --- -title: ComboBox.LeftPadding Property (Access) +title: ComboBox.LeftPadding property (Access) keywords: vbaac10.chm11481 f1_keywords: - vbaac10.chm11481 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.LeftPadding Property (Access) +# ComboBox.LeftPadding property (Access) Gets or sets the amount of space (in inches) between the combo box and its left gridline. Read/write **Integer**. ## Syntax - _expression_. `LeftPadding` +_expression_. `LeftPadding` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## See also diff --git a/api/Access.ComboBox.LimitToList.md b/api/Access.ComboBox.LimitToList.md index 3eb36f0eb3d..eb5a80f6075 100644 --- a/api/Access.ComboBox.LimitToList.md +++ b/api/Access.ComboBox.LimitToList.md @@ -1,5 +1,5 @@ --- -title: ComboBox.LimitToList Property (Access) +title: ComboBox.LimitToList property (Access) keywords: vbaac10.chm11387 f1_keywords: - vbaac10.chm11387 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.LimitToList Property (Access) +# ComboBox.LimitToList property (Access) You can use the **LimitToList** property to limit a combo box's values to the listed items. Read/write **Boolean**. ## Syntax - _expression_. `LimitToList` +_expression_. `LimitToList` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ListCount.md b/api/Access.ComboBox.ListCount.md index 3095a9d033d..35cf849e117 100644 --- a/api/Access.ComboBox.ListCount.md +++ b/api/Access.ComboBox.ListCount.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ListCount Property (Access) +title: ComboBox.ListCount property (Access) keywords: vbaac10.chm11443 f1_keywords: - vbaac10.chm11443 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ListCount Property (Access) +# ComboBox.ListCount property (Access) You can use the **ListCount** property to determine the number of rows in the list box portion of a combo box. Read/write **Long**. ## Syntax - _expression_. `ListCount` +_expression_. `ListCount` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ListIndex.md b/api/Access.ComboBox.ListIndex.md index eef0134cfba..f50a0d0a913 100644 --- a/api/Access.ComboBox.ListIndex.md +++ b/api/Access.ComboBox.ListIndex.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ListIndex Property (Access) +title: ComboBox.ListIndex property (Access) keywords: vbaac10.chm11444 f1_keywords: - vbaac10.chm11444 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ListIndex Property (Access) +# ComboBox.ListIndex property (Access) You can use the **ListIndex** property to determine which item is selected in a combo box. Read/write **Long**. ## Syntax - _expression_. `ListIndex` +_expression_. `ListIndex` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ListItemsEditForm.md b/api/Access.ComboBox.ListItemsEditForm.md index 089ec3879b7..daafb74a951 100644 --- a/api/Access.ComboBox.ListItemsEditForm.md +++ b/api/Access.ComboBox.ListItemsEditForm.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ListItemsEditForm Property (Access) +title: ComboBox.ListItemsEditForm property (Access) keywords: vbaac10.chm11518 f1_keywords: - vbaac10.chm11518 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ListItemsEditForm Property (Access) +# ComboBox.ListItemsEditForm property (Access) Gets or sets the name of the form that is displayed when the user clicks **Edit List Items**. Read/write **String**. ## Syntax - _expression_. `ListItemsEditForm` +_expression_. `ListItemsEditForm` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ListRows.md b/api/Access.ComboBox.ListRows.md index 55f053c001e..5620f49226c 100644 --- a/api/Access.ComboBox.ListRows.md +++ b/api/Access.ComboBox.ListRows.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ListRows Property (Access) +title: ComboBox.ListRows property (Access) keywords: vbaac10.chm11384,vbaac10.chm4417 f1_keywords: - vbaac10.chm11384,vbaac10.chm4417 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ListRows Property (Access) +# ComboBox.ListRows property (Access) You can use the **ListRows** property to set the maximum number of rows to display in the list box portion of a combo box. Read/write **Integer**. ## Syntax - _expression_. `ListRows` +_expression_. `ListRows` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.ListWidth.md b/api/Access.ComboBox.ListWidth.md index 8bdcbd340bb..242214300bf 100644 --- a/api/Access.ComboBox.ListWidth.md +++ b/api/Access.ComboBox.ListWidth.md @@ -1,5 +1,5 @@ --- -title: ComboBox.ListWidth Property (Access) +title: ComboBox.ListWidth property (Access) keywords: vbaac10.chm11385,vbaac10.chm4418 f1_keywords: - vbaac10.chm11385,vbaac10.chm4418 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.ListWidth Property (Access) +# ComboBox.ListWidth property (Access) You can use the **ListWidth** property to set the width of the list box portion of a combo box. Read/write **String**. ## Syntax - _expression_. `ListWidth` +_expression_. `ListWidth` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.Locked.md b/api/Access.ComboBox.Locked.md index f238af943e5..8d6596feed3 100644 --- a/api/Access.ComboBox.Locked.md +++ b/api/Access.ComboBox.Locked.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Locked Property (Access) +title: ComboBox.Locked property (Access) keywords: vbaac10.chm11396 f1_keywords: - vbaac10.chm11396 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.Locked Property (Access) +# ComboBox.Locked property (Access) The **Locked** property specifies whether you can edit data in a control in Form view. Read/write **Boolean**. ## Syntax - _expression_. `Locked` +_expression_. `Locked` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.LostFocus.md b/api/Access.ComboBox.LostFocus.md index 52e8603d7fc..2233b793331 100644 --- a/api/Access.ComboBox.LostFocus.md +++ b/api/Access.ComboBox.LostFocus.md @@ -1,5 +1,5 @@ --- -title: ComboBox.LostFocus Event (Access) +title: ComboBox.LostFocus event (Access) keywords: vbaac10.chm14218 f1_keywords: - vbaac10.chm14218 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.LostFocus Event (Access) +# ComboBox.LostFocus event (Access) The **LostFocus** event occurs when the specified object loses the focus. ## Syntax - _expression_. `LostFocus` +_expression_. `LostFocus` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.MouseDown.md b/api/Access.ComboBox.MouseDown.md index af6320ed81a..6110454c5e5 100644 --- a/api/Access.ComboBox.MouseDown.md +++ b/api/Access.ComboBox.MouseDown.md @@ -1,5 +1,5 @@ --- -title: ComboBox.MouseDown Event (Access) +title: ComboBox.MouseDown event (Access) keywords: vbaac10.chm14221 f1_keywords: - vbaac10.chm14221 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ComboBox.MouseDown Event (Access) +# ComboBox.MouseDown event (Access) The **MouseDown** event occurs when the user presses a mouse button. ## Syntax - _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.ComboBox.MouseMove.md b/api/Access.ComboBox.MouseMove.md index cf3e19fc73d..ef9e3e2d192 100644 --- a/api/Access.ComboBox.MouseMove.md +++ b/api/Access.ComboBox.MouseMove.md @@ -1,5 +1,5 @@ --- -title: ComboBox.MouseMove Event (Access) +title: ComboBox.MouseMove event (Access) keywords: vbaac10.chm14222 f1_keywords: - vbaac10.chm14222 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ComboBox.MouseMove Event (Access) +# ComboBox.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.ComboBox.MouseUp.md b/api/Access.ComboBox.MouseUp.md index 80da1c1a062..0e11bb8e505 100644 --- a/api/Access.ComboBox.MouseUp.md +++ b/api/Access.ComboBox.MouseUp.md @@ -1,5 +1,5 @@ --- -title: ComboBox.MouseUp Event (Access) +title: ComboBox.MouseUp event (Access) keywords: vbaac10.chm14223 f1_keywords: - vbaac10.chm14223 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ComboBox.MouseUp Event (Access) +# ComboBox.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.ComboBox.Move.md b/api/Access.ComboBox.Move.md index 06509149d20..7d239d48a35 100644 --- a/api/Access.ComboBox.Move.md +++ b/api/Access.ComboBox.Move.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Move Method (Access) +title: ComboBox.Move method (Access) keywords: vbaac10.chm11472 f1_keywords: - vbaac10.chm11472 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ComboBox.Move Method (Access) +# ComboBox.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.ComboBox.Name.md b/api/Access.ComboBox.Name.md index ee6da0e6e58..cb1171bf10c 100644 --- a/api/Access.ComboBox.Name.md +++ b/api/Access.ComboBox.Name.md @@ -1,5 +1,5 @@ --- -title: ComboBox.Name Property (Access) +title: ComboBox.Name property (Access) keywords: vbaac10.chm11469 f1_keywords: - vbaac10.chm11469 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ComboBox.Name Property (Access) +# ComboBox.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ## Remarks diff --git a/api/Access.ComboBox.NotInList.md b/api/Access.ComboBox.NotInList.md index 66d27911634..4f691d549cd 100644 --- a/api/Access.ComboBox.NotInList.md +++ b/api/Access.ComboBox.NotInList.md @@ -1,5 +1,5 @@ --- -title: ComboBox.NotInList Event (Access) +title: ComboBox.NotInList event (Access) keywords: vbaac10.chm14214 f1_keywords: - vbaac10.chm14214 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ComboBox.NotInList Event (Access) +# ComboBox.NotInList event (Access) The **NotInList** event occurs when the user enters a value in the text box portion of a combo box that isn't in the combo box list. ## Syntax - _expression_. `NotInList`( `_NewData_`, `_Response_` ) +_expression_. `NotInList`( `_NewData_`, `_Response_` ) - _expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. +_expression_ A variable that represents a [ComboBox](Access.ComboBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _NewData_|Required|**String**|A string that Microsoft Access uses to pass the text the user entered in the text box portion of the combo box to the event procedure.| | _Response_|Required|**Integer**|The setting indicates how the **NotInList** event was handled. The _Response_ argument can be one of the following intrinsic constants:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.CommandButton.MouseMove.md b/api/Access.CommandButton.MouseMove.md index af19e9a7c26..dcaa191be61 100644 --- a/api/Access.CommandButton.MouseMove.md +++ b/api/Access.CommandButton.MouseMove.md @@ -1,5 +1,5 @@ --- -title: CommandButton.MouseMove Event (Access) +title: CommandButton.MouseMove event (Access) keywords: vbaac10.chm14084 f1_keywords: - vbaac10.chm14084 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CommandButton.MouseMove Event (Access) +# CommandButton.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button.
acRightButton The bit mask for the right mouse button.
acMiddleButton The bit mask for the middle mouse button.
acShiftMask The bit mask for the SHIFT key.
acCtrlMask The bit mask for the CTRL key.
acAltMask The bit mask for the ALT key.
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.CommandButton.Move.md b/api/Access.CommandButton.Move.md index 49df315e3af..7cde03e09b6 100644 --- a/api/Access.CommandButton.Move.md +++ b/api/Access.CommandButton.Move.md @@ -1,5 +1,5 @@ --- -title: CommandButton.Move Method (Access) +title: CommandButton.Move method (Access) keywords: vbaac10.chm10507 f1_keywords: - vbaac10.chm10507 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CommandButton.Move Method (Access) +# CommandButton.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.CommandButton.Name.md b/api/Access.CommandButton.Name.md index 1b3cc9a82c0..836aaa41fda 100644 --- a/api/Access.CommandButton.Name.md +++ b/api/Access.CommandButton.Name.md @@ -1,5 +1,5 @@ --- -title: CommandButton.Name Property (Access) +title: CommandButton.Name property (Access) keywords: vbaac10.chm10506 f1_keywords: - vbaac10.chm10506 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.Name Property (Access) +# CommandButton.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.ObjectPalette.md b/api/Access.CommandButton.ObjectPalette.md index 951bcddc06e..d7dca13c021 100644 --- a/api/Access.CommandButton.ObjectPalette.md +++ b/api/Access.CommandButton.ObjectPalette.md @@ -1,5 +1,5 @@ --- -title: CommandButton.ObjectPalette Property (Access) +title: CommandButton.ObjectPalette property (Access) keywords: vbaac10.chm10490 f1_keywords: - vbaac10.chm10490 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.ObjectPalette Property (Access) +# CommandButton.ObjectPalette property (Access) The **ObjectPalette** property specifies the palette in the application used to create A bitmap or other graphic that is loaded into the specified control by using the **Picture** property. Read/write **Variant**. ## Syntax - _expression_. `ObjectPalette` +_expression_. `ObjectPalette` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.OldValue.md b/api/Access.CommandButton.OldValue.md index 8f73f218d27..ba41ed3fbc2 100644 --- a/api/Access.CommandButton.OldValue.md +++ b/api/Access.CommandButton.OldValue.md @@ -1,5 +1,5 @@ --- -title: CommandButton.OldValue Property (Access) +title: CommandButton.OldValue property (Access) keywords: vbaac10.chm10440 f1_keywords: - vbaac10.chm10440 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.OldValue Property (Access) +# CommandButton.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.OnClick.md b/api/Access.CommandButton.OnClick.md index 17012bc5791..46046d51346 100644 --- a/api/Access.CommandButton.OnClick.md +++ b/api/Access.CommandButton.OnClick.md @@ -1,5 +1,5 @@ --- -title: CommandButton.OnClick Property (Access) +title: CommandButton.OnClick property (Access) keywords: vbaac10.chm10497 f1_keywords: - vbaac10.chm10497 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.OnClick Property (Access) +# CommandButton.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CommandButton.OnDblClick.md b/api/Access.CommandButton.OnDblClick.md index 28d46efab07..f27c186691e 100644 --- a/api/Access.CommandButton.OnDblClick.md +++ b/api/Access.CommandButton.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: CommandButton.OnDblClick Property (Access) +title: CommandButton.OnDblClick property (Access) keywords: vbaac10.chm10498 f1_keywords: - vbaac10.chm10498 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.OnDblClick Property (Access) +# CommandButton.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CommandButton.OnEnter.md b/api/Access.CommandButton.OnEnter.md index 9611fcb759c..53711793345 100644 --- a/api/Access.CommandButton.OnEnter.md +++ b/api/Access.CommandButton.OnEnter.md @@ -1,5 +1,5 @@ --- -title: CommandButton.OnEnter Property (Access) +title: CommandButton.OnEnter property (Access) keywords: vbaac10.chm10493 f1_keywords: - vbaac10.chm10493 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.OnEnter Property (Access) +# CommandButton.OnEnter property (Access) Sets or returns the value of the **On Enter** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnEnter` +_expression_. `OnEnter` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Enter** event occurs before a control actually receives the focus from a The **OnEnter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Enter** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CommandButton.OnExit.md b/api/Access.CommandButton.OnExit.md index 8ec11088081..f4f6191086a 100644 --- a/api/Access.CommandButton.OnExit.md +++ b/api/Access.CommandButton.OnExit.md @@ -1,5 +1,5 @@ --- -title: CommandButton.OnExit Property (Access) +title: CommandButton.OnExit property (Access) keywords: vbaac10.chm10494 f1_keywords: - vbaac10.chm10494 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.OnExit Property (Access) +# CommandButton.OnExit property (Access) Sets or returns the value of the **On Exit** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnExit` +_expression_. `OnExit` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Exit** event occurs just before a control loses the focus to another cont The **OnExit** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Exit** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CommandButton.OnGotFocus.md b/api/Access.CommandButton.OnGotFocus.md index eeac01fb0c0..f8e52d43bb4 100644 --- a/api/Access.CommandButton.OnGotFocus.md +++ b/api/Access.CommandButton.OnGotFocus.md @@ -1,5 +1,5 @@ --- -title: CommandButton.OnGotFocus Property (Access) +title: CommandButton.OnGotFocus property (Access) keywords: vbaac10.chm10495 f1_keywords: - vbaac10.chm10495 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.OnGotFocus Property (Access) +# CommandButton.OnGotFocus property (Access) Sets or returns the value of the **On Got Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnGotFocus` +_expression_. `OnGotFocus` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **GotFocus** event occurs when the object receives the focus. The **OnGotFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Got Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CommandButton.OnKeyDown.md b/api/Access.CommandButton.OnKeyDown.md index 17fd728372e..a35001ab34c 100644 --- a/api/Access.CommandButton.OnKeyDown.md +++ b/api/Access.CommandButton.OnKeyDown.md @@ -1,5 +1,5 @@ --- -title: CommandButton.OnKeyDown Property (Access) +title: CommandButton.OnKeyDown property (Access) keywords: vbaac10.chm10502 f1_keywords: - vbaac10.chm10502 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.OnKeyDown Property (Access) +# CommandButton.OnKeyDown property (Access) Sets or returns the value of the **On Key Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyDown` +_expression_. `OnKeyDown` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyDown** event occurs when a user presses a key while a form or control The **OnKeyDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CommandButton.OnKeyPress.md b/api/Access.CommandButton.OnKeyPress.md index 4844808ab7f..6046a19dd3b 100644 --- a/api/Access.CommandButton.OnKeyPress.md +++ b/api/Access.CommandButton.OnKeyPress.md @@ -1,5 +1,5 @@ --- -title: CommandButton.OnKeyPress Property (Access) +title: CommandButton.OnKeyPress property (Access) keywords: vbaac10.chm10504 f1_keywords: - vbaac10.chm10504 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.OnKeyPress Property (Access) +# CommandButton.OnKeyPress property (Access) Sets or returns the value of the **On Key Press** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyPress` +_expression_. `OnKeyPress` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyPress** event occurs when a user presses a key while a form or control The **OnKeyPress** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Press** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CommandButton.OnKeyUp.md b/api/Access.CommandButton.OnKeyUp.md index c6abb494e30..293274f6ef2 100644 --- a/api/Access.CommandButton.OnKeyUp.md +++ b/api/Access.CommandButton.OnKeyUp.md @@ -1,5 +1,5 @@ --- -title: CommandButton.OnKeyUp Property (Access) +title: CommandButton.OnKeyUp property (Access) keywords: vbaac10.chm10503 f1_keywords: - vbaac10.chm10503 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.OnKeyUp Property (Access) +# CommandButton.OnKeyUp property (Access) Sets or returns the value of the **On Key Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyUp` +_expression_. `OnKeyUp` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyUp** event occurs when a user presses a key while a form or control ha The **OnKeyUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CommandButton.OnLostFocus.md b/api/Access.CommandButton.OnLostFocus.md index 54328076b33..2f1654ed50f 100644 --- a/api/Access.CommandButton.OnLostFocus.md +++ b/api/Access.CommandButton.OnLostFocus.md @@ -1,5 +1,5 @@ --- -title: CommandButton.OnLostFocus Property (Access) +title: CommandButton.OnLostFocus property (Access) keywords: vbaac10.chm10496 f1_keywords: - vbaac10.chm10496 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.OnLostFocus Property (Access) +# CommandButton.OnLostFocus property (Access) Sets or returns the value of the **On Lost Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnLostFocus` +_expression_. `OnLostFocus` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **LostFocus** event occurs when the object loses the focus. The **OnLostFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Lost Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CommandButton.OnMouseDown.md b/api/Access.CommandButton.OnMouseDown.md index 81f19344df1..75ceff65fa8 100644 --- a/api/Access.CommandButton.OnMouseDown.md +++ b/api/Access.CommandButton.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: CommandButton.OnMouseDown Property (Access) +title: CommandButton.OnMouseDown property (Access) keywords: vbaac10.chm10499 f1_keywords: - vbaac10.chm10499 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.OnMouseDown Property (Access) +# CommandButton.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CommandButton.OnMouseMove.md b/api/Access.CommandButton.OnMouseMove.md index a59bf92d29a..34608debd9b 100644 --- a/api/Access.CommandButton.OnMouseMove.md +++ b/api/Access.CommandButton.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: CommandButton.OnMouseMove Property (Access) +title: CommandButton.OnMouseMove property (Access) keywords: vbaac10.chm10500 f1_keywords: - vbaac10.chm10500 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.OnMouseMove Property (Access) +# CommandButton.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CommandButton.OnMouseUp.md b/api/Access.CommandButton.OnMouseUp.md index ba569407719..e875a4301e6 100644 --- a/api/Access.CommandButton.OnMouseUp.md +++ b/api/Access.CommandButton.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: CommandButton.OnMouseUp Property (Access) +title: CommandButton.OnMouseUp property (Access) keywords: vbaac10.chm10501 f1_keywords: - vbaac10.chm10501 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.OnMouseUp Property (Access) +# CommandButton.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CommandButton.OnPush.md b/api/Access.CommandButton.OnPush.md index 365411dd3f7..d81fdc6cf0e 100644 --- a/api/Access.CommandButton.OnPush.md +++ b/api/Access.CommandButton.OnPush.md @@ -1,5 +1,5 @@ --- -title: CommandButton.OnPush Property (Access) +title: CommandButton.OnPush property (Access) keywords: vbaac10.chm10459 f1_keywords: - vbaac10.chm10459 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.OnPush Property (Access) +# CommandButton.OnPush property (Access) Sets or returns the value of the **On Click** box in the **Properties** window of a command button. Read/write **String**. ## Syntax - _expression_. `OnPush` +_expression_. `OnPush` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks @@ -32,7 +32,7 @@ Although the name of this property is **OnPush**, setting this property actuall The **OnPush** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the command button's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CommandButton.Parent.md b/api/Access.CommandButton.Parent.md index eeaab8be611..2fc7bfcb220 100644 --- a/api/Access.CommandButton.Parent.md +++ b/api/Access.CommandButton.Parent.md @@ -1,5 +1,5 @@ --- -title: CommandButton.Parent Property (Access) +title: CommandButton.Parent property (Access) keywords: vbaac10.chm10439 f1_keywords: - vbaac10.chm10439 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.Parent Property (Access) +# CommandButton.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## See also diff --git a/api/Access.CommandButton.Picture.md b/api/Access.CommandButton.Picture.md index 62f6c15e8ab..60e8fd9d674 100644 --- a/api/Access.CommandButton.Picture.md +++ b/api/Access.CommandButton.Picture.md @@ -1,5 +1,5 @@ --- -title: CommandButton.Picture Property (Access) +title: CommandButton.Picture property (Access) keywords: vbaac10.chm10451 f1_keywords: - vbaac10.chm10451 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.Picture Property (Access) +# CommandButton.Picture property (Access) You can use the **Picture** property to specify a bitmap or other type of graphic to be displayed on the specified control. Read/write **String**. ## Syntax - _expression_. `Picture` +_expression_. `Picture` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.PictureCaptionArrangement.md b/api/Access.CommandButton.PictureCaptionArrangement.md index 4381e713c85..9dbf35296e0 100644 --- a/api/Access.CommandButton.PictureCaptionArrangement.md +++ b/api/Access.CommandButton.PictureCaptionArrangement.md @@ -1,5 +1,5 @@ --- -title: CommandButton.PictureCaptionArrangement Property (Access) +title: CommandButton.PictureCaptionArrangement property (Access) keywords: vbaac10.chm14291,vbaac10.chm5883 f1_keywords: - vbaac10.chm14291,vbaac10.chm5883 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.PictureCaptionArrangement Property (Access) +# CommandButton.PictureCaptionArrangement property (Access) Gets or sets how the specified button's caption is arranged in relation to its picture. Read/write **[AcPictureCaptionArrangement](Access.AcPictureCaptionArrangement.md)**. ## Syntax - _expression_. `PictureCaptionArrangement` +_expression_. `PictureCaptionArrangement` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## See also diff --git a/api/Access.CommandButton.PictureData.md b/api/Access.CommandButton.PictureData.md index db10396b4c0..1d1579682b5 100644 --- a/api/Access.CommandButton.PictureData.md +++ b/api/Access.CommandButton.PictureData.md @@ -1,5 +1,5 @@ --- -title: CommandButton.PictureData Property (Access) +title: CommandButton.PictureData property (Access) keywords: vbaac10.chm10453 f1_keywords: - vbaac10.chm10453 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.PictureData Property (Access) +# CommandButton.PictureData property (Access) You can use the **PictureData** property to copy the picture to another object that supports the **Picture** property. Read/write **Variant**. ## Syntax - _expression_. `PictureData` +_expression_. `PictureData` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.PictureType.md b/api/Access.CommandButton.PictureType.md index 1789caf09a0..397a9f7a81f 100644 --- a/api/Access.CommandButton.PictureType.md +++ b/api/Access.CommandButton.PictureType.md @@ -1,5 +1,5 @@ --- -title: CommandButton.PictureType Property (Access) +title: CommandButton.PictureType property (Access) keywords: vbaac10.chm10452 f1_keywords: - vbaac10.chm10452 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.PictureType Property (Access) +# CommandButton.PictureType property (Access) You can use the **PictureType** property to specify whether Microsoft Access stores an object's picture as a linked or an embedded object. Read/write **Byte**. ## Syntax - _expression_. `PictureType` +_expression_. `PictureType` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.PressedColor.md b/api/Access.CommandButton.PressedColor.md index f9079461c49..9e13c912fe7 100644 --- a/api/Access.CommandButton.PressedColor.md +++ b/api/Access.CommandButton.PressedColor.md @@ -1,5 +1,5 @@ --- -title: CommandButton.PressedColor Property (Access) +title: CommandButton.PressedColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.PressedColor Property (Access) +# CommandButton.PressedColor property (Access) Gets or sets the color displayed on the control when the user clicks it. Read/write **Long**. ## Syntax - _expression_. `PressedColor` +_expression_. `PressedColor` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.PressedForeColor.md b/api/Access.CommandButton.PressedForeColor.md index b624eb07c53..50bba761a66 100644 --- a/api/Access.CommandButton.PressedForeColor.md +++ b/api/Access.CommandButton.PressedForeColor.md @@ -1,5 +1,5 @@ --- -title: CommandButton.PressedForeColor Property (Access) +title: CommandButton.PressedForeColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.PressedForeColor Property (Access) +# CommandButton.PressedForeColor property (Access) Gets or sets the color of the text displayed on the control when the user clicks it. Read/write **Long**. ## Syntax - _expression_. `PressedForeColor` +_expression_. `PressedForeColor` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.PressedForeShade.md b/api/Access.CommandButton.PressedForeShade.md index 20a2a9fc6f6..176a6d03e89 100644 --- a/api/Access.CommandButton.PressedForeShade.md +++ b/api/Access.CommandButton.PressedForeShade.md @@ -1,5 +1,5 @@ --- -title: CommandButton.PressedForeShade Property (Access) +title: CommandButton.PressedForeShade property (Access) keywords: vbaac10.chm14626 f1_keywords: - vbaac10.chm14626 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.PressedForeShade Property (Access) +# CommandButton.PressedForeShade property (Access) Gets or sets the shade applied to the theme color in the **PressedForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `PressedForeShade` +_expression_. `PressedForeShade` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.PressedForeThemeColorIndex.md b/api/Access.CommandButton.PressedForeThemeColorIndex.md index 89464a8fe2d..f6a1d79009d 100644 --- a/api/Access.CommandButton.PressedForeThemeColorIndex.md +++ b/api/Access.CommandButton.PressedForeThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: CommandButton.PressedForeThemeColorIndex Property (Access) +title: CommandButton.PressedForeThemeColorIndex property (Access) keywords: vbaac10.chm14624 f1_keywords: - vbaac10.chm14624 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.PressedForeThemeColorIndex Property (Access) +# CommandButton.PressedForeThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **PressedForeColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `PressedForeThemeColorIndex` +_expression_. `PressedForeThemeColorIndex` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.PressedForeTint.md b/api/Access.CommandButton.PressedForeTint.md index 78833af8789..14f5f21814e 100644 --- a/api/Access.CommandButton.PressedForeTint.md +++ b/api/Access.CommandButton.PressedForeTint.md @@ -1,5 +1,5 @@ --- -title: CommandButton.PressedForeTint Property (Access) +title: CommandButton.PressedForeTint property (Access) keywords: vbaac10.chm14625 f1_keywords: - vbaac10.chm14625 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.PressedForeTint Property (Access) +# CommandButton.PressedForeTint property (Access) Gets or sets the tint applied to the theme color in the **PressedForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `PressedForeTint` +_expression_. `PressedForeTint` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.PressedShade.md b/api/Access.CommandButton.PressedShade.md index 7991ce7db45..0d0481fff47 100644 --- a/api/Access.CommandButton.PressedShade.md +++ b/api/Access.CommandButton.PressedShade.md @@ -1,5 +1,5 @@ --- -title: CommandButton.PressedShade Property (Access) +title: CommandButton.PressedShade property (Access) keywords: vbaac10.chm14622 f1_keywords: - vbaac10.chm14622 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.PressedShade Property (Access) +# CommandButton.PressedShade property (Access) Gets or sets the shade that is applied to the theme color in the **PressedColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `PressedShade` +_expression_. `PressedShade` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.PressedThemeColorIndex.md b/api/Access.CommandButton.PressedThemeColorIndex.md index 8022b5ccc25..045b2f716c5 100644 --- a/api/Access.CommandButton.PressedThemeColorIndex.md +++ b/api/Access.CommandButton.PressedThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: CommandButton.PressedThemeColorIndex Property (Access) +title: CommandButton.PressedThemeColorIndex property (Access) keywords: vbaac10.chm14620 f1_keywords: - vbaac10.chm14620 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.PressedThemeColorIndex Property (Access) +# CommandButton.PressedThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **PressedColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `PressedThemeColorIndex` +_expression_. `PressedThemeColorIndex` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.PressedTint.md b/api/Access.CommandButton.PressedTint.md index c179f11e36d..1a22f878fbf 100644 --- a/api/Access.CommandButton.PressedTint.md +++ b/api/Access.CommandButton.PressedTint.md @@ -1,5 +1,5 @@ --- -title: CommandButton.PressedTint Property (Access) +title: CommandButton.PressedTint property (Access) keywords: vbaac10.chm14621 f1_keywords: - vbaac10.chm14621 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.PressedTint Property (Access) +# CommandButton.PressedTint property (Access) Gets or sets the tint applied to the theme color in the **PressedColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `PressedTint` +_expression_. `PressedTint` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.Properties.md b/api/Access.CommandButton.Properties.md index 2e7260b22e0..431ce3cb2ba 100644 --- a/api/Access.CommandButton.Properties.md +++ b/api/Access.CommandButton.Properties.md @@ -1,5 +1,5 @@ --- -title: CommandButton.Properties Property (Access) +title: CommandButton.Properties property (Access) keywords: vbaac10.chm10441 f1_keywords: - vbaac10.chm10441 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.Properties Property (Access) +# CommandButton.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.QuickStyle.md b/api/Access.CommandButton.QuickStyle.md index 49115fb1a4c..d0df90b75ce 100644 --- a/api/Access.CommandButton.QuickStyle.md +++ b/api/Access.CommandButton.QuickStyle.md @@ -1,5 +1,5 @@ --- -title: CommandButton.QuickStyle Property (Access) +title: CommandButton.QuickStyle property (Access) keywords: vbaac10.chm14646 f1_keywords: - vbaac10.chm14646 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.QuickStyle Property (Access) +# CommandButton.QuickStyle property (Access) Gets or sets the Quick Style that is applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `QuickStyle` +_expression_. `QuickStyle` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.ReadingOrder.md b/api/Access.CommandButton.ReadingOrder.md index c92021563b1..ac4330af1c6 100644 --- a/api/Access.CommandButton.ReadingOrder.md +++ b/api/Access.CommandButton.ReadingOrder.md @@ -1,5 +1,5 @@ --- -title: CommandButton.ReadingOrder Property (Access) +title: CommandButton.ReadingOrder property (Access) keywords: vbaac10.chm10505 f1_keywords: - vbaac10.chm10505 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.ReadingOrder Property (Access) +# CommandButton.ReadingOrder property (Access) You can use the **ReadingOrder** property to specify or determine the reading order of words in text. Read/write **Byte**. ## Syntax - _expression_. `ReadingOrder` +_expression_. `ReadingOrder` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.Requery.md b/api/Access.CommandButton.Requery.md index cfddf911163..8e218401487 100644 --- a/api/Access.CommandButton.Requery.md +++ b/api/Access.CommandButton.Requery.md @@ -1,5 +1,5 @@ --- -title: CommandButton.Requery Method (Access) +title: CommandButton.Requery method (Access) keywords: vbaac10.chm10443 f1_keywords: - vbaac10.chm10443 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.Requery Method (Access) +# CommandButton.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.RightPadding.md b/api/Access.CommandButton.RightPadding.md index fe88e3a7f3a..e59a30c4a93 100644 --- a/api/Access.CommandButton.RightPadding.md +++ b/api/Access.CommandButton.RightPadding.md @@ -1,5 +1,5 @@ --- -title: CommandButton.RightPadding Property (Access) +title: CommandButton.RightPadding property (Access) keywords: vbaac10.chm10526 f1_keywords: - vbaac10.chm10526 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.RightPadding Property (Access) +# CommandButton.RightPadding property (Access) Gets or sets the amount of space (in inches) between the button and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## See also diff --git a/api/Access.CommandButton.Section.md b/api/Access.CommandButton.Section.md index 4ad320a86c9..d3e40e7daaf 100644 --- a/api/Access.CommandButton.Section.md +++ b/api/Access.CommandButton.Section.md @@ -1,5 +1,5 @@ --- -title: CommandButton.Section Property (Access) +title: CommandButton.Section property (Access) keywords: vbaac10.chm10487 f1_keywords: - vbaac10.chm10487 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.Section Property (Access) +# CommandButton.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.SetFocus.md b/api/Access.CommandButton.SetFocus.md index 5c56d8bd8a7..c013a1d53d3 100644 --- a/api/Access.CommandButton.SetFocus.md +++ b/api/Access.CommandButton.SetFocus.md @@ -1,5 +1,5 @@ --- -title: CommandButton.SetFocus Method (Access) +title: CommandButton.SetFocus method (Access) keywords: vbaac10.chm10444 f1_keywords: - vbaac10.chm10444 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# CommandButton.SetFocus Method (Access) +# CommandButton.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.CommandButton.Shadow.md b/api/Access.CommandButton.Shadow.md index adf700b4eda..c410eb87efe 100644 --- a/api/Access.CommandButton.Shadow.md +++ b/api/Access.CommandButton.Shadow.md @@ -1,5 +1,5 @@ --- -title: CommandButton.Shadow Property (Access) +title: CommandButton.Shadow property (Access) keywords: vbaac10.chm14638 f1_keywords: - vbaac10.chm14638 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.Shadow Property (Access) +# CommandButton.Shadow property (Access) Gets or sets the **Shadow** effect applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `Shadow` +_expression_. `Shadow` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.Shape.md b/api/Access.CommandButton.Shape.md index e3b65ab4caa..d42dfae4a51 100644 --- a/api/Access.CommandButton.Shape.md +++ b/api/Access.CommandButton.Shape.md @@ -1,5 +1,5 @@ --- -title: CommandButton.Shape Property (Access) +title: CommandButton.Shape property (Access) keywords: vbaac10.chm14628 f1_keywords: - vbaac10.chm14628 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.Shape Property (Access) +# CommandButton.Shape property (Access) Returns or sets the shape of the specified button. Read/write **Long**. ## Syntax - _expression_. `Shape` +_expression_. `Shape` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.ShortcutMenuBar.md b/api/Access.CommandButton.ShortcutMenuBar.md index a64531afa40..42a7a66e99c 100644 --- a/api/Access.CommandButton.ShortcutMenuBar.md +++ b/api/Access.CommandButton.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: CommandButton.ShortcutMenuBar Property (Access) +title: CommandButton.ShortcutMenuBar property (Access) keywords: vbaac10.chm10479 f1_keywords: - vbaac10.chm10479 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.ShortcutMenuBar Property (Access) +# CommandButton.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.SizeToFit.md b/api/Access.CommandButton.SizeToFit.md index fd4c1ca1d5d..c54f83d9cd1 100644 --- a/api/Access.CommandButton.SizeToFit.md +++ b/api/Access.CommandButton.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: CommandButton.SizeToFit Method (Access) +title: CommandButton.SizeToFit method (Access) keywords: vbaac10.chm10442 f1_keywords: - vbaac10.chm10442 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.SizeToFit Method (Access) +# CommandButton.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.SoftEdges.md b/api/Access.CommandButton.SoftEdges.md index 5c94ea7bd3b..a277814a620 100644 --- a/api/Access.CommandButton.SoftEdges.md +++ b/api/Access.CommandButton.SoftEdges.md @@ -1,5 +1,5 @@ --- -title: CommandButton.SoftEdges Property (Access) +title: CommandButton.SoftEdges property (Access) keywords: vbaac10.chm14639 f1_keywords: - vbaac10.chm14639 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.SoftEdges Property (Access) +# CommandButton.SoftEdges property (Access) Gets or sets the **Soft Edges** effect applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `SoftEdges` +_expression_. `SoftEdges` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.StatusBarText.md b/api/Access.CommandButton.StatusBarText.md index 3e0d891d186..aa0bc53a96e 100644 --- a/api/Access.CommandButton.StatusBarText.md +++ b/api/Access.CommandButton.StatusBarText.md @@ -1,5 +1,5 @@ --- -title: CommandButton.StatusBarText Property (Access) +title: CommandButton.StatusBarText property (Access) keywords: vbaac10.chm10458 f1_keywords: - vbaac10.chm10458 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.StatusBarText Property (Access) +# CommandButton.StatusBarText property (Access) You can use the **StatusBarText** property to specify the text that is displayed in the status bar when a control is selected. Read/write **String**. ## Syntax - _expression_. `StatusBarText` +_expression_. `StatusBarText` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.TabIndex.md b/api/Access.CommandButton.TabIndex.md index 6a0b3152b52..4972e749b7a 100644 --- a/api/Access.CommandButton.TabIndex.md +++ b/api/Access.CommandButton.TabIndex.md @@ -1,5 +1,5 @@ --- -title: CommandButton.TabIndex Property (Access) +title: CommandButton.TabIndex property (Access) keywords: vbaac10.chm10466 f1_keywords: - vbaac10.chm10466 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.TabIndex Property (Access) +# CommandButton.TabIndex property (Access) You can use the **TabIndex** property to specify a control's place in the tab order on a form or report. Read/write **Integer**. ## Syntax - _expression_. `TabIndex` +_expression_. `TabIndex` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.TabStop.md b/api/Access.CommandButton.TabStop.md index c63d6e5116b..1546eb4a247 100644 --- a/api/Access.CommandButton.TabStop.md +++ b/api/Access.CommandButton.TabStop.md @@ -1,5 +1,5 @@ --- -title: CommandButton.TabStop Property (Access) +title: CommandButton.TabStop property (Access) keywords: vbaac10.chm10465 f1_keywords: - vbaac10.chm10465 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.TabStop Property (Access) +# CommandButton.TabStop property (Access) You can use the **TabStop** property to specify whether you can use the TAB key to move the focus to a control. Read/write **Boolean**. ## Syntax - _expression_. `TabStop` +_expression_. `TabStop` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.Tag.md b/api/Access.CommandButton.Tag.md index a55e3d01436..d1c0e9c7885 100644 --- a/api/Access.CommandButton.Tag.md +++ b/api/Access.CommandButton.Tag.md @@ -1,5 +1,5 @@ --- -title: CommandButton.Tag Property (Access) +title: CommandButton.Tag property (Access) keywords: vbaac10.chm10489 f1_keywords: - vbaac10.chm10489 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.Tag Property (Access) +# CommandButton.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.ThemeFontIndex.md b/api/Access.CommandButton.ThemeFontIndex.md index 437151152fd..9b121c092ca 100644 --- a/api/Access.CommandButton.ThemeFontIndex.md +++ b/api/Access.CommandButton.ThemeFontIndex.md @@ -1,5 +1,5 @@ --- -title: CommandButton.ThemeFontIndex Property (Access) +title: CommandButton.ThemeFontIndex property (Access) keywords: vbaac10.chm14610 f1_keywords: - vbaac10.chm14610 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.ThemeFontIndex Property (Access) +# CommandButton.ThemeFontIndex property (Access) Gets or sets the font index that represents a font in the applied theme associated with the **FontName** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `ThemeFontIndex` +_expression_. `ThemeFontIndex` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.Top.md b/api/Access.CommandButton.Top.md index 4229f716830..728bf46786b 100644 --- a/api/Access.CommandButton.Top.md +++ b/api/Access.CommandButton.Top.md @@ -1,5 +1,5 @@ --- -title: CommandButton.Top Property (Access) +title: CommandButton.Top property (Access) keywords: vbaac10.chm10468 f1_keywords: - vbaac10.chm10468 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.Top Property (Access) +# CommandButton.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.TopPadding.md b/api/Access.CommandButton.TopPadding.md index cbcfc81cb09..7692a4b8e94 100644 --- a/api/Access.CommandButton.TopPadding.md +++ b/api/Access.CommandButton.TopPadding.md @@ -1,5 +1,5 @@ --- -title: CommandButton.TopPadding Property (Access) +title: CommandButton.TopPadding property (Access) keywords: vbaac10.chm10525 f1_keywords: - vbaac10.chm10525 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.TopPadding Property (Access) +# CommandButton.TopPadding property (Access) Gets or sets the amount of space (in inches) between the button and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## See also diff --git a/api/Access.CommandButton.Transparent.md b/api/Access.CommandButton.Transparent.md index 42381acd8c6..00b3fbde281 100644 --- a/api/Access.CommandButton.Transparent.md +++ b/api/Access.CommandButton.Transparent.md @@ -1,5 +1,5 @@ --- -title: CommandButton.Transparent Property (Access) +title: CommandButton.Transparent property (Access) keywords: vbaac10.chm10454,vbaac10.chm4526 f1_keywords: - vbaac10.chm10454,vbaac10.chm4526 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.Transparent Property (Access) +# CommandButton.Transparent property (Access) You can use the **Transparent** property to specify whether a command button is solid or transparent. Read/write **Boolean**. ## Syntax - _expression_. `Transparent` +_expression_. `Transparent` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.UseTheme.md b/api/Access.CommandButton.UseTheme.md index fa3449b68da..c822be95150 100644 --- a/api/Access.CommandButton.UseTheme.md +++ b/api/Access.CommandButton.UseTheme.md @@ -1,5 +1,5 @@ --- -title: CommandButton.UseTheme Property (Access) +title: CommandButton.UseTheme property (Access) keywords: vbaac10.chm14627 f1_keywords: - vbaac10.chm14627 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.UseTheme Property (Access) +# CommandButton.UseTheme property (Access) Gets or sets whether the specified object will utilize formatting styles defined in Office Document Themes. Read/write **Boolean**. ## Syntax - _expression_. `UseTheme` +_expression_. `UseTheme` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.VerticalAnchor.md b/api/Access.CommandButton.VerticalAnchor.md index 4fb12ef40f0..9c26a981b45 100644 --- a/api/Access.CommandButton.VerticalAnchor.md +++ b/api/Access.CommandButton.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: CommandButton.VerticalAnchor Property (Access) +title: CommandButton.VerticalAnchor property (Access) keywords: vbaac10.chm10538 f1_keywords: - vbaac10.chm10538 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.VerticalAnchor Property (Access) +# CommandButton.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified button is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.Visible.md b/api/Access.CommandButton.Visible.md index 889265d0053..8874785eb89 100644 --- a/api/Access.CommandButton.Visible.md +++ b/api/Access.CommandButton.Visible.md @@ -1,5 +1,5 @@ --- -title: CommandButton.Visible Property (Access) +title: CommandButton.Visible property (Access) keywords: vbaac10.chm10462 f1_keywords: - vbaac10.chm10462 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.Visible Property (Access) +# CommandButton.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.Width.md b/api/Access.CommandButton.Width.md index cf13d213881..ce0568a380f 100644 --- a/api/Access.CommandButton.Width.md +++ b/api/Access.CommandButton.Width.md @@ -1,5 +1,5 @@ --- -title: CommandButton.Width Property (Access) +title: CommandButton.Width property (Access) keywords: vbaac10.chm10469 f1_keywords: - vbaac10.chm10469 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CommandButton.Width Property (Access) +# CommandButton.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.CommandButton.md b/api/Access.CommandButton.md index 96fd2737727..15cb9df5c6d 100644 --- a/api/Access.CommandButton.md +++ b/api/Access.CommandButton.md @@ -1,5 +1,5 @@ --- -title: CommandButton Object (Access) +title: CommandButton object (Access) keywords: vbaac10.chm10554 f1_keywords: - vbaac10.chm10554 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# CommandButton Object (Access) +# CommandButton object (Access) This object corresponds to a command button. A command button on a form can start an action or a set of actions. For example, you could create a command button that opens another form. To make a command button do something, you write a macro or event procedure and attach it to the button's **OnClick** property. diff --git a/api/Access.Control.Application.md b/api/Access.Control.Application.md index 38290bbe0c4..7bdcb41b2da 100644 --- a/api/Access.Control.Application.md +++ b/api/Access.Control.Application.md @@ -1,5 +1,5 @@ --- -title: Control.Application Property (Access) +title: Control.Application property (Access) keywords: vbaac10.chm10132 f1_keywords: - vbaac10.chm10132 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.Application Property (Access) +# Control.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.BottomPadding.md b/api/Access.Control.BottomPadding.md index 9778d0c79a2..5f1ace055b7 100644 --- a/api/Access.Control.BottomPadding.md +++ b/api/Access.Control.BottomPadding.md @@ -1,5 +1,5 @@ --- -title: Control.BottomPadding Property (Access) +title: Control.BottomPadding property (Access) keywords: vbaac10.chm10159 f1_keywords: - vbaac10.chm10159 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.BottomPadding Property (Access) +# Control.BottomPadding property (Access) Gets or sets the amount of space (in inches) between the control and its bottom gridline. Read/write **Integer**. ## Syntax - _expression_. `BottomPadding` +_expression_. `BottomPadding` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## See also diff --git a/api/Access.Control.Column.md b/api/Access.Control.Column.md index 7d6da26bc63..200fef900d8 100644 --- a/api/Access.Control.Column.md +++ b/api/Access.Control.Column.md @@ -1,5 +1,5 @@ --- -title: Control.Column Property (Access) +title: Control.Column property (Access) keywords: vbaac10.chm10136 f1_keywords: - vbaac10.chm10136 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Control.Column Property (Access) +# Control.Column property (Access) You can use the **Column** property to refer to a specific column, or column and row combination, in a multiple-column combo box or list box. Read-only **Variant**. ## Syntax - _expression_. `Column`( ` _Index_`, ` _Row_` ) +_expression_. `Column`( ` _Index_`, ` _Row_` ) - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required|**Long**|A long integer that can range from 0 to the setting of the **ColumnCount** property minus one.| | _Row_|Optional|**Variant**|An integer that can range from 0 to the setting of the **ListCount** property minus 1.| diff --git a/api/Access.Control.Controls.md b/api/Access.Control.Controls.md index 5acdf7008df..38afe62baaa 100644 --- a/api/Access.Control.Controls.md +++ b/api/Access.Control.Controls.md @@ -1,5 +1,5 @@ --- -title: Control.Controls Property (Access) +title: Control.Controls property (Access) keywords: vbaac10.chm10150 f1_keywords: - vbaac10.chm10150 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.Controls Property (Access) +# Control.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.Dropdown.md b/api/Access.Control.Dropdown.md index 7059332f5a0..0dca5d67ceb 100644 --- a/api/Access.Control.Dropdown.md +++ b/api/Access.Control.Dropdown.md @@ -1,5 +1,5 @@ --- -title: Control.Dropdown Method (Access) +title: Control.Dropdown method (Access) keywords: vbaac10.chm10135 f1_keywords: - vbaac10.chm10135 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# Control.Dropdown Method (Access) +# Control.Dropdown method (Access) You can use the **Dropdown** method to force the list in the specified combo box to drop down. ## Syntax - _expression_. `Dropdown` +_expression_. `Dropdown` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.Control.Form.md b/api/Access.Control.Form.md index d881ec4e31e..c4fb2c20c38 100644 --- a/api/Access.Control.Form.md +++ b/api/Access.Control.Form.md @@ -1,5 +1,5 @@ --- -title: Control.Form Property (Access) +title: Control.Form property (Access) keywords: vbaac10.chm10139 f1_keywords: - vbaac10.chm10139 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.Form Property (Access) +# Control.Form property (Access) You can use the **Form** property to refer to a form or to refer to the form associated with a subformcontrol. Read-only **Form**. ## Syntax - _expression_. `Form` +_expression_. `Form` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.GridlineColor.md b/api/Access.Control.GridlineColor.md index 9a05a573424..c7459ac7d5e 100644 --- a/api/Access.Control.GridlineColor.md +++ b/api/Access.Control.GridlineColor.md @@ -1,5 +1,5 @@ --- -title: Control.GridlineColor Property (Access) +title: Control.GridlineColor property (Access) keywords: vbaac10.chm10168 f1_keywords: - vbaac10.chm10168 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.GridlineColor Property (Access) +# Control.GridlineColor property (Access) Gets or sets the color of the gridline for the specified control. Read/write **Long**. ## Syntax - _expression_. `GridlineColor` +_expression_. `GridlineColor` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.GridlineStyleBottom.md b/api/Access.Control.GridlineStyleBottom.md index 50e7d1133c7..f39ebfebe23 100644 --- a/api/Access.Control.GridlineStyleBottom.md +++ b/api/Access.Control.GridlineStyleBottom.md @@ -1,5 +1,5 @@ --- -title: Control.GridlineStyleBottom Property (Access) +title: Control.GridlineStyleBottom property (Access) keywords: vbaac10.chm10163 f1_keywords: - vbaac10.chm10163 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.GridlineStyleBottom Property (Access) +# Control.GridlineStyleBottom property (Access) Gets or sets the bottom gridline style of the specified control. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleBottom` +_expression_. `GridlineStyleBottom` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.GridlineStyleLeft.md b/api/Access.Control.GridlineStyleLeft.md index 4cbf814d602..16ea69428ca 100644 --- a/api/Access.Control.GridlineStyleLeft.md +++ b/api/Access.Control.GridlineStyleLeft.md @@ -1,5 +1,5 @@ --- -title: Control.GridlineStyleLeft Property (Access) +title: Control.GridlineStyleLeft property (Access) keywords: vbaac10.chm10160 f1_keywords: - vbaac10.chm10160 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.GridlineStyleLeft Property (Access) +# Control.GridlineStyleLeft property (Access) Gets or sets the width of the bottom gridline for the specified control. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleLeft` +_expression_. `GridlineStyleLeft` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.GridlineStyleRight.md b/api/Access.Control.GridlineStyleRight.md index 67a4505bf9e..e1ee09ef759 100644 --- a/api/Access.Control.GridlineStyleRight.md +++ b/api/Access.Control.GridlineStyleRight.md @@ -1,5 +1,5 @@ --- -title: Control.GridlineStyleRight Property (Access) +title: Control.GridlineStyleRight property (Access) keywords: vbaac10.chm10162 f1_keywords: - vbaac10.chm10162 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.GridlineStyleRight Property (Access) +# Control.GridlineStyleRight property (Access) Gets or sets the right gridline style of the specified control. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleRight` +_expression_. `GridlineStyleRight` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.GridlineStyleTop.md b/api/Access.Control.GridlineStyleTop.md index d1a18f4fb79..6d535523274 100644 --- a/api/Access.Control.GridlineStyleTop.md +++ b/api/Access.Control.GridlineStyleTop.md @@ -1,5 +1,5 @@ --- -title: Control.GridlineStyleTop Property (Access) +title: Control.GridlineStyleTop property (Access) keywords: vbaac10.chm10161 f1_keywords: - vbaac10.chm10161 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.GridlineStyleTop Property (Access) +# Control.GridlineStyleTop property (Access) Gets or sets the top gridline style of the specified control. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleTop` +_expression_. `GridlineStyleTop` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.GridlineWidthBottom.md b/api/Access.Control.GridlineWidthBottom.md index 6d12991b9c9..e540dd93bb9 100644 --- a/api/Access.Control.GridlineWidthBottom.md +++ b/api/Access.Control.GridlineWidthBottom.md @@ -1,5 +1,5 @@ --- -title: Control.GridlineWidthBottom Property (Access) +title: Control.GridlineWidthBottom property (Access) keywords: vbaac10.chm10167 f1_keywords: - vbaac10.chm10167 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.GridlineWidthBottom Property (Access) +# Control.GridlineWidthBottom property (Access) Gets or sets the width of the bottom gridline for the specified control. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthBottom` +_expression_. `GridlineWidthBottom` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.GridlineWidthLeft.md b/api/Access.Control.GridlineWidthLeft.md index bfbb4b1d96a..6015592982d 100644 --- a/api/Access.Control.GridlineWidthLeft.md +++ b/api/Access.Control.GridlineWidthLeft.md @@ -1,5 +1,5 @@ --- -title: Control.GridlineWidthLeft Property (Access) +title: Control.GridlineWidthLeft property (Access) keywords: vbaac10.chm10164 f1_keywords: - vbaac10.chm10164 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.GridlineWidthLeft Property (Access) +# Control.GridlineWidthLeft property (Access) Gets or sets the width of the left gridline for the specified control. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthLeft` +_expression_. `GridlineWidthLeft` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.GridlineWidthRight.md b/api/Access.Control.GridlineWidthRight.md index 8b6f297749e..72257d62701 100644 --- a/api/Access.Control.GridlineWidthRight.md +++ b/api/Access.Control.GridlineWidthRight.md @@ -1,5 +1,5 @@ --- -title: Control.GridlineWidthRight Property (Access) +title: Control.GridlineWidthRight property (Access) keywords: vbaac10.chm10166 f1_keywords: - vbaac10.chm10166 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.GridlineWidthRight Property (Access) +# Control.GridlineWidthRight property (Access) Gets or sets the width of the right gridline for the specified control. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthRight` +_expression_. `GridlineWidthRight` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.GridlineWidthTop.md b/api/Access.Control.GridlineWidthTop.md index b25ecfb5d1f..8b9cdb7be9a 100644 --- a/api/Access.Control.GridlineWidthTop.md +++ b/api/Access.Control.GridlineWidthTop.md @@ -1,5 +1,5 @@ --- -title: Control.GridlineWidthTop Property (Access) +title: Control.GridlineWidthTop property (Access) keywords: vbaac10.chm10165 f1_keywords: - vbaac10.chm10165 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.GridlineWidthTop Property (Access) +# Control.GridlineWidthTop property (Access) Gets or sets the width of the top gridline for the specified control. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthTop` +_expression_. `GridlineWidthTop` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.HorizontalAnchor.md b/api/Access.Control.HorizontalAnchor.md index c655c0cc046..98db9d5003a 100644 --- a/api/Access.Control.HorizontalAnchor.md +++ b/api/Access.Control.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: Control.HorizontalAnchor Property (Access) +title: Control.HorizontalAnchor property (Access) keywords: vbaac10.chm10169 f1_keywords: - vbaac10.chm10169 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.HorizontalAnchor Property (Access) +# Control.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the control is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.Hyperlink.md b/api/Access.Control.Hyperlink.md index 5f7d25363df..a08d074d06d 100644 --- a/api/Access.Control.Hyperlink.md +++ b/api/Access.Control.Hyperlink.md @@ -1,5 +1,5 @@ --- -title: Control.Hyperlink Property (Access) +title: Control.Hyperlink property (Access) keywords: vbaac10.chm10151 f1_keywords: - vbaac10.chm10151 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.Hyperlink Property (Access) +# Control.Hyperlink property (Access) You can use the **Hyperlink** property to return a reference to a **Hyperlink** object. You can use the **Hyperlink** property to access the properties and methods of a control's hyperlink. Read-only. ## Syntax - _expression_. `Hyperlink` +_expression_. `Hyperlink` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Example diff --git a/api/Access.Control.ItemData.md b/api/Access.Control.ItemData.md index 00e8526a31f..98646d001ec 100644 --- a/api/Access.Control.ItemData.md +++ b/api/Access.Control.ItemData.md @@ -1,5 +1,5 @@ --- -title: Control.ItemData Property (Access) +title: Control.ItemData property (Access) keywords: vbaac10.chm10141 f1_keywords: - vbaac10.chm10141 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Control.ItemData Property (Access) +# Control.ItemData property (Access) The **ItemData** property returns the data in the bound column for the specified row in a combo box or list box. Read-only **Variant**. ## Syntax - _expression_. `ItemData`( ` _Index_` ) +_expression_. `ItemData`( ` _Index_` ) - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required|**Long**|The row in the combo box or list box containing the data you want to return. Rows in combo and list boxes are indexed starting with zero. For example, to return the item in the sixth row of a combo box, you'd specify 5 for the _rowindex_ argument.| diff --git a/api/Access.Control.ItemsSelected.md b/api/Access.Control.ItemsSelected.md index 12a0fa40a8a..7e773afb724 100644 --- a/api/Access.Control.ItemsSelected.md +++ b/api/Access.Control.ItemsSelected.md @@ -1,5 +1,5 @@ --- -title: Control.ItemsSelected Property (Access) +title: Control.ItemsSelected property (Access) keywords: vbaac10.chm10147 f1_keywords: - vbaac10.chm10147 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.ItemsSelected Property (Access) +# Control.ItemsSelected property (Access) You can use the **ItemsSelected** property to return a read-only reference to the hidden **ItemsSelected** collection. This hidden collection can be used to access data in the selected rows of a multiselect list box control. ## Syntax - _expression_. `ItemsSelected` +_expression_. `ItemsSelected` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.Layout.md b/api/Access.Control.Layout.md index 5ba594a1f33..db01877d680 100644 --- a/api/Access.Control.Layout.md +++ b/api/Access.Control.Layout.md @@ -1,5 +1,5 @@ --- -title: Control.Layout Property (Access) +title: Control.Layout property (Access) keywords: vbaac10.chm10155 f1_keywords: - vbaac10.chm10155 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.Layout Property (Access) +# Control.Layout property (Access) Returns the type of layout for the specified control. Read-only **[AcLayoutType](Access.AcLayoutType.md)**. ## Syntax - _expression_. `Layout` +_expression_. `Layout` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## See also diff --git a/api/Access.Control.LayoutID.md b/api/Access.Control.LayoutID.md index bc2277d215c..9f974964941 100644 --- a/api/Access.Control.LayoutID.md +++ b/api/Access.Control.LayoutID.md @@ -1,5 +1,5 @@ --- -title: Control.LayoutID Property (Access) +title: Control.LayoutID property (Access) keywords: vbaac10.chm10171 f1_keywords: - vbaac10.chm10171 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.LayoutID Property (Access) +# Control.LayoutID property (Access) Returns the unique identifier for the layout that contains the specified control. Read-only **Long**. ## Syntax - _expression_. `LayoutID` +_expression_. `LayoutID` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.LeftPadding.md b/api/Access.Control.LeftPadding.md index ce371743c87..43b892aa5ef 100644 --- a/api/Access.Control.LeftPadding.md +++ b/api/Access.Control.LeftPadding.md @@ -1,5 +1,5 @@ --- -title: Control.LeftPadding Property (Access) +title: Control.LeftPadding property (Access) keywords: vbaac10.chm10156 f1_keywords: - vbaac10.chm10156 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.LeftPadding Property (Access) +# Control.LeftPadding property (Access) Gets or sets the amount of space (in inches) between the control and its left gridline. Read/write **Integer**. ## Syntax - _expression_. `LeftPadding` +_expression_. `LeftPadding` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## See also diff --git a/api/Access.Control.Move.md b/api/Access.Control.Move.md index c9ecf76d615..31e2d099325 100644 --- a/api/Access.Control.Move.md +++ b/api/Access.Control.Move.md @@ -1,5 +1,5 @@ --- -title: Control.Move Method (Access) +title: Control.Move method (Access) keywords: vbaac10.chm10152 f1_keywords: - vbaac10.chm10152 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Control.Move Method (Access) +# Control.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.Control.Name.md b/api/Access.Control.Name.md index 818eb33b766..cfdb7c1ce30 100644 --- a/api/Access.Control.Name.md +++ b/api/Access.Control.Name.md @@ -1,5 +1,5 @@ --- -title: Control.Name Property (Access) +title: Control.Name property (Access) keywords: vbaac10.chm10173 f1_keywords: - vbaac10.chm10173 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.Name Property (Access) +# Control.Name property (Access) You can use the Name property to determine the string expression that identifies the name of an object. Read-only **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.Object.md b/api/Access.Control.Object.md index 9b1a3fa8e5e..7a9d67af4aa 100644 --- a/api/Access.Control.Object.md +++ b/api/Access.Control.Object.md @@ -1,5 +1,5 @@ --- -title: Control.Object Property (Access) +title: Control.Object property (Access) keywords: vbaac10.chm10142 f1_keywords: - vbaac10.chm10142 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.Object Property (Access) +# Control.Object property (Access) You can use the **Object** property in Visual Basic to return a reference to the ActiveX object that is associated with a linked or embedded OLE object in a control. By using this reference, you can access the properties or invoke the methods of the OLE object. Read-only **Object**. ## Syntax - _expression_. `Object` +_expression_. `Object` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.ObjectVerbs.md b/api/Access.Control.ObjectVerbs.md index c6fcb5bfd78..aa11bfaf358 100644 --- a/api/Access.Control.ObjectVerbs.md +++ b/api/Access.Control.ObjectVerbs.md @@ -1,5 +1,5 @@ --- -title: Control.ObjectVerbs Property (Access) +title: Control.ObjectVerbs property (Access) keywords: vbaac10.chm10143 f1_keywords: - vbaac10.chm10143 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Control.ObjectVerbs Property (Access) +# Control.ObjectVerbs property (Access) You can use the **ObjectVerbs** property in Visual Basic to determine the list of verbs an OLE object supports. Read-only **String**. ## Syntax - _expression_. `ObjectVerbs`( ` _Index_` ) +_expression_. `ObjectVerbs`( ` _Index_` ) - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required|**Long**|An element in the array of supported verbs. This is a zero-based index, meaning zero (0) represents the first verb in the array, one (1) represents the second verb in the array, and so on.| diff --git a/api/Access.Control.OldValue.md b/api/Access.Control.OldValue.md index fc58099ebf6..32e2caed3d5 100644 --- a/api/Access.Control.OldValue.md +++ b/api/Access.Control.OldValue.md @@ -1,5 +1,5 @@ --- -title: Control.OldValue Property (Access) +title: Control.OldValue property (Access) keywords: vbaac10.chm10138 f1_keywords: - vbaac10.chm10138 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.OldValue Property (Access) +# Control.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.Pages.md b/api/Access.Control.Pages.md index 2107973e004..327a92637a1 100644 --- a/api/Access.Control.Pages.md +++ b/api/Access.Control.Pages.md @@ -1,5 +1,5 @@ --- -title: Control.Pages Property (Access) +title: Control.Pages property (Access) keywords: vbaac10.chm10149 f1_keywords: - vbaac10.chm10149 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.Pages Property (Access) +# Control.Pages property (Access) Returns a **[Pages](Access.Pages.md)** collection that represents the pages in the specified control that supports tabbed pages (for example, a **TabControl** object). Read-only. ## Syntax - _expression_. `Pages` +_expression_. `Pages` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Example diff --git a/api/Access.Control.Parent.md b/api/Access.Control.Parent.md index 073124fd8e6..71649169ad6 100644 --- a/api/Access.Control.Parent.md +++ b/api/Access.Control.Parent.md @@ -1,5 +1,5 @@ --- -title: Control.Parent Property (Access) +title: Control.Parent property (Access) keywords: vbaac10.chm10133 f1_keywords: - vbaac10.chm10133 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.Parent Property (Access) +# Control.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## See also diff --git a/api/Access.Control.Properties.md b/api/Access.Control.Properties.md index 761cb63fb81..ce8acfe01f1 100644 --- a/api/Access.Control.Properties.md +++ b/api/Access.Control.Properties.md @@ -1,5 +1,5 @@ --- -title: Control.Properties Property (Access) +title: Control.Properties property (Access) keywords: vbaac10.chm10144 f1_keywords: - vbaac10.chm10144 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.Properties Property (Access) +# Control.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.Report.md b/api/Access.Control.Report.md index 7f6739e1caa..254deb6afb4 100644 --- a/api/Access.Control.Report.md +++ b/api/Access.Control.Report.md @@ -1,5 +1,5 @@ --- -title: Control.Report Property (Access) +title: Control.Report property (Access) keywords: vbaac10.chm10140 f1_keywords: - vbaac10.chm10140 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.Report Property (Access) +# Control.Report property (Access) You can use the **Report** property to refer to a report or to refer to the report associated with a subreport control. Read-only **Report**. ## Syntax - _expression_. `Report` +_expression_. `Report` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.Requery.md b/api/Access.Control.Requery.md index 51856a9ed82..81b3d69d813 100644 --- a/api/Access.Control.Requery.md +++ b/api/Access.Control.Requery.md @@ -1,5 +1,5 @@ --- -title: Control.Requery Method (Access) +title: Control.Requery method (Access) keywords: vbaac10.chm10145 f1_keywords: - vbaac10.chm10145 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.Requery Method (Access) +# Control.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.RightPadding.md b/api/Access.Control.RightPadding.md index 67fe485c156..d7b30920736 100644 --- a/api/Access.Control.RightPadding.md +++ b/api/Access.Control.RightPadding.md @@ -1,5 +1,5 @@ --- -title: Control.RightPadding Property (Access) +title: Control.RightPadding property (Access) keywords: vbaac10.chm10158 f1_keywords: - vbaac10.chm10158 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.RightPadding Property (Access) +# Control.RightPadding property (Access) Gets or sets the amount of space (in inches) between the control and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## See also diff --git a/api/Access.Control.Selected.md b/api/Access.Control.Selected.md index 27d17fcb572..07d96d04176 100644 --- a/api/Access.Control.Selected.md +++ b/api/Access.Control.Selected.md @@ -1,5 +1,5 @@ --- -title: Control.Selected Property (Access) +title: Control.Selected property (Access) keywords: vbaac10.chm10137 f1_keywords: - vbaac10.chm10137 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Control.Selected Property (Access) +# Control.Selected property (Access) You can use the **Selected** property in Visual Basic to determine if an item is selected. Read/write **Long**. ## Syntax - _expression_. `Selected`( ` _lRow_` ) +_expression_. `Selected`( ` _lRow_` ) - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _lRow_|Required|**Long**|The item in the list box. The first item is represented by a zero (0), the second by a one (1), and so on.| diff --git a/api/Access.Control.SetFocus.md b/api/Access.Control.SetFocus.md index 0bd629c55f7..3953f529ce4 100644 --- a/api/Access.Control.SetFocus.md +++ b/api/Access.Control.SetFocus.md @@ -1,5 +1,5 @@ --- -title: Control.SetFocus Method (Access) +title: Control.SetFocus method (Access) keywords: vbaac10.chm10148 f1_keywords: - vbaac10.chm10148 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# Control.SetFocus Method (Access) +# Control.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.Control.SizeToFit.md b/api/Access.Control.SizeToFit.md index 501e75bdb70..40ead04536b 100644 --- a/api/Access.Control.SizeToFit.md +++ b/api/Access.Control.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: Control.SizeToFit Method (Access) +title: Control.SizeToFit method (Access) keywords: vbaac10.chm10146 f1_keywords: - vbaac10.chm10146 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.SizeToFit Method (Access) +# Control.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.SmartTags.md b/api/Access.Control.SmartTags.md index 060bba80e74..ebc50411a85 100644 --- a/api/Access.Control.SmartTags.md +++ b/api/Access.Control.SmartTags.md @@ -1,5 +1,5 @@ --- -title: Control.SmartTags Property (Access) +title: Control.SmartTags property (Access) keywords: vbaac10.chm10153 f1_keywords: - vbaac10.chm10153 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.SmartTags Property (Access) +# Control.SmartTags property (Access) Returns a **[SmartTags](Access.SmartTags.md)** collection that represents the collection of smart tags that have been added to a control. . ## Syntax - _expression_. `SmartTags` +_expression_. `SmartTags` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.TopPadding.md b/api/Access.Control.TopPadding.md index 83e18bab5ce..47208572e64 100644 --- a/api/Access.Control.TopPadding.md +++ b/api/Access.Control.TopPadding.md @@ -1,5 +1,5 @@ --- -title: Control.TopPadding Property (Access) +title: Control.TopPadding property (Access) keywords: vbaac10.chm10157 f1_keywords: - vbaac10.chm10157 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.TopPadding Property (Access) +# Control.TopPadding property (Access) Gets or sets the amount of space (in inches) between the control and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## See also diff --git a/api/Access.Control.Undo.md b/api/Access.Control.Undo.md index a1ad612cf6e..d3008baf8fc 100644 --- a/api/Access.Control.Undo.md +++ b/api/Access.Control.Undo.md @@ -1,5 +1,5 @@ --- -title: Control.Undo Method (Access) +title: Control.Undo method (Access) keywords: vbaac10.chm10134 f1_keywords: - vbaac10.chm10134 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.Undo Method (Access) +# Control.Undo method (Access) You can use the **Undo** method to reset a control or form when its value has been changed. ## Syntax - _expression_. `Undo` +_expression_. `Undo` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.VerticalAnchor.md b/api/Access.Control.VerticalAnchor.md index 3610d99e208..a02ec8769ca 100644 --- a/api/Access.Control.VerticalAnchor.md +++ b/api/Access.Control.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: Control.VerticalAnchor Property (Access) +title: Control.VerticalAnchor property (Access) keywords: vbaac10.chm10170 f1_keywords: - vbaac10.chm10170 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Control.VerticalAnchor Property (Access) +# Control.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified control is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents a [Control](Access.Control.md) object. +_expression_ A variable that represents a [Control](Access.Control.md) object. ## Remarks diff --git a/api/Access.Control.md b/api/Access.Control.md index d7f805ad7d0..fc6c4cab06f 100644 --- a/api/Access.Control.md +++ b/api/Access.Control.md @@ -1,5 +1,5 @@ --- -title: Control Object (Access) +title: Control object (Access) keywords: vbaac10.chm10174 f1_keywords: - vbaac10.chm10174 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Control Object (Access) +# Control object (Access) The **Control** object represents a control on a form, report, or section, within another control, or attached to another control. diff --git a/api/Access.Controls.Application.md b/api/Access.Controls.Application.md index 4f65d0891bd..eda58078e94 100644 --- a/api/Access.Controls.Application.md +++ b/api/Access.Controls.Application.md @@ -1,5 +1,5 @@ --- -title: Controls.Application Property (Access) +title: Controls.Application property (Access) keywords: vbaac10.chm10177 f1_keywords: - vbaac10.chm10177 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Controls.Application Property (Access) +# Controls.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [Controls](Access.Controls.md) object. +_expression_ A variable that represents a [Controls](Access.Controls.md) object. ## Remarks diff --git a/api/Access.Controls.Count.md b/api/Access.Controls.Count.md index 795ca4fa003..13100096390 100644 --- a/api/Access.Controls.Count.md +++ b/api/Access.Controls.Count.md @@ -1,5 +1,5 @@ --- -title: Controls.Count Property (Access) +title: Controls.Count property (Access) keywords: vbaac10.chm10180 f1_keywords: - vbaac10.chm10180 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Controls.Count Property (Access) +# Controls.Count property (Access) You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [Controls](Access.Controls.md) object. +_expression_ A variable that represents a [Controls](Access.Controls.md) object. ## Example diff --git a/api/Access.Controls.Item.md b/api/Access.Controls.Item.md index 2c3b539b71e..abd51867136 100644 --- a/api/Access.Controls.Item.md +++ b/api/Access.Controls.Item.md @@ -1,5 +1,5 @@ --- -title: Controls.Item Property (Access) +title: Controls.Item property (Access) keywords: vbaac10.chm10179 f1_keywords: - vbaac10.chm10179 @@ -11,25 +11,25 @@ ms.date: 06/08/2017 --- -# Controls.Item Property (Access) +# Controls.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **Object**. ## Syntax - _expression_. `Item`( ` _Index_` ) +_expression_. `Item`( ` _Index_` ) - _expression_ A variable that represents a [Controls](Access.Controls.md) object. +_expression_ A variable that represents a [Controls](Access.Controls.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| -| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| +| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| ## Remarks diff --git a/api/Access.Controls.Parent.md b/api/Access.Controls.Parent.md index 288224658c0..fe96f2f6e91 100644 --- a/api/Access.Controls.Parent.md +++ b/api/Access.Controls.Parent.md @@ -1,5 +1,5 @@ --- -title: Controls.Parent Property (Access) +title: Controls.Parent property (Access) keywords: vbaac10.chm10178 f1_keywords: - vbaac10.chm10178 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Controls.Parent Property (Access) +# Controls.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [Controls](Access.Controls.md) object. +_expression_ A variable that represents a [Controls](Access.Controls.md) object. ## See also diff --git a/api/Access.Controls.md b/api/Access.Controls.md index b20b3756be2..cc5200a2b0d 100644 --- a/api/Access.Controls.md +++ b/api/Access.Controls.md @@ -1,5 +1,5 @@ --- -title: Controls Object (Access) +title: Controls object (Access) keywords: vbaac10.chm10176 f1_keywords: - vbaac10.chm10176 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Controls Object (Access) +# Controls object (Access) The **Controls** collection contains all of the controls on a form, report, or subform, within another control, or attached to another control. The **Controls** collection is a member of a **[Form](Access.Form.md)**, **[Report](Access.Report.md)**, and **[SubForm](Access.SubForm.md)** objects. diff --git a/api/Access.CurrentData.AllDatabaseDiagrams.md b/api/Access.CurrentData.AllDatabaseDiagrams.md index f6a85e8aedd..9ca02c796d9 100644 --- a/api/Access.CurrentData.AllDatabaseDiagrams.md +++ b/api/Access.CurrentData.AllDatabaseDiagrams.md @@ -1,5 +1,5 @@ --- -title: CurrentData.AllDatabaseDiagrams Property (Access) +title: CurrentData.AllDatabaseDiagrams property (Access) keywords: vbaac10.chm12736 f1_keywords: - vbaac10.chm12736 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentData.AllDatabaseDiagrams Property (Access) +# CurrentData.AllDatabaseDiagrams property (Access) You can use the **AllDatabaseDiagrams** property to reference the **[AllDatabaseDiagrams](Access.AllDatabaseDiagrams.md)** collection and its related properties. Read-only **AllDatabaseDiagrams** object. ## Syntax - _expression_. `AllDatabaseDiagrams` +_expression_. `AllDatabaseDiagrams` - _expression_ A variable that represents a [CurrentData](Access.CurrentData.md) object. +_expression_ A variable that represents a [CurrentData](Access.CurrentData.md) object. ## See also diff --git a/api/Access.CurrentData.AllFunctions.md b/api/Access.CurrentData.AllFunctions.md index 9e56c0cc5a3..0497300e280 100644 --- a/api/Access.CurrentData.AllFunctions.md +++ b/api/Access.CurrentData.AllFunctions.md @@ -1,5 +1,5 @@ --- -title: CurrentData.AllFunctions Property (Access) +title: CurrentData.AllFunctions property (Access) keywords: vbaac10.chm12737 f1_keywords: - vbaac10.chm12737 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentData.AllFunctions Property (Access) +# CurrentData.AllFunctions property (Access) You can use the **AllFunctions** property to reference the **[AllFunctions](Access.AllFunctions.md)** collection and its related properties. Read-only **AllFunctions** object. ## Syntax - _expression_. `AllFunctions` +_expression_. `AllFunctions` - _expression_ A variable that represents a [CurrentData](Access.CurrentData.md) object. +_expression_ A variable that represents a [CurrentData](Access.CurrentData.md) object. ## See also diff --git a/api/Access.CurrentData.AllQueries.md b/api/Access.CurrentData.AllQueries.md index d2201d5f775..89bd98d5271 100644 --- a/api/Access.CurrentData.AllQueries.md +++ b/api/Access.CurrentData.AllQueries.md @@ -1,5 +1,5 @@ --- -title: CurrentData.AllQueries Property (Access) +title: CurrentData.AllQueries property (Access) keywords: vbaac10.chm12733 f1_keywords: - vbaac10.chm12733 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentData.AllQueries Property (Access) +# CurrentData.AllQueries property (Access) You can use the **AllQueries** property to reference the **[AllQueries](Access.AllQueries.md)** collection and its related properties. Read-only **AllQueries** object. ## Syntax - _expression_. `AllQueries` +_expression_. `AllQueries` - _expression_ A variable that represents a [CurrentData](Access.CurrentData.md) object. +_expression_ A variable that represents a [CurrentData](Access.CurrentData.md) object. ## See also diff --git a/api/Access.CurrentData.AllStoredProcedures.md b/api/Access.CurrentData.AllStoredProcedures.md index 53330c56dd9..08667ee3a94 100644 --- a/api/Access.CurrentData.AllStoredProcedures.md +++ b/api/Access.CurrentData.AllStoredProcedures.md @@ -1,5 +1,5 @@ --- -title: CurrentData.AllStoredProcedures Property (Access) +title: CurrentData.AllStoredProcedures property (Access) keywords: vbaac10.chm12735 f1_keywords: - vbaac10.chm12735 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentData.AllStoredProcedures Property (Access) +# CurrentData.AllStoredProcedures property (Access) You can use the **AllStoredProcedures** property to reference the **[AllStoredProcedures](Access.AllStoredProcedures.md)** collection and its related properties. Read-only **AllStoredProcedures** object. ## Syntax - _expression_. `AllStoredProcedures` +_expression_. `AllStoredProcedures` - _expression_ A variable that represents a [CurrentData](Access.CurrentData.md) object. +_expression_ A variable that represents a [CurrentData](Access.CurrentData.md) object. ## See also diff --git a/api/Access.CurrentData.AllTables.md b/api/Access.CurrentData.AllTables.md index eb84959a3f7..aa1a42d5744 100644 --- a/api/Access.CurrentData.AllTables.md +++ b/api/Access.CurrentData.AllTables.md @@ -1,5 +1,5 @@ --- -title: CurrentData.AllTables Property (Access) +title: CurrentData.AllTables property (Access) keywords: vbaac10.chm12732 f1_keywords: - vbaac10.chm12732 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentData.AllTables Property (Access) +# CurrentData.AllTables property (Access) You can use the **AllTables** property to reference the **[AllTables](Access.AllTables.md)** collection and its related properties. Read-only **AllTables** object. ## Syntax - _expression_. `AllTables` +_expression_. `AllTables` - _expression_ A variable that represents a [CurrentData](Access.CurrentData.md) object. +_expression_ A variable that represents a [CurrentData](Access.CurrentData.md) object. ## See also diff --git a/api/Access.CurrentData.AllViews.md b/api/Access.CurrentData.AllViews.md index be619215194..933f1673e3a 100644 --- a/api/Access.CurrentData.AllViews.md +++ b/api/Access.CurrentData.AllViews.md @@ -1,5 +1,5 @@ --- -title: CurrentData.AllViews Property (Access) +title: CurrentData.AllViews property (Access) keywords: vbaac10.chm12734 f1_keywords: - vbaac10.chm12734 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentData.AllViews Property (Access) +# CurrentData.AllViews property (Access) You can use the **AllViews** property to reference the **[AllViews](Access.AllViews.md)** collection and its related properties. Read-only **AllViews** object. ## Syntax - _expression_. `AllViews` +_expression_. `AllViews` - _expression_ A variable that represents a [CurrentData](Access.CurrentData.md) object. +_expression_ A variable that represents a [CurrentData](Access.CurrentData.md) object. ## See also diff --git a/api/Access.CurrentData.md b/api/Access.CurrentData.md index 7e238963041..d209dbd5133 100644 --- a/api/Access.CurrentData.md +++ b/api/Access.CurrentData.md @@ -1,5 +1,5 @@ --- -title: CurrentData Object (Access) +title: CurrentData object (Access) keywords: vbaac10.chm12740 f1_keywords: - vbaac10.chm12740 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# CurrentData Object (Access) +# CurrentData object (Access) The **CurrentData** object refers to the objects stored in the current database by the source (server) application. diff --git a/api/Access.CurrentProject.AccessConnection.md b/api/Access.CurrentProject.AccessConnection.md index 37482486df0..1d3a5131ecf 100644 --- a/api/Access.CurrentProject.AccessConnection.md +++ b/api/Access.CurrentProject.AccessConnection.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.AccessConnection Property (Access) +title: CurrentProject.AccessConnection property (Access) keywords: vbaac10.chm12726 f1_keywords: - vbaac10.chm12726 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.AccessConnection Property (Access) +# CurrentProject.AccessConnection property (Access) You can use the **AccessConnection** property to return a reference to the current Microsoft ActiveX Data Objects (ADO) **Connection** object and its related properties. Read-only **Connection**. ## Syntax - _expression_. `AccessConnection` +_expression_. `AccessConnection` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## Remarks diff --git a/api/Access.CurrentProject.AddSharedImage.md b/api/Access.CurrentProject.AddSharedImage.md index c8ed9b4c710..e57060e4396 100644 --- a/api/Access.CurrentProject.AddSharedImage.md +++ b/api/Access.CurrentProject.AddSharedImage.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.AddSharedImage Method (Access) +title: CurrentProject.AddSharedImage method (Access) keywords: vbaac10.chm14660 f1_keywords: - vbaac10.chm14660 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CurrentProject.AddSharedImage Method (Access) +# CurrentProject.AddSharedImage method (Access) Imports the the specified image into the database and adds it to the **[SharedResources](Access.SharedResources.md)** collection. ## Syntax - _expression_. `AddSharedImage`( ` _SharedImageName_`, ` _FileName_` ) +_expression_. `AddSharedImage`( ` _SharedImageName_`, ` _FileName_` ) - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SharedImageName_|Required|**String**|Specifies the string used to identify the image in the collection.| | _FileName_|Required|**String**|Specifies the full name and path to the image file.| diff --git a/api/Access.CurrentProject.AllForms.md b/api/Access.CurrentProject.AllForms.md index f21e90178b2..f3ce1602ce4 100644 --- a/api/Access.CurrentProject.AllForms.md +++ b/api/Access.CurrentProject.AllForms.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.AllForms Property (Access) +title: CurrentProject.AllForms property (Access) keywords: vbaac10.chm12707 f1_keywords: - vbaac10.chm12707 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.AllForms Property (Access) +# CurrentProject.AllForms property (Access) You can use the **AllForms** property to reference the **[AllForms](Access.AllForms.md)** collection and its related properties. Read-only **AllForms** object. ## Syntax - _expression_. `AllForms` +_expression_. `AllForms` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## See also diff --git a/api/Access.CurrentProject.AllMacros.md b/api/Access.CurrentProject.AllMacros.md index f1420555e85..eb7a202b997 100644 --- a/api/Access.CurrentProject.AllMacros.md +++ b/api/Access.CurrentProject.AllMacros.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.AllMacros Property (Access) +title: CurrentProject.AllMacros property (Access) keywords: vbaac10.chm12709 f1_keywords: - vbaac10.chm12709 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.AllMacros Property (Access) +# CurrentProject.AllMacros property (Access) You can use the **AllMacros** property to reference the **[AllMacros](Access.allmacros.md)** collection and its related properties. Read-only **AllMacros** object. ## Syntax - _expression_. `AllMacros` +_expression_. `AllMacros` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## See also diff --git a/api/Access.CurrentProject.AllModules.md b/api/Access.CurrentProject.AllModules.md index d7515f2f4f5..825d3175854 100644 --- a/api/Access.CurrentProject.AllModules.md +++ b/api/Access.CurrentProject.AllModules.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.AllModules Property (Access) +title: CurrentProject.AllModules property (Access) keywords: vbaac10.chm12710 f1_keywords: - vbaac10.chm12710 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.AllModules Property (Access) +# CurrentProject.AllModules property (Access) You can use the **AllModules** property to reference the **[AllModules](Access.AllModules.md)** collection and its related properties. Read-only **AllModules** object. ## Syntax - _expression_. `AllModules` +_expression_. `AllModules` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## See also diff --git a/api/Access.CurrentProject.AllReports.md b/api/Access.CurrentProject.AllReports.md index 2022bcf75a3..de25f71e42e 100644 --- a/api/Access.CurrentProject.AllReports.md +++ b/api/Access.CurrentProject.AllReports.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.AllReports Property (Access) +title: CurrentProject.AllReports property (Access) keywords: vbaac10.chm12708 f1_keywords: - vbaac10.chm12708 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.AllReports Property (Access) +# CurrentProject.AllReports property (Access) You can use the **AllReports** property to reference the **[AllReports](Access.AllReports.md)** collection and its related properties. Read-only **AllReports** object. ## Syntax - _expression_. `AllReports` +_expression_. `AllReports` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## See also diff --git a/api/Access.CurrentProject.Application.md b/api/Access.CurrentProject.Application.md index e9c31210724..9b18563c9c0 100644 --- a/api/Access.CurrentProject.Application.md +++ b/api/Access.CurrentProject.Application.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.Application Property (Access) +title: CurrentProject.Application property (Access) keywords: vbaac10.chm12722 f1_keywords: - vbaac10.chm12722 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.Application Property (Access) +# CurrentProject.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## Remarks diff --git a/api/Access.CurrentProject.BaseConnectionString.md b/api/Access.CurrentProject.BaseConnectionString.md index 16c9f561cb4..a439e297d48 100644 --- a/api/Access.CurrentProject.BaseConnectionString.md +++ b/api/Access.CurrentProject.BaseConnectionString.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.BaseConnectionString Property (Access) +title: CurrentProject.BaseConnectionString property (Access) keywords: vbaac10.chm12713 f1_keywords: - vbaac10.chm12713 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.BaseConnectionString Property (Access) +# CurrentProject.BaseConnectionString property (Access) You can use the **BaseConnectionString** property to return the base connection string for the specified object. Read-only **String**. ## Syntax - _expression_. `BaseConnectionString` +_expression_. `BaseConnectionString` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## Remarks diff --git a/api/Access.CurrentProject.CloseConnection.md b/api/Access.CurrentProject.CloseConnection.md index 24fc591037b..e2ccb8bcaef 100644 --- a/api/Access.CurrentProject.CloseConnection.md +++ b/api/Access.CurrentProject.CloseConnection.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.CloseConnection Method (Access) +title: CurrentProject.CloseConnection method (Access) keywords: vbaac10.chm12716 f1_keywords: - vbaac10.chm12716 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# CurrentProject.CloseConnection Method (Access) +# CurrentProject.CloseConnection method (Access) You can use the **CloseConnection** method to close the current connection between the **CurrentProject** object in a Microsoft Access project (.adp) or Access database and the database specified in the project's base connection string. ## Syntax - _expression_. `CloseConnection` +_expression_. `CloseConnection` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.CurrentProject.Connection.md b/api/Access.CurrentProject.Connection.md index ddf2a00113e..92d736cb79b 100644 --- a/api/Access.CurrentProject.Connection.md +++ b/api/Access.CurrentProject.Connection.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.Connection Property (Access) +title: CurrentProject.Connection property (Access) keywords: vbaac10.chm12720 f1_keywords: - vbaac10.chm12720 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.Connection Property (Access) +# CurrentProject.Connection property (Access) You can use the **Connection** property to return a reference to the current ActiveX Data Objects (ADO) **Connection** object and its related properties. Read-only **Connection**. ## Syntax - _expression_. `Connection` +_expression_. `Connection` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## Remarks diff --git a/api/Access.CurrentProject.FileFormat.md b/api/Access.CurrentProject.FileFormat.md index 29a7d061845..99b6156f6ba 100644 --- a/api/Access.CurrentProject.FileFormat.md +++ b/api/Access.CurrentProject.FileFormat.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.FileFormat Property (Access) +title: CurrentProject.FileFormat property (Access) keywords: vbaac10.chm12725 f1_keywords: - vbaac10.chm12725 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.FileFormat Property (Access) +# CurrentProject.FileFormat property (Access) Returns an **[AcFileFormat](Access.AcFileFormat.md)** constant indicating the Microsoft Access version format of the specified project. Read-only. ## Syntax - _expression_. `FileFormat` +_expression_. `FileFormat` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## Remarks diff --git a/api/Access.CurrentProject.FullName.md b/api/Access.CurrentProject.FullName.md index 527d5a35e6c..284ba2e70fb 100644 --- a/api/Access.CurrentProject.FullName.md +++ b/api/Access.CurrentProject.FullName.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.FullName Property (Access) +title: CurrentProject.FullName property (Access) keywords: vbaac10.chm12719 f1_keywords: - vbaac10.chm12719 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.FullName Property (Access) +# CurrentProject.FullName property (Access) Sets or returns the full path (including file name) of a specific object. Read-only **String**. ## Syntax - _expression_. `FullName` +_expression_. `FullName` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## See also diff --git a/api/Access.CurrentProject.ImportExportSpecifications.md b/api/Access.CurrentProject.ImportExportSpecifications.md index 28a26202274..89e2ff6ceda 100644 --- a/api/Access.CurrentProject.ImportExportSpecifications.md +++ b/api/Access.CurrentProject.ImportExportSpecifications.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.ImportExportSpecifications Property (Access) +title: CurrentProject.ImportExportSpecifications property (Access) keywords: vbaac10.chm12729 f1_keywords: - vbaac10.chm12729 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.ImportExportSpecifications Property (Access) +# CurrentProject.ImportExportSpecifications property (Access) Returns a **[ImportExportSpecifications](Access.ImportExportSpecifications.md)** collection that represents the collection of saved import or export operations for the specified object. Read-only. ## Syntax - _expression_. `ImportExportSpecifications` +_expression_. `ImportExportSpecifications` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## See also diff --git a/api/Access.CurrentProject.IsConnected.md b/api/Access.CurrentProject.IsConnected.md index c2cdae58bad..688f77580ca 100644 --- a/api/Access.CurrentProject.IsConnected.md +++ b/api/Access.CurrentProject.IsConnected.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.IsConnected Property (Access) +title: CurrentProject.IsConnected property (Access) keywords: vbaac10.chm12714 f1_keywords: - vbaac10.chm12714 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.IsConnected Property (Access) +# CurrentProject.IsConnected property (Access) You can use the **IsConnected** property to determine if the **[CurrentProject](Access.CurrentProject.md)** object is currently connected. Read-only **Boolean**. ## Syntax - _expression_. `IsConnected` +_expression_. `IsConnected` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## See also diff --git a/api/Access.CurrentProject.IsTrusted.md b/api/Access.CurrentProject.IsTrusted.md index 176e6111e58..01d2ea6b8f9 100644 --- a/api/Access.CurrentProject.IsTrusted.md +++ b/api/Access.CurrentProject.IsTrusted.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.IsTrusted Property (Access) +title: CurrentProject.IsTrusted property (Access) keywords: vbaac10.chm12730 f1_keywords: - vbaac10.chm12730 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.IsTrusted Property (Access) +# CurrentProject.IsTrusted property (Access) Gets whether or not macros and Visual Basic for Applications (VBA) code have been enabled in the current project. Read-only **Boolean**. ## Syntax - _expression_. `IsTrusted` +_expression_. `IsTrusted` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## Example diff --git a/api/Access.CurrentProject.IsWeb.md b/api/Access.CurrentProject.IsWeb.md index e63dee7604c..9cb62a5c6b5 100644 --- a/api/Access.CurrentProject.IsWeb.md +++ b/api/Access.CurrentProject.IsWeb.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.IsWeb Property (Access) +title: CurrentProject.IsWeb property (Access) keywords: vbaac10.chm14677 f1_keywords: - vbaac10.chm14677 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.IsWeb Property (Access) +# CurrentProject.IsWeb property (Access) Gets whether the database is a Web database. Read-only **Boolean**. ## Syntax - _expression_. `IsWeb` +_expression_. `IsWeb` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## Remarks diff --git a/api/Access.CurrentProject.Name.md b/api/Access.CurrentProject.Name.md index 9b292cbd4e0..20a75ad933f 100644 --- a/api/Access.CurrentProject.Name.md +++ b/api/Access.CurrentProject.Name.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.Name Property (Access) +title: CurrentProject.Name property (Access) keywords: vbaac10.chm12717 f1_keywords: - vbaac10.chm12717 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.Name Property (Access) +# CurrentProject.Name property (Access) You can use the **Name** property to determine the string expression that identifies the name of an object. Read-only **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## Remarks diff --git a/api/Access.CurrentProject.OpenConnection.md b/api/Access.CurrentProject.OpenConnection.md index 2ba7eb1ab0e..80b666aecf2 100644 --- a/api/Access.CurrentProject.OpenConnection.md +++ b/api/Access.CurrentProject.OpenConnection.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.OpenConnection Method (Access) +title: CurrentProject.OpenConnection method (Access) keywords: vbaac10.chm12715 f1_keywords: - vbaac10.chm12715 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CurrentProject.OpenConnection Method (Access) +# CurrentProject.OpenConnection method (Access) You can use the **OpenConnection** method to open an ADO connection to an existing Microsoft Access project (.adp) or Access database as the current Access project or database in the Microsoft Access window. ## Syntax - _expression_. `OpenConnection`( ` _BaseConnectionString_`, ` _UserID_`, ` _Password_` ) +_expression_. `OpenConnection`( ` _BaseConnectionString_`, ` _UserID_`, ` _Password_` ) - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _BaseConnectionString_|Optional|**Variant**|A string expression that is the base connection string of the database.| | _UserID_|Optional|**Variant**|A string expression that is the name of the existing Access project, including the path name and the file name extension. If your network supports it, you can also specify a network path in the following form: \\Server\Share\Folder\Filename.adp| diff --git a/api/Access.CurrentProject.Parent.md b/api/Access.CurrentProject.Parent.md index 02defd5765b..116e0772e60 100644 --- a/api/Access.CurrentProject.Parent.md +++ b/api/Access.CurrentProject.Parent.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.Parent Property (Access) +title: CurrentProject.Parent property (Access) keywords: vbaac10.chm12723 f1_keywords: - vbaac10.chm12723 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.Parent Property (Access) +# CurrentProject.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## See also diff --git a/api/Access.CurrentProject.Path.md b/api/Access.CurrentProject.Path.md index d64e66e1b24..d8f90eaa9e9 100644 --- a/api/Access.CurrentProject.Path.md +++ b/api/Access.CurrentProject.Path.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.Path Property (Access) +title: CurrentProject.Path property (Access) keywords: vbaac10.chm12718 f1_keywords: - vbaac10.chm12718 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.Path Property (Access) +# CurrentProject.Path property (Access) You can use the **Path** property to determine the location where data is stored for a Microsoft Access project (.adp) or Microsoft Access database. Read-only **String**. ## Syntax - _expression_. `Path` +_expression_. `Path` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## Remarks diff --git a/api/Access.CurrentProject.ProjectType.md b/api/Access.CurrentProject.ProjectType.md index 84a7c32c407..6d825a4db3f 100644 --- a/api/Access.CurrentProject.ProjectType.md +++ b/api/Access.CurrentProject.ProjectType.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.ProjectType Property (Access) +title: CurrentProject.ProjectType property (Access) keywords: vbaac10.chm12712 f1_keywords: - vbaac10.chm12712 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.ProjectType Property (Access) +# CurrentProject.ProjectType property (Access) You can use the **ProjectType** property to determine the type of project that is currently open. Read-only **[AcProjectType](Access.AcProjectType.md)**. ## Syntax - _expression_. `ProjectType` +_expression_. `ProjectType` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## See also diff --git a/api/Access.CurrentProject.Properties.md b/api/Access.CurrentProject.Properties.md index 08649df827b..1e9436c21d9 100644 --- a/api/Access.CurrentProject.Properties.md +++ b/api/Access.CurrentProject.Properties.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.Properties Property (Access) +title: CurrentProject.Properties property (Access) keywords: vbaac10.chm12721 f1_keywords: - vbaac10.chm12721 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.Properties Property (Access) +# CurrentProject.Properties property (Access) Returns a reference to a **[CurrentProject](Access.CurrentProject.md)** object's **[AccessObjectProperties](Access.AccessObjectProperties.md)** collection. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## Remarks diff --git a/api/Access.CurrentProject.RemovePersonalInformation.md b/api/Access.CurrentProject.RemovePersonalInformation.md index e92a3276fc7..718cda9ed09 100644 --- a/api/Access.CurrentProject.RemovePersonalInformation.md +++ b/api/Access.CurrentProject.RemovePersonalInformation.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.RemovePersonalInformation Property (Access) +title: CurrentProject.RemovePersonalInformation property (Access) keywords: vbaac10.chm12724 f1_keywords: - vbaac10.chm12724 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.RemovePersonalInformation Property (Access) +# CurrentProject.RemovePersonalInformation property (Access) Returns or sets a **Boolean** indicating whether personal information about the user is stored in the specified project. **True** if personal information is removed. Read-write. ## Syntax - _expression_. `RemovePersonalInformation` +_expression_. `RemovePersonalInformation` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## See also diff --git a/api/Access.CurrentProject.Resources.md b/api/Access.CurrentProject.Resources.md index 79c487e54b0..bb13ead0244 100644 --- a/api/Access.CurrentProject.Resources.md +++ b/api/Access.CurrentProject.Resources.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.Resources Property (Access) +title: CurrentProject.Resources property (Access) keywords: vbaac10.chm14653 f1_keywords: - vbaac10.chm14653 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.Resources Property (Access) +# CurrentProject.Resources property (Access) Gets the **[SharedResources](Access.SharedResources.md)** collection for the specified object. Read-only **SharedResources**. ## Syntax - _expression_. `Resources` +_expression_. `Resources` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## See also diff --git a/api/Access.CurrentProject.UpdateDependencyInfo.md b/api/Access.CurrentProject.UpdateDependencyInfo.md index 85b377a9beb..9a76b8646a3 100644 --- a/api/Access.CurrentProject.UpdateDependencyInfo.md +++ b/api/Access.CurrentProject.UpdateDependencyInfo.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.UpdateDependencyInfo Method (Access) +title: CurrentProject.UpdateDependencyInfo method (Access) keywords: vbaac10.chm12727 f1_keywords: - vbaac10.chm12727 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.UpdateDependencyInfo Method (Access) +# CurrentProject.UpdateDependencyInfo method (Access) Updates the dependency information for the database. ## Syntax - _expression_. `UpdateDependencyInfo` +_expression_. `UpdateDependencyInfo` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## Remarks diff --git a/api/Access.CurrentProject.WebSite.md b/api/Access.CurrentProject.WebSite.md index bd92930ccd6..218fa8550d4 100644 --- a/api/Access.CurrentProject.WebSite.md +++ b/api/Access.CurrentProject.WebSite.md @@ -1,5 +1,5 @@ --- -title: CurrentProject.WebSite Property (Access) +title: CurrentProject.WebSite property (Access) keywords: vbaac10.chm14663 f1_keywords: - vbaac10.chm14663 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CurrentProject.WebSite Property (Access) +# CurrentProject.WebSite property (Access) Gets the Uniform Resource Locator (URL) of the Web site to which the database has been published. Read-only **String**. ## Syntax - _expression_. `WebSite` +_expression_. `WebSite` - _expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. +_expression_ A variable that represents a [CurrentProject](Access.CurrentProject.md) object. ## Remarks diff --git a/api/Access.CurrentProject.md b/api/Access.CurrentProject.md index 95298504253..f4b6e854d87 100644 --- a/api/Access.CurrentProject.md +++ b/api/Access.CurrentProject.md @@ -1,5 +1,5 @@ --- -title: CurrentProject Object (Access) +title: CurrentProject object (Access) keywords: vbaac10.chm12739 f1_keywords: - vbaac10.chm12739 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# CurrentProject Object (Access) +# CurrentProject object (Access) The **CurrentProject** object refers to the project for the current Microsoft Access project (.adp) or Access database. diff --git a/api/Access.CustomControl.About.md b/api/Access.CustomControl.About.md index 2939c72fe70..88d63c5c197 100644 --- a/api/Access.CustomControl.About.md +++ b/api/Access.CustomControl.About.md @@ -1,5 +1,5 @@ --- -title: CustomControl.About Property (Access) +title: CustomControl.About property (Access) keywords: vbaac10.chm12048 f1_keywords: - vbaac10.chm12048 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.About Property (Access) +# CustomControl.About property (Access) Returns or sets a **String** representing version and copyright information for an ActiveX control. Read/write. ## Syntax - _expression_. `About` +_expression_. `About` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Application.md b/api/Access.CustomControl.Application.md index a0d0bf426f0..e0815fc88fe 100644 --- a/api/Access.CustomControl.Application.md +++ b/api/Access.CustomControl.Application.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Application Property (Access) +title: CustomControl.Application property (Access) keywords: vbaac10.chm11995 f1_keywords: - vbaac10.chm11995 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Application Property (Access) +# CustomControl.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.BorderColor.md b/api/Access.CustomControl.BorderColor.md index f1823a34430..feffc55352f 100644 --- a/api/Access.CustomControl.BorderColor.md +++ b/api/Access.CustomControl.BorderColor.md @@ -1,5 +1,5 @@ --- -title: CustomControl.BorderColor Property (Access) +title: CustomControl.BorderColor property (Access) keywords: vbaac10.chm12027 f1_keywords: - vbaac10.chm12027 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.BorderColor Property (Access) +# CustomControl.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.BorderShade.md b/api/Access.CustomControl.BorderShade.md index 8c603d323da..c57509f21eb 100644 --- a/api/Access.CustomControl.BorderShade.md +++ b/api/Access.CustomControl.BorderShade.md @@ -1,5 +1,5 @@ --- -title: CustomControl.BorderShade Property (Access) +title: CustomControl.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.BorderShade Property (Access) +# CustomControl.BorderShade property (Access) Gets or sets the shade that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.BorderStyle.md b/api/Access.CustomControl.BorderStyle.md index d091d164063..6a5d762e0ac 100644 --- a/api/Access.CustomControl.BorderStyle.md +++ b/api/Access.CustomControl.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: CustomControl.BorderStyle Property (Access) +title: CustomControl.BorderStyle property (Access) keywords: vbaac10.chm12025 f1_keywords: - vbaac10.chm12025 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.BorderStyle Property (Access) +# CustomControl.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.BorderThemeColorIndex.md b/api/Access.CustomControl.BorderThemeColorIndex.md index c0991cc400f..7d4e12721a9 100644 --- a/api/Access.CustomControl.BorderThemeColorIndex.md +++ b/api/Access.CustomControl.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: CustomControl.BorderThemeColorIndex Property (Access) +title: CustomControl.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.BorderThemeColorIndex Property (Access) +# CustomControl.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.BorderTint.md b/api/Access.CustomControl.BorderTint.md index 6a2760cfaed..78275126516 100644 --- a/api/Access.CustomControl.BorderTint.md +++ b/api/Access.CustomControl.BorderTint.md @@ -1,5 +1,5 @@ --- -title: CustomControl.BorderTint Property (Access) +title: CustomControl.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.BorderTint Property (Access) +# CustomControl.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.BorderWidth.md b/api/Access.CustomControl.BorderWidth.md index 1e476d7ada5..a0eb6453f95 100644 --- a/api/Access.CustomControl.BorderWidth.md +++ b/api/Access.CustomControl.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: CustomControl.BorderWidth Property (Access) +title: CustomControl.BorderWidth property (Access) keywords: vbaac10.chm12028 f1_keywords: - vbaac10.chm12028 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.BorderWidth Property (Access) +# CustomControl.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.BottomPadding.md b/api/Access.CustomControl.BottomPadding.md index 637e77e4fd4..f9fc32ea6a1 100644 --- a/api/Access.CustomControl.BottomPadding.md +++ b/api/Access.CustomControl.BottomPadding.md @@ -1,5 +1,5 @@ --- -title: CustomControl.BottomPadding Property (Access) +title: CustomControl.BottomPadding property (Access) keywords: vbaac10.chm10527 f1_keywords: - vbaac10.chm10527 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.BottomPadding Property (Access) +# CustomControl.BottomPadding property (Access) Gets or sets the amount of space (in inches) between the list box and its bottom gridline. Read/write **Integer**. ## Syntax - _expression_. `BottomPadding` +_expression_. `BottomPadding` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## See also diff --git a/api/Access.CustomControl.Cancel.md b/api/Access.CustomControl.Cancel.md index ff8a6d55fd9..b8f454bcd5c 100644 --- a/api/Access.CustomControl.Cancel.md +++ b/api/Access.CustomControl.Cancel.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Cancel Property (Access) +title: CustomControl.Cancel property (Access) keywords: vbaac10.chm12046 f1_keywords: - vbaac10.chm12046 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Cancel Property (Access) +# CustomControl.Cancel property (Access) You can use the **Cancel** property to specify whether a command button is also the Cancel button on a form. Read/write **Boolean**. ## Syntax - _expression_. `Cancel` +_expression_. `Cancel` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Class.md b/api/Access.CustomControl.Class.md index 43c2508716e..43996238b91 100644 --- a/api/Access.CustomControl.Class.md +++ b/api/Access.CustomControl.Class.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Class Property (Access) +title: CustomControl.Class property (Access) keywords: vbaac10.chm12012 f1_keywords: - vbaac10.chm12012 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Class Property (Access) +# CustomControl.Class property (Access) You can use the **Class** property to specify or determine the class name of an embeddedOLE object. Read/write **String**. ## Syntax - _expression_. `Class` +_expression_. `Class` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.ControlSource.md b/api/Access.CustomControl.ControlSource.md index c6591e091aa..08222f15232 100644 --- a/api/Access.CustomControl.ControlSource.md +++ b/api/Access.CustomControl.ControlSource.md @@ -1,5 +1,5 @@ --- -title: CustomControl.ControlSource Property (Access) +title: CustomControl.ControlSource property (Access) keywords: vbaac10.chm12009 f1_keywords: - vbaac10.chm12009 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.ControlSource Property (Access) +# CustomControl.ControlSource property (Access) You can use the **ControlSource** property to specify what data appears in a control. You can display and edit data bound to a field in a table, query, or SQL statement. You can also display the result of an expression. Read/write **String**. ## Syntax - _expression_. `ControlSource` +_expression_. `ControlSource` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.ControlTipText.md b/api/Access.CustomControl.ControlTipText.md index f874d67dae3..a75b8f51c71 100644 --- a/api/Access.CustomControl.ControlTipText.md +++ b/api/Access.CustomControl.ControlTipText.md @@ -1,5 +1,5 @@ --- -title: CustomControl.ControlTipText Property (Access) +title: CustomControl.ControlTipText property (Access) keywords: vbaac10.chm12030 f1_keywords: - vbaac10.chm12030 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.ControlTipText Property (Access) +# CustomControl.ControlTipText property (Access) You can use the **ControlTipText** property to specify the text that appears in a ScreenTip when you hold the mouse pointer over a control. Read/write **String**. ## Syntax - _expression_. `ControlTipText` +_expression_. `ControlTipText` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.ControlType.md b/api/Access.CustomControl.ControlType.md index 42656c0cfc2..e4ef58e7c42 100644 --- a/api/Access.CustomControl.ControlType.md +++ b/api/Access.CustomControl.ControlType.md @@ -1,5 +1,5 @@ --- -title: CustomControl.ControlType Property (Access) +title: CustomControl.ControlType property (Access) keywords: vbaac10.chm12008 f1_keywords: - vbaac10.chm12008 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.ControlType Property (Access) +# CustomControl.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Controls.md b/api/Access.CustomControl.Controls.md index 1d20a84162a..139e994f073 100644 --- a/api/Access.CustomControl.Controls.md +++ b/api/Access.CustomControl.Controls.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Controls Property (Access) +title: CustomControl.Controls property (Access) keywords: vbaac10.chm12004 f1_keywords: - vbaac10.chm12004 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Controls Property (Access) +# CustomControl.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Custom.md b/api/Access.CustomControl.Custom.md index 259cd3e2195..9366101dbe5 100644 --- a/api/Access.CustomControl.Custom.md +++ b/api/Access.CustomControl.Custom.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Custom Property (Access) +title: CustomControl.Custom property (Access) keywords: vbaac10.chm12047 f1_keywords: - vbaac10.chm12047 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Custom Property (Access) +# CustomControl.Custom property (Access) Returns or sets a **String** representing the custom properties dialog box for an ActiveX control. Read/write. ## Syntax - _expression_. `Custom` +_expression_. `Custom` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Default.md b/api/Access.CustomControl.Default.md index 46b2e575427..b6dbb08b2b7 100644 --- a/api/Access.CustomControl.Default.md +++ b/api/Access.CustomControl.Default.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Default Property (Access) +title: CustomControl.Default property (Access) keywords: vbaac10.chm12045 f1_keywords: - vbaac10.chm12045 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Default Property (Access) +# CustomControl.Default property (Access) You can use the **Default** property to specify whether a command button is the default button on a form. Read/write **Boolean**. ## Syntax - _expression_. `Default` +_expression_. `Default` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.DisplayWhen.md b/api/Access.CustomControl.DisplayWhen.md index c1aa1052b88..b176cd72e43 100644 --- a/api/Access.CustomControl.DisplayWhen.md +++ b/api/Access.CustomControl.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: CustomControl.DisplayWhen Property (Access) +title: CustomControl.DisplayWhen property (Access) keywords: vbaac10.chm12014 f1_keywords: - vbaac10.chm12014 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.DisplayWhen Property (Access) +# CustomControl.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Enabled.md b/api/Access.CustomControl.Enabled.md index 54ca300071f..41a7e002585 100644 --- a/api/Access.CustomControl.Enabled.md +++ b/api/Access.CustomControl.Enabled.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Enabled Property (Access) +title: CustomControl.Enabled property (Access) keywords: vbaac10.chm12015 f1_keywords: - vbaac10.chm12015 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Enabled Property (Access) +# CustomControl.Enabled property (Access) You can use the **Enabled** property to set or return the status of the conditional format in the **[FormatCondition](Access.FormatCondition.md)** object. Read/write **Boolean**. ## Syntax - _expression_. `Enabled` +_expression_. `Enabled` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Enter.md b/api/Access.CustomControl.Enter.md index dcff5dda4a2..bd2fc0d45e7 100644 --- a/api/Access.CustomControl.Enter.md +++ b/api/Access.CustomControl.Enter.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Enter Event (Access) +title: CustomControl.Enter event (Access) keywords: vbaac10.chm14115 f1_keywords: - vbaac10.chm14115 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Enter Event (Access) +# CustomControl.Enter event (Access) The **Enter** event occurs before a control actually receives the focus from a control on the same form or report. ## Syntax - _expression_. `Enter` +_expression_. `Enter` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.EventProcPrefix.md b/api/Access.CustomControl.EventProcPrefix.md index a53b1e74d23..efa64c84ca2 100644 --- a/api/Access.CustomControl.EventProcPrefix.md +++ b/api/Access.CustomControl.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: CustomControl.EventProcPrefix Property (Access) +title: CustomControl.EventProcPrefix property (Access) keywords: vbaac10.chm12006 f1_keywords: - vbaac10.chm12006 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.EventProcPrefix Property (Access) +# CustomControl.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Exit.md b/api/Access.CustomControl.Exit.md index 05fbda22f85..83cdb99e270 100644 --- a/api/Access.CustomControl.Exit.md +++ b/api/Access.CustomControl.Exit.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Exit Event (Access) +title: CustomControl.Exit event (Access) keywords: vbaac10.chm14116 f1_keywords: - vbaac10.chm14116 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CustomControl.Exit Event (Access) +# CustomControl.Exit event (Access) The **Exit** event occurs just before a control loses the focus to another control on the same form or report. ## Syntax - _expression_. `Exit`( ` _Cancel_` ) +_expression_. `Exit`( ` _Cancel_` ) - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|Set to **True** to cancel the event.| diff --git a/api/Access.CustomControl.GotFocus.md b/api/Access.CustomControl.GotFocus.md index 0ab1b86966d..e50003c6af1 100644 --- a/api/Access.CustomControl.GotFocus.md +++ b/api/Access.CustomControl.GotFocus.md @@ -1,5 +1,5 @@ --- -title: CustomControl.GotFocus Event (Access) +title: CustomControl.GotFocus event (Access) keywords: vbaac10.chm14117 f1_keywords: - vbaac10.chm14117 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.GotFocus Event (Access) +# CustomControl.GotFocus event (Access) The **GotFocus** event occurs when the specified object receives the focus. ## Syntax - _expression_. `GotFocus` +_expression_. `GotFocus` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.GridlineColor.md b/api/Access.CustomControl.GridlineColor.md index e30b4a2afca..9cdd06c91b0 100644 --- a/api/Access.CustomControl.GridlineColor.md +++ b/api/Access.CustomControl.GridlineColor.md @@ -1,5 +1,5 @@ --- -title: CustomControl.GridlineColor Property (Access) +title: CustomControl.GridlineColor property (Access) keywords: vbaac10.chm10536 f1_keywords: - vbaac10.chm10536 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.GridlineColor Property (Access) +# CustomControl.GridlineColor property (Access) Gets or sets the color of the gridline for the specified list box. Read/write **Long**. ## Syntax - _expression_. `GridlineColor` +_expression_. `GridlineColor` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.GridlineStyleBottom.md b/api/Access.CustomControl.GridlineStyleBottom.md index 0503d799848..51e99ad5625 100644 --- a/api/Access.CustomControl.GridlineStyleBottom.md +++ b/api/Access.CustomControl.GridlineStyleBottom.md @@ -1,5 +1,5 @@ --- -title: CustomControl.GridlineStyleBottom Property (Access) +title: CustomControl.GridlineStyleBottom property (Access) keywords: vbaac10.chm10531 f1_keywords: - vbaac10.chm10531 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.GridlineStyleBottom Property (Access) +# CustomControl.GridlineStyleBottom property (Access) Gets or sets the bottom gridline style of the specified list box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleBottom` +_expression_. `GridlineStyleBottom` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.GridlineStyleLeft.md b/api/Access.CustomControl.GridlineStyleLeft.md index d30c4023f44..f1f80e55c98 100644 --- a/api/Access.CustomControl.GridlineStyleLeft.md +++ b/api/Access.CustomControl.GridlineStyleLeft.md @@ -1,5 +1,5 @@ --- -title: CustomControl.GridlineStyleLeft Property (Access) +title: CustomControl.GridlineStyleLeft property (Access) keywords: vbaac10.chm10528 f1_keywords: - vbaac10.chm10528 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.GridlineStyleLeft Property (Access) +# CustomControl.GridlineStyleLeft property (Access) Gets or sets the width of the bottom gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleLeft` +_expression_. `GridlineStyleLeft` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.GridlineStyleRight.md b/api/Access.CustomControl.GridlineStyleRight.md index cc2483ad5f3..d1963509fbb 100644 --- a/api/Access.CustomControl.GridlineStyleRight.md +++ b/api/Access.CustomControl.GridlineStyleRight.md @@ -1,5 +1,5 @@ --- -title: CustomControl.GridlineStyleRight Property (Access) +title: CustomControl.GridlineStyleRight property (Access) keywords: vbaac10.chm10530 f1_keywords: - vbaac10.chm10530 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.GridlineStyleRight Property (Access) +# CustomControl.GridlineStyleRight property (Access) Gets or sets the right gridline style of the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleRight` +_expression_. `GridlineStyleRight` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.GridlineStyleTop.md b/api/Access.CustomControl.GridlineStyleTop.md index 1261505255f..eb23a8ff0f1 100644 --- a/api/Access.CustomControl.GridlineStyleTop.md +++ b/api/Access.CustomControl.GridlineStyleTop.md @@ -1,5 +1,5 @@ --- -title: CustomControl.GridlineStyleTop Property (Access) +title: CustomControl.GridlineStyleTop property (Access) keywords: vbaac10.chm10529 f1_keywords: - vbaac10.chm10529 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.GridlineStyleTop Property (Access) +# CustomControl.GridlineStyleTop property (Access) Gets or sets the top gridline style of the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleTop` +_expression_. `GridlineStyleTop` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.GridlineWidthBottom.md b/api/Access.CustomControl.GridlineWidthBottom.md index 12302b413b8..7e9d2837d0d 100644 --- a/api/Access.CustomControl.GridlineWidthBottom.md +++ b/api/Access.CustomControl.GridlineWidthBottom.md @@ -1,5 +1,5 @@ --- -title: CustomControl.GridlineWidthBottom Property (Access) +title: CustomControl.GridlineWidthBottom property (Access) keywords: vbaac10.chm10535 f1_keywords: - vbaac10.chm10535 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.GridlineWidthBottom Property (Access) +# CustomControl.GridlineWidthBottom property (Access) Gets or sets the width of the bottom gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthBottom` +_expression_. `GridlineWidthBottom` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.GridlineWidthLeft.md b/api/Access.CustomControl.GridlineWidthLeft.md index 655ed1d7a93..8c11541bfb6 100644 --- a/api/Access.CustomControl.GridlineWidthLeft.md +++ b/api/Access.CustomControl.GridlineWidthLeft.md @@ -1,5 +1,5 @@ --- -title: CustomControl.GridlineWidthLeft Property (Access) +title: CustomControl.GridlineWidthLeft property (Access) keywords: vbaac10.chm10532 f1_keywords: - vbaac10.chm10532 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.GridlineWidthLeft Property (Access) +# CustomControl.GridlineWidthLeft property (Access) Gets or sets the width of the left gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthLeft` +_expression_. `GridlineWidthLeft` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.GridlineWidthRight.md b/api/Access.CustomControl.GridlineWidthRight.md index ca97594fd96..81d6add2c5b 100644 --- a/api/Access.CustomControl.GridlineWidthRight.md +++ b/api/Access.CustomControl.GridlineWidthRight.md @@ -1,5 +1,5 @@ --- -title: CustomControl.GridlineWidthRight Property (Access) +title: CustomControl.GridlineWidthRight property (Access) keywords: vbaac10.chm10534 f1_keywords: - vbaac10.chm10534 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.GridlineWidthRight Property (Access) +# CustomControl.GridlineWidthRight property (Access) Gets or sets the width of the right gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthRight` +_expression_. `GridlineWidthRight` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.GridlineWidthTop.md b/api/Access.CustomControl.GridlineWidthTop.md index 7de2c9b5c0b..37f15dad2a0 100644 --- a/api/Access.CustomControl.GridlineWidthTop.md +++ b/api/Access.CustomControl.GridlineWidthTop.md @@ -1,5 +1,5 @@ --- -title: CustomControl.GridlineWidthTop Property (Access) +title: CustomControl.GridlineWidthTop property (Access) keywords: vbaac10.chm10533 f1_keywords: - vbaac10.chm10533 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.GridlineWidthTop Property (Access) +# CustomControl.GridlineWidthTop property (Access) Gets or sets the width of the top gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthTop` +_expression_. `GridlineWidthTop` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Height.md b/api/Access.CustomControl.Height.md index 7e18edd17d1..03f81518625 100644 --- a/api/Access.CustomControl.Height.md +++ b/api/Access.CustomControl.Height.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Height Property (Access) +title: CustomControl.Height property (Access) keywords: vbaac10.chm12023 f1_keywords: - vbaac10.chm12023 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Height Property (Access) +# CustomControl.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.HelpContextId.md b/api/Access.CustomControl.HelpContextId.md index 4b97f8382de..cb94e9f282e 100644 --- a/api/Access.CustomControl.HelpContextId.md +++ b/api/Access.CustomControl.HelpContextId.md @@ -1,5 +1,5 @@ --- -title: CustomControl.HelpContextId Property (Access) +title: CustomControl.HelpContextId property (Access) keywords: vbaac10.chm12031 f1_keywords: - vbaac10.chm12031 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.HelpContextId Property (Access) +# CustomControl.HelpContextId property (Access) The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**. ## Syntax - _expression_. `HelpContextId` +_expression_. `HelpContextId` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.HorizontalAnchor.md b/api/Access.CustomControl.HorizontalAnchor.md index a219e7752c0..4be167fe039 100644 --- a/api/Access.CustomControl.HorizontalAnchor.md +++ b/api/Access.CustomControl.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: CustomControl.HorizontalAnchor Property (Access) +title: CustomControl.HorizontalAnchor property (Access) keywords: vbaac10.chm10537 f1_keywords: - vbaac10.chm10537 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.HorizontalAnchor Property (Access) +# CustomControl.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the text box is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.InSelection.md b/api/Access.CustomControl.InSelection.md index 5ece310a19b..109449efaaa 100644 --- a/api/Access.CustomControl.InSelection.md +++ b/api/Access.CustomControl.InSelection.md @@ -1,5 +1,5 @@ --- -title: CustomControl.InSelection Property (Access) +title: CustomControl.InSelection property (Access) keywords: vbaac10.chm12039 f1_keywords: - vbaac10.chm12039 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.InSelection Property (Access) +# CustomControl.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.IsVisible.md b/api/Access.CustomControl.IsVisible.md index f8d1e8b060b..0791af6b935 100644 --- a/api/Access.CustomControl.IsVisible.md +++ b/api/Access.CustomControl.IsVisible.md @@ -1,5 +1,5 @@ --- -title: CustomControl.IsVisible Property (Access) +title: CustomControl.IsVisible property (Access) keywords: vbaac10.chm12038 f1_keywords: - vbaac10.chm12038 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.IsVisible Property (Access) +# CustomControl.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Layout.md b/api/Access.CustomControl.Layout.md index a5b95363b8d..b87855e851a 100644 --- a/api/Access.CustomControl.Layout.md +++ b/api/Access.CustomControl.Layout.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Layout Property (Access) +title: CustomControl.Layout property (Access) keywords: vbaac10.chm10523 f1_keywords: - vbaac10.chm10523 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Layout Property (Access) +# CustomControl.Layout property (Access) Returns the type of layout for the specified text box. Read-only **[AcLayoutType](Access.AcLayoutType.md)**. ## Syntax - _expression_. `Layout` +_expression_. `Layout` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## See also diff --git a/api/Access.CustomControl.LayoutID.md b/api/Access.CustomControl.LayoutID.md index d4bc2b22382..3c27c0199aa 100644 --- a/api/Access.CustomControl.LayoutID.md +++ b/api/Access.CustomControl.LayoutID.md @@ -1,5 +1,5 @@ --- -title: CustomControl.LayoutID Property (Access) +title: CustomControl.LayoutID property (Access) keywords: vbaac10.chm10539 f1_keywords: - vbaac10.chm10539 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.LayoutID Property (Access) +# CustomControl.LayoutID property (Access) Returns the unique identifier for the layout that contains the specified text box. Read-only **Long**. ## Syntax - _expression_. `LayoutID` +_expression_. `LayoutID` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Left.md b/api/Access.CustomControl.Left.md index dad612bdb0d..b1959a1cea1 100644 --- a/api/Access.CustomControl.Left.md +++ b/api/Access.CustomControl.Left.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Left Property (Access) +title: CustomControl.Left property (Access) keywords: vbaac10.chm12020 f1_keywords: - vbaac10.chm12020 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Left Property (Access) +# CustomControl.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.LeftPadding.md b/api/Access.CustomControl.LeftPadding.md index 3451f60d943..d3de3f03baa 100644 --- a/api/Access.CustomControl.LeftPadding.md +++ b/api/Access.CustomControl.LeftPadding.md @@ -1,5 +1,5 @@ --- -title: CustomControl.LeftPadding Property (Access) +title: CustomControl.LeftPadding property (Access) keywords: vbaac10.chm10524 f1_keywords: - vbaac10.chm10524 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.LeftPadding Property (Access) +# CustomControl.LeftPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its left gridline. Read/write **Integer**. ## Syntax - _expression_. `LeftPadding` +_expression_. `LeftPadding` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## See also diff --git a/api/Access.CustomControl.Locked.md b/api/Access.CustomControl.Locked.md index 6475fa7a430..3973463ce71 100644 --- a/api/Access.CustomControl.Locked.md +++ b/api/Access.CustomControl.Locked.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Locked Property (Access) +title: CustomControl.Locked property (Access) keywords: vbaac10.chm12016 f1_keywords: - vbaac10.chm12016 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Locked Property (Access) +# CustomControl.Locked property (Access) The **Locked** property specifies whether you can edit data in a control in Form view. Read/write **Boolean**. ## Syntax - _expression_. `Locked` +_expression_. `Locked` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.LostFocus.md b/api/Access.CustomControl.LostFocus.md index b2fe1b8f53f..f067259fa68 100644 --- a/api/Access.CustomControl.LostFocus.md +++ b/api/Access.CustomControl.LostFocus.md @@ -1,5 +1,5 @@ --- -title: CustomControl.LostFocus Event (Access) +title: CustomControl.LostFocus event (Access) keywords: vbaac10.chm14118 f1_keywords: - vbaac10.chm14118 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.LostFocus Event (Access) +# CustomControl.LostFocus event (Access) The **LostFocus** event occurs when the specified object loses the focus. ## Syntax - _expression_. `LostFocus` +_expression_. `LostFocus` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Move.md b/api/Access.CustomControl.Move.md index 09994bae6b6..144727aad60 100644 --- a/api/Access.CustomControl.Move.md +++ b/api/Access.CustomControl.Move.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Move Method (Access) +title: CustomControl.Move method (Access) keywords: vbaac10.chm12050 f1_keywords: - vbaac10.chm12050 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CustomControl.Move Method (Access) +# CustomControl.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.CustomControl.Name.md b/api/Access.CustomControl.Name.md index 0a8cb9ec798..e460fe731df 100644 --- a/api/Access.CustomControl.Name.md +++ b/api/Access.CustomControl.Name.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Name Property (Access) +title: CustomControl.Name property (Access) keywords: vbaac10.chm12049 f1_keywords: - vbaac10.chm12049 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Name Property (Access) +# CustomControl.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.OLEClass.md b/api/Access.CustomControl.OLEClass.md index 4dde52b80e1..a922b3779f5 100644 --- a/api/Access.CustomControl.OLEClass.md +++ b/api/Access.CustomControl.OLEClass.md @@ -1,5 +1,5 @@ --- -title: CustomControl.OLEClass Property (Access) +title: CustomControl.OLEClass property (Access) keywords: vbaac10.chm12010 f1_keywords: - vbaac10.chm12010 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.OLEClass Property (Access) +# CustomControl.OLEClass property (Access) You can use the **OLEClass** property to obtain a description of the kind of OLE object contained in a chart control or an unbound object frame. Read-only **String**. ## Syntax - _expression_. `OLEClass` +_expression_. `OLEClass` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Object.md b/api/Access.CustomControl.Object.md index 340a2f2c21b..04cacb403c4 100644 --- a/api/Access.CustomControl.Object.md +++ b/api/Access.CustomControl.Object.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Object Property (Access) +title: CustomControl.Object property (Access) keywords: vbaac10.chm11998 f1_keywords: - vbaac10.chm11998 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Object Property (Access) +# CustomControl.Object property (Access) You can use the **Object** property in Visual Basic to return a reference to the ActiveX object that is associated with a linked or embedded OLE object in a control. By using this reference, you can access the properties or invoke the methods of the OLE object. Read-only **Object**. ## Syntax - _expression_. `Object` +_expression_. `Object` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.ObjectPalette.md b/api/Access.CustomControl.ObjectPalette.md index 3a24dc477e6..6caec357620 100644 --- a/api/Access.CustomControl.ObjectPalette.md +++ b/api/Access.CustomControl.ObjectPalette.md @@ -1,5 +1,5 @@ --- -title: CustomControl.ObjectPalette Property (Access) +title: CustomControl.ObjectPalette property (Access) keywords: vbaac10.chm12035 f1_keywords: - vbaac10.chm12035 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.ObjectPalette Property (Access) +# CustomControl.ObjectPalette property (Access) The **ObjectPalette** property specifies the palette in the application used to create an OLE object. Read/write **Variant**. ## Syntax - _expression_. `ObjectPalette` +_expression_. `ObjectPalette` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.ObjectVerbs.md b/api/Access.CustomControl.ObjectVerbs.md index ecb9b42a972..2495c8c891d 100644 --- a/api/Access.CustomControl.ObjectVerbs.md +++ b/api/Access.CustomControl.ObjectVerbs.md @@ -1,5 +1,5 @@ --- -title: CustomControl.ObjectVerbs Property (Access) +title: CustomControl.ObjectVerbs property (Access) keywords: vbaac10.chm11999 f1_keywords: - vbaac10.chm11999 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# CustomControl.ObjectVerbs Property (Access) +# CustomControl.ObjectVerbs property (Access) You can use the **ObjectVerbs** property in Visual Basic to determine the list of verbs an OLE object supports. Read-only **String**. ## Syntax - _expression_. `ObjectVerbs`( ` _Index_` ) +_expression_. `ObjectVerbs`( ` _Index_` ) - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required|**Long**|An element in the array of supported verbs. This is a zero-based index, meaning zero (0) represents the first verb in the array, one (1) represents the second verb in the array, and so on.| diff --git a/api/Access.CustomControl.ObjectVerbsCount.md b/api/Access.CustomControl.ObjectVerbsCount.md index 10541f30555..4a664f6ccec 100644 --- a/api/Access.CustomControl.ObjectVerbsCount.md +++ b/api/Access.CustomControl.ObjectVerbsCount.md @@ -1,5 +1,5 @@ --- -title: CustomControl.ObjectVerbsCount Property (Access) +title: CustomControl.ObjectVerbsCount property (Access) keywords: vbaac10.chm12037 f1_keywords: - vbaac10.chm12037 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.ObjectVerbsCount Property (Access) +# CustomControl.ObjectVerbsCount property (Access) You can use the **ObjectVerbsCount** property in Visual Basic to determine the number of verbs supported by an OLE object. Read-only **Long**. ## Syntax - _expression_. `ObjectVerbsCount` +_expression_. `ObjectVerbsCount` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.OldBorderStyle.md b/api/Access.CustomControl.OldBorderStyle.md index 0f4600c1422..5d29d1562f0 100644 --- a/api/Access.CustomControl.OldBorderStyle.md +++ b/api/Access.CustomControl.OldBorderStyle.md @@ -1,5 +1,5 @@ --- -title: CustomControl.OldBorderStyle Property (Access) +title: CustomControl.OldBorderStyle property (Access) keywords: vbaac10.chm12026 f1_keywords: - vbaac10.chm12026 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.OldBorderStyle Property (Access) +# CustomControl.OldBorderStyle property (Access) You can use this property to set or returns the unedited value of the **BorderStyle** property for a form or control. This property is useful if you need to revert to an unedited or preferred border style. Read/write **Byte**. ## Syntax - _expression_. `OldBorderStyle` +_expression_. `OldBorderStyle` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.OldValue.md b/api/Access.CustomControl.OldValue.md index c1be2d3aa84..b16d191e455 100644 --- a/api/Access.CustomControl.OldValue.md +++ b/api/Access.CustomControl.OldValue.md @@ -1,5 +1,5 @@ --- -title: CustomControl.OldValue Property (Access) +title: CustomControl.OldValue property (Access) keywords: vbaac10.chm11997 f1_keywords: - vbaac10.chm11997 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.OldValue Property (Access) +# CustomControl.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.OnEnter.md b/api/Access.CustomControl.OnEnter.md index 0c57ceb120f..f3eb9909c2e 100644 --- a/api/Access.CustomControl.OnEnter.md +++ b/api/Access.CustomControl.OnEnter.md @@ -1,5 +1,5 @@ --- -title: CustomControl.OnEnter Property (Access) +title: CustomControl.OnEnter property (Access) keywords: vbaac10.chm12041 f1_keywords: - vbaac10.chm12041 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.OnEnter Property (Access) +# CustomControl.OnEnter property (Access) Sets or returns the value of the **On Enter** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnEnter` +_expression_. `OnEnter` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Enter** event occurs before a control actually receives the focus from a The **OnEnter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Enter** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CustomControl.OnExit.md b/api/Access.CustomControl.OnExit.md index 6c9bcdcdd92..9cb693b9b1d 100644 --- a/api/Access.CustomControl.OnExit.md +++ b/api/Access.CustomControl.OnExit.md @@ -1,5 +1,5 @@ --- -title: CustomControl.OnExit Property (Access) +title: CustomControl.OnExit property (Access) keywords: vbaac10.chm12042 f1_keywords: - vbaac10.chm12042 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.OnExit Property (Access) +# CustomControl.OnExit property (Access) Sets or returns the value of the **On Exit** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnExit` +_expression_. `OnExit` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Exit** event occurs just before a control loses the focus to another cont The **OnExit** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Exit** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CustomControl.OnGotFocus.md b/api/Access.CustomControl.OnGotFocus.md index ed699b8dcd4..98ab308eba8 100644 --- a/api/Access.CustomControl.OnGotFocus.md +++ b/api/Access.CustomControl.OnGotFocus.md @@ -1,5 +1,5 @@ --- -title: CustomControl.OnGotFocus Property (Access) +title: CustomControl.OnGotFocus property (Access) keywords: vbaac10.chm12043 f1_keywords: - vbaac10.chm12043 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.OnGotFocus Property (Access) +# CustomControl.OnGotFocus property (Access) Sets or returns the value of the **On Got Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnGotFocus` +_expression_. `OnGotFocus` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **GotFocus** event occurs when the object receives the focus. The **OnGotFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Got Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CustomControl.OnLostFocus.md b/api/Access.CustomControl.OnLostFocus.md index c3b0999ca52..70c1332ab48 100644 --- a/api/Access.CustomControl.OnLostFocus.md +++ b/api/Access.CustomControl.OnLostFocus.md @@ -1,5 +1,5 @@ --- -title: CustomControl.OnLostFocus Property (Access) +title: CustomControl.OnLostFocus property (Access) keywords: vbaac10.chm12044 f1_keywords: - vbaac10.chm12044 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.OnLostFocus Property (Access) +# CustomControl.OnLostFocus property (Access) Sets or returns the value of the **On Lost Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnLostFocus` +_expression_. `OnLostFocus` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **LostFocus** event occurs when the object loses the focus. The **OnLostFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Lost Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CustomControl.OnUpdated.md b/api/Access.CustomControl.OnUpdated.md index 0073f3b43bf..365838ab8f5 100644 --- a/api/Access.CustomControl.OnUpdated.md +++ b/api/Access.CustomControl.OnUpdated.md @@ -1,5 +1,5 @@ --- -title: CustomControl.OnUpdated Property (Access) +title: CustomControl.OnUpdated property (Access) keywords: vbaac10.chm12040 f1_keywords: - vbaac10.chm12040 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.OnUpdated Property (Access) +# CustomControl.OnUpdated property (Access) Sets or returns the value of the **On Updated** box in the **Properties** window of a form or report. Read/write **String**. ## Syntax - _expression_. `OnUpdated` +_expression_. `OnUpdated` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks @@ -30,7 +30,7 @@ This property is helpful for programmatically changing the action Microsoft Acce The **OnUpdated** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Updated** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.CustomControl.Parent.md b/api/Access.CustomControl.Parent.md index aad099d7081..7053bacd366 100644 --- a/api/Access.CustomControl.Parent.md +++ b/api/Access.CustomControl.Parent.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Parent Property (Access) +title: CustomControl.Parent property (Access) keywords: vbaac10.chm11996 f1_keywords: - vbaac10.chm11996 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Parent Property (Access) +# CustomControl.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## See also diff --git a/api/Access.CustomControl.Properties.md b/api/Access.CustomControl.Properties.md index 7ac58030d5a..7726802754b 100644 --- a/api/Access.CustomControl.Properties.md +++ b/api/Access.CustomControl.Properties.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Properties Property (Access) +title: CustomControl.Properties property (Access) keywords: vbaac10.chm12000 f1_keywords: - vbaac10.chm12000 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Properties Property (Access) +# CustomControl.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Requery.md b/api/Access.CustomControl.Requery.md index ff43037dcb8..7bb25dea286 100644 --- a/api/Access.CustomControl.Requery.md +++ b/api/Access.CustomControl.Requery.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Requery Method (Access) +title: CustomControl.Requery method (Access) keywords: vbaac10.chm12002 f1_keywords: - vbaac10.chm12002 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Requery Method (Access) +# CustomControl.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.RightPadding.md b/api/Access.CustomControl.RightPadding.md index 82038df2880..3d21b0c21e4 100644 --- a/api/Access.CustomControl.RightPadding.md +++ b/api/Access.CustomControl.RightPadding.md @@ -1,5 +1,5 @@ --- -title: CustomControl.RightPadding Property (Access) +title: CustomControl.RightPadding property (Access) keywords: vbaac10.chm10526 f1_keywords: - vbaac10.chm10526 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.RightPadding Property (Access) +# CustomControl.RightPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## See also diff --git a/api/Access.CustomControl.Section.md b/api/Access.CustomControl.Section.md index 455f9718a00..289b0bd0074 100644 --- a/api/Access.CustomControl.Section.md +++ b/api/Access.CustomControl.Section.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Section Property (Access) +title: CustomControl.Section property (Access) keywords: vbaac10.chm12032 f1_keywords: - vbaac10.chm12032 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Section Property (Access) +# CustomControl.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.SetFocus.md b/api/Access.CustomControl.SetFocus.md index 0a80c66821e..1d74705c2c6 100644 --- a/api/Access.CustomControl.SetFocus.md +++ b/api/Access.CustomControl.SetFocus.md @@ -1,5 +1,5 @@ --- -title: CustomControl.SetFocus Method (Access) +title: CustomControl.SetFocus method (Access) keywords: vbaac10.chm12003 f1_keywords: - vbaac10.chm12003 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# CustomControl.SetFocus Method (Access) +# CustomControl.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.CustomControl.SizeToFit.md b/api/Access.CustomControl.SizeToFit.md index d4d44355216..c0d19c99b9b 100644 --- a/api/Access.CustomControl.SizeToFit.md +++ b/api/Access.CustomControl.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: CustomControl.SizeToFit Method (Access) +title: CustomControl.SizeToFit method (Access) keywords: vbaac10.chm12001 f1_keywords: - vbaac10.chm12001 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.SizeToFit Method (Access) +# CustomControl.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.SpecialEffect.md b/api/Access.CustomControl.SpecialEffect.md index 99669a204c7..bbf7ac1ecbc 100644 --- a/api/Access.CustomControl.SpecialEffect.md +++ b/api/Access.CustomControl.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: CustomControl.SpecialEffect Property (Access) +title: CustomControl.SpecialEffect property (Access) keywords: vbaac10.chm12024 f1_keywords: - vbaac10.chm12024 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.SpecialEffect Property (Access) +# CustomControl.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.TabIndex.md b/api/Access.CustomControl.TabIndex.md index 424cdcd9494..07ccad511be 100644 --- a/api/Access.CustomControl.TabIndex.md +++ b/api/Access.CustomControl.TabIndex.md @@ -1,5 +1,5 @@ --- -title: CustomControl.TabIndex Property (Access) +title: CustomControl.TabIndex property (Access) keywords: vbaac10.chm12019 f1_keywords: - vbaac10.chm12019 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.TabIndex Property (Access) +# CustomControl.TabIndex property (Access) You can use the **TabIndex** property to specify a control's place in the tab order on a form or report. Read/write **Integer**. ## Syntax - _expression_. `TabIndex` +_expression_. `TabIndex` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.TabStop.md b/api/Access.CustomControl.TabStop.md index bb81bbcdade..83f7e740b8a 100644 --- a/api/Access.CustomControl.TabStop.md +++ b/api/Access.CustomControl.TabStop.md @@ -1,5 +1,5 @@ --- -title: CustomControl.TabStop Property (Access) +title: CustomControl.TabStop property (Access) keywords: vbaac10.chm12018 f1_keywords: - vbaac10.chm12018 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.TabStop Property (Access) +# CustomControl.TabStop property (Access) You can use the **TabStop** property to specify whether you can use the TAB key to move the focus to a control. Read/write **Boolean**. ## Syntax - _expression_. `TabStop` +_expression_. `TabStop` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Tag.md b/api/Access.CustomControl.Tag.md index 3c9b1da2b05..476c19be9dd 100644 --- a/api/Access.CustomControl.Tag.md +++ b/api/Access.CustomControl.Tag.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Tag Property (Access) +title: CustomControl.Tag property (Access) keywords: vbaac10.chm12034 f1_keywords: - vbaac10.chm12034 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Tag Property (Access) +# CustomControl.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Top.md b/api/Access.CustomControl.Top.md index 84f59ab0086..9e439e57f1d 100644 --- a/api/Access.CustomControl.Top.md +++ b/api/Access.CustomControl.Top.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Top Property (Access) +title: CustomControl.Top property (Access) keywords: vbaac10.chm12021 f1_keywords: - vbaac10.chm12021 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Top Property (Access) +# CustomControl.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.TopPadding.md b/api/Access.CustomControl.TopPadding.md index e25f2bb1ef1..cfa042ce86a 100644 --- a/api/Access.CustomControl.TopPadding.md +++ b/api/Access.CustomControl.TopPadding.md @@ -1,5 +1,5 @@ --- -title: CustomControl.TopPadding Property (Access) +title: CustomControl.TopPadding property (Access) keywords: vbaac10.chm10525 f1_keywords: - vbaac10.chm10525 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.TopPadding Property (Access) +# CustomControl.TopPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## See also diff --git a/api/Access.CustomControl.Updated.md b/api/Access.CustomControl.Updated.md index b0bd01a663a..cc1dd78b940 100644 --- a/api/Access.CustomControl.Updated.md +++ b/api/Access.CustomControl.Updated.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Updated Event (Access) +title: CustomControl.Updated event (Access) keywords: vbaac10.chm14114 f1_keywords: - vbaac10.chm14114 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Updated Event (Access) +# CustomControl.Updated event (Access) The **Updated** event occurs when an OLE object's data has been modified. ## Syntax - _expression_. `Updated`( ` _Code_` ) +_expression_. `Updated`( ` _Code_` ) - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Value.md b/api/Access.CustomControl.Value.md index c576f3fdab1..88b764517cc 100644 --- a/api/Access.CustomControl.Value.md +++ b/api/Access.CustomControl.Value.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Value Property (Access) +title: CustomControl.Value property (Access) keywords: vbaac10.chm12005 f1_keywords: - vbaac10.chm12005 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Value Property (Access) +# CustomControl.Value property (Access) Gets or sets the value displayed in the specified control. Read/write **Variant**. ## Syntax - _expression_. `Value` +_expression_. `Value` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## See also diff --git a/api/Access.CustomControl.VarOleObject.md b/api/Access.CustomControl.VarOleObject.md index 0fa90ace432..0f7445037fd 100644 --- a/api/Access.CustomControl.VarOleObject.md +++ b/api/Access.CustomControl.VarOleObject.md @@ -1,5 +1,5 @@ --- -title: CustomControl.VarOleObject Property (Access) +title: CustomControl.VarOleObject property (Access) keywords: vbaac10.chm10954 f1_keywords: - vbaac10.chm10954 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.VarOleObject Property (Access) +# CustomControl.VarOleObject property (Access) Gets a pointer to an **IOLEObject** that represents the memory address of an OLE object. Read-only **Variant**. ## Syntax - _expression_. `VarOleObject` +_expression_. `VarOleObject` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Verb.md b/api/Access.CustomControl.Verb.md index d96e1df7832..76f33ae7d50 100644 --- a/api/Access.CustomControl.Verb.md +++ b/api/Access.CustomControl.Verb.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Verb Property (Access) +title: CustomControl.Verb property (Access) keywords: vbaac10.chm12011 f1_keywords: - vbaac10.chm12011 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Verb Property (Access) +# CustomControl.Verb property (Access) You can use the **Verb** property to specify the operation to perform when an OLE object is activated, which is permitted when the control's **Action** property is set to **acOLEActivate**. Read/write **Long**. ## Syntax - _expression_. `Verb` +_expression_. `Verb` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.VerticalAnchor.md b/api/Access.CustomControl.VerticalAnchor.md index fe312480778..003b548c023 100644 --- a/api/Access.CustomControl.VerticalAnchor.md +++ b/api/Access.CustomControl.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: CustomControl.VerticalAnchor Property (Access) +title: CustomControl.VerticalAnchor property (Access) keywords: vbaac10.chm10538 f1_keywords: - vbaac10.chm10538 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.VerticalAnchor Property (Access) +# CustomControl.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified text box is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Visible.md b/api/Access.CustomControl.Visible.md index 8ddad69c064..4da6983a709 100644 --- a/api/Access.CustomControl.Visible.md +++ b/api/Access.CustomControl.Visible.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Visible Property (Access) +title: CustomControl.Visible property (Access) keywords: vbaac10.chm12013 f1_keywords: - vbaac10.chm12013 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Visible Property (Access) +# CustomControl.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.Width.md b/api/Access.CustomControl.Width.md index fead7c52fe6..055caa9a67b 100644 --- a/api/Access.CustomControl.Width.md +++ b/api/Access.CustomControl.Width.md @@ -1,5 +1,5 @@ --- -title: CustomControl.Width Property (Access) +title: CustomControl.Width property (Access) keywords: vbaac10.chm12022 f1_keywords: - vbaac10.chm12022 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# CustomControl.Width Property (Access) +# CustomControl.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. +_expression_ A variable that represents a [CustomControl](Access.CustomControl.md) object. ## Remarks diff --git a/api/Access.CustomControl.md b/api/Access.CustomControl.md index f21c445c2e0..41eee0e16c4 100644 --- a/api/Access.CustomControl.md +++ b/api/Access.CustomControl.md @@ -1,5 +1,5 @@ --- -title: CustomControl Object (Access) +title: CustomControl object (Access) keywords: vbaac10.chm12062 f1_keywords: - vbaac10.chm12062 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# CustomControl Object (Access) +# CustomControl object (Access) When setting the properties of an ActiveX control, you may need or prefer to use the control's custom properties dialog box. This custom properties dialog box provides an alternative to the list of properties in the Microsoft Access property sheet for setting ActiveX control properties in Design view. diff --git a/api/Access.DependencyInfo.Dependants.md b/api/Access.DependencyInfo.Dependants.md index 844f5f15086..85a33ceb6c9 100644 --- a/api/Access.DependencyInfo.Dependants.md +++ b/api/Access.DependencyInfo.Dependants.md @@ -1,5 +1,5 @@ --- -title: DependencyInfo.Dependants Property (Access) +title: DependencyInfo.Dependants property (Access) keywords: vbaac10.chm13274 f1_keywords: - vbaac10.chm13274 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# DependencyInfo.Dependants Property (Access) +# DependencyInfo.Dependants property (Access) Returns a **[DependencyObjects](Access.DependencyObjects.md)** collection that represents the objects that depend upon the specified **[AccessObject](Access.AccessObject.md)** object. Read-only. ## Syntax - _expression_. `Dependants` +_expression_. `Dependants` - _expression_ A variable that represents a [DependencyInfo](Access.DependencyInfo.md) object. +_expression_ A variable that represents a [DependencyInfo](Access.DependencyInfo.md) object. ## Remarks diff --git a/api/Access.DependencyInfo.Dependencies.md b/api/Access.DependencyInfo.Dependencies.md index e8b14156e11..73cc17b3e8a 100644 --- a/api/Access.DependencyInfo.Dependencies.md +++ b/api/Access.DependencyInfo.Dependencies.md @@ -1,5 +1,5 @@ --- -title: DependencyInfo.Dependencies Property (Access) +title: DependencyInfo.Dependencies property (Access) keywords: vbaac10.chm13275 f1_keywords: - vbaac10.chm13275 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# DependencyInfo.Dependencies Property (Access) +# DependencyInfo.Dependencies property (Access) Returns a **[DependencyObjects](Access.DependencyObjects.md)** collection that represents the objects that the specified **[AccessObject](Access.AccessObject.md)** object depends upon. Read-only. ## Syntax - _expression_. `Dependencies` +_expression_. `Dependencies` - _expression_ A variable that represents a [DependencyInfo](Access.DependencyInfo.md) object. +_expression_ A variable that represents a [DependencyInfo](Access.DependencyInfo.md) object. ## Remarks diff --git a/api/Access.DependencyInfo.InsufficientPermissions.md b/api/Access.DependencyInfo.InsufficientPermissions.md index 30225e31b72..9d38fc2900d 100644 --- a/api/Access.DependencyInfo.InsufficientPermissions.md +++ b/api/Access.DependencyInfo.InsufficientPermissions.md @@ -1,5 +1,5 @@ --- -title: DependencyInfo.InsufficientPermissions Property (Access) +title: DependencyInfo.InsufficientPermissions property (Access) keywords: vbaac10.chm13277 f1_keywords: - vbaac10.chm13277 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# DependencyInfo.InsufficientPermissions Property (Access) +# DependencyInfo.InsufficientPermissions property (Access) Returns a **[DependencyObjects](Access.DependencyObjects.md)** collection that contains a collection of objects to which you don't have sufficient permissions to check for dependencies. Read-only. ## Syntax - _expression_. `InsufficientPermissions` +_expression_. `InsufficientPermissions` - _expression_ A variable that represents a [DependencyInfo](Access.DependencyInfo.md) object. +_expression_ A variable that represents a [DependencyInfo](Access.DependencyInfo.md) object. ## Remarks diff --git a/api/Access.DependencyInfo.OutOfDateObjects.md b/api/Access.DependencyInfo.OutOfDateObjects.md index 7a14393f25d..0a70f5fdabb 100644 --- a/api/Access.DependencyInfo.OutOfDateObjects.md +++ b/api/Access.DependencyInfo.OutOfDateObjects.md @@ -1,5 +1,5 @@ --- -title: DependencyInfo.OutOfDateObjects Property (Access) +title: DependencyInfo.OutOfDateObjects property (Access) keywords: vbaac10.chm13276 f1_keywords: - vbaac10.chm13276 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# DependencyInfo.OutOfDateObjects Property (Access) +# DependencyInfo.OutOfDateObjects property (Access) Returns a **[DependencyObjects](Access.DependencyObjects.md)** collection that represents the **[AccessObject](Access.AccessObject.md)** objects for which the dependency information is outdated. Read-only. ## Syntax - _expression_. `OutOfDateObjects` +_expression_. `OutOfDateObjects` - _expression_ A variable that represents a [DependencyInfo](Access.DependencyInfo.md) object. +_expression_ A variable that represents a [DependencyInfo](Access.DependencyInfo.md) object. ## Remarks diff --git a/api/Access.DependencyInfo.Parent.md b/api/Access.DependencyInfo.Parent.md index 3b2398c409a..9946f506f00 100644 --- a/api/Access.DependencyInfo.Parent.md +++ b/api/Access.DependencyInfo.Parent.md @@ -1,5 +1,5 @@ --- -title: DependencyInfo.Parent Property (Access) +title: DependencyInfo.Parent property (Access) keywords: vbaac10.chm13273 f1_keywords: - vbaac10.chm13273 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# DependencyInfo.Parent Property (Access) +# DependencyInfo.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [DependencyInfo](Access.DependencyInfo.md) object. +_expression_ A variable that represents a [DependencyInfo](Access.DependencyInfo.md) object. ## See also diff --git a/api/Access.DependencyInfo.UnsupportedObjects.md b/api/Access.DependencyInfo.UnsupportedObjects.md index b472d17b221..d89986992db 100644 --- a/api/Access.DependencyInfo.UnsupportedObjects.md +++ b/api/Access.DependencyInfo.UnsupportedObjects.md @@ -1,5 +1,5 @@ --- -title: DependencyInfo.UnsupportedObjects Property (Access) +title: DependencyInfo.UnsupportedObjects property (Access) keywords: vbaac10.chm13278 f1_keywords: - vbaac10.chm13278 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# DependencyInfo.UnsupportedObjects Property (Access) +# DependencyInfo.UnsupportedObjects property (Access) Returns a **[DependencyObjects](Access.DependencyObjects.md)** collection that contains objects that cannot be searched for dependency. Read-only. ## Syntax - _expression_. `UnsupportedObjects` +_expression_. `UnsupportedObjects` - _expression_ A variable that represents a [DependencyInfo](Access.DependencyInfo.md) object. +_expression_ A variable that represents a [DependencyInfo](Access.DependencyInfo.md) object. ## Remarks diff --git a/api/Access.DependencyInfo.md b/api/Access.DependencyInfo.md index 081d8c36329..369e2653b1d 100644 --- a/api/Access.DependencyInfo.md +++ b/api/Access.DependencyInfo.md @@ -1,5 +1,5 @@ --- -title: DependencyInfo Object (Access) +title: DependencyInfo object (Access) keywords: vbaac10.chm13271 f1_keywords: - vbaac10.chm13271 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# DependencyInfo Object (Access) +# DependencyInfo object (Access) Represents the dependency information for an **[AccessObject](Access.AccessObject.md)** object. diff --git a/api/Access.DependencyObjects.Application.md b/api/Access.DependencyObjects.Application.md index 51947a2b4e8..4a5f983d361 100644 --- a/api/Access.DependencyObjects.Application.md +++ b/api/Access.DependencyObjects.Application.md @@ -1,5 +1,5 @@ --- -title: DependencyObjects.Application Property (Access) +title: DependencyObjects.Application property (Access) keywords: vbaac10.chm13266 f1_keywords: - vbaac10.chm13266 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# DependencyObjects.Application Property (Access) +# DependencyObjects.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [DependencyObjects](Access.DependencyObjects.md) object. +_expression_ A variable that represents a [DependencyObjects](Access.DependencyObjects.md) object. ## Remarks diff --git a/api/Access.DependencyObjects.Count.md b/api/Access.DependencyObjects.Count.md index 81e2c6c5db8..67dafccf74a 100644 --- a/api/Access.DependencyObjects.Count.md +++ b/api/Access.DependencyObjects.Count.md @@ -1,5 +1,5 @@ --- -title: DependencyObjects.Count Property (Access) +title: DependencyObjects.Count property (Access) keywords: vbaac10.chm13269 f1_keywords: - vbaac10.chm13269 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# DependencyObjects.Count Property (Access) +# DependencyObjects.Count property (Access) You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [DependencyObjects](Access.DependencyObjects.md) object. +_expression_ A variable that represents a [DependencyObjects](Access.DependencyObjects.md) object. ## See also diff --git a/api/Access.DependencyObjects.Item.md b/api/Access.DependencyObjects.Item.md index d2085fff280..82bedcbdf37 100644 --- a/api/Access.DependencyObjects.Item.md +++ b/api/Access.DependencyObjects.Item.md @@ -1,5 +1,5 @@ --- -title: DependencyObjects.Item Property (Access) +title: DependencyObjects.Item property (Access) keywords: vbaac10.chm13268 f1_keywords: - vbaac10.chm13268 @@ -11,25 +11,25 @@ ms.date: 06/08/2017 --- -# DependencyObjects.Item Property (Access) +# DependencyObjects.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **AccessObject**. ## Syntax - _expression_. `Item`( ` _Index_` ) +_expression_. `Item`( ` _Index_` ) - _expression_ A variable that represents a [DependencyObjects](Access.DependencyObjects.md) object. +_expression_ A variable that represents a [DependencyObjects](Access.DependencyObjects.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| -| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| +| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| ## Remarks diff --git a/api/Access.DependencyObjects.Parent.md b/api/Access.DependencyObjects.Parent.md index 09375e7100f..3c88c643c7c 100644 --- a/api/Access.DependencyObjects.Parent.md +++ b/api/Access.DependencyObjects.Parent.md @@ -1,5 +1,5 @@ --- -title: DependencyObjects.Parent Property (Access) +title: DependencyObjects.Parent property (Access) keywords: vbaac10.chm13267 f1_keywords: - vbaac10.chm13267 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# DependencyObjects.Parent Property (Access) +# DependencyObjects.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [DependencyObjects](Access.DependencyObjects.md) object. +_expression_ A variable that represents a [DependencyObjects](Access.DependencyObjects.md) object. ## See also diff --git a/api/Access.DependencyObjects.md b/api/Access.DependencyObjects.md index 9e92e98d7ce..325a78723ec 100644 --- a/api/Access.DependencyObjects.md +++ b/api/Access.DependencyObjects.md @@ -1,5 +1,5 @@ --- -title: DependencyObjects Object (Access) +title: DependencyObjects object (Access) keywords: vbaac10.chm13264 f1_keywords: - vbaac10.chm13264 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# DependencyObjects Object (Access) +# DependencyObjects object (Access) Represents the collection of **[AccessObject](Access.AccessObject.md)** objects that a **[DependencyInfo](Access.DependencyInfo.md)** object contains. diff --git a/api/Access.DoCmd.AddMenu.md b/api/Access.DoCmd.AddMenu.md index 4934b5cc8a5..e65ec636524 100644 --- a/api/Access.DoCmd.AddMenu.md +++ b/api/Access.DoCmd.AddMenu.md @@ -1,5 +1,5 @@ --- -title: DoCmd.AddMenu Method (Access) +title: DoCmd.AddMenu method (Access) keywords: vbaac10.chm4141 f1_keywords: - vbaac10.chm4141 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# DoCmd.AddMenu Method (Access) +# DoCmd.AddMenu method (Access) The **AddMenu** method carries out the AddMenu action in Visual Basic. ## Syntax - _expression_. `AddMenu`( ` _MenuName_`, ` _MenuMacroName_`, ` _StatusBarText_` ) +_expression_. `AddMenu`( ` _MenuName_`, ` _MenuMacroName_`, ` _StatusBarText_` ) - _expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. +_expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _MenuName_|Required|**Variant**|A string expression that's the valid name of a drop-down menu to add to the custom menu bar or global menu bar. To create an access key so that you can use the keyboard to choose the menu, type an ampersand (&;) before the letter you want to be the access key. This letter will be underlined in the menu name on the menu bar.| | _MenuMacroName_|Required|**Variant**|A string expression that's the valid name of the macro group that contains the macros for the menu's commands. This is a required argument.| diff --git a/api/Access.DoCmd.ApplyFilter.md b/api/Access.DoCmd.ApplyFilter.md index ed2f5450e2c..d7dbe510bc2 100644 --- a/api/Access.DoCmd.ApplyFilter.md +++ b/api/Access.DoCmd.ApplyFilter.md @@ -1,5 +1,5 @@ --- -title: DoCmd.ApplyFilter Method (Access) +title: DoCmd.ApplyFilter method (Access) keywords: vbaac10.chm4142 f1_keywords: - vbaac10.chm4142 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# DoCmd.ApplyFilter Method (Access) +# DoCmd.ApplyFilter method (Access) The **ApplyFilter** method carries out the **ApplyFilter** action in Visual Basic. ## Syntax - _expression_. `ApplyFilter`( ` _FilterName_`, ` _WhereCondition_`, ` _ControlName_` ) +_expression_. `ApplyFilter`( ` _FilterName_`, ` _WhereCondition_`, ` _ControlName_` ) - _expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. +_expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _FilterName_|Optional|**Variant**|A string expression that is the valid name of a filter or query in the current database. When using this method to apply a server filter, the _FilterName_ argument must be blank.| | _WhereCondition_|Optional|**Variant**|A string expression that is a valid SQL WHERE clause without the word WHERE.| diff --git a/api/Access.DoCmd.Beep.md b/api/Access.DoCmd.Beep.md index c34e3af8787..28a076cedfc 100644 --- a/api/Access.DoCmd.Beep.md +++ b/api/Access.DoCmd.Beep.md @@ -1,5 +1,5 @@ --- -title: DoCmd.Beep Method (Access) +title: DoCmd.Beep method (Access) keywords: vbaac10.chm4143 f1_keywords: - vbaac10.chm4143 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# DoCmd.Beep Method (Access) +# DoCmd.Beep method (Access) The **Beep** method carries out the Beep action in Visual Basic. ## Syntax - _expression_. `Beep` +_expression_. `Beep` - _expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. +_expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. ## Remarks diff --git a/api/Access.DoCmd.BrowseTo.md b/api/Access.DoCmd.BrowseTo.md index 973178f79e4..4f8f80c315f 100644 --- a/api/Access.DoCmd.BrowseTo.md +++ b/api/Access.DoCmd.BrowseTo.md @@ -1,5 +1,5 @@ --- -title: DoCmd.BrowseTo Method (Access) +title: DoCmd.BrowseTo method (Access) keywords: vbaac10.chm5973 f1_keywords: - vbaac10.chm5973 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# DoCmd.BrowseTo Method (Access) +# DoCmd.BrowseTo method (Access) The **BrowseTo** method performs the BrowseTo action in Visual Basic. ## Syntax - _expression_. `BrowseTo`( ` _ObjectType_`, ` _ObjectName_`, ` _PathtoSubformControl_`, ` _WhereCondition_`, ` _Page_`, ` _DataMode_` ) +_expression_. `BrowseTo`( ` _ObjectType_`, ` _ObjectName_`, ` _PathtoSubformControl_`, ` _WhereCondition_`, ` _Page_`, ` _DataMode_` ) - _expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. +_expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ObjectType_|Required|**[AcBrowseToObjectType](Access.AcBrowseToObjectType.md)**|The object type to which to browse.| | _ObjectName_|Required|**Variant**|The object that loads inside the subform control referenced by the PathtoSubformControl argument. | diff --git a/api/Access.DoCmd.CancelEvent.md b/api/Access.DoCmd.CancelEvent.md index c25dc3c896a..89f9a754849 100644 --- a/api/Access.DoCmd.CancelEvent.md +++ b/api/Access.DoCmd.CancelEvent.md @@ -1,5 +1,5 @@ --- -title: DoCmd.CancelEvent Method (Access) +title: DoCmd.CancelEvent method (Access) keywords: vbaac10.chm4144 f1_keywords: - vbaac10.chm4144 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# DoCmd.CancelEvent Method (Access) +# DoCmd.CancelEvent method (Access) The **CancelEvent** method carries out the CancelEvent action in Visual Basic. ## Syntax - _expression_. `CancelEvent` +_expression_. `CancelEvent` - _expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. +_expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. ## Remarks diff --git a/api/Access.DoCmd.ClearMacroError.md b/api/Access.DoCmd.ClearMacroError.md index 1d04854104f..b1ced4364fa 100644 --- a/api/Access.DoCmd.ClearMacroError.md +++ b/api/Access.DoCmd.ClearMacroError.md @@ -1,5 +1,5 @@ --- -title: DoCmd.ClearMacroError Method (Access) +title: DoCmd.ClearMacroError method (Access) keywords: vbaac10.chm5773 f1_keywords: - vbaac10.chm5773 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# DoCmd.ClearMacroError Method (Access) +# DoCmd.ClearMacroError method (Access) Removes information about an error that is stored in the **MacroError** object. ## Syntax - _expression_. `ClearMacroError` +_expression_. `ClearMacroError` - _expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. +_expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. ## Remarks diff --git a/api/Access.DoCmd.Close.md b/api/Access.DoCmd.Close.md index 64d530ec3e5..3cae08d6468 100644 --- a/api/Access.DoCmd.Close.md +++ b/api/Access.DoCmd.Close.md @@ -1,5 +1,5 @@ --- -title: DoCmd.Close Method (Access) +title: DoCmd.Close method (Access) keywords: vbaac10.chm4145 f1_keywords: - vbaac10.chm4145 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# DoCmd.Close Method (Access) +# DoCmd.Close method (Access) The **Close** method carries out the Close action in Visual Basic. ## Syntax - _expression_. `Close`( ` _ObjectType_`, ` _ObjectName_`, ` _Save_` ) +_expression_. `Close`( ` _ObjectType_`, ` _ObjectName_`, ` _Save_` ) - _expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. +_expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ObjectType_|Optional|**AcObjectType**|A **[AcObjectType](Access.AcObjectType.md)** constant that represents the type of object to close.| | _ObjectName_|Optional|**Variant**|A string expression that's the valid name of an object of the type selected by the _objecttype_ argument.| diff --git a/api/Access.DoCmd.CloseDatabase.md b/api/Access.DoCmd.CloseDatabase.md index 74adb3a36c9..fbc6be08c16 100644 --- a/api/Access.DoCmd.CloseDatabase.md +++ b/api/Access.DoCmd.CloseDatabase.md @@ -1,5 +1,5 @@ --- -title: DoCmd.CloseDatabase Method (Access) +title: DoCmd.CloseDatabase method (Access) keywords: vbaac10.chm5621 f1_keywords: - vbaac10.chm5621 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# DoCmd.CloseDatabase Method (Access) +# DoCmd.CloseDatabase method (Access) Closes the current database. ## Syntax - _expression_. `CloseDatabase` +_expression_. `CloseDatabase` - _expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. +_expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. ## Remarks diff --git a/api/Access.DoCmd.CopyDatabaseFile.md b/api/Access.DoCmd.CopyDatabaseFile.md index 57b65381855..e6fb2833b78 100644 --- a/api/Access.DoCmd.CopyDatabaseFile.md +++ b/api/Access.DoCmd.CopyDatabaseFile.md @@ -1,5 +1,5 @@ --- -title: DoCmd.CopyDatabaseFile Method (Access) +title: DoCmd.CopyDatabaseFile method (Access) keywords: vbaac10.chm5088 f1_keywords: - vbaac10.chm5088 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# DoCmd.CopyDatabaseFile Method (Access) +# DoCmd.CopyDatabaseFile method (Access) Copies the database connected to the current project to a Microsoft SQL Server database file for export. ## Syntax - _expression_. `CopyDatabaseFile`( ` _DatabaseFileName_`, ` _OverwriteExistingFile_`, ` _DisconnectAllUsers_` ) +_expression_. `CopyDatabaseFile`( ` _DatabaseFileName_`, ` _OverwriteExistingFile_`, ` _DisconnectAllUsers_` ) - _expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. +_expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _DatabaseFileName_|Required|**Variant**|The name of the file (and path) to which the current database is copied. If no path is specified, the current directory is used.| | _OverwriteExistingFile_|Optional|**Variant**|Determines whether Microsoft Access overwrites the file specified by _DatabaseFileName_. **True** to overwrite the existing file. If the file doesn't already exist, this argument is ignored| diff --git a/api/Access.DoCmd.CopyObject.md b/api/Access.DoCmd.CopyObject.md index dc5c9ff362f..4f5376c062c 100644 --- a/api/Access.DoCmd.CopyObject.md +++ b/api/Access.DoCmd.CopyObject.md @@ -1,5 +1,5 @@ --- -title: DoCmd.CopyObject Method (Access) +title: DoCmd.CopyObject method (Access) keywords: vbaac10.chm4146 f1_keywords: - vbaac10.chm4146 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# DoCmd.CopyObject Method (Access) +# DoCmd.CopyObject method (Access) The **CopyObject** method carries out the CopyObject action in Visual Basic. ## Syntax - _expression_. `CopyObject`( ` _DestinationDatabase_`, ` _NewName_`, ` _SourceObjectType_`, ` _SourceObjectName_` ) +_expression_. `CopyObject`( ` _DestinationDatabase_`, ` _NewName_`, ` _SourceObjectType_`, ` _SourceObjectName_` ) - _expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. +_expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _DestinationDatabase_|Optional|**Variant**|A string expression that's the valid path and file name for the database you want to copy the object into. To select the current database, leave this argument blank. **Note** In a Microsoft Access project (.adp) you must leave the destinationdatabase argument blank. If you execute Visual Basic code containing the **CopyObject** method in a library database and leave this argument blank, Microsoft Access copies the object into the library database. diff --git a/api/Access.DoCmd.DeleteObject.md b/api/Access.DoCmd.DeleteObject.md index 33bbb8d1f6d..9c1378b5385 100644 --- a/api/Access.DoCmd.DeleteObject.md +++ b/api/Access.DoCmd.DeleteObject.md @@ -1,5 +1,5 @@ --- -title: DoCmd.DeleteObject Method (Access) +title: DoCmd.DeleteObject method (Access) keywords: vbaac10.chm4147 f1_keywords: - vbaac10.chm4147 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# DoCmd.DeleteObject Method (Access) +# DoCmd.DeleteObject method (Access) The **DeleteObject** method carries out the DeleteObject action in Visual Basic. ## Syntax - _expression_. `DeleteObject`( ` _ObjectType_`, ` _ObjectName_` ) +_expression_. `DeleteObject`( ` _ObjectType_`, ` _ObjectName_` ) - _expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. +_expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ObjectType_|Optional|**AcObjectType**|A **[AcObjectType](Access.AcObjectType.md)** constant that represents the type of object to delete.| | _ObjectName_|Optional|**Variant**| string expression that's the valid name of an object of the type selected by the _objecttype_ argument. If you run Visual Basic code containing the **DeleteObject** method in a library database, Microsoft Access looks for the object with this name first in the library database, then in the current database.| diff --git a/api/Access.DoCmd.DoMenuItem.md b/api/Access.DoCmd.DoMenuItem.md index 17ea0f9585d..e474891c4d2 100644 --- a/api/Access.DoCmd.DoMenuItem.md +++ b/api/Access.DoCmd.DoMenuItem.md @@ -1,5 +1,5 @@ --- -title: DoCmd.DoMenuItem Method (Access) +title: DoCmd.DoMenuItem method (Access) keywords: vbaac10.chm4148 f1_keywords: - vbaac10.chm4148 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# DoCmd.DoMenuItem Method (Access) +# DoCmd.DoMenuItem method (Access) Displays the appropriate menu or toolbar command for Microsoft Access. ## Syntax - _expression_. `DoMenuItem`( ` _MenuBar_`, ` _MenuName_`, ` _Command_`, ` _Subcommand_`, ` _Version_` ) +_expression_. `DoMenuItem`( ` _MenuBar_`, ` _MenuName_`, ` _Command_`, ` _Subcommand_`, ` _Version_` ) - _expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. +_expression_ A variable that represents a [DoCmd](Access.DoCmd.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _MenuBar_|Required|**Variant**|Use the intrinsic constant **acFormBar** for the menu bar in Form view. For other views, use the number of the view in the menu bar argument list, as shown in the Macro window in previous versions of Microsoft Access (count down the list, starting from 0).| | _MenuName_|Required|**Variant**|You can use one of the following intrinsic constants.
acFile
acEditMenu
acRecordsMenu
You can use acRecordsMenu only for the Form view menu bar in Microsoft Access version 2.0 and Microsoft Access 95 databases. For other menus, use the number of the menu in the menu name argument list, as shown in the Macro window in previous versions of Microsoft Access (count down the list, starting from 0).
Microsoft Access (default)
Jet 2.x
Jet 3.x
dBase III
dBase IV
dBase 5.0
Paradox 3.x
Paradox 4.x
Paradox 5.x
Paradox 7.x
ODBC Database
WSS
acDataErrContinue Ignore the error and continue without displaying the default Microsoft Access error message. You can supply a custom error message in place of the default error message.
acDataErrDisplay (Default) Display the default Microsoft Access error message.
acShiftMask The bit mask for the SHIFT key.
acCtrlMask The bit mask for the CTRL key.
acAltMask The bit mask for the ALT key.
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Form.MouseMove.md b/api/Access.Form.MouseMove.md index 9c24d334e4b..080a15e9212 100644 --- a/api/Access.Form.MouseMove.md +++ b/api/Access.Form.MouseMove.md @@ -1,5 +1,5 @@ --- -title: Form.MouseMove Event (Access) +title: Form.MouseMove event (Access) keywords: vbaac10.chm13653 f1_keywords: - vbaac10.chm13653 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Form.MouseMove Event (Access) +# Form.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [Form](Access.Form.md) object. +_expression_ A variable that represents a [Form](Access.Form.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button.
acRightButton The bit mask for the right mouse button.
acMiddleButton The bit mask for the middle mouse button.
acShiftMask The bit mask for the SHIFT key.
acCtrlMask The bit mask for the CTRL key.
acAltMask The bit mask for the ALT key.
acLeftButton The bit mask for the left mouse button.
diff --git a/api/Access.Form.MouseWheel(even).md b/api/Access.Form.MouseWheel(even).md
index 06d53427b19..55921b31dcc 100644
--- a/api/Access.Form.MouseWheel(even).md
+++ b/api/Access.Form.MouseWheel(even).md
@@ -1,5 +1,5 @@
---
-title: Form.MouseWheel Event (Access)
+title: Form.MouseWheel event (Access)
keywords: vbaac10.chm13683
f1_keywords:
- vbaac10.chm13683
@@ -11,23 +11,23 @@ ms.date: 06/08/2017
---
-# Form.MouseWheel Event (Access)
+# Form.MouseWheel event (Access)
Occurs when the user rolls the mouse wheel in Form View, Split Form View, Datasheet View, Layout View, PivotChart View, or PivotTable View.
## Syntax
- _expression_. `MouseWheel`( ` _Page_`, ` _Count_` )
+_expression_. `MouseWheel`( ` _Page_`, ` _Count_` )
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required|**Boolean**|**True** if the page was changed.|
| _Count_|Required|**Long**|The number of lines by which the view was scrolled with the mouse wheel.|
diff --git a/api/Access.Form.MouseWheel(property).md b/api/Access.Form.MouseWheel(property).md
index 3239d2f79ec..0253ad6a714 100644
--- a/api/Access.Form.MouseWheel(property).md
+++ b/api/Access.Form.MouseWheel(property).md
@@ -1,5 +1,5 @@
---
-title: Form.MouseWheel Property (Access)
+title: Form.MouseWheel property (Access)
keywords: vbaac10.chm13552
f1_keywords:
- vbaac10.chm13552
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.MouseWheel Property (Access)
+# Form.MouseWheel property (Access)
Returns or sets a **String** indicating which macro, event procedure, or user-defined function runs when the **MouseWheel** event occurs. Read/write.
## Syntax
- _expression_. `MouseWheel`
+_expression_. `MouseWheel`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Move.md b/api/Access.Form.Move.md
index 6d84e470463..d7314f03a70 100644
--- a/api/Access.Form.Move.md
+++ b/api/Access.Form.Move.md
@@ -1,5 +1,5 @@
---
-title: Form.Move Method (Access)
+title: Form.Move method (Access)
keywords: vbaac10.chm13518
f1_keywords:
- vbaac10.chm13518
@@ -11,23 +11,23 @@ ms.date: 06/08/2017
---
-# Form.Move Method (Access)
+# Form.Move method (Access)
Moves the specified object to the coordinates specified by the argument values.
## Syntax
- _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` )
+_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` )
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.|
| _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.|
diff --git a/api/Access.Form.Moveable.md b/api/Access.Form.Moveable.md
index 66c4dfed259..67794ecbff9 100644
--- a/api/Access.Form.Moveable.md
+++ b/api/Access.Form.Moveable.md
@@ -1,5 +1,5 @@
---
-title: Form.Moveable Property (Access)
+title: Form.Moveable property (Access)
keywords: vbaac10.chm13524
f1_keywords:
- vbaac10.chm13524
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Moveable Property (Access)
+# Form.Moveable property (Access)
Returns or sets a **Boolean** indicating whether the specified form can be moved by the user; **True** if it can be moved. Read/write.
## Syntax
- _expression_. `Moveable`
+_expression_. `Moveable`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Name.md b/api/Access.Form.Name.md
index 954370c62aa..74e544d2b6f 100644
--- a/api/Access.Form.Name.md
+++ b/api/Access.Form.Name.md
@@ -1,5 +1,5 @@
---
-title: Form.Name Property (Access)
+title: Form.Name property (Access)
keywords: vbaac10.chm13509
f1_keywords:
- vbaac10.chm13509
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Name Property (Access)
+# Form.Name property (Access)
You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**.
## Syntax
- _expression_. `Name`
+_expression_. `Name`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.NavigationButtons.md b/api/Access.Form.NavigationButtons.md
index 8e0117d93ce..845f9da7055 100644
--- a/api/Access.Form.NavigationButtons.md
+++ b/api/Access.Form.NavigationButtons.md
@@ -1,5 +1,5 @@
---
-title: Form.NavigationButtons Property (Access)
+title: Form.NavigationButtons property (Access)
keywords: vbaac10.chm13365
f1_keywords:
- vbaac10.chm13365
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.NavigationButtons Property (Access)
+# Form.NavigationButtons property (Access)
You can use the **NavigationButtons** property to specify whether navigation buttons and a record number box are displayed on a form. Read/write **Boolean**.
## Syntax
- _expression_. `NavigationButtons`
+_expression_. `NavigationButtons`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.NavigationCaption.md b/api/Access.Form.NavigationCaption.md
index 6a3e204e8ad..a20d19029d5 100644
--- a/api/Access.Form.NavigationCaption.md
+++ b/api/Access.Form.NavigationCaption.md
@@ -1,5 +1,5 @@
---
-title: Form.NavigationCaption Property (Access)
+title: Form.NavigationCaption property (Access)
keywords: vbaac10.chm13568,vbaac10.chm5683
f1_keywords:
- vbaac10.chm13568,vbaac10.chm5683
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.NavigationCaption Property (Access)
+# Form.NavigationCaption property (Access)
Gets or sets the text that appears to the left of the form's navigation buttons. Read/write **String**.
## Syntax
- _expression_. `NavigationCaption`
+_expression_. `NavigationCaption`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.NewRecord.md b/api/Access.Form.NewRecord.md
index 066c191ba1c..c46e7fe4659 100644
--- a/api/Access.Form.NewRecord.md
+++ b/api/Access.Form.NewRecord.md
@@ -1,5 +1,5 @@
---
-title: Form.NewRecord Property (Access)
+title: Form.NewRecord property (Access)
keywords: vbaac10.chm13491
f1_keywords:
- vbaac10.chm13491
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.NewRecord Property (Access)
+# Form.NewRecord property (Access)
You can use the **NewRecord** property to determine whether the current record is a new record. Read-only **Integer**.
## Syntax
- _expression_. `NewRecord`
+_expression_. `NewRecord`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.OnActivate.md b/api/Access.Form.OnActivate.md
index e3797e0ebe9..248b125b54e 100644
--- a/api/Access.Form.OnActivate.md
+++ b/api/Access.Form.OnActivate.md
@@ -1,5 +1,5 @@
---
-title: Form.OnActivate Property (Access)
+title: Form.OnActivate property (Access)
keywords: vbaac10.chm13445
f1_keywords:
- vbaac10.chm13445
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnActivate Property (Access)
+# Form.OnActivate property (Access)
Sets or returns the value of the **On Activate** box in the **Properties** window of a form or report. Read/write **String**.
## Syntax
- _expression_. `OnActivate`
+_expression_. `OnActivate`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **Activate** event occurs when the form or report receives the focus and be
The **OnActivate** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Activate** box in the object's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnApplyFilter.md b/api/Access.Form.OnApplyFilter.md
index a3e9a8a2267..5e79c63c92d 100644
--- a/api/Access.Form.OnApplyFilter.md
+++ b/api/Access.Form.OnApplyFilter.md
@@ -1,5 +1,5 @@
---
-title: Form.OnApplyFilter Property (Access)
+title: Form.OnApplyFilter property (Access)
keywords: vbaac10.chm13460
f1_keywords:
- vbaac10.chm13460
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnApplyFilter Property (Access)
+# Form.OnApplyFilter property (Access)
Sets or returns the value of the **On Apply Filter** box in the **Properties** window of a form. Read/write **String**.
## Syntax
- _expression_. `OnApplyFilter`
+_expression_. `OnApplyFilter`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **Apply Filter** event occurs when a filter is applied or removed.
The **OnApplyFilter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Apply Filter** box in the form's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnClick.md b/api/Access.Form.OnClick.md
index f026fe07754..35148ac9467 100644
--- a/api/Access.Form.OnClick.md
+++ b/api/Access.Form.OnClick.md
@@ -1,5 +1,5 @@
---
-title: Form.OnClick Property (Access)
+title: Form.OnClick property (Access)
keywords: vbaac10.chm13449
f1_keywords:
- vbaac10.chm13449
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnClick Property (Access)
+# Form.OnClick property (Access)
Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**.
## Syntax
- _expression_. `OnClick`
+_expression_. `OnClick`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt
The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnClose.md b/api/Access.Form.OnClose.md
index d93c0ac55c5..3c5bb85d372 100644
--- a/api/Access.Form.OnClose.md
+++ b/api/Access.Form.OnClose.md
@@ -1,5 +1,5 @@
---
-title: Form.OnClose Property (Access)
+title: Form.OnClose property (Access)
keywords: vbaac10.chm13444
f1_keywords:
- vbaac10.chm13444
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnClose Property (Access)
+# Form.OnClose property (Access)
Sets or returns the value of the **On Close** box in the **Properties** window of a form or report. Read/write **String**.
## Syntax
- _expression_. `OnClose`
+_expression_. `OnClose`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **Close** event occurs when when a form or report is closed and removed fro
The **OnClose** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Close** box in the object's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnConnect(even).md b/api/Access.Form.OnConnect(even).md
index 42f44cbf98c..e0c460459b8 100644
--- a/api/Access.Form.OnConnect(even).md
+++ b/api/Access.Form.OnConnect(even).md
@@ -1,5 +1,5 @@
---
-title: Form.OnConnect Event (Access)
+title: Form.OnConnect event (Access)
keywords: vbaac10.chm13667
f1_keywords:
- vbaac10.chm13667
@@ -11,19 +11,19 @@ ms.date: 06/08/2017
---
-# Form.OnConnect Event (Access)
+# Form.OnConnect event (Access)
Occurs when the specified PivotTable view connects to a data source.
## Syntax
- _expression_. `OnConnect`
+_expression_. `OnConnect`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
-### Return Value
+### Return value
nothing
diff --git a/api/Access.Form.OnConnect(property).md b/api/Access.Form.OnConnect(property).md
index df80769e02f..e5aceb8f2ed 100644
--- a/api/Access.Form.OnConnect(property).md
+++ b/api/Access.Form.OnConnect(property).md
@@ -1,5 +1,5 @@
---
-title: Form.OnConnect Property (Access)
+title: Form.OnConnect property (Access)
keywords: vbaac10.chm13536,vbaac10.chm5100
f1_keywords:
- vbaac10.chm13536,vbaac10.chm5100
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnConnect Property (Access)
+# Form.OnConnect property (Access)
Returns or sets a **String** indicating which macro, event procedure, or user-defined function runs when the **[OnConnect](Access.Form.OnConnect(even).md)** event occurs. Read/write.
## Syntax
- _expression_. `OnConnect`
+_expression_. `OnConnect`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.OnCurrent.md b/api/Access.Form.OnCurrent.md
index 50dca37acba..95796b1b088 100644
--- a/api/Access.Form.OnCurrent.md
+++ b/api/Access.Form.OnCurrent.md
@@ -1,5 +1,5 @@
---
-title: Form.OnCurrent Property (Access)
+title: Form.OnCurrent property (Access)
keywords: vbaac10.chm13430
f1_keywords:
- vbaac10.chm13430
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnCurrent Property (Access)
+# Form.OnCurrent property (Access)
Sets or returns the value of the **On Current** box in the **Properties** window of a form. Read/write **String**.
## Syntax
- _expression_. `OnCurrent`
+_expression_. `OnCurrent`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **Current** event occurs when the focus moves to a record, making it the cu
The **OnCurrent** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Apply Filter** box in the form's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnDblClick.md b/api/Access.Form.OnDblClick.md
index 4801c2d34ac..759fd6adce8 100644
--- a/api/Access.Form.OnDblClick.md
+++ b/api/Access.Form.OnDblClick.md
@@ -1,5 +1,5 @@
---
-title: Form.OnDblClick Property (Access)
+title: Form.OnDblClick property (Access)
keywords: vbaac10.chm13450
f1_keywords:
- vbaac10.chm13450
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnDblClick Property (Access)
+# Form.OnDblClick property (Access)
Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**.
## Syntax
- _expression_. `OnDblClick`
+_expression_. `OnDblClick`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b
The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnDeactivate.md b/api/Access.Form.OnDeactivate.md
index 1bc3890ab7e..686d9683bfe 100644
--- a/api/Access.Form.OnDeactivate.md
+++ b/api/Access.Form.OnDeactivate.md
@@ -1,5 +1,5 @@
---
-title: Form.OnDeactivate Property (Access)
+title: Form.OnDeactivate property (Access)
keywords: vbaac10.chm13446
f1_keywords:
- vbaac10.chm13446
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnDeactivate Property (Access)
+# Form.OnDeactivate property (Access)
Sets or returns the value of the **On Deactivate** box in the **Properties** window of a form or report. Read/write **String**.
## Syntax
- _expression_. `OnDeactivate`
+_expression_. `OnDeactivate`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **Deactivate** event occurs when the form or report loses the focus to a Ta
The **OnDeactivate** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Deactivate** box in the object's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnDelete.md b/api/Access.Form.OnDelete.md
index a9de3af8bf3..45b399b5407 100644
--- a/api/Access.Form.OnDelete.md
+++ b/api/Access.Form.OnDelete.md
@@ -1,5 +1,5 @@
---
-title: Form.OnDelete Property (Access)
+title: Form.OnDelete property (Access)
keywords: vbaac10.chm13437,vbaac10.chm5427
f1_keywords:
- vbaac10.chm13437,vbaac10.chm5427
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnDelete Property (Access)
+# Form.OnDelete property (Access)
Sets or returns the value of the **On Delete** box in the **Properties** window of a form. Read/write **String**.
## Syntax
- _expression_. `OnDelete`
+_expression_. `OnDelete`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **Delete** event occurs when the user performs some action, such as pressin
The **OnDelete** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Delete** box in the form's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnDirty.md b/api/Access.Form.OnDirty.md
index 599a5fa75b0..46b709726f7 100644
--- a/api/Access.Form.OnDirty.md
+++ b/api/Access.Form.OnDirty.md
@@ -1,5 +1,5 @@
---
-title: Form.OnDirty Property (Access)
+title: Form.OnDirty property (Access)
keywords: vbaac10.chm13436
f1_keywords:
- vbaac10.chm13436
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnDirty Property (Access)
+# Form.OnDirty property (Access)
Sets or returns the value of the **On Dirty** box in the **Properties** window of a form or report. Read/write **String**.
## Syntax
- _expression_. `OnDirty`
+_expression_. `OnDirty`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **Dirty** event occurs when the contents of a form or the text portion of a
The **OnClose** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dirty** box in the object's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnDisconnect(even).md b/api/Access.Form.OnDisconnect(even).md
index 9fff61d8526..3e85b8347fb 100644
--- a/api/Access.Form.OnDisconnect(even).md
+++ b/api/Access.Form.OnDisconnect(even).md
@@ -1,5 +1,5 @@
---
-title: Form.OnDisconnect Event (Access)
+title: Form.OnDisconnect event (Access)
keywords: vbaac10.chm13668
f1_keywords:
- vbaac10.chm13668
@@ -11,19 +11,19 @@ ms.date: 06/08/2017
---
-# Form.OnDisconnect Event (Access)
+# Form.OnDisconnect event (Access)
Occurs when the specified PivotTable view disconnects from a data source.
## Syntax
- _expression_. `OnDisconnect`
+_expression_. `OnDisconnect`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
-### Return Value
+### Return value
nothing
diff --git a/api/Access.Form.OnDisconnect(property).md b/api/Access.Form.OnDisconnect(property).md
index 56205b7b840..88d37bc87b6 100644
--- a/api/Access.Form.OnDisconnect(property).md
+++ b/api/Access.Form.OnDisconnect(property).md
@@ -1,5 +1,5 @@
---
-title: Form.OnDisconnect Property (Access)
+title: Form.OnDisconnect property (Access)
keywords: vbaac10.chm13537,vbaac10.chm5101
f1_keywords:
- vbaac10.chm13537,vbaac10.chm5101
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnDisconnect Property (Access)
+# Form.OnDisconnect property (Access)
Returns or sets a **String** indicating which macro, event procedure, or user-defined function runs when the **[OnDisconnect](Access.Form.OnDisconnect(even).md)** event occurs. Read/write.
## Syntax
- _expression_. `OnDisconnect`
+_expression_. `OnDisconnect`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.OnError.md b/api/Access.Form.OnError.md
index 5dd0a20f483..f6dc1cc95d7 100644
--- a/api/Access.Form.OnError.md
+++ b/api/Access.Form.OnError.md
@@ -1,5 +1,5 @@
---
-title: Form.OnError Property (Access)
+title: Form.OnError property (Access)
keywords: vbaac10.chm13458
f1_keywords:
- vbaac10.chm13458
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnError Property (Access)
+# Form.OnError property (Access)
Sets or returns the value of the **OnError** box in the **Properties** window of a form or report. Read/write **String**.
## Syntax
- _expression_. `OnError`
+_expression_. `OnError`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **Error** event occurs when a run-time error is produced in Microsoft Acces
The **OnError** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **OnError** box in the object's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnFilter.md b/api/Access.Form.OnFilter.md
index 235863e8807..e20e4cba832 100644
--- a/api/Access.Form.OnFilter.md
+++ b/api/Access.Form.OnFilter.md
@@ -1,5 +1,5 @@
---
-title: Form.OnFilter Property (Access)
+title: Form.OnFilter property (Access)
keywords: vbaac10.chm13459
f1_keywords:
- vbaac10.chm13459
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnFilter Property (Access)
+# Form.OnFilter property (Access)
Sets or returns the value of the **On Filter** box in the **Properties** window of a form. Read/write **String**.
## Syntax
- _expression_. `OnFilter`
+_expression_. `OnFilter`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **Filter** event occurs when a form is opened and its records are displayed
The **OnFilter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Filter** box in the form's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnGotFocus.md b/api/Access.Form.OnGotFocus.md
index f29bc5d0a4b..bbb84aa6aa2 100644
--- a/api/Access.Form.OnGotFocus.md
+++ b/api/Access.Form.OnGotFocus.md
@@ -1,5 +1,5 @@
---
-title: Form.OnGotFocus Property (Access)
+title: Form.OnGotFocus property (Access)
keywords: vbaac10.chm13447
f1_keywords:
- vbaac10.chm13447
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnGotFocus Property (Access)
+# Form.OnGotFocus property (Access)
Sets or returns the value of the **On Got Focus** box in the **Properties** window of the specified object. Read/write **String**.
## Syntax
- _expression_. `OnGotFocus`
+_expression_. `OnGotFocus`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **GotFocus** event occurs when the object receives the focus.
The **OnGotFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Got Focus** box in the object's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnInsert.md b/api/Access.Form.OnInsert.md
index f4a7a5bafee..2a25bd57207 100644
--- a/api/Access.Form.OnInsert.md
+++ b/api/Access.Form.OnInsert.md
@@ -1,5 +1,5 @@
---
-title: Form.OnInsert Property (Access)
+title: Form.OnInsert property (Access)
keywords: vbaac10.chm13431
f1_keywords:
- vbaac10.chm13431
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnInsert Property (Access)
+# Form.OnInsert property (Access)
Sets or returns the value of the **Before Insert** box in the **Properties** window of a form. Read/write **String**.
## Syntax
- _expression_. `OnInsert`
+_expression_. `OnInsert`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -34,7 +34,7 @@ The **BeforeInsert** event occurs when the user types the first character in a
The **OnInsert** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **Before Insert** box in the form's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnKeyDown.md b/api/Access.Form.OnKeyDown.md
index a751402f832..da187551190 100644
--- a/api/Access.Form.OnKeyDown.md
+++ b/api/Access.Form.OnKeyDown.md
@@ -1,5 +1,5 @@
---
-title: Form.OnKeyDown Property (Access)
+title: Form.OnKeyDown property (Access)
keywords: vbaac10.chm13454
f1_keywords:
- vbaac10.chm13454
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnKeyDown Property (Access)
+# Form.OnKeyDown property (Access)
Sets or returns the value of the **On Key Down** box in the **Properties** window. Read/write **String**.
## Syntax
- _expression_. `OnKeyDown`
+_expression_. `OnKeyDown`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **KeyDown** event occurs when a user presses a key while a form or control
The **OnKeyDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Down** box in the object's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnKeyPress.md b/api/Access.Form.OnKeyPress.md
index a00a29b90ad..270140562da 100644
--- a/api/Access.Form.OnKeyPress.md
+++ b/api/Access.Form.OnKeyPress.md
@@ -1,5 +1,5 @@
---
-title: Form.OnKeyPress Property (Access)
+title: Form.OnKeyPress property (Access)
keywords: vbaac10.chm13456
f1_keywords:
- vbaac10.chm13456
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnKeyPress Property (Access)
+# Form.OnKeyPress property (Access)
Sets or returns the value of the **On Key Press** box in the **Properties** window. Read/write **String**.
## Syntax
- _expression_. `OnKeyPress`
+_expression_. `OnKeyPress`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **KeyPress** event occurs when a user presses a key while a form or control
The **OnKeyPress** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Press** box in the object's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnKeyUp.md b/api/Access.Form.OnKeyUp.md
index 1cba0b1cf0e..35fa0d54be0 100644
--- a/api/Access.Form.OnKeyUp.md
+++ b/api/Access.Form.OnKeyUp.md
@@ -1,5 +1,5 @@
---
-title: Form.OnKeyUp Property (Access)
+title: Form.OnKeyUp property (Access)
keywords: vbaac10.chm13455
f1_keywords:
- vbaac10.chm13455
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnKeyUp Property (Access)
+# Form.OnKeyUp property (Access)
Sets or returns the value of the **On Key Up** box in the **Properties** window. Read/write **String**.
## Syntax
- _expression_. `OnKeyUp`
+_expression_. `OnKeyUp`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **KeyUp** event occurs when a user presses a key while a form or control ha
The **OnKeyUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Up** box in the object's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnLoad.md b/api/Access.Form.OnLoad.md
index 57e2237e772..4a8f02ce8ae 100644
--- a/api/Access.Form.OnLoad.md
+++ b/api/Access.Form.OnLoad.md
@@ -1,5 +1,5 @@
---
-title: Form.OnLoad Property (Access)
+title: Form.OnLoad property (Access)
keywords: vbaac10.chm13441
f1_keywords:
- vbaac10.chm13441
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnLoad Property (Access)
+# Form.OnLoad property (Access)
Sets or returns the value of the **On Load** box in the **Properties** window of a form. Read/write **String**.
## Syntax
- _expression_. `OnLoad`
+_expression_. `OnLoad`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **Load** event occurs when a form is opened and its records are displayed.
The **OnLoad** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Load** box in the form's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnLostFocus.md b/api/Access.Form.OnLostFocus.md
index c4ccaa6bf5b..14c079a952d 100644
--- a/api/Access.Form.OnLostFocus.md
+++ b/api/Access.Form.OnLostFocus.md
@@ -1,5 +1,5 @@
---
-title: Form.OnLostFocus Property (Access)
+title: Form.OnLostFocus property (Access)
keywords: vbaac10.chm13448
f1_keywords:
- vbaac10.chm13448
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnLostFocus Property (Access)
+# Form.OnLostFocus property (Access)
Sets or returns the value of the **On Lost Focus** box in the **Properties** window of the specified object. Read/write **String**.
## Syntax
- _expression_. `OnLostFocus`
+_expression_. `OnLostFocus`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **LostFocus** event occurs when the object loses the focus.
The **OnLostFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Lost Focus** box in the object's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnMouseDown.md b/api/Access.Form.OnMouseDown.md
index f1c4a732a4f..8f724fd7b41 100644
--- a/api/Access.Form.OnMouseDown.md
+++ b/api/Access.Form.OnMouseDown.md
@@ -1,5 +1,5 @@
---
-title: Form.OnMouseDown Property (Access)
+title: Form.OnMouseDown property (Access)
keywords: vbaac10.chm13451
f1_keywords:
- vbaac10.chm13451
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnMouseDown Property (Access)
+# Form.OnMouseDown property (Access)
Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**.
## Syntax
- _expression_. `OnMouseDown`
+_expression_. `OnMouseDown`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the
The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnMouseMove.md b/api/Access.Form.OnMouseMove.md
index a3bb83cf0c7..4b3e4d28cfb 100644
--- a/api/Access.Form.OnMouseMove.md
+++ b/api/Access.Form.OnMouseMove.md
@@ -1,5 +1,5 @@
---
-title: Form.OnMouseMove Property (Access)
+title: Form.OnMouseMove property (Access)
keywords: vbaac10.chm13452
f1_keywords:
- vbaac10.chm13452
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnMouseMove Property (Access)
+# Form.OnMouseMove property (Access)
Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**.
## Syntax
- _expression_. `OnMouseMove`
+_expression_. `OnMouseMove`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object.
The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnMouseUp.md b/api/Access.Form.OnMouseUp.md
index 447d2dfefb8..894a15a5aec 100644
--- a/api/Access.Form.OnMouseUp.md
+++ b/api/Access.Form.OnMouseUp.md
@@ -1,5 +1,5 @@
---
-title: Form.OnMouseUp Property (Access)
+title: Form.OnMouseUp property (Access)
keywords: vbaac10.chm13453
f1_keywords:
- vbaac10.chm13453
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnMouseUp Property (Access)
+# Form.OnMouseUp property (Access)
Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**.
## Syntax
- _expression_. `OnMouseUp`
+_expression_. `OnMouseUp`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button.
The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnOpen.md b/api/Access.Form.OnOpen.md
index d88feb56a02..b4432922c64 100644
--- a/api/Access.Form.OnOpen.md
+++ b/api/Access.Form.OnOpen.md
@@ -1,5 +1,5 @@
---
-title: Form.OnOpen Property (Access)
+title: Form.OnOpen property (Access)
keywords: vbaac10.chm13440
f1_keywords:
- vbaac10.chm13440
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnOpen Property (Access)
+# Form.OnOpen property (Access)
Sets or returns the value of the **On Open** box in the **Properties** window of a form or report. Read/write **String**.
## Syntax
- _expression_. `OnOpen`
+_expression_. `OnOpen`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **Open** event occurs when a form is opened, but before the first record is
The **OnOpen** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Open** box in the object's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnResize.md b/api/Access.Form.OnResize.md
index 4b65bcd2d97..db4e010e7ca 100644
--- a/api/Access.Form.OnResize.md
+++ b/api/Access.Form.OnResize.md
@@ -1,5 +1,5 @@
---
-title: Form.OnResize Property (Access)
+title: Form.OnResize property (Access)
keywords: vbaac10.chm13442
f1_keywords:
- vbaac10.chm13442
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnResize Property (Access)
+# Form.OnResize property (Access)
Sets or returns the value of the **On Resize** box in the **Properties** window of a form. Read/write **String**.
## Syntax
- _expression_. `OnResize`
+_expression_. `OnResize`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **Resize** event occurs when a form is opened and whenever the size of a fo
The **OnResize** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Resize** box in the form's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnTimer.md b/api/Access.Form.OnTimer.md
index acea640ffb6..c13faf65bd9 100644
--- a/api/Access.Form.OnTimer.md
+++ b/api/Access.Form.OnTimer.md
@@ -1,5 +1,5 @@
---
-title: Form.OnTimer Property (Access)
+title: Form.OnTimer property (Access)
keywords: vbaac10.chm13461
f1_keywords:
- vbaac10.chm13461
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnTimer Property (Access)
+# Form.OnTimer property (Access)
Sets or returns the value of the **On Timer** box in the **Properties** window of a form. Read/write **String**.
## Syntax
- _expression_. `OnTimer`
+_expression_. `OnTimer`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **Timer** event occurs for a form at regular intervals as specified by the
The **OnTimer** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Timer** box in the form's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.OnUndo.md b/api/Access.Form.OnUndo.md
index 609bbf81e85..9c585967144 100644
--- a/api/Access.Form.OnUndo.md
+++ b/api/Access.Form.OnUndo.md
@@ -1,5 +1,5 @@
---
-title: Form.OnUndo Property (Access)
+title: Form.OnUndo property (Access)
keywords: vbaac10.chm13519
f1_keywords:
- vbaac10.chm13519
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnUndo Property (Access)
+# Form.OnUndo property (Access)
Returns or sets a **String** indicating which macro, event procedure, or user-defined function runs when the **Undo** event occurs. Read/write..
## Syntax
- _expression_. `OnUndo`
+_expression_. `OnUndo`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.OnUnload.md b/api/Access.Form.OnUnload.md
index ab0bcca5aa1..958074543ce 100644
--- a/api/Access.Form.OnUnload.md
+++ b/api/Access.Form.OnUnload.md
@@ -1,5 +1,5 @@
---
-title: Form.OnUnload Property (Access)
+title: Form.OnUnload property (Access)
keywords: vbaac10.chm13443
f1_keywords:
- vbaac10.chm13443
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OnUnload Property (Access)
+# Form.OnUnload property (Access)
Sets or returns the value of the **On Unload** box in the **Properties** window of a form. Read/write **String**.
## Syntax
- _expression_. `OnUnload`
+_expression_. `OnUnload`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
@@ -32,7 +32,7 @@ The **Unload** event occurs after a form is closed but before it's removed from
The **OnUnload** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Unload** box in the form's **Properties** window):
-- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window.
+- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window.
- If Macro Builder is chosen, the value is the name of the macro.
diff --git a/api/Access.Form.Open.md b/api/Access.Form.Open.md
index f39efa53b23..957917cb74f 100644
--- a/api/Access.Form.Open.md
+++ b/api/Access.Form.Open.md
@@ -1,5 +1,5 @@
---
-title: Form.Open Event (Access)
+title: Form.Open event (Access)
keywords: vbaac10.chm13642
f1_keywords:
- vbaac10.chm13642
@@ -11,23 +11,23 @@ ms.date: 06/08/2017
---
-# Form.Open Event (Access)
+# Form.Open event (Access)
The **Open** event occurs when a form is opened, but before the first record is displayed.
## Syntax
- _expression_. `Open`( ` _Cancel_`, )
+_expression_. `Open`( ` _Cancel_`, )
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cancel_|Required|**Integer**|The setting determines if the opening of the form or report occurs. Setting the Cancel argument to True (?1) cancels the opening of the form or report.|
diff --git a/api/Access.Form.OpenArgs.md b/api/Access.Form.OpenArgs.md
index 1d9f9882db3..b1ee5bd839d 100644
--- a/api/Access.Form.OpenArgs.md
+++ b/api/Access.Form.OpenArgs.md
@@ -1,5 +1,5 @@
---
-title: Form.OpenArgs Property (Access)
+title: Form.OpenArgs property (Access)
keywords: vbaac10.chm13428
f1_keywords:
- vbaac10.chm13428
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OpenArgs Property (Access)
+# Form.OpenArgs property (Access)
Determines the string expression specified by the _OpenArgs_ argument of the **OpenForm** method that opened a form. Read/write **Variant**.
## Syntax
- _expression_. `OpenArgs`
+_expression_. `OpenArgs`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.OrderBy.md b/api/Access.Form.OrderBy.md
index 8540ff64f9c..0435995a88f 100644
--- a/api/Access.Form.OrderBy.md
+++ b/api/Access.Form.OrderBy.md
@@ -1,5 +1,5 @@
---
-title: Form.OrderBy Property (Access)
+title: Form.OrderBy property (Access)
keywords: vbaac10.chm13348
f1_keywords:
- vbaac10.chm13348
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OrderBy Property (Access)
+# Form.OrderBy property (Access)
You can use the **OrderBy** property to specify how you want to sort records in a form. Read/write **String**.
## Syntax
- _expression_. `OrderBy`
+_expression_. `OrderBy`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.OrderByOn.md b/api/Access.Form.OrderByOn.md
index 9ea14b3a7e4..87162f02c9d 100644
--- a/api/Access.Form.OrderByOn.md
+++ b/api/Access.Form.OrderByOn.md
@@ -1,5 +1,5 @@
---
-title: Form.OrderByOn Property (Access)
+title: Form.OrderByOn property (Access)
keywords: vbaac10.chm13349
f1_keywords:
- vbaac10.chm13349
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OrderByOn Property (Access)
+# Form.OrderByOn property (Access)
You can use the **OrderByOn** property to specify whether an object's **OrderBy** property setting is applied. Read/write **Boolean**.
## Syntax
- _expression_. `OrderByOn`
+_expression_. `OrderByOn`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.OrderByOnLoad.md b/api/Access.Form.OrderByOnLoad.md
index 8ba44d178e6..cd6328d21cf 100644
--- a/api/Access.Form.OrderByOnLoad.md
+++ b/api/Access.Form.OrderByOnLoad.md
@@ -1,5 +1,5 @@
---
-title: Form.OrderByOnLoad Property (Access)
+title: Form.OrderByOnLoad property (Access)
keywords: vbaac10.chm13562
f1_keywords:
- vbaac10.chm13562
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.OrderByOnLoad Property (Access)
+# Form.OrderByOnLoad property (Access)
Gets or sets whether the sorting specified by the **[OrderBy](Access.Form.OrderBy.md)** property is applied when the form is loaded. Read/write **Boolean**.
## Syntax
- _expression_. `OrderByOnLoad`
+_expression_. `OrderByOnLoad`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## See also
diff --git a/api/Access.Form.Orientation.md b/api/Access.Form.Orientation.md
index 432d0ef0254..d779ff5af2a 100644
--- a/api/Access.Form.Orientation.md
+++ b/api/Access.Form.Orientation.md
@@ -1,5 +1,5 @@
---
-title: Form.Orientation Property (Access)
+title: Form.Orientation property (Access)
keywords: vbaac10.chm13480
f1_keywords:
- vbaac10.chm13480
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Orientation Property (Access)
+# Form.Orientation property (Access)
You can use the **Orientation** property to specify or determine the view orientation. Read/write **Byte**.
## Syntax
- _expression_. `Orientation`
+_expression_. `Orientation`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Page.md b/api/Access.Form.Page.md
index 0296a3553c9..adc4ab32ad7 100644
--- a/api/Access.Form.Page.md
+++ b/api/Access.Form.Page.md
@@ -1,5 +1,5 @@
---
-title: Form.Page Property (Access)
+title: Form.Page property (Access)
keywords: vbaac10.chm13410
f1_keywords:
- vbaac10.chm13410
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Page Property (Access)
+# Form.Page property (Access)
The **Page** property specifies the current page number when a form is being printed. Read/write **Long**.
## Syntax
- _expression_. `Page`
+_expression_. `Page`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Pages.md b/api/Access.Form.Pages.md
index 5ed55ca5264..619480ce6f5 100644
--- a/api/Access.Form.Pages.md
+++ b/api/Access.Form.Pages.md
@@ -1,5 +1,5 @@
---
-title: Form.Pages Property (Access)
+title: Form.Pages property (Access)
keywords: vbaac10.chm13411
f1_keywords:
- vbaac10.chm13411
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Pages Property (Access)
+# Form.Pages property (Access)
You can use the **Pages** property to return information needed to print page numbers in a form. Read/write **Integer**.
## Syntax
- _expression_. `Pages`
+_expression_. `Pages`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.PaintPalette.md b/api/Access.Form.PaintPalette.md
index c93fecef4bd..9e6ac9603c9 100644
--- a/api/Access.Form.PaintPalette.md
+++ b/api/Access.Form.PaintPalette.md
@@ -1,5 +1,5 @@
---
-title: Form.PaintPalette Property (Access)
+title: Form.PaintPalette property (Access)
keywords: vbaac10.chm13426
f1_keywords:
- vbaac10.chm13426
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.PaintPalette Property (Access)
+# Form.PaintPalette property (Access)
You can use the **PaintPalette** property to specify a palette to be used by a form. Read/write **Variant**.
## Syntax
- _expression_. `PaintPalette`
+_expression_. `PaintPalette`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Painting.md b/api/Access.Form.Painting.md
index 12e6528d567..41ede4cfe40 100644
--- a/api/Access.Form.Painting.md
+++ b/api/Access.Form.Painting.md
@@ -1,5 +1,5 @@
---
-title: Form.Painting Property (Access)
+title: Form.Painting property (Access)
keywords: vbaac10.chm13416
f1_keywords:
- vbaac10.chm13416
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Painting Property (Access)
+# Form.Painting property (Access)
You can use the **Painting** property to specify whether a form is repainted. Read/write **Boolean**.
## Syntax
- _expression_. `Painting`
+_expression_. `Painting`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.PaletteSource.md b/api/Access.Form.PaletteSource.md
index f52ace6cd0a..86cb58e6e19 100644
--- a/api/Access.Form.PaletteSource.md
+++ b/api/Access.Form.PaletteSource.md
@@ -1,5 +1,5 @@
---
-title: Form.PaletteSource Property (Access)
+title: Form.PaletteSource property (Access)
keywords: vbaac10.chm13424
f1_keywords:
- vbaac10.chm13424
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.PaletteSource Property (Access)
+# Form.PaletteSource property (Access)
You can use the **PaletteSource** property to specify the palette for a form. Read/write **String**.
## Syntax
- _expression_. `PaletteSource`
+_expression_. `PaletteSource`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Parent.md b/api/Access.Form.Parent.md
index 52ac13e08f5..9962dad331c 100644
--- a/api/Access.Form.Parent.md
+++ b/api/Access.Form.Parent.md
@@ -1,5 +1,5 @@
---
-title: Form.Parent Property (Access)
+title: Form.Parent property (Access)
keywords: vbaac10.chm13490
f1_keywords:
- vbaac10.chm13490
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Parent Property (Access)
+# Form.Parent property (Access)
Returns the parent object for the specified object. Read-only.
## Syntax
- _expression_. `Parent`
+_expression_. `Parent`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## See also
diff --git a/api/Access.Form.Picture.md b/api/Access.Form.Picture.md
index d005e55599f..c24980c6bce 100644
--- a/api/Access.Form.Picture.md
+++ b/api/Access.Form.Picture.md
@@ -1,5 +1,5 @@
---
-title: Form.Picture Property (Access)
+title: Form.Picture property (Access)
keywords: vbaac10.chm13379
f1_keywords:
- vbaac10.chm13379
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Picture Property (Access)
+# Form.Picture property (Access)
You can use the **Picture** property to specify a bitmap or other type of graphic to be used as a background picture on a form. Read/write **String**.
## Syntax
- _expression_. `Picture`
+_expression_. `Picture`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.PictureAlignment.md b/api/Access.Form.PictureAlignment.md
index 005d13b3ac9..da7053d4fd0 100644
--- a/api/Access.Form.PictureAlignment.md
+++ b/api/Access.Form.PictureAlignment.md
@@ -1,5 +1,5 @@
---
-title: Form.PictureAlignment Property (Access)
+title: Form.PictureAlignment property (Access)
keywords: vbaac10.chm13382
f1_keywords:
- vbaac10.chm13382
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.PictureAlignment Property (Access)
+# Form.PictureAlignment property (Access)
You can use the **PictureAlignment** property to specify where a background picture will appear in an image control or on a form or report. Read/write **Byte**.Read/write.
## Syntax
- _expression_. `PictureAlignment`
+_expression_. `PictureAlignment`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.PictureData.md b/api/Access.Form.PictureData.md
index 48bcdb076e4..30653b2f877 100644
--- a/api/Access.Form.PictureData.md
+++ b/api/Access.Form.PictureData.md
@@ -1,5 +1,5 @@
---
-title: Form.PictureData Property (Access)
+title: Form.PictureData property (Access)
keywords: vbaac10.chm13474
f1_keywords:
- vbaac10.chm13474
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.PictureData Property (Access)
+# Form.PictureData property (Access)
You can use the **PictureData** property to copy the picture to another object that supports the **Picture** property. Read/write **Variant**.
## Syntax
- _expression_. `PictureData`
+_expression_. `PictureData`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.PicturePalette.md b/api/Access.Form.PicturePalette.md
index 9569751a4fb..50d6abc8bf2 100644
--- a/api/Access.Form.PicturePalette.md
+++ b/api/Access.Form.PicturePalette.md
@@ -1,5 +1,5 @@
---
-title: Form.PicturePalette Property (Access)
+title: Form.PicturePalette property (Access)
keywords: vbaac10.chm13477
f1_keywords:
- vbaac10.chm13477
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.PicturePalette Property (Access)
+# Form.PicturePalette property (Access)
You can use the **PicturePalette** property to specify a palette to be used by a form. Read/write **Variant**.
## Syntax
- _expression_. `PicturePalette`
+_expression_. `PicturePalette`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## See also
diff --git a/api/Access.Form.PictureSizeMode.md b/api/Access.Form.PictureSizeMode.md
index 153b43b8bb9..904030d884a 100644
--- a/api/Access.Form.PictureSizeMode.md
+++ b/api/Access.Form.PictureSizeMode.md
@@ -1,5 +1,5 @@
---
-title: Form.PictureSizeMode Property (Access)
+title: Form.PictureSizeMode property (Access)
keywords: vbaac10.chm13381
f1_keywords:
- vbaac10.chm13381
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.PictureSizeMode Property (Access)
+# Form.PictureSizeMode property (Access)
You can use the **PictureSizeMode** property to specify how a picture for a form or report is sized. Read/write **Byte**.
## Syntax
- _expression_. `PictureSizeMode`
+_expression_. `PictureSizeMode`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.PictureTiling.md b/api/Access.Form.PictureTiling.md
index 0f09bee8038..df134897f5a 100644
--- a/api/Access.Form.PictureTiling.md
+++ b/api/Access.Form.PictureTiling.md
@@ -1,5 +1,5 @@
---
-title: Form.PictureTiling Property (Access)
+title: Form.PictureTiling property (Access)
keywords: vbaac10.chm13383
f1_keywords:
- vbaac10.chm13383
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.PictureTiling Property (Access)
+# Form.PictureTiling property (Access)
You can use the **PictureTiling** property to specify whether a background picture is tiled across the entire image control, Form window, form, or page of a report. Read/write **Boolean**.
## Syntax
- _expression_. `PictureTiling`
+_expression_. `PictureTiling`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.PictureType.md b/api/Access.Form.PictureType.md
index a55d4694061..5387730c278 100644
--- a/api/Access.Form.PictureType.md
+++ b/api/Access.Form.PictureType.md
@@ -1,5 +1,5 @@
---
-title: Form.PictureType Property (Access)
+title: Form.PictureType property (Access)
keywords: vbaac10.chm13380
f1_keywords:
- vbaac10.chm13380
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.PictureType Property (Access)
+# Form.PictureType property (Access)
You can use the **PictureType** property to specify whether Microsoft Access stores an object's picture as a linked or an embedded object. Read/write **Byte**.
## Syntax
- _expression_. `PictureType`
+_expression_. `PictureType`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.PivotTable.md b/api/Access.Form.PivotTable.md
index 441847e48d6..88212e735cd 100644
--- a/api/Access.Form.PivotTable.md
+++ b/api/Access.Form.PivotTable.md
@@ -1,5 +1,5 @@
---
-title: Form.PivotTable Property (Access)
+title: Form.PivotTable property (Access)
keywords: vbaac10.chm13521
f1_keywords:
- vbaac10.chm13521
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.PivotTable Property (Access)
+# Form.PivotTable property (Access)
Returns a **PivotTable** object representing a PivotTable View on a form. Read-only.
## Syntax
- _expression_. `PivotTable`
+_expression_. `PivotTable`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Example
diff --git a/api/Access.Form.PivotTableChange(even).md b/api/Access.Form.PivotTableChange(even).md
index 1c1aad2864b..24a390c2df3 100644
--- a/api/Access.Form.PivotTableChange(even).md
+++ b/api/Access.Form.PivotTableChange(even).md
@@ -1,5 +1,5 @@
---
-title: Form.PivotTableChange Event (Access)
+title: Form.PivotTableChange event (Access)
keywords: vbaac10.chm13669
f1_keywords:
- vbaac10.chm13669
@@ -11,23 +11,23 @@ ms.date: 06/08/2017
---
-# Form.PivotTableChange Event (Access)
+# Form.PivotTableChange event (Access)
Occurs whenever the specified PivotTable view field, field set, or total is added or deleted.
## Syntax
- _expression_. `PivotTableChange`( ` _Reason_` )
+_expression_. `PivotTableChange`( ` _Reason_` )
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Reason_|Required|**Long**|A **PivotTableReasonEnum** constant that indicates how the PivotTable list changed.|
diff --git a/api/Access.Form.PivotTableChange(property).md b/api/Access.Form.PivotTableChange(property).md
index 246f1357452..b76fc7e4d58 100644
--- a/api/Access.Form.PivotTableChange(property).md
+++ b/api/Access.Form.PivotTableChange(property).md
@@ -1,5 +1,5 @@
---
-title: Form.PivotTableChange Property (Access)
+title: Form.PivotTableChange property (Access)
keywords: vbaac10.chm13538,vbaac10.chm5102
f1_keywords:
- vbaac10.chm13538,vbaac10.chm5102
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.PivotTableChange Property (Access)
+# Form.PivotTableChange property (Access)
Returns or sets a **String** indicating which macro, event procedure, or user-defined function runs when the **PivotTableChange** event occurs. Read/write.
## Syntax
- _expression_. `PivotTableChange`
+_expression_. `PivotTableChange`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.PopUp.md b/api/Access.Form.PopUp.md
index 9d58e8e62a2..1c7404178a2 100644
--- a/api/Access.Form.PopUp.md
+++ b/api/Access.Form.PopUp.md
@@ -1,5 +1,5 @@
---
-title: Form.PopUp Property (Access)
+title: Form.PopUp property (Access)
keywords: vbaac10.chm13369
f1_keywords:
- vbaac10.chm13369
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.PopUp Property (Access)
+# Form.PopUp property (Access)
Specifies whether a form opens as a pop-up window. Read/write **Boolean**.
## Syntax
- _expression_. `PopUp`
+_expression_. `PopUp`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Printer.md b/api/Access.Form.Printer.md
index 850d26c4646..ad7d77fc7ac 100644
--- a/api/Access.Form.Printer.md
+++ b/api/Access.Form.Printer.md
@@ -1,5 +1,5 @@
---
-title: Form.Printer Property (Access)
+title: Form.Printer property (Access)
keywords: vbaac10.chm13523
f1_keywords:
- vbaac10.chm13523
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Printer Property (Access)
+# Form.Printer property (Access)
Returns or sets a **[Printer](Access.Printer.md)** object representing the default printer on the current system. Read/write.
## Syntax
- _expression_. `Printer`
+_expression_. `Printer`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Example
diff --git a/api/Access.Form.Properties.md b/api/Access.Form.Properties.md
index 699fba514c5..140251f965f 100644
--- a/api/Access.Form.Properties.md
+++ b/api/Access.Form.Properties.md
@@ -1,5 +1,5 @@
---
-title: Form.Properties Property (Access)
+title: Form.Properties property (Access)
keywords: vbaac10.chm13501
f1_keywords:
- vbaac10.chm13501
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Properties Property (Access)
+# Form.Properties property (Access)
Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only.
## Syntax
- _expression_. `Properties`
+_expression_. `Properties`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.PrtDevMode.md b/api/Access.Form.PrtDevMode.md
index 041bd22cc5f..2819bbb7a0c 100644
--- a/api/Access.Form.PrtDevMode.md
+++ b/api/Access.Form.PrtDevMode.md
@@ -1,5 +1,5 @@
---
-title: Form.PrtDevMode Property (Access)
+title: Form.PrtDevMode property (Access)
keywords: vbaac10.chm13418
f1_keywords:
- vbaac10.chm13418
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.PrtDevMode Property (Access)
+# Form.PrtDevMode property (Access)
You can use the **PrtDevMode** property to set or return printing device mode information specified for a form or report in the **Print** dialog box. Read/write **Variant**.
## Syntax
- _expression_. `PrtDevMode`
+_expression_. `PrtDevMode`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.PrtDevNames.md b/api/Access.Form.PrtDevNames.md
index 7570461a87b..286de326eac 100644
--- a/api/Access.Form.PrtDevNames.md
+++ b/api/Access.Form.PrtDevNames.md
@@ -1,5 +1,5 @@
---
-title: Form.PrtDevNames Property (Access)
+title: Form.PrtDevNames property (Access)
keywords: vbaac10.chm13419
f1_keywords:
- vbaac10.chm13419
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.PrtDevNames Property (Access)
+# Form.PrtDevNames property (Access)
You can use the **PrtDevNames** property to set or return information about the printer selected in the **Print** dialog box for a form or report. Read/write **Variant**.
## Syntax
- _expression_. `PrtDevNames`
+_expression_. `PrtDevNames`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.PrtMip.md b/api/Access.Form.PrtMip.md
index b3c75286e00..94689f3ddce 100644
--- a/api/Access.Form.PrtMip.md
+++ b/api/Access.Form.PrtMip.md
@@ -1,5 +1,5 @@
---
-title: Form.PrtMip Property (Access)
+title: Form.PrtMip property (Access)
keywords: vbaac10.chm13417
f1_keywords:
- vbaac10.chm13417
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.PrtMip Property (Access)
+# Form.PrtMip property (Access)
You can use the **PrtMip** property in Visual Basic to set or return the device mode information specified for a form or report in the **Print** dialog box.
## Syntax
- _expression_. `PrtMip`
+_expression_. `PrtMip`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Query(even).md b/api/Access.Form.Query(even).md
index a8be71a14a0..7167673626b 100644
--- a/api/Access.Form.Query(even).md
+++ b/api/Access.Form.Query(even).md
@@ -1,5 +1,5 @@
---
-title: Form.Query Event (Access)
+title: Form.Query event (Access)
keywords: vbaac10.chm13670
f1_keywords:
- vbaac10.chm13670
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Query Event (Access)
+# Form.Query event (Access)
Occurs whenever the specified PivotTable view query becomes necessary. The query may not occur immediately; it may be delayed until the new data is displayed.
## Syntax
- _expression_. `Query`
+_expression_. `Query`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Example
diff --git a/api/Access.Form.Query(property).md b/api/Access.Form.Query(property).md
index 905015a393b..d12b79100c1 100644
--- a/api/Access.Form.Query(property).md
+++ b/api/Access.Form.Query(property).md
@@ -1,5 +1,5 @@
---
-title: Form.Query Property (Access)
+title: Form.Query property (Access)
keywords: vbaac10.chm13539,vbaac10.chm5103
f1_keywords:
- vbaac10.chm13539,vbaac10.chm5103
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Query Property (Access)
+# Form.Query property (Access)
Returns or sets a **String** indicating which macro, event procedure, or user-defined function runs when the **[Query](Access.Form.Query(even).md)** event occurs. Read/write.
## Syntax
- _expression_. `Query`
+_expression_. `Query`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Recalc.md b/api/Access.Form.Recalc.md
index 8c18161c469..7a207ead5c7 100644
--- a/api/Access.Form.Recalc.md
+++ b/api/Access.Form.Recalc.md
@@ -1,5 +1,5 @@
---
-title: Form.Recalc Method (Access)
+title: Form.Recalc method (Access)
keywords: vbaac10.chm13502
f1_keywords:
- vbaac10.chm13502
@@ -11,19 +11,19 @@ ms.date: 06/08/2017
---
-# Form.Recalc Method (Access)
+# Form.Recalc method (Access)
The **Recalc** method immediately updates all calculated controls on a form.
## Syntax
- _expression_. `Recalc`
+_expression_. `Recalc`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Access.Form.RecordLocks.md b/api/Access.Form.RecordLocks.md
index ea9e78c54a4..4b2d121cd89 100644
--- a/api/Access.Form.RecordLocks.md
+++ b/api/Access.Form.RecordLocks.md
@@ -1,5 +1,5 @@
---
-title: Form.RecordLocks Property (Access)
+title: Form.RecordLocks property (Access)
keywords: vbaac10.chm13362
f1_keywords:
- vbaac10.chm13362
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.RecordLocks Property (Access)
+# Form.RecordLocks property (Access)
You can use the **RecordLocks** property to determine how records are locked and what happens when two users try to edit the same record at the same time. Read/write.
## Syntax
- _expression_. `RecordLocks`
+_expression_. `RecordLocks`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.RecordSelectors.md b/api/Access.Form.RecordSelectors.md
index d5ed13fd348..fd5ad5caede 100644
--- a/api/Access.Form.RecordSelectors.md
+++ b/api/Access.Form.RecordSelectors.md
@@ -1,5 +1,5 @@
---
-title: Form.RecordSelectors Property (Access)
+title: Form.RecordSelectors property (Access)
keywords: vbaac10.chm13364
f1_keywords:
- vbaac10.chm13364
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.RecordSelectors Property (Access)
+# Form.RecordSelectors property (Access)
You can use the **RecordSelectors** property to specify whether a form displays record selectors in Form view. Read/write **Boolean**.
## Syntax
- _expression_. `RecordSelectors`
+_expression_. `RecordSelectors`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.RecordSource.md b/api/Access.Form.RecordSource.md
index 95e9e4cfa0b..338ce2c63a4 100644
--- a/api/Access.Form.RecordSource.md
+++ b/api/Access.Form.RecordSource.md
@@ -1,5 +1,5 @@
---
-title: Form.RecordSource Property (Access)
+title: Form.RecordSource property (Access)
keywords: vbaac10.chm13345
f1_keywords:
- vbaac10.chm13345
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.RecordSource Property (Access)
+# Form.RecordSource property (Access)
You can use the **RecordSource** property to specify the source of the data for a form. Read/write **String**.
## Syntax
- _expression_. `RecordSource`
+_expression_. `RecordSource`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.RecordSourceQualifier.md b/api/Access.Form.RecordSourceQualifier.md
index b93ef21c81d..259e116698f 100644
--- a/api/Access.Form.RecordSourceQualifier.md
+++ b/api/Access.Form.RecordSourceQualifier.md
@@ -1,5 +1,5 @@
---
-title: Form.RecordSourceQualifier Property (Access)
+title: Form.RecordSourceQualifier property (Access)
keywords: vbaac10.chm13560
f1_keywords:
- vbaac10.chm13560
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.RecordSourceQualifier Property (Access)
+# Form.RecordSourceQualifier property (Access)
Returns or sets a **String** indicating the SQL Server owner name of the record source for the specified form. Read/write.
## Syntax
- _expression_. `RecordSourceQualifier`
+_expression_. `RecordSourceQualifier`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## See also
diff --git a/api/Access.Form.Recordset.md b/api/Access.Form.Recordset.md
index f514e12b05b..337435f70d3 100644
--- a/api/Access.Form.Recordset.md
+++ b/api/Access.Form.Recordset.md
@@ -1,5 +1,5 @@
---
-title: Form.Recordset Property (Access)
+title: Form.Recordset property (Access)
keywords: vbaac10.chm13497
f1_keywords:
- vbaac10.chm13497
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Recordset Property (Access)
+# Form.Recordset property (Access)
Returns or sets the ADO **Recordset** or DAO **[Recordset](overview/Access.md)** object representing the record source for the specified object. Read/write **Object**.
## Syntax
- _expression_. `Recordset`
+_expression_. `Recordset`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.RecordsetClone.md b/api/Access.Form.RecordsetClone.md
index 725b90adb06..dc430f2f881 100644
--- a/api/Access.Form.RecordsetClone.md
+++ b/api/Access.Form.RecordsetClone.md
@@ -1,5 +1,5 @@
---
-title: Form.RecordsetClone Property (Access)
+title: Form.RecordsetClone property (Access)
keywords: vbaac10.chm13496
f1_keywords:
- vbaac10.chm13496
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.RecordsetClone Property (Access)
+# Form.RecordsetClone property (Access)
You can use the **RecordsetClone** property to refer to a form's **Recordset** object specified by the form's **[RecordSource](Access.Form.RecordSource.md)** property. Read-only.
## Syntax
- _expression_. `RecordsetClone`
+_expression_. `RecordsetClone`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Refresh.md b/api/Access.Form.Refresh.md
index 6d6e9e034bf..452298202a1 100644
--- a/api/Access.Form.Refresh.md
+++ b/api/Access.Form.Refresh.md
@@ -1,5 +1,5 @@
---
-title: Form.Refresh Method (Access)
+title: Form.Refresh method (Access)
keywords: vbaac10.chm13504
f1_keywords:
- vbaac10.chm13504
@@ -11,19 +11,19 @@ ms.date: 06/08/2017
---
-# Form.Refresh Method (Access)
+# Form.Refresh method (Access)
The **Refresh** method immediately updates the records in the underlying record source for a specified form or datasheet to reflect changes made to the data by you and other users in a multiuser environment.
## Syntax
- _expression_. `Refresh`
+_expression_. `Refresh`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Access.Form.Repaint.md b/api/Access.Form.Repaint.md
index 349cebf63d7..8ea354d23d7 100644
--- a/api/Access.Form.Repaint.md
+++ b/api/Access.Form.Repaint.md
@@ -1,5 +1,5 @@
---
-title: Form.Repaint Method (Access)
+title: Form.Repaint method (Access)
keywords: vbaac10.chm13505
f1_keywords:
- vbaac10.chm13505
@@ -11,19 +11,19 @@ ms.date: 06/08/2017
---
-# Form.Repaint Method (Access)
+# Form.Repaint method (Access)
The **Repaint** method completes any pending screen updates for a specified form. When performed on a form, the **Repaint** method also completes any pending recalculations of the form's controls.
## Syntax
- _expression_. `Repaint`
+_expression_. `Repaint`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Access.Form.Requery.md b/api/Access.Form.Requery.md
index 70aa7b033a9..e5d9d1201b7 100644
--- a/api/Access.Form.Requery.md
+++ b/api/Access.Form.Requery.md
@@ -1,5 +1,5 @@
---
-title: Form.Requery Method (Access)
+title: Form.Requery method (Access)
keywords: vbaac10.chm13503
f1_keywords:
- vbaac10.chm13503
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Requery Method (Access)
+# Form.Requery method (Access)
The **Requery** method updates the data underlying a specified form by requerying the source of data for the form.
## Syntax
- _expression_. `Requery`
+_expression_. `Requery`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Resize.md b/api/Access.Form.Resize.md
index 20ced6c3321..11f5b7a7f62 100644
--- a/api/Access.Form.Resize.md
+++ b/api/Access.Form.Resize.md
@@ -1,5 +1,5 @@
---
-title: Form.Resize Event (Access)
+title: Form.Resize event (Access)
keywords: vbaac10.chm13643
f1_keywords:
- vbaac10.chm13643
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Resize Event (Access)
+# Form.Resize event (Access)
The **Resize** event occurs when a form is opened and whenever the size of a form changes.
## Syntax
- _expression_. `Resize`
+_expression_. `Resize`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.ResyncCommand.md b/api/Access.Form.ResyncCommand.md
index a5ae97013a4..83594a6deea 100644
--- a/api/Access.Form.ResyncCommand.md
+++ b/api/Access.Form.ResyncCommand.md
@@ -1,5 +1,5 @@
---
-title: Form.ResyncCommand Property (Access)
+title: Form.ResyncCommand property (Access)
keywords: vbaac10.chm13486
f1_keywords:
- vbaac10.chm13486
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.ResyncCommand Property (Access)
+# Form.ResyncCommand property (Access)
You can use the **ResyncCommand** property to specify or determine the SQL statement or stored procedure that will be used in an updateable snapshot of a table. Read/write **String**.
## Syntax
- _expression_. `ResyncCommand`
+_expression_. `ResyncCommand`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.RibbonName.md b/api/Access.Form.RibbonName.md
index 2d721a6dbe7..94f4a0f8517 100644
--- a/api/Access.Form.RibbonName.md
+++ b/api/Access.Form.RibbonName.md
@@ -1,5 +1,5 @@
---
-title: Form.RibbonName Property (Access)
+title: Form.RibbonName property (Access)
keywords: vbaac10.chm13632
f1_keywords:
- vbaac10.chm13632
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.RibbonName Property (Access)
+# Form.RibbonName property (Access)
Gets or set the name of the customized ribbon to be displayed when the specified form is loaded. Read/write **String**.
## Syntax
- _expression_. `RibbonName`
+_expression_. `RibbonName`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.RowHeight.md b/api/Access.Form.RowHeight.md
index e2a4988a5dc..06cb5dcfaf6 100644
--- a/api/Access.Form.RowHeight.md
+++ b/api/Access.Form.RowHeight.md
@@ -1,5 +1,5 @@
---
-title: Form.RowHeight Property (Access)
+title: Form.RowHeight property (Access)
keywords: vbaac10.chm13395
f1_keywords:
- vbaac10.chm13395
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.RowHeight Property (Access)
+# Form.RowHeight property (Access)
You can use the **RowHeight** property to specify the height of all rows in Datasheet view. Read/write **Integer**.
## Syntax
- _expression_. `RowHeight`
+_expression_. `RowHeight`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.ScrollBars.md b/api/Access.Form.ScrollBars.md
index f9e593a5028..f81093538cf 100644
--- a/api/Access.Form.ScrollBars.md
+++ b/api/Access.Form.ScrollBars.md
@@ -1,5 +1,5 @@
---
-title: Form.ScrollBars Property (Access)
+title: Form.ScrollBars property (Access)
keywords: vbaac10.chm13363
f1_keywords:
- vbaac10.chm13363
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.ScrollBars Property (Access)
+# Form.ScrollBars property (Access)
You can use the **ScrollBars** property to specify whether scroll bars appear on a form. Read/write **Byte**.
## Syntax
- _expression_. `ScrollBars`
+_expression_. `ScrollBars`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Section.md b/api/Access.Form.Section.md
index 5e9caf2570c..7601db9a0a4 100644
--- a/api/Access.Form.Section.md
+++ b/api/Access.Form.Section.md
@@ -1,5 +1,5 @@
---
-title: Form.Section Property (Access)
+title: Form.Section property (Access)
keywords: vbaac10.chm13631
f1_keywords:
- vbaac10.chm13631
@@ -11,23 +11,23 @@ ms.date: 06/08/2017
---
-# Form.Section Property (Access)
+# Form.Section property (Access)
You can use the **Section** property to identify a section of a form and provide access to the properties of that section. Read-only **Section** object.
## Syntax
- _expression_. `Section`( ` _Index_` )
+_expression_. `Section`( ` _Index_` )
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The section number or name.|
diff --git a/api/Access.Form.SelHeight.md b/api/Access.Form.SelHeight.md
index 841d145e818..4df3b5638ac 100644
--- a/api/Access.Form.SelHeight.md
+++ b/api/Access.Form.SelHeight.md
@@ -1,5 +1,5 @@
---
-title: Form.SelHeight Property (Access)
+title: Form.SelHeight property (Access)
keywords: vbaac10.chm13472
f1_keywords:
- vbaac10.chm13472
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.SelHeight Property (Access)
+# Form.SelHeight property (Access)
You can use the **SelHeight** property to specify or determine the number of selected rows (records) in the current selection rectangle in a table, query, or form datasheet, or the number of selected records in a continuous form. Read/write **Long**.
## Syntax
- _expression_. `SelHeight`
+_expression_. `SelHeight`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.SelLeft.md b/api/Access.Form.SelLeft.md
index 0b07aa6c4b1..ecbac6a6b72 100644
--- a/api/Access.Form.SelLeft.md
+++ b/api/Access.Form.SelLeft.md
@@ -1,5 +1,5 @@
---
-title: Form.SelLeft Property (Access)
+title: Form.SelLeft property (Access)
keywords: vbaac10.chm13469
f1_keywords:
- vbaac10.chm13469
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.SelLeft Property (Access)
+# Form.SelLeft property (Access)
You can use the **SelLeft** property to specify or determine which column (field) is leftmost in the current selection rectangle. Read/write **Long**.
## Syntax
- _expression_. `SelLeft`
+_expression_. `SelLeft`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.SelTop.md b/api/Access.Form.SelTop.md
index 627795a2f10..efbe5b84de5 100644
--- a/api/Access.Form.SelTop.md
+++ b/api/Access.Form.SelTop.md
@@ -1,5 +1,5 @@
---
-title: Form.SelTop Property (Access)
+title: Form.SelTop property (Access)
keywords: vbaac10.chm13470
f1_keywords:
- vbaac10.chm13470
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.SelTop Property (Access)
+# Form.SelTop property (Access)
You can use the **SelTop** property to specify or determine which row (record) is topmost in the current selection rectangle in a table, query, or form datasheet, or which selected record is topmost in a continuous form.Read/write **Long**.
## Syntax
- _expression_. `SelTop`
+_expression_. `SelTop`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.SelWidth.md b/api/Access.Form.SelWidth.md
index ab3dfddb8e9..1158a80d87f 100644
--- a/api/Access.Form.SelWidth.md
+++ b/api/Access.Form.SelWidth.md
@@ -1,5 +1,5 @@
---
-title: Form.SelWidth Property (Access)
+title: Form.SelWidth property (Access)
keywords: vbaac10.chm13471
f1_keywords:
- vbaac10.chm13471
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.SelWidth Property (Access)
+# Form.SelWidth property (Access)
You can use the **SelWidth** property to specify or determine the number of selected columns (fields) in the current selection rectangle. Read/write **Long**.
## Syntax
- _expression_. `SelWidth`
+_expression_. `SelWidth`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.SelectionChange(even).md b/api/Access.Form.SelectionChange(even).md
index 5e78f0a48c9..e1603b011f8 100644
--- a/api/Access.Form.SelectionChange(even).md
+++ b/api/Access.Form.SelectionChange(even).md
@@ -1,5 +1,5 @@
---
-title: Form.SelectionChange Event (Access)
+title: Form.SelectionChange event (Access)
keywords: vbaac10.chm13672
f1_keywords:
- vbaac10.chm13672
@@ -11,19 +11,19 @@ ms.date: 06/08/2017
---
-# Form.SelectionChange Event (Access)
+# Form.SelectionChange event (Access)
Occurs whenever the user makes a new selection in a PivotChart view or PivotTable view.
## Syntax
- _expression_. `SelectionChange`
+_expression_. `SelectionChange`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
-### Return Value
+### Return value
nothing
diff --git a/api/Access.Form.SelectionChange(property).md b/api/Access.Form.SelectionChange(property).md
index 0784a19974a..15e989ada84 100644
--- a/api/Access.Form.SelectionChange(property).md
+++ b/api/Access.Form.SelectionChange(property).md
@@ -1,5 +1,5 @@
---
-title: Form.SelectionChange Property (Access)
+title: Form.SelectionChange property (Access)
keywords: vbaac10.chm13541
f1_keywords:
- vbaac10.chm13541
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.SelectionChange Property (Access)
+# Form.SelectionChange property (Access)
Returns or sets a **String** indicating which macro, event procedure, or user-defined function runs when the **[SelectionChange](Access.Form.SelectionChange(even).md)** event occurs. Read/write.
## Syntax
- _expression_. `SelectionChange`
+_expression_. `SelectionChange`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.ServerFilter.md b/api/Access.Form.ServerFilter.md
index e8740345fbd..c8c2c59e692 100644
--- a/api/Access.Form.ServerFilter.md
+++ b/api/Access.Form.ServerFilter.md
@@ -1,5 +1,5 @@
---
-title: Form.ServerFilter Property (Access)
+title: Form.ServerFilter property (Access)
keywords: vbaac10.chm13482
f1_keywords:
- vbaac10.chm13482
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.ServerFilter Property (Access)
+# Form.ServerFilter property (Access)
You can use the **ServerFilter** property to specify a subset of records to be displayed when a server filter is applied to a form within a Microsoft Access project (.adp) or database. Read/write **String**.
## Syntax
- _expression_. `ServerFilter`
+_expression_. `ServerFilter`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.ServerFilterByForm.md b/api/Access.Form.ServerFilterByForm.md
index b17a8f8f6b5..7277f125e13 100644
--- a/api/Access.Form.ServerFilterByForm.md
+++ b/api/Access.Form.ServerFilterByForm.md
@@ -1,5 +1,5 @@
---
-title: Form.ServerFilterByForm Property (Access)
+title: Form.ServerFilterByForm property (Access)
keywords: vbaac10.chm13483
f1_keywords:
- vbaac10.chm13483
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.ServerFilterByForm Property (Access)
+# Form.ServerFilterByForm property (Access)
You can use the **ServerFilterByForm** property to specify or determine whether a form is opened in the Server Filter By Form window. Read/write **Boolean**.
## Syntax
- _expression_. `ServerFilterByForm`
+_expression_. `ServerFilterByForm`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.SetFocus.md b/api/Access.Form.SetFocus.md
index 2dde19c52f8..f2b07c6dcf3 100644
--- a/api/Access.Form.SetFocus.md
+++ b/api/Access.Form.SetFocus.md
@@ -1,5 +1,5 @@
---
-title: Form.SetFocus Method (Access)
+title: Form.SetFocus method (Access)
keywords: vbaac10.chm13507
f1_keywords:
- vbaac10.chm13507
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.SetFocus Method (Access)
+# Form.SetFocus method (Access)
The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet.
## Syntax
- _expression_. `SetFocus`
+_expression_. `SetFocus`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.ShortcutMenu.md b/api/Access.Form.ShortcutMenu.md
index 4fd3f5d73ed..043e89cbb03 100644
--- a/api/Access.Form.ShortcutMenu.md
+++ b/api/Access.Form.ShortcutMenu.md
@@ -1,5 +1,5 @@
---
-title: Form.ShortcutMenu Property (Access)
+title: Form.ShortcutMenu property (Access)
keywords: vbaac10.chm13387,vbaac10.chm4502
f1_keywords:
- vbaac10.chm13387,vbaac10.chm4502
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.ShortcutMenu Property (Access)
+# Form.ShortcutMenu property (Access)
You can use the **ShortcutMenu** property to specify whether a shortcut menu is displayed when you right-click an object on a form. For example, you might want to disable a shortcut menu to prevent the user from changing the form's underlying record source by using one of the filtering commands on the form's shortcut menu. Read/write **Boolean**.
## Syntax
- _expression_. `ShortcutMenu`
+_expression_. `ShortcutMenu`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.ShortcutMenuBar.md b/api/Access.Form.ShortcutMenuBar.md
index 3f27f148842..c01c68fdd29 100644
--- a/api/Access.Form.ShortcutMenuBar.md
+++ b/api/Access.Form.ShortcutMenuBar.md
@@ -1,5 +1,5 @@
---
-title: Form.ShortcutMenuBar Property (Access)
+title: Form.ShortcutMenuBar property (Access)
keywords: vbaac10.chm13388
f1_keywords:
- vbaac10.chm13388
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.ShortcutMenuBar Property (Access)
+# Form.ShortcutMenuBar property (Access)
You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**.
## Syntax
- _expression_. `ShortcutMenuBar`
+_expression_. `ShortcutMenuBar`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.SplitFormDatasheet.md b/api/Access.Form.SplitFormDatasheet.md
index df05ba0cb2e..dfdd73ba4b8 100644
--- a/api/Access.Form.SplitFormDatasheet.md
+++ b/api/Access.Form.SplitFormDatasheet.md
@@ -1,5 +1,5 @@
---
-title: Form.SplitFormDatasheet Property (Access)
+title: Form.SplitFormDatasheet property (Access)
keywords: vbaac10.chm13564,vbaac10.chm5642
f1_keywords:
- vbaac10.chm13564,vbaac10.chm5642
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.SplitFormDatasheet Property (Access)
+# Form.SplitFormDatasheet property (Access)
Gets or sets whether the user can edit records in the datasheet when a form is displayed in Split Form view. Read/write **[AcSplitFormDatasheet](Access.AcSplitFormDatasheet.md)**.
## Syntax
- _expression_. `SplitFormDatasheet`
+_expression_. `SplitFormDatasheet`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## See also
diff --git a/api/Access.Form.SplitFormOrientation.md b/api/Access.Form.SplitFormOrientation.md
index 7e28a30bf62..f6cb001be13 100644
--- a/api/Access.Form.SplitFormOrientation.md
+++ b/api/Access.Form.SplitFormOrientation.md
@@ -1,5 +1,5 @@
---
-title: Form.SplitFormOrientation Property (Access)
+title: Form.SplitFormOrientation property (Access)
keywords: vbaac10.chm13563
f1_keywords:
- vbaac10.chm13563
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.SplitFormOrientation Property (Access)
+# Form.SplitFormOrientation property (Access)
Gets or sets the position of the datasheet relative to the form when the form is displayed in Split Form view. Read/write [AcSplitFormOrientation](Access.AcSplitFormOrientation.md).
## Syntax
- _expression_. `SplitFormOrientation`
+_expression_. `SplitFormOrientation`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## See also
diff --git a/api/Access.Form.SplitFormPrinting.md b/api/Access.Form.SplitFormPrinting.md
index e1c3e476295..85297eebdd1 100644
--- a/api/Access.Form.SplitFormPrinting.md
+++ b/api/Access.Form.SplitFormPrinting.md
@@ -1,5 +1,5 @@
---
-title: Form.SplitFormPrinting Property (Access)
+title: Form.SplitFormPrinting property (Access)
keywords: vbaac10.chm13566
f1_keywords:
- vbaac10.chm13566
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.SplitFormPrinting Property (Access)
+# Form.SplitFormPrinting property (Access)
Gets or sets whether the contents of the form or the datasheet are printed when printing a form displayed in Split Form view. Read/write [AcSplitFormPrinting](Access.AcSplitFormPrinting.md).
## Syntax
- _expression_. `SplitFormPrinting`
+_expression_. `SplitFormPrinting`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## See also
diff --git a/api/Access.Form.SplitFormSize.md b/api/Access.Form.SplitFormSize.md
index c783b16d0fb..fe6286c587e 100644
--- a/api/Access.Form.SplitFormSize.md
+++ b/api/Access.Form.SplitFormSize.md
@@ -1,5 +1,5 @@
---
-title: Form.SplitFormSize Property (Access)
+title: Form.SplitFormSize property (Access)
keywords: vbaac10.chm13630
f1_keywords:
- vbaac10.chm13630
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.SplitFormSize Property (Access)
+# Form.SplitFormSize property (Access)
Gets or sets the size in twips of the form when it's displayed in Split Form view. Read/write **Long**.
## Syntax
- _expression_. `SplitFormSize`
+_expression_. `SplitFormSize`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.SplitFormSplitterBar.md b/api/Access.Form.SplitFormSplitterBar.md
index 3acc3d5b9e4..143b8bb5f0c 100644
--- a/api/Access.Form.SplitFormSplitterBar.md
+++ b/api/Access.Form.SplitFormSplitterBar.md
@@ -1,5 +1,5 @@
---
-title: Form.SplitFormSplitterBar Property (Access)
+title: Form.SplitFormSplitterBar property (Access)
keywords: vbaac10.chm13565
f1_keywords:
- vbaac10.chm13565
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.SplitFormSplitterBar Property (Access)
+# Form.SplitFormSplitterBar property (Access)
Gets or sets whether the splitter bar is available when the form is displayed in Split Form mode. Read/write **Boolean**.
## Syntax
- _expression_. `SplitFormSplitterBar`
+_expression_. `SplitFormSplitterBar`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## See also
diff --git a/api/Access.Form.SplitFormSplitterBarSave.md b/api/Access.Form.SplitFormSplitterBarSave.md
index 4db1f261434..0a8837a77c4 100644
--- a/api/Access.Form.SplitFormSplitterBarSave.md
+++ b/api/Access.Form.SplitFormSplitterBarSave.md
@@ -1,5 +1,5 @@
---
-title: Form.SplitFormSplitterBarSave Property (Access)
+title: Form.SplitFormSplitterBarSave property (Access)
keywords: vbaac10.chm13567
f1_keywords:
- vbaac10.chm13567
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.SplitFormSplitterBarSave Property (Access)
+# Form.SplitFormSplitterBarSave property (Access)
Gets or sets whether the location of the splitter bar is saved when a form that's displayed in Split Form mode is closed. Read/write **Boolean**.
## Syntax
- _expression_. `SplitFormSplitterBarSave`
+_expression_. `SplitFormSplitterBarSave`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## See also
diff --git a/api/Access.Form.SubdatasheetExpanded.md b/api/Access.Form.SubdatasheetExpanded.md
index 92d0af6c741..34e669952f7 100644
--- a/api/Access.Form.SubdatasheetExpanded.md
+++ b/api/Access.Form.SubdatasheetExpanded.md
@@ -1,5 +1,5 @@
---
-title: Form.SubdatasheetExpanded Property (Access)
+title: Form.SubdatasheetExpanded property (Access)
keywords: vbaac10.chm13511
f1_keywords:
- vbaac10.chm13511
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.SubdatasheetExpanded Property (Access)
+# Form.SubdatasheetExpanded property (Access)
You can use the **SubdatasheetExpanded** property to specify or determine the saved state of all subdatasheets within a table or query. Read/write **Boolean**.
## Syntax
- _expression_. `SubdatasheetExpanded`
+_expression_. `SubdatasheetExpanded`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.SubdatasheetHeight.md b/api/Access.Form.SubdatasheetHeight.md
index e6af72fbe14..d54fb3a243d 100644
--- a/api/Access.Form.SubdatasheetHeight.md
+++ b/api/Access.Form.SubdatasheetHeight.md
@@ -1,5 +1,5 @@
---
-title: Form.SubdatasheetHeight Property (Access)
+title: Form.SubdatasheetHeight property (Access)
keywords: vbaac10.chm13510
f1_keywords:
- vbaac10.chm13510
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.SubdatasheetHeight Property (Access)
+# Form.SubdatasheetHeight property (Access)
You can use the **SubdatasheetHeight** property to specify or determine the default display height of a subdatasheet when expanded. Read/write **Integer**.
## Syntax
- _expression_. `SubdatasheetHeight`
+_expression_. `SubdatasheetHeight`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Tag.md b/api/Access.Form.Tag.md
index 4992f20e229..e209757c73a 100644
--- a/api/Access.Form.Tag.md
+++ b/api/Access.Form.Tag.md
@@ -1,5 +1,5 @@
---
-title: Form.Tag Property (Access)
+title: Form.Tag property (Access)
keywords: vbaac10.chm13425
f1_keywords:
- vbaac10.chm13425
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Tag Property (Access)
+# Form.Tag property (Access)
Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**.
## Syntax
- _expression_. `Tag`
+_expression_. `Tag`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Timer.md b/api/Access.Form.Timer.md
index 4666702d608..5274ecc4aa6 100644
--- a/api/Access.Form.Timer.md
+++ b/api/Access.Form.Timer.md
@@ -1,5 +1,5 @@
---
-title: Form.Timer Event (Access)
+title: Form.Timer event (Access)
keywords: vbaac10.chm13659
f1_keywords:
- vbaac10.chm13659
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Timer Event (Access)
+# Form.Timer event (Access)
The **Timer** event occurs for a form at regular intervals as specified by the form's **[TimerInterval](Access.Form.TimerInterval.md)** property.
## Syntax
- _expression_. `Timer`
+_expression_. `Timer`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.TimerInterval.md b/api/Access.Form.TimerInterval.md
index ef0497ec36f..a98beb02fd0 100644
--- a/api/Access.Form.TimerInterval.md
+++ b/api/Access.Form.TimerInterval.md
@@ -1,5 +1,5 @@
---
-title: Form.TimerInterval Property (Access)
+title: Form.TimerInterval property (Access)
keywords: vbaac10.chm13462
f1_keywords:
- vbaac10.chm13462
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.TimerInterval Property (Access)
+# Form.TimerInterval property (Access)
You can use the **TimerInterval** property to specify the interval, in milliseconds, between **[Timer](Access.Form.Timer.md)** events on a form. Read/write Long.
## Syntax
- _expression_. `TimerInterval`
+_expression_. `TimerInterval`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Toolbar.md b/api/Access.Form.Toolbar.md
index 8ccb05f871a..3aa83715440 100644
--- a/api/Access.Form.Toolbar.md
+++ b/api/Access.Form.Toolbar.md
@@ -1,5 +1,5 @@
---
-title: Form.Toolbar Property (Access)
+title: Form.Toolbar property (Access)
keywords: vbaac10.chm13386
f1_keywords:
- vbaac10.chm13386
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Toolbar Property (Access)
+# Form.Toolbar property (Access)
Specifies a custom toolbar to display for a form. Read/write **String**.
## Syntax
- _expression_. `Toolbar`
+_expression_. `Toolbar`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Undo(even).md b/api/Access.Form.Undo(even).md
index 7bb4cef93ba..80353ee2053 100644
--- a/api/Access.Form.Undo(even).md
+++ b/api/Access.Form.Undo(even).md
@@ -1,5 +1,5 @@
---
-title: Form.Undo Event (Access)
+title: Form.Undo event (Access)
keywords: vbaac10.chm13663
f1_keywords:
- vbaac10.chm13663
@@ -11,23 +11,23 @@ ms.date: 06/08/2017
---
-# Form.Undo Event (Access)
+# Form.Undo event (Access)
Occurs when the user undoes a change.
## Syntax
- _expression_. `Undo`( ` _Cancel_` )
+_expression_. `Undo`( ` _Cancel_` )
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cancel_|Required|**Integer**|Set this argument to **True** to cancel the undo operation and leave the control or form in its edited state.|
diff --git a/api/Access.Form.Undo(method).md b/api/Access.Form.Undo(method).md
index affed54fd8f..6f213803f57 100644
--- a/api/Access.Form.Undo(method).md
+++ b/api/Access.Form.Undo(method).md
@@ -1,5 +1,5 @@
---
-title: Form.Undo Method (Access)
+title: Form.Undo method (Access)
keywords: vbaac10.chm13492
f1_keywords:
- vbaac10.chm13492
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Undo Method (Access)
+# Form.Undo method (Access)
You can use the **Undo** method to reset a control or form when its value has been changed.
## Syntax
- _expression_. `Undo`
+_expression_. `Undo`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.UniqueTable.md b/api/Access.Form.UniqueTable.md
index c3c9feebeff..916eb4280f9 100644
--- a/api/Access.Form.UniqueTable.md
+++ b/api/Access.Form.UniqueTable.md
@@ -1,5 +1,5 @@
---
-title: Form.UniqueTable Property (Access)
+title: Form.UniqueTable property (Access)
keywords: vbaac10.chm13485
f1_keywords:
- vbaac10.chm13485
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.UniqueTable Property (Access)
+# Form.UniqueTable property (Access)
Specifies the table to be updateable when A form is bound to a multiple table view or stored procedure within a Microsoft Access project (.adp).
## Syntax
- _expression_. `UniqueTable`
+_expression_. `UniqueTable`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Unload.md b/api/Access.Form.Unload.md
index fb8055f0b65..421613494b5 100644
--- a/api/Access.Form.Unload.md
+++ b/api/Access.Form.Unload.md
@@ -1,5 +1,5 @@
---
-title: Form.Unload Event (Access)
+title: Form.Unload event (Access)
keywords: vbaac10.chm13644
f1_keywords:
- vbaac10.chm13644
@@ -11,23 +11,23 @@ ms.date: 06/08/2017
---
-# Form.Unload Event (Access)
+# Form.Unload event (Access)
The **Unload** event occurs after a form is closed but before it's removed from the screen. When the form is reloaded, Microsoft Access redisplays the form and reinitializes the contents of all its controls.
## Syntax
- _expression_. `Unload`( ` _Cancel_`, )
+_expression_. `Unload`( ` _Cancel_`, )
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cancel_|Required|**Integer**|Set to **True** to cancel the **Unload** event.|
diff --git a/api/Access.Form.UseDefaultPrinter.md b/api/Access.Form.UseDefaultPrinter.md
index 36c86848d44..d0e66623ad2 100644
--- a/api/Access.Form.UseDefaultPrinter.md
+++ b/api/Access.Form.UseDefaultPrinter.md
@@ -1,5 +1,5 @@
---
-title: Form.UseDefaultPrinter Property (Access)
+title: Form.UseDefaultPrinter property (Access)
keywords: vbaac10.chm13559
f1_keywords:
- vbaac10.chm13559
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.UseDefaultPrinter Property (Access)
+# Form.UseDefaultPrinter property (Access)
Returns or sets a **Boolean** indicating whether the specified form uses the default printer for the system; **True** if the form or report uses the default printer. Read/write.
## Syntax
- _expression_. `UseDefaultPrinter`
+_expression_. `UseDefaultPrinter`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.VerticalDatasheetGridlineStyle.md b/api/Access.Form.VerticalDatasheetGridlineStyle.md
index beb9189009e..5d37c142014 100644
--- a/api/Access.Form.VerticalDatasheetGridlineStyle.md
+++ b/api/Access.Form.VerticalDatasheetGridlineStyle.md
@@ -1,5 +1,5 @@
---
-title: Form.VerticalDatasheetGridlineStyle Property (Access)
+title: Form.VerticalDatasheetGridlineStyle property (Access)
keywords: vbaac10.chm13515
f1_keywords:
- vbaac10.chm13515
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.VerticalDatasheetGridlineStyle Property (Access)
+# Form.VerticalDatasheetGridlineStyle property (Access)
Returns or sets a **Byte** indicating the line style to use for vertical gridlines on the specified datasheet. Read/write.
## Syntax
- _expression_. `VerticalDatasheetGridlineStyle`
+_expression_. `VerticalDatasheetGridlineStyle`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.ViewChange(even).md b/api/Access.Form.ViewChange(even).md
index 2a1a53d955a..15827e67fe8 100644
--- a/api/Access.Form.ViewChange(even).md
+++ b/api/Access.Form.ViewChange(even).md
@@ -1,5 +1,5 @@
---
-title: Form.ViewChange Event (Access)
+title: Form.ViewChange event (Access)
keywords: vbaac10.chm13684
f1_keywords:
- vbaac10.chm13684
@@ -11,23 +11,23 @@ ms.date: 06/08/2017
---
-# Form.ViewChange Event (Access)
+# Form.ViewChange event (Access)
Occurs whenever the specified PivotChart view or PivotTable view is redrawn.
## Syntax
- _expression_. `ViewChange`( ` _Reason_` )
+_expression_. `ViewChange`( ` _Reason_` )
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Reason_|Required|**Long**| A **PivotViewReasonEnum** constant that indicates how the view was changed. _Reason_ always returns ?1 for PivotChart Views.|
diff --git a/api/Access.Form.ViewChange(property).md b/api/Access.Form.ViewChange(property).md
index 56ff524738e..56946b8d153 100644
--- a/api/Access.Form.ViewChange(property).md
+++ b/api/Access.Form.ViewChange(property).md
@@ -1,5 +1,5 @@
---
-title: Form.ViewChange Property (Access)
+title: Form.ViewChange property (Access)
keywords: vbaac10.chm13553,vbaac10.chm5118
f1_keywords:
- vbaac10.chm13553,vbaac10.chm5118
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.ViewChange Property (Access)
+# Form.ViewChange property (Access)
Returns or sets a **String** indicating which macro, event procedure, or user-defined function runs when the **[ViewChange](Access.Form.ViewChange(even).md)** event occurs. Read/write.
## Syntax
- _expression_. `ViewChange`
+_expression_. `ViewChange`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.ViewsAllowed.md b/api/Access.Form.ViewsAllowed.md
index 80363c54d55..9c104b8b838 100644
--- a/api/Access.Form.ViewsAllowed.md
+++ b/api/Access.Form.ViewsAllowed.md
@@ -1,5 +1,5 @@
---
-title: Form.ViewsAllowed Property (Access)
+title: Form.ViewsAllowed property (Access)
keywords: vbaac10.chm13353
f1_keywords:
- vbaac10.chm13353
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.ViewsAllowed Property (Access)
+# Form.ViewsAllowed property (Access)
You can use the **ViewsAllowed** property to specify whether users can switch between Datasheet view and Form view by clicking the **Form View** or **Datasheet View** command on the **View** menu or by clicking the arrow next to the **View** button and clicking **Form View** or **Datasheet View**. Read/write **Byte**.
## Syntax
- _expression_. `ViewsAllowed`
+_expression_. `ViewsAllowed`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Visible.md b/api/Access.Form.Visible.md
index aac7de2248a..342cc56e72b 100644
--- a/api/Access.Form.Visible.md
+++ b/api/Access.Form.Visible.md
@@ -1,5 +1,5 @@
---
-title: Form.Visible Property (Access)
+title: Form.Visible property (Access)
keywords: vbaac10.chm13415
f1_keywords:
- vbaac10.chm13415
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Visible Property (Access)
+# Form.Visible property (Access)
Returns or sets whether the object is visible. Read/write **Boolean**.
## Syntax
- _expression_. `Visible`
+_expression_. `Visible`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.Width.md b/api/Access.Form.Width.md
index fce21549c78..9e2c5f6825a 100644
--- a/api/Access.Form.Width.md
+++ b/api/Access.Form.Width.md
@@ -1,5 +1,5 @@
---
-title: Form.Width Property (Access)
+title: Form.Width property (Access)
keywords: vbaac10.chm13378
f1_keywords:
- vbaac10.chm13378
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.Width Property (Access)
+# Form.Width property (Access)
Gets or sets the width of the specified object in twips. Read/write **Integer**.
## Syntax
- _expression_. `Width`
+_expression_. `Width`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.WindowHeight.md b/api/Access.Form.WindowHeight.md
index 809920f6c89..285355639f3 100644
--- a/api/Access.Form.WindowHeight.md
+++ b/api/Access.Form.WindowHeight.md
@@ -1,5 +1,5 @@
---
-title: Form.WindowHeight Property (Access)
+title: Form.WindowHeight property (Access)
keywords: vbaac10.chm13465
f1_keywords:
- vbaac10.chm13465
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.WindowHeight Property (Access)
+# Form.WindowHeight property (Access)
Returns the height of a form in twips. Read-only **Integer**.
## Syntax
- _expression_. `WindowHeight`
+_expression_. `WindowHeight`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.WindowLeft.md b/api/Access.Form.WindowLeft.md
index 312f6218293..1a7cfa3b8f5 100644
--- a/api/Access.Form.WindowLeft.md
+++ b/api/Access.Form.WindowLeft.md
@@ -1,5 +1,5 @@
---
-title: Form.WindowLeft Property (Access)
+title: Form.WindowLeft property (Access)
keywords: vbaac10.chm13517
f1_keywords:
- vbaac10.chm13517
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.WindowLeft Property (Access)
+# Form.WindowLeft property (Access)
Returns an **Integer** indicating the screen position in twips of the left edge of a form relative to the left edge of the Microsoft Access window. Read-only.
## Syntax
- _expression_. `WindowLeft`
+_expression_. `WindowLeft`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.WindowTop.md b/api/Access.Form.WindowTop.md
index cdf72d046ae..e3741dadaeb 100644
--- a/api/Access.Form.WindowTop.md
+++ b/api/Access.Form.WindowTop.md
@@ -1,5 +1,5 @@
---
-title: Form.WindowTop Property (Access)
+title: Form.WindowTop property (Access)
keywords: vbaac10.chm13516
f1_keywords:
- vbaac10.chm13516
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.WindowTop Property (Access)
+# Form.WindowTop property (Access)
Returns an **Integer** indicating the screen position in twips of the top edge of a form relative to the top of the Microsoft Access window. Read-only.
## Syntax
- _expression_. `WindowTop`
+_expression_. `WindowTop`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.WindowWidth.md b/api/Access.Form.WindowWidth.md
index 340acb3c6c6..e17b4f3c08c 100644
--- a/api/Access.Form.WindowWidth.md
+++ b/api/Access.Form.WindowWidth.md
@@ -1,5 +1,5 @@
---
-title: Form.WindowWidth Property (Access)
+title: Form.WindowWidth property (Access)
keywords: vbaac10.chm13464
f1_keywords:
- vbaac10.chm13464
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Form.WindowWidth Property (Access)
+# Form.WindowWidth property (Access)
Returns the height of a form in twips. Read-only **Integer**.
## Syntax
- _expression_. `WindowWidth`
+_expression_. `WindowWidth`
- _expression_ A variable that represents a [Form](Access.Form.md) object.
+_expression_ A variable that represents a [Form](Access.Form.md) object.
## Remarks
diff --git a/api/Access.Form.md b/api/Access.Form.md
index b8a98f20789..2d3bd2c234a 100644
--- a/api/Access.Form.md
+++ b/api/Access.Form.md
@@ -1,5 +1,5 @@
---
-title: Form Object (Access)
+title: Form object (Access)
keywords: vbaac10.chm13686
f1_keywords:
- vbaac10.chm13686
@@ -11,7 +11,7 @@ ms.date: 06/08/2017
---
-# Form Object (Access)
+# Form object (Access)
A **Form** object refers to a particular Microsoft Access form.
diff --git a/api/Access.FormatCondition.BackColor.md b/api/Access.FormatCondition.BackColor.md
index 52e625eeb50..8d3773a403f 100644
--- a/api/Access.FormatCondition.BackColor.md
+++ b/api/Access.FormatCondition.BackColor.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.BackColor Property (Access)
+title: FormatCondition.BackColor property (Access)
keywords: vbaac10.chm10053
f1_keywords:
- vbaac10.chm10053
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# FormatCondition.BackColor Property (Access)
+# FormatCondition.BackColor property (Access)
Gets or sets the interior color of the specified object. Read/write **Long**.
## Syntax
- _expression_. `BackColor`
+_expression_. `BackColor`
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
## Remarks
diff --git a/api/Access.FormatCondition.Delete.md b/api/Access.FormatCondition.Delete.md
index 193a48e6528..6307141137e 100644
--- a/api/Access.FormatCondition.Delete.md
+++ b/api/Access.FormatCondition.Delete.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.Delete Method (Access)
+title: FormatCondition.Delete method (Access)
keywords: vbaac10.chm10063
f1_keywords:
- vbaac10.chm10063
@@ -11,19 +11,19 @@ ms.date: 06/08/2017
---
-# FormatCondition.Delete Method (Access)
+# FormatCondition.Delete method (Access)
Deletes the specified object.
## Syntax
- _expression_. `Delete`
+_expression_. `Delete`
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Access.FormatCondition.Enabled.md b/api/Access.FormatCondition.Enabled.md
index 9536b36f6c8..ba0e0c597a2 100644
--- a/api/Access.FormatCondition.Enabled.md
+++ b/api/Access.FormatCondition.Enabled.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.Enabled Property (Access)
+title: FormatCondition.Enabled property (Access)
keywords: vbaac10.chm10057
f1_keywords:
- vbaac10.chm10057
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# FormatCondition.Enabled Property (Access)
+# FormatCondition.Enabled property (Access)
You can use the **Enabled** property to set or return the status of the conditional format in the **[FormatCondition](Access.FormatCondition.md)** object. Read/write **Boolean**.
## Syntax
- _expression_. `Enabled`
+_expression_. `Enabled`
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
## Remarks
diff --git a/api/Access.FormatCondition.Expression1.md b/api/Access.FormatCondition.Expression1.md
index a86d69250dc..8229ec8be39 100644
--- a/api/Access.FormatCondition.Expression1.md
+++ b/api/Access.FormatCondition.Expression1.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.Expression1 Property (Access)
+title: FormatCondition.Expression1 property (Access)
keywords: vbaac10.chm10060
f1_keywords:
- vbaac10.chm10060
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# FormatCondition.Expression1 Property (Access)
+# FormatCondition.Expression1 property (Access)
You can use the **Expression1** property to return the values of a conditional format within a **[FormatCondition](Access.FormatCondition.md)** object. Read-only **String**.
## Syntax
- _expression_. `Expression1`
+_expression_. `Expression1`
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
## Remarks
diff --git a/api/Access.FormatCondition.Expression2.md b/api/Access.FormatCondition.Expression2.md
index ee0ad06891d..3d9d162340e 100644
--- a/api/Access.FormatCondition.Expression2.md
+++ b/api/Access.FormatCondition.Expression2.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.Expression2 Property (Access)
+title: FormatCondition.Expression2 property (Access)
keywords: vbaac10.chm10061
f1_keywords:
- vbaac10.chm10061
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# FormatCondition.Expression2 Property (Access)
+# FormatCondition.Expression2 property (Access)
You can use the **Expression2** property to return the values of a conditional format within a **[FormatCondition](Access.FormatCondition.md)** object. Read-only **String**.
## Syntax
- _expression_. `Expression2`
+_expression_. `Expression2`
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
## Remarks
diff --git a/api/Access.FormatCondition.FontBold.md b/api/Access.FormatCondition.FontBold.md
index 49482575684..7285b6e7da9 100644
--- a/api/Access.FormatCondition.FontBold.md
+++ b/api/Access.FormatCondition.FontBold.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.FontBold Property (Access)
+title: FormatCondition.FontBold property (Access)
keywords: vbaac10.chm10054
f1_keywords:
- vbaac10.chm10054
@@ -11,7 +11,7 @@ ms.date: 06/08/2017
---
-# FormatCondition.FontBold Property (Access)
+# FormatCondition.FontBold property (Access)
You can use the **FontBold** property to specify whether a font appears in a bold style in the following situations:
@@ -26,9 +26,9 @@ You can use the **FontBold** property to specify whether a font appears in a bo
## Syntax
- _expression_. `FontBold`
+_expression_. `FontBold`
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
## Remarks
diff --git a/api/Access.FormatCondition.FontItalic.md b/api/Access.FormatCondition.FontItalic.md
index ec25dfbf57e..59e21e4ac7a 100644
--- a/api/Access.FormatCondition.FontItalic.md
+++ b/api/Access.FormatCondition.FontItalic.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.FontItalic Property (Access)
+title: FormatCondition.FontItalic property (Access)
keywords: vbaac10.chm10055
f1_keywords:
- vbaac10.chm10055
@@ -11,7 +11,7 @@ ms.date: 06/08/2017
---
-# FormatCondition.FontItalic Property (Access)
+# FormatCondition.FontItalic property (Access)
You can use the **FontItalic** property to specify whether text is italic in the following situations:
@@ -26,9 +26,9 @@ You can use the **FontItalic** property to specify whether text is italic in th
## Syntax
- _expression_. `FontItalic`
+_expression_. `FontItalic`
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
## Remarks
diff --git a/api/Access.FormatCondition.FontUnderline.md b/api/Access.FormatCondition.FontUnderline.md
index a104f498792..84f8d3dbb55 100644
--- a/api/Access.FormatCondition.FontUnderline.md
+++ b/api/Access.FormatCondition.FontUnderline.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.FontUnderline Property (Access)
+title: FormatCondition.FontUnderline property (Access)
keywords: vbaac10.chm10056
f1_keywords:
- vbaac10.chm10056
@@ -11,7 +11,7 @@ ms.date: 06/08/2017
---
-# FormatCondition.FontUnderline Property (Access)
+# FormatCondition.FontUnderline property (Access)
You can use the **FontUnderline** property to specify whether text is underlined in the following situations:
@@ -26,9 +26,9 @@ You can use the **FontUnderline** property to specify whether text is underline
## Syntax
- _expression_. `FontUnderline`
+_expression_. `FontUnderline`
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
## Remarks
diff --git a/api/Access.FormatCondition.ForeColor.md b/api/Access.FormatCondition.ForeColor.md
index f29484d0d39..fa3ce69fa51 100644
--- a/api/Access.FormatCondition.ForeColor.md
+++ b/api/Access.FormatCondition.ForeColor.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.ForeColor Property (Access)
+title: FormatCondition.ForeColor property (Access)
keywords: vbaac10.chm10052
f1_keywords:
- vbaac10.chm10052
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# FormatCondition.ForeColor Property (Access)
+# FormatCondition.ForeColor property (Access)
You can use the **ForeColor** property to specify the color for text in a control. Read/write **Long**.
## Syntax
- _expression_. `ForeColor`
+_expression_. `ForeColor`
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
## Remarks
diff --git a/api/Access.FormatCondition.LongestBarLimit.md b/api/Access.FormatCondition.LongestBarLimit.md
index 063ff6b9d26..5dca0743e1f 100644
--- a/api/Access.FormatCondition.LongestBarLimit.md
+++ b/api/Access.FormatCondition.LongestBarLimit.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.LongestBarLimit Property (Access)
+title: FormatCondition.LongestBarLimit property (Access)
keywords: vbaac10.chm14532
f1_keywords:
- vbaac10.chm14532
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# FormatCondition.LongestBarLimit Property (Access)
+# FormatCondition.LongestBarLimit property (Access)
Gets or sets how the longest data bar is evaluated for the specified **[FormatCondition](Access.FormatCondition.md)**. Read/write **[AcFormatBarLimits](Access.AcFormatBarLimits.md)**.
## Syntax
- _expression_. `LongestBarLimit`
+_expression_. `LongestBarLimit`
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
## Remarks
diff --git a/api/Access.FormatCondition.LongestBarValue.md b/api/Access.FormatCondition.LongestBarValue.md
index 8ae6e90c607..d301793cd2a 100644
--- a/api/Access.FormatCondition.LongestBarValue.md
+++ b/api/Access.FormatCondition.LongestBarValue.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.LongestBarValue Property (Access)
+title: FormatCondition.LongestBarValue property (Access)
keywords: vbaac10.chm14533
f1_keywords:
- vbaac10.chm14533
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# FormatCondition.LongestBarValue Property (Access)
+# FormatCondition.LongestBarValue property (Access)
Gets or sets a numeric expression that specifies the value of the longest bar of a **[FormatCondition](Access.FormatCondition.md)**. Read/write **String**.
## Syntax
- _expression_. `LongestBarValue`
+_expression_. `LongestBarValue`
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
## Remarks
diff --git a/api/Access.FormatCondition.Modify.md b/api/Access.FormatCondition.Modify.md
index 4d5c1a2e3b6..000c0c6ad20 100644
--- a/api/Access.FormatCondition.Modify.md
+++ b/api/Access.FormatCondition.Modify.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.Modify Method (Access)
+title: FormatCondition.Modify method (Access)
keywords: vbaac10.chm10062
f1_keywords:
- vbaac10.chm10062
@@ -11,30 +11,30 @@ ms.date: 06/08/2017
---
-# FormatCondition.Modify Method (Access)
+# FormatCondition.Modify method (Access)
You can use the **Modify** method to change the format conditions of a **[FormatCondition](Access.FormatCondition.md)** object in the **[FormatConditions](Access.FormatConditions.md)** collection of a combo box or text box control.
## Syntax
- _expression_. `Modify`( `_Type_`, `_Operator_`, `_Expression1_`, `_Expression2_` )
+_expression_. `Modify`( `_Type_`, `_Operator_`, `_Expression1_`, `_Expression2_` )
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required|**AcFormatConditionType**|A **[AcFormatConditionType](Access.AcFormatConditionType.md)** constant that specifies the type of condition to be modified.|
| _Operator_|Optional|**AcFormatConditionOperator**|A **[AcFormatConditionOperator](access.acformatconditionoperator.md)** constant that specifies the type of operator to be used.
**Note:** If the type argument is **acExpression**, the operator argument is ignored. If you leave this argument blank, the default constant ( **acBetween** ) is assumed. |
| _Expression1_|Optional|**Variant**|A value or expression associated with the first part of the conditional format. Can be a constant value or a string value.|
| _Expression2_|Optional|**Variant**|A value or expression associated with the second part of the conditional format when the operator argument is **acBetween** or **acNotBetween** (otherwise, this argument is ignored). Can be a constant value or a string value.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Access.FormatCondition.Operator.md b/api/Access.FormatCondition.Operator.md
index bace39b8796..eafc003ab68 100644
--- a/api/Access.FormatCondition.Operator.md
+++ b/api/Access.FormatCondition.Operator.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.Operator Property (Access)
+title: FormatCondition.Operator property (Access)
keywords: vbaac10.chm10059
f1_keywords:
- vbaac10.chm10059
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# FormatCondition.Operator Property (Access)
+# FormatCondition.Operator property (Access)
You can use the **Operator** property to return the operator value for the conditional format or data validation of a **[FormatCondition](Access.FormatCondition.md)** object. Read-only **[AcFormatConditionOperator](Access.AcFormatConditionOperator.md)**.
## Syntax
- _expression_. `Operator`
+_expression_. `Operator`
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
## Remarks
diff --git a/api/Access.FormatCondition.ShortestBarLimit.md b/api/Access.FormatCondition.ShortestBarLimit.md
index 5ea8a3d9499..04711ee33ed 100644
--- a/api/Access.FormatCondition.ShortestBarLimit.md
+++ b/api/Access.FormatCondition.ShortestBarLimit.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.ShortestBarLimit Property (Access)
+title: FormatCondition.ShortestBarLimit property (Access)
keywords: vbaac10.chm14530
f1_keywords:
- vbaac10.chm14530
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# FormatCondition.ShortestBarLimit Property (Access)
+# FormatCondition.ShortestBarLimit property (Access)
Gets or sets how the shortest data bar is evaluated for the specified **[FormatCondition](Access.FormatCondition.md)**. Read/write **[AcFormatBarLimits](Access.AcFormatBarLimits.md)**.
## Syntax
- _expression_. `ShortestBarLimit`
+_expression_. `ShortestBarLimit`
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
## Remarks
diff --git a/api/Access.FormatCondition.ShortestBarValue.md b/api/Access.FormatCondition.ShortestBarValue.md
index cbd786ea72e..c6f50d6bc5f 100644
--- a/api/Access.FormatCondition.ShortestBarValue.md
+++ b/api/Access.FormatCondition.ShortestBarValue.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.ShortestBarValue Property (Access)
+title: FormatCondition.ShortestBarValue property (Access)
keywords: vbaac10.chm14531
f1_keywords:
- vbaac10.chm14531
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# FormatCondition.ShortestBarValue Property (Access)
+# FormatCondition.ShortestBarValue property (Access)
Gets or sets a numeric expression that specifies the value of the shortest bar of a **[FormatCondition](Access.FormatCondition.md)**. Read/write **String**.
## Syntax
- _expression_. `ShortestBarValue`
+_expression_. `ShortestBarValue`
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
## Remarks
diff --git a/api/Access.FormatCondition.ShowBarOnly.md b/api/Access.FormatCondition.ShowBarOnly.md
index 83a20437385..5918c371596 100644
--- a/api/Access.FormatCondition.ShowBarOnly.md
+++ b/api/Access.FormatCondition.ShowBarOnly.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.ShowBarOnly Property (Access)
+title: FormatCondition.ShowBarOnly property (Access)
keywords: vbaac10.chm14534
f1_keywords:
- vbaac10.chm14534
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# FormatCondition.ShowBarOnly Property (Access)
+# FormatCondition.ShowBarOnly property (Access)
Gets or sets whether the data bar or the data bar and its value are displayed. Set to **True** to display only the data bar. Read/write ** Boolean**.
## Syntax
- _expression_. `ShowBarOnly`
+_expression_. `ShowBarOnly`
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
## See also
diff --git a/api/Access.FormatCondition.Type.md b/api/Access.FormatCondition.Type.md
index e18e71465da..b103230099b 100644
--- a/api/Access.FormatCondition.Type.md
+++ b/api/Access.FormatCondition.Type.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition.Type Property (Access)
+title: FormatCondition.Type property (Access)
keywords: vbaac10.chm10058
f1_keywords:
- vbaac10.chm10058
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# FormatCondition.Type Property (Access)
+# FormatCondition.Type property (Access)
Returns the value of a **[FormatCondition](Access.FormatCondition.md)** object type. Read-only **[AcFormatConditionType](Access.AcFormatConditionType.md)**.
## Syntax
- _expression_. `Type`
+_expression_. `Type`
- _expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
+_expression_ A variable that represents a [FormatCondition](Access.FormatCondition.md) object.
## See also
diff --git a/api/Access.FormatCondition.md b/api/Access.FormatCondition.md
index 877f54caaed..c8de39912f0 100644
--- a/api/Access.FormatCondition.md
+++ b/api/Access.FormatCondition.md
@@ -1,5 +1,5 @@
---
-title: FormatCondition Object (Access)
+title: FormatCondition object (Access)
keywords: vbaac10.chm10065
f1_keywords:
- vbaac10.chm10065
@@ -11,7 +11,7 @@ ms.date: 06/08/2017
---
-# FormatCondition Object (Access)
+# FormatCondition object (Access)
The **FormatCondition** object represents a conditional format of a combo box or text box control and is a member of the **FormatConditions** collection.
diff --git a/api/Access.FormatConditions.Add.md b/api/Access.FormatConditions.Add.md
index de1c6361d05..a1d26a1fb46 100644
--- a/api/Access.FormatConditions.Add.md
+++ b/api/Access.FormatConditions.Add.md
@@ -1,5 +1,5 @@
---
-title: FormatConditions.Add Method (Access)
+title: FormatConditions.Add method (Access)
keywords: vbaac10.chm10071
f1_keywords:
- vbaac10.chm10071
@@ -11,30 +11,30 @@ ms.date: 06/08/2017
---
-# FormatConditions.Add Method (Access)
+# FormatConditions.Add method (Access)
You can use the **Add** method to add a conditional format as a **[FormatCondition](Access.FormatCondition.md)** object to the **[FormatConditions](Access.FormatConditions.md)** collection of a combo box or text box control.
## Syntax
- _expression_. `Add`( ` _Type_`, ` _Operator_`, ` _Expression1_`, ` _Expression2_` )
+_expression_. `Add`( ` _Type_`, ` _Operator_`, ` _Expression1_`, ` _Expression2_` )
- _expression_ A variable that represents a [FormatConditions](Access.FormatConditions.md) object.
+_expression_ A variable that represents a [FormatConditions](Access.FormatConditions.md) object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required|**AcFormatConditionType**|An **[AcFormatConditionType](Access.AcFormatConditionType.md)** constant that specifies the type of format condition to be added.|
| _Operator_|Optional|**AcFormatConditionOperator**|An **[AcFormatConditionOperator](Access.AcFormatConditionOperator.md)** constant that specified the operator. If the _Type_ argument is **acExpression**, the _Operator_ argument is ignored. If you leave this argument blank, the default constant (**acBetween**) is assumed.|
| _Expression1_|Optional|**Variant**|A value or expression associated with the first part of the conditional format. Can be a constant or a string value.|
| _Expression2_|Optional|**Variant**|A value or expression associated with the second part of the conditional format when the _Operator_ argument is **acBetween** or **acNotBetween** (otherwise, this argument is ignored). Can be a constant or a string value.|
-### Return Value
+### Return value
FormatCondition
diff --git a/api/Access.FormatConditions.Application.md b/api/Access.FormatConditions.Application.md
index a26508ddbd3..81e53c2f07f 100644
--- a/api/Access.FormatConditions.Application.md
+++ b/api/Access.FormatConditions.Application.md
@@ -1,5 +1,5 @@
---
-title: FormatConditions.Application Property (Access)
+title: FormatConditions.Application property (Access)
keywords: vbaac10.chm10067
f1_keywords:
- vbaac10.chm10067
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# FormatConditions.Application Property (Access)
+# FormatConditions.Application property (Access)
You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object.
## Syntax
- _expression_. `Application`
+_expression_. `Application`
- _expression_ A variable that represents a [FormatConditions](Access.FormatConditions.md) object.
+_expression_ A variable that represents a [FormatConditions](Access.FormatConditions.md) object.
## Remarks
diff --git a/api/Access.FormatConditions.Count.md b/api/Access.FormatConditions.Count.md
index a7bf58b0952..b5e0136c276 100644
--- a/api/Access.FormatConditions.Count.md
+++ b/api/Access.FormatConditions.Count.md
@@ -1,5 +1,5 @@
---
-title: FormatConditions.Count Property (Access)
+title: FormatConditions.Count property (Access)
keywords: vbaac10.chm10070
f1_keywords:
- vbaac10.chm10070
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# FormatConditions.Count Property (Access)
+# FormatConditions.Count property (Access)
You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**.
## Syntax
- _expression_. `Count`
+_expression_. `Count`
- _expression_ A variable that represents a [FormatConditions](Access.FormatConditions.md) object.
+_expression_ A variable that represents a [FormatConditions](Access.FormatConditions.md) object.
## See also
diff --git a/api/Access.FormatConditions.Delete.md b/api/Access.FormatConditions.Delete.md
index 444732297a1..b9f598d2fd7 100644
--- a/api/Access.FormatConditions.Delete.md
+++ b/api/Access.FormatConditions.Delete.md
@@ -1,5 +1,5 @@
---
-title: FormatConditions.Delete Method (Access)
+title: FormatConditions.Delete method (Access)
keywords: vbaac10.chm10072
f1_keywords:
- vbaac10.chm10072
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# FormatConditions.Delete Method (Access)
+# FormatConditions.Delete method (Access)
Deletes the specified object.
## Syntax
- _expression_. `Delete`
+_expression_. `Delete`
- _expression_ A variable that represents a [FormatConditions](Access.FormatConditions.md) object.
+_expression_ A variable that represents a [FormatConditions](Access.FormatConditions.md) object.
## See also
diff --git a/api/Access.FormatConditions.Item.md b/api/Access.FormatConditions.Item.md
index a0d93ce5c05..deb33a9d416 100644
--- a/api/Access.FormatConditions.Item.md
+++ b/api/Access.FormatConditions.Item.md
@@ -1,5 +1,5 @@
---
-title: FormatConditions.Item Property (Access)
+title: FormatConditions.Item property (Access)
keywords: vbaac10.chm10069
f1_keywords:
- vbaac10.chm10069
@@ -11,25 +11,25 @@ ms.date: 06/08/2017
---
-# FormatConditions.Item Property (Access)
+# FormatConditions.Item property (Access)
The **Item** property returns a specific member of a collection either by position or by index. Read-only **FormatCondition**.
## Syntax
- _expression_. `Item`( ` _Index_` )
+_expression_. `Item`( ` _Index_` )
- _expression_ A variable that represents a [FormatConditions](Access.FormatConditions.md) object.
+_expression_ A variable that represents a [FormatConditions](Access.FormatConditions.md) object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
-| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection|
+| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection|
## Remarks
diff --git a/api/Access.FormatConditions.Parent.md b/api/Access.FormatConditions.Parent.md
index 509ec8a4cb5..ccb705cf75f 100644
--- a/api/Access.FormatConditions.Parent.md
+++ b/api/Access.FormatConditions.Parent.md
@@ -1,5 +1,5 @@
---
-title: FormatConditions.Parent Property (Access)
+title: FormatConditions.Parent property (Access)
keywords: vbaac10.chm10068
f1_keywords:
- vbaac10.chm10068
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# FormatConditions.Parent Property (Access)
+# FormatConditions.Parent property (Access)
Returns the parent object for the specified object. Read-only.
## Syntax
- _expression_. `Parent`
+_expression_. `Parent`
- _expression_ A variable that represents a [FormatConditions](Access.FormatConditions.md) object.
+_expression_ A variable that represents a [FormatConditions](Access.FormatConditions.md) object.
## See also
diff --git a/api/Access.FormatConditions.md b/api/Access.FormatConditions.md
index f7259e35141..b28f19bcc81 100644
--- a/api/Access.FormatConditions.md
+++ b/api/Access.FormatConditions.md
@@ -1,5 +1,5 @@
---
-title: FormatConditions Object (Access)
+title: FormatConditions object (Access)
keywords: vbaac10.chm10066
f1_keywords:
- vbaac10.chm10066
@@ -11,7 +11,7 @@ ms.date: 06/08/2017
---
-# FormatConditions Object (Access)
+# FormatConditions object (Access)
The **FormatConditions** collection represents the collection of conditional formats for a combo box or text box control. Each format is represented by a **[FormatCondition](Access.FormatCondition.md)** object.
diff --git a/api/Access.Forms.Application.md b/api/Access.Forms.Application.md
index af4d4dc9454..306e88f2866 100644
--- a/api/Access.Forms.Application.md
+++ b/api/Access.Forms.Application.md
@@ -1,5 +1,5 @@
---
-title: Forms.Application Property (Access)
+title: Forms.Application property (Access)
keywords: vbaac10.chm12356
f1_keywords:
- vbaac10.chm12356
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Forms.Application Property (Access)
+# Forms.Application property (Access)
You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object.
## Syntax
- _expression_. `Application`
+_expression_. `Application`
- _expression_ A variable that represents a [Forms](Access.Forms.md) object.
+_expression_ A variable that represents a [Forms](Access.Forms.md) object.
## Remarks
diff --git a/api/Access.Forms.Count.md b/api/Access.Forms.Count.md
index c64dcd5a5df..8b9e15b1a93 100644
--- a/api/Access.Forms.Count.md
+++ b/api/Access.Forms.Count.md
@@ -1,5 +1,5 @@
---
-title: Forms.Count Property (Access)
+title: Forms.Count property (Access)
keywords: vbaac10.chm12359
f1_keywords:
- vbaac10.chm12359
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Forms.Count Property (Access)
+# Forms.Count property (Access)
You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**.
## Syntax
- _expression_. `Count`
+_expression_. `Count`
- _expression_ A variable that represents a [Forms](Access.Forms.md) object.
+_expression_ A variable that represents a [Forms](Access.Forms.md) object.
## Example
diff --git a/api/Access.Forms.Item.md b/api/Access.Forms.Item.md
index 8e03787292a..5fda3fb604e 100644
--- a/api/Access.Forms.Item.md
+++ b/api/Access.Forms.Item.md
@@ -1,5 +1,5 @@
---
-title: Forms.Item Property (Access)
+title: Forms.Item property (Access)
keywords: vbaac10.chm12358
f1_keywords:
- vbaac10.chm12358
@@ -11,25 +11,25 @@ ms.date: 06/08/2017
---
-# Forms.Item Property (Access)
+# Forms.Item property (Access)
The **Item** property returns a specific member of a collection either by position or by index. Read-only **Form**.
## Syntax
- _expression_. `Item`( ` _Index_` )
+_expression_. `Item`( ` _Index_` )
- _expression_ A variable that represents a [Forms](Access.Forms.md) object.
+_expression_ A variable that represents a [Forms](Access.Forms.md) object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
-| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection|
+| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection|
## Remarks
diff --git a/api/Access.Forms.Parent.md b/api/Access.Forms.Parent.md
index c64d16db02f..8890bbdaeec 100644
--- a/api/Access.Forms.Parent.md
+++ b/api/Access.Forms.Parent.md
@@ -1,5 +1,5 @@
---
-title: Forms.Parent Property (Access)
+title: Forms.Parent property (Access)
keywords: vbaac10.chm12357
f1_keywords:
- vbaac10.chm12357
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Forms.Parent Property (Access)
+# Forms.Parent property (Access)
Returns the parent object for the specified object. Read-only.
## Syntax
- _expression_. `Parent`
+_expression_. `Parent`
- _expression_ A variable that represents a [Forms](Access.Forms.md) object.
+_expression_ A variable that represents a [Forms](Access.Forms.md) object.
## See also
diff --git a/api/Access.Forms.md b/api/Access.Forms.md
index f28feb2b795..094352616f9 100644
--- a/api/Access.Forms.md
+++ b/api/Access.Forms.md
@@ -1,5 +1,5 @@
---
-title: Forms Object (Access)
+title: Forms object (Access)
keywords: vbaac10.chm12355
f1_keywords:
- vbaac10.chm12355
@@ -11,7 +11,7 @@ ms.date: 06/08/2017
---
-# Forms Object (Access)
+# Forms object (Access)
The **Forms** collection contains all of the currently open forms in a Microsoft Access database.
diff --git a/api/Access.GroupLevel.Application.md b/api/Access.GroupLevel.Application.md
index e86a8b8c67f..e4d792b5325 100644
--- a/api/Access.GroupLevel.Application.md
+++ b/api/Access.GroupLevel.Application.md
@@ -1,5 +1,5 @@
---
-title: GroupLevel.Application Property (Access)
+title: GroupLevel.Application property (Access)
keywords: vbaac10.chm12236
f1_keywords:
- vbaac10.chm12236
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# GroupLevel.Application Property (Access)
+# GroupLevel.Application property (Access)
You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object.
## Syntax
- _expression_. `Application`
+_expression_. `Application`
- _expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
+_expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
## Remarks
diff --git a/api/Access.GroupLevel.ControlSource.md b/api/Access.GroupLevel.ControlSource.md
index 126de8e4d2a..7c34e3c2f3f 100644
--- a/api/Access.GroupLevel.ControlSource.md
+++ b/api/Access.GroupLevel.ControlSource.md
@@ -1,5 +1,5 @@
---
-title: GroupLevel.ControlSource Property (Access)
+title: GroupLevel.ControlSource property (Access)
keywords: vbaac10.chm12239
f1_keywords:
- vbaac10.chm12239
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# GroupLevel.ControlSource Property (Access)
+# GroupLevel.ControlSource property (Access)
You can use the **ControlSource** property to specify what data appears in a control. You can display and edit data bound to a field in a table, query, or SQL statement. You can also display the result of an expression. Read/write **String**.
## Syntax
- _expression_. `ControlSource`
+_expression_. `ControlSource`
- _expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
+_expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
## Remarks
diff --git a/api/Access.GroupLevel.GroupFooter.md b/api/Access.GroupLevel.GroupFooter.md
index 5cf7d21206e..f69f57eae1c 100644
--- a/api/Access.GroupLevel.GroupFooter.md
+++ b/api/Access.GroupLevel.GroupFooter.md
@@ -1,5 +1,5 @@
---
-title: GroupLevel.GroupFooter Property (Access)
+title: GroupLevel.GroupFooter property (Access)
keywords: vbaac10.chm12242
f1_keywords:
- vbaac10.chm12242
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# GroupLevel.GroupFooter Property (Access)
+# GroupLevel.GroupFooter property (Access)
You can use the **GroupFooter** property to create a group footer for a selected field or expression in a report. Read/write **Boolean**.
## Syntax
- _expression_. `GroupFooter`
+_expression_. `GroupFooter`
- _expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
+_expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
## Remarks
diff --git a/api/Access.GroupLevel.GroupHeader.md b/api/Access.GroupLevel.GroupHeader.md
index 5ae7e89d2e1..05cf3851ca1 100644
--- a/api/Access.GroupLevel.GroupHeader.md
+++ b/api/Access.GroupLevel.GroupHeader.md
@@ -1,5 +1,5 @@
---
-title: GroupLevel.GroupHeader Property (Access)
+title: GroupLevel.GroupHeader property (Access)
keywords: vbaac10.chm12241
f1_keywords:
- vbaac10.chm12241
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# GroupLevel.GroupHeader Property (Access)
+# GroupLevel.GroupHeader property (Access)
You can use the **GroupHeader** property to create a group header for a selected field or expression in a report. Read/write **Boolean**.
## Syntax
- _expression_. `GroupHeader`
+_expression_. `GroupHeader`
- _expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
+_expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
## Remarks
diff --git a/api/Access.GroupLevel.GroupInterval.md b/api/Access.GroupLevel.GroupInterval.md
index 8774867dc8a..6079727c718 100644
--- a/api/Access.GroupLevel.GroupInterval.md
+++ b/api/Access.GroupLevel.GroupInterval.md
@@ -1,5 +1,5 @@
---
-title: GroupLevel.GroupInterval Property (Access)
+title: GroupLevel.GroupInterval property (Access)
keywords: vbaac10.chm12244
f1_keywords:
- vbaac10.chm12244
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# GroupLevel.GroupInterval Property (Access)
+# GroupLevel.GroupInterval property (Access)
You can use the **GroupInterval** property with the **[GroupOn](Access.GroupLevel.GroupOn.md)** property to specify how records are grouped in a report. Read/write **Long**.
## Syntax
- _expression_. `GroupInterval`
+_expression_. `GroupInterval`
- _expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
+_expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
## Remarks
diff --git a/api/Access.GroupLevel.GroupOn.md b/api/Access.GroupLevel.GroupOn.md
index cde20c21a99..dff443ff74a 100644
--- a/api/Access.GroupLevel.GroupOn.md
+++ b/api/Access.GroupLevel.GroupOn.md
@@ -1,5 +1,5 @@
---
-title: GroupLevel.GroupOn Property (Access)
+title: GroupLevel.GroupOn property (Access)
keywords: vbaac10.chm12243
f1_keywords:
- vbaac10.chm12243
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# GroupLevel.GroupOn Property (Access)
+# GroupLevel.GroupOn property (Access)
You can use the **GroupOn** property in a report to specify how to group data in a field or expression by data type. For example, this property lets you group a Date field by month. Read/write **Integer**.
## Syntax
- _expression_. `GroupOn`
+_expression_. `GroupOn`
- _expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
+_expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
## Remarks
diff --git a/api/Access.GroupLevel.KeepTogether.md b/api/Access.GroupLevel.KeepTogether.md
index 4b9448f2f99..7c11370a95c 100644
--- a/api/Access.GroupLevel.KeepTogether.md
+++ b/api/Access.GroupLevel.KeepTogether.md
@@ -1,5 +1,5 @@
---
-title: GroupLevel.KeepTogether Property (Access)
+title: GroupLevel.KeepTogether property (Access)
keywords: vbaac10.chm12245
f1_keywords:
- vbaac10.chm12245
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# GroupLevel.KeepTogether Property (Access)
+# GroupLevel.KeepTogether property (Access)
You can use the **KeepTogether** property for a group in a report to keep parts of a group ? including the group header, detail section, and group footer ? together on the same page. For example, you might want a group header to always be printed on the same page with the first detail section. Read/write **Byte**.
## Syntax
- _expression_. `KeepTogether`
+_expression_. `KeepTogether`
- _expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
+_expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
## Remarks
diff --git a/api/Access.GroupLevel.Parent.md b/api/Access.GroupLevel.Parent.md
index 5c9960789a5..5246e76a2f1 100644
--- a/api/Access.GroupLevel.Parent.md
+++ b/api/Access.GroupLevel.Parent.md
@@ -1,5 +1,5 @@
---
-title: GroupLevel.Parent Property (Access)
+title: GroupLevel.Parent property (Access)
keywords: vbaac10.chm12237
f1_keywords:
- vbaac10.chm12237
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# GroupLevel.Parent Property (Access)
+# GroupLevel.Parent property (Access)
Returns the parent object for the specified object. Read-only.
## Syntax
- _expression_. `Parent`
+_expression_. `Parent`
- _expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
+_expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
## See also
diff --git a/api/Access.GroupLevel.Properties.md b/api/Access.GroupLevel.Properties.md
index 996ffde42a9..2d58ab3edba 100644
--- a/api/Access.GroupLevel.Properties.md
+++ b/api/Access.GroupLevel.Properties.md
@@ -1,5 +1,5 @@
---
-title: GroupLevel.Properties Property (Access)
+title: GroupLevel.Properties property (Access)
keywords: vbaac10.chm12238
f1_keywords:
- vbaac10.chm12238
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# GroupLevel.Properties Property (Access)
+# GroupLevel.Properties property (Access)
Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only.
## Syntax
- _expression_. `Properties`
+_expression_. `Properties`
- _expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
+_expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
## Remarks
diff --git a/api/Access.GroupLevel.SortOrder.md b/api/Access.GroupLevel.SortOrder.md
index 51e04742f1a..d1b81faeff4 100644
--- a/api/Access.GroupLevel.SortOrder.md
+++ b/api/Access.GroupLevel.SortOrder.md
@@ -1,5 +1,5 @@
---
-title: GroupLevel.SortOrder Property (Access)
+title: GroupLevel.SortOrder property (Access)
keywords: vbaac10.chm12240
f1_keywords:
- vbaac10.chm12240
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# GroupLevel.SortOrder Property (Access)
+# GroupLevel.SortOrder property (Access)
You use the **SortOrder** property to specify the sort order for fields and expressions in a report. For example, if you're printing a list of suppliers, you can sort the records alphabetically by company name. Read/write **Boolean**.
## Syntax
- _expression_. `SortOrder`
+_expression_. `SortOrder`
- _expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
+_expression_ A variable that represents a [GroupLevel](Access.GroupLevel.md) object.
## Remarks
diff --git a/api/Access.GroupLevel.md b/api/Access.GroupLevel.md
index faf5f26048c..e72e281709e 100644
--- a/api/Access.GroupLevel.md
+++ b/api/Access.GroupLevel.md
@@ -1,5 +1,5 @@
---
-title: GroupLevel Object (Access)
+title: GroupLevel object (Access)
keywords: vbaac10.chm12247
f1_keywords:
- vbaac10.chm12247
@@ -11,7 +11,7 @@ ms.date: 06/08/2017
---
-# GroupLevel Object (Access)
+# GroupLevel object (Access)
You can use the **GroupLevel** property in Visual Basic to refer to the group level you are grouping or sorting on in a report.
diff --git a/api/Access.Hyperlink.AddToFavorites.md b/api/Access.Hyperlink.AddToFavorites.md
index de757a05875..506f4b30a60 100644
--- a/api/Access.Hyperlink.AddToFavorites.md
+++ b/api/Access.Hyperlink.AddToFavorites.md
@@ -1,5 +1,5 @@
---
-title: Hyperlink.AddToFavorites Method (Access)
+title: Hyperlink.AddToFavorites method (Access)
keywords: vbaac10.chm10116
f1_keywords:
- vbaac10.chm10116
@@ -11,19 +11,19 @@ ms.date: 06/08/2017
---
-# Hyperlink.AddToFavorites Method (Access)
+# Hyperlink.AddToFavorites method (Access)
The **AddToFavorites** method adds a hyperlink address to the Favorites folder.
## Syntax
- _expression_. `AddToFavorites`
+_expression_. `AddToFavorites`
- _expression_ A variable that represents a [Hyperlink](Access.Hyperlink.md) object.
+_expression_ A variable that represents a [Hyperlink](Access.Hyperlink.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Access.Hyperlink.Address.md b/api/Access.Hyperlink.Address.md
index 04d92702a0a..a22a6b15ccc 100644
--- a/api/Access.Hyperlink.Address.md
+++ b/api/Access.Hyperlink.Address.md
@@ -1,5 +1,5 @@
---
-title: Hyperlink.Address Property (Access)
+title: Hyperlink.Address property (Access)
keywords: vbaac10.chm10115
f1_keywords:
- vbaac10.chm10115
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Hyperlink.Address Property (Access)
+# Hyperlink.Address property (Access)
You can use the **Address** property to specify or determine the path to an object, document, Web page or other destination for a **[Hyperlink](Access.Hyperlink.md)** object associated with a command button, image control, or label control. Read/write **String**.
## Syntax
- _expression_. `Address`
+_expression_. `Address`
- _expression_ A variable that represents a [Hyperlink](Access.Hyperlink.md) object.
+_expression_ A variable that represents a [Hyperlink](Access.Hyperlink.md) object.
## Remarks
diff --git a/api/Access.Hyperlink.CreateNewDocument.md b/api/Access.Hyperlink.CreateNewDocument.md
index 1ef9a79381d..dabb111bced 100644
--- a/api/Access.Hyperlink.CreateNewDocument.md
+++ b/api/Access.Hyperlink.CreateNewDocument.md
@@ -1,5 +1,5 @@
---
-title: Hyperlink.CreateNewDocument Method (Access)
+title: Hyperlink.CreateNewDocument method (Access)
keywords: vbaac10.chm10121
f1_keywords:
- vbaac10.chm10121
@@ -11,29 +11,29 @@ ms.date: 06/08/2017
---
-# Hyperlink.CreateNewDocument Method (Access)
+# Hyperlink.CreateNewDocument method (Access)
You can use the **CreateNewDocument** method to create a new document associated with a specified hyperlink.
## Syntax
- _expression_. `CreateNewDocument`( ` _FileName_`, ` _EditNow_`, ` _Overwrite_` )
+_expression_. `CreateNewDocument`( ` _FileName_`, ` _EditNow_`, ` _Overwrite_` )
- _expression_ A variable that represents a [Hyperlink](Access.Hyperlink.md) object.
+_expression_ A variable that represents a [Hyperlink](Access.Hyperlink.md) object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required|**String**| The name and path of the document. The type of document format you want used can be determine by the extension used with the filename. to output the data. You can create HTML (*.htm), Microsoft Active Server Pages (*.asp), Microsoft Excel (*.xls), Microsoft IIS (*.htx, *.idc), MS-DOS Text (*.txt), or Rich Text Format (*.rtf). Modules can be output only to MS-DOS text format. Microsoft Internet Information Server and Microsoft Active Server formats are available only for tables, queries, and forms.|
| _EditNow_|Required|**Boolean**|**True** opens the document in design view and **False** stores the new document in the specified database directory. The default is **True**.|
| _Overwrite_|Required|**Boolean**|**True** overwrites an existing document if the _filename_ argument identifies an existing document and **False** requires that the filename argument specifies a new filename. The default is **False**.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Access.Hyperlink.EmailSubject.md b/api/Access.Hyperlink.EmailSubject.md
index 46b89cf564d..4ae70a90fe1 100644
--- a/api/Access.Hyperlink.EmailSubject.md
+++ b/api/Access.Hyperlink.EmailSubject.md
@@ -1,5 +1,5 @@
---
-title: Hyperlink.EmailSubject Property (Access)
+title: Hyperlink.EmailSubject property (Access)
keywords: vbaac10.chm10118
f1_keywords:
- vbaac10.chm10118
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Hyperlink.EmailSubject Property (Access)
+# Hyperlink.EmailSubject property (Access)
You can use the **EmailSubject** property to specify or determine return the email subject line of a hyperlink to an object, document, Web page or other destination for a command button, image control, or label control. Read/write **String**.
## Syntax
- _expression_. `EmailSubject`
+_expression_. `EmailSubject`
- _expression_ A variable that represents a [Hyperlink](Access.Hyperlink.md) object.
+_expression_ A variable that represents a [Hyperlink](Access.Hyperlink.md) object.
## Remarks
diff --git a/api/Access.Hyperlink.Follow.md b/api/Access.Hyperlink.Follow.md
index 233f147fc94..cde129b6bc3 100644
--- a/api/Access.Hyperlink.Follow.md
+++ b/api/Access.Hyperlink.Follow.md
@@ -1,5 +1,5 @@
---
-title: Hyperlink.Follow Method (Access)
+title: Hyperlink.Follow method (Access)
keywords: vbaac10.chm10117
f1_keywords:
- vbaac10.chm10117
@@ -11,23 +11,23 @@ ms.date: 06/08/2017
---
-# Hyperlink.Follow Method (Access)
+# Hyperlink.Follow method (Access)
The **Follow** method opens the document or Web page specified by a hyperlink address associated with a control on a form or report.
## Syntax
- _expression_. `Follow`( ` _NewWindow_`, ` _AddHistory_`, ` _ExtraInfo_`, ` _Method_`, ` _HeaderInfo_` )
+_expression_. `Follow`( ` _NewWindow_`, ` _AddHistory_`, ` _ExtraInfo_`, ` _Method_`, ` _HeaderInfo_` )
- _expression_ A variable that represents a [Hyperlink](Access.Hyperlink.md) object.
+_expression_ A variable that represents a [Hyperlink](Access.Hyperlink.md) object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NewWindow_|Optional|**Boolean**|**True** (?1) opens the document in a new window and **False** (0) opens the document in the current window. The default is **False**.|
| _AddHistory_|Optional|**Boolean**|**True** adds the hyperlink to the History folder and **False** doesn't add the hyperlink to the History folder. The default is **True**.|
diff --git a/api/Access.Hyperlink.ScreenTip.md b/api/Access.Hyperlink.ScreenTip.md
index 2c654ce0ca1..5cad225cc1c 100644
--- a/api/Access.Hyperlink.ScreenTip.md
+++ b/api/Access.Hyperlink.ScreenTip.md
@@ -1,5 +1,5 @@
---
-title: Hyperlink.ScreenTip Property (Access)
+title: Hyperlink.ScreenTip property (Access)
keywords: vbaac10.chm10119
f1_keywords:
- vbaac10.chm10119
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Hyperlink.ScreenTip Property (Access)
+# Hyperlink.ScreenTip property (Access)
You can use the **ScreenTip** property to specify or determine the text that is displayed when you move the cursor over a hyperlink control. Read/write **String**.
## Syntax
- _expression_. `ScreenTip`
+_expression_. `ScreenTip`
- _expression_ A variable that represents a [Hyperlink](Access.Hyperlink.md) object.
+_expression_ A variable that represents a [Hyperlink](Access.Hyperlink.md) object.
## Remarks
diff --git a/api/Access.Hyperlink.SubAddress.md b/api/Access.Hyperlink.SubAddress.md
index 80b92cd0860..8fc897a02a4 100644
--- a/api/Access.Hyperlink.SubAddress.md
+++ b/api/Access.Hyperlink.SubAddress.md
@@ -1,5 +1,5 @@
---
-title: Hyperlink.SubAddress Property (Access)
+title: Hyperlink.SubAddress property (Access)
keywords: vbaac10.chm10114
f1_keywords:
- vbaac10.chm10114
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Hyperlink.SubAddress Property (Access)
+# Hyperlink.SubAddress property (Access)
You can use the **SubAddress** property to specify or determine a location within the target document specified by the **[Address](Access.Hyperlink.Address.md)** property. Read/write **String**. .
## Syntax
- _expression_. `SubAddress`
+_expression_. `SubAddress`
- _expression_ A variable that represents a [Hyperlink](Access.Hyperlink.md) object.
+_expression_ A variable that represents a [Hyperlink](Access.Hyperlink.md) object.
## Remarks
diff --git a/api/Access.Hyperlink.TextToDisplay.md b/api/Access.Hyperlink.TextToDisplay.md
index 757041d0083..d982663c03e 100644
--- a/api/Access.Hyperlink.TextToDisplay.md
+++ b/api/Access.Hyperlink.TextToDisplay.md
@@ -1,5 +1,5 @@
---
-title: Hyperlink.TextToDisplay Property (Access)
+title: Hyperlink.TextToDisplay property (Access)
keywords: vbaac10.chm10120
f1_keywords:
- vbaac10.chm10120
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Hyperlink.TextToDisplay Property (Access)
+# Hyperlink.TextToDisplay property (Access)
You can use the **TextToDisplay** property to specify or determine the display text for a hyperlink. Read/write **String**.
## Syntax
- _expression_. `TextToDisplay`
+_expression_. `TextToDisplay`
- _expression_ A variable that represents a [Hyperlink](Access.Hyperlink.md) object.
+_expression_ A variable that represents a [Hyperlink](Access.Hyperlink.md) object.
## Example
diff --git a/api/Access.Hyperlink.md b/api/Access.Hyperlink.md
index 7f6f3cb4ea9..ee66ee9f12f 100644
--- a/api/Access.Hyperlink.md
+++ b/api/Access.Hyperlink.md
@@ -1,5 +1,5 @@
---
-title: Hyperlink Object (Access)
+title: Hyperlink object (Access)
keywords: vbaac10.chm10123
f1_keywords:
- vbaac10.chm10123
@@ -11,7 +11,7 @@ ms.date: 06/08/2017
---
-# Hyperlink Object (Access)
+# Hyperlink object (Access)
The **Hyperlink** object represents a hyperlink associated with a control on a form, report, or data access page.
diff --git a/api/Access.Image.Application.md b/api/Access.Image.Application.md
index 3c631347105..07260c54eb3 100644
--- a/api/Access.Image.Application.md
+++ b/api/Access.Image.Application.md
@@ -1,5 +1,5 @@
---
-title: Image.Application Property (Access)
+title: Image.Application property (Access)
keywords: vbaac10.chm10354
f1_keywords:
- vbaac10.chm10354
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.Application Property (Access)
+# Image.Application property (Access)
You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object.
## Syntax
- _expression_. `Application`
+_expression_. `Application`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.BackColor.md b/api/Access.Image.BackColor.md
index 7a52a8581e3..b56e1adefdb 100644
--- a/api/Access.Image.BackColor.md
+++ b/api/Access.Image.BackColor.md
@@ -1,5 +1,5 @@
---
-title: Image.BackColor Property (Access)
+title: Image.BackColor property (Access)
keywords: vbaac10.chm10381
f1_keywords:
- vbaac10.chm10381
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.BackColor Property (Access)
+# Image.BackColor property (Access)
Gets or sets the interior color of the specified object. Read/write **Long**.
## Syntax
- _expression_. `BackColor`
+_expression_. `BackColor`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.BackShade.md b/api/Access.Image.BackShade.md
index 42d1e203116..fc2d39ef4bf 100644
--- a/api/Access.Image.BackShade.md
+++ b/api/Access.Image.BackShade.md
@@ -1,5 +1,5 @@
---
-title: Image.BackShade Property (Access)
+title: Image.BackShade property (Access)
keywords: vbaac10.chm14633
f1_keywords:
- vbaac10.chm14633
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.BackShade Property (Access)
+# Image.BackShade property (Access)
Gets or sets the shade applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**.
## Syntax
- _expression_. `BackShade`
+_expression_. `BackShade`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.BackStyle.md b/api/Access.Image.BackStyle.md
index 67eec135ca7..8678218395a 100644
--- a/api/Access.Image.BackStyle.md
+++ b/api/Access.Image.BackStyle.md
@@ -1,5 +1,5 @@
---
-title: Image.BackStyle Property (Access)
+title: Image.BackStyle property (Access)
keywords: vbaac10.chm10380
f1_keywords:
- vbaac10.chm10380
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.BackStyle Property (Access)
+# Image.BackStyle property (Access)
You can use the **BackStyle** property to specify whether a control will be transparent. Read/write **Byte**.
## Syntax
- _expression_. `BackStyle`
+_expression_. `BackStyle`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.BackThemeColorIndex.md b/api/Access.Image.BackThemeColorIndex.md
index 43c9bd1be01..11bd5fb5fe7 100644
--- a/api/Access.Image.BackThemeColorIndex.md
+++ b/api/Access.Image.BackThemeColorIndex.md
@@ -1,5 +1,5 @@
---
-title: Image.BackThemeColorIndex Property (Access)
+title: Image.BackThemeColorIndex property (Access)
keywords: vbaac10.chm14631
f1_keywords:
- vbaac10.chm14631
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.BackThemeColorIndex Property (Access)
+# Image.BackThemeColorIndex property (Access)
Gets or sets a value that represents a color in the applied color theme associated with the **BackColor** property of the specified object. Read/write **Long**.
## Syntax
- _expression_. `BackThemeColorIndex`
+_expression_. `BackThemeColorIndex`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.BackTint.md b/api/Access.Image.BackTint.md
index c3fe4bbad55..0bc80573370 100644
--- a/api/Access.Image.BackTint.md
+++ b/api/Access.Image.BackTint.md
@@ -1,5 +1,5 @@
---
-title: Image.BackTint Property (Access)
+title: Image.BackTint property (Access)
keywords: vbaac10.chm14632
f1_keywords:
- vbaac10.chm14632
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.BackTint Property (Access)
+# Image.BackTint property (Access)
Gets or sets the tint that is applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**.
## Syntax
- _expression_. `BackTint`
+_expression_. `BackTint`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.BorderColor.md b/api/Access.Image.BorderColor.md
index 40a833606a2..e22d0aa6c08 100644
--- a/api/Access.Image.BorderColor.md
+++ b/api/Access.Image.BorderColor.md
@@ -1,5 +1,5 @@
---
-title: Image.BorderColor Property (Access)
+title: Image.BorderColor property (Access)
keywords: vbaac10.chm10385
f1_keywords:
- vbaac10.chm10385
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.BorderColor Property (Access)
+# Image.BorderColor property (Access)
You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**.
## Syntax
- _expression_. `BorderColor`
+_expression_. `BorderColor`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.BorderShade.md b/api/Access.Image.BorderShade.md
index 9700ceea6d5..6224125603a 100644
--- a/api/Access.Image.BorderShade.md
+++ b/api/Access.Image.BorderShade.md
@@ -1,5 +1,5 @@
---
-title: Image.BorderShade Property (Access)
+title: Image.BorderShade property (Access)
keywords: vbaac10.chm14603
f1_keywords:
- vbaac10.chm14603
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.BorderShade Property (Access)
+# Image.BorderShade property (Access)
Gets or sets the shade that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**.
## Syntax
- _expression_. `BorderShade`
+_expression_. `BorderShade`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.BorderStyle.md b/api/Access.Image.BorderStyle.md
index 5ed1facc5ba..4edd15400ce 100644
--- a/api/Access.Image.BorderStyle.md
+++ b/api/Access.Image.BorderStyle.md
@@ -1,5 +1,5 @@
---
-title: Image.BorderStyle Property (Access)
+title: Image.BorderStyle property (Access)
keywords: vbaac10.chm10383
f1_keywords:
- vbaac10.chm10383
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.BorderStyle Property (Access)
+# Image.BorderStyle property (Access)
Specifies how a control's border appears.Read/write **Byte**.
## Syntax
- _expression_. `BorderStyle`
+_expression_. `BorderStyle`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.BorderThemeColorIndex.md b/api/Access.Image.BorderThemeColorIndex.md
index 30221784dfc..879134522ce 100644
--- a/api/Access.Image.BorderThemeColorIndex.md
+++ b/api/Access.Image.BorderThemeColorIndex.md
@@ -1,5 +1,5 @@
---
-title: Image.BorderThemeColorIndex Property (Access)
+title: Image.BorderThemeColorIndex property (Access)
keywords: vbaac10.chm14634
f1_keywords:
- vbaac10.chm14634
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.BorderThemeColorIndex Property (Access)
+# Image.BorderThemeColorIndex property (Access)
Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**.
## Syntax
- _expression_. `BorderThemeColorIndex`
+_expression_. `BorderThemeColorIndex`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.BorderTint.md b/api/Access.Image.BorderTint.md
index 07039d28053..7fc948623a7 100644
--- a/api/Access.Image.BorderTint.md
+++ b/api/Access.Image.BorderTint.md
@@ -1,5 +1,5 @@
---
-title: Image.BorderTint Property (Access)
+title: Image.BorderTint property (Access)
keywords: vbaac10.chm14602
f1_keywords:
- vbaac10.chm14602
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.BorderTint Property (Access)
+# Image.BorderTint property (Access)
Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**.
## Syntax
- _expression_. `BorderTint`
+_expression_. `BorderTint`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.BorderWidth.md b/api/Access.Image.BorderWidth.md
index c9981dd38bb..374b876b34f 100644
--- a/api/Access.Image.BorderWidth.md
+++ b/api/Access.Image.BorderWidth.md
@@ -1,5 +1,5 @@
---
-title: Image.BorderWidth Property (Access)
+title: Image.BorderWidth property (Access)
keywords: vbaac10.chm10386
f1_keywords:
- vbaac10.chm10386
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.BorderWidth Property (Access)
+# Image.BorderWidth property (Access)
You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**.
## Syntax
- _expression_. `BorderWidth`
+_expression_. `BorderWidth`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.BottomPadding.md b/api/Access.Image.BottomPadding.md
index 2454b21e50c..d1937d02240 100644
--- a/api/Access.Image.BottomPadding.md
+++ b/api/Access.Image.BottomPadding.md
@@ -1,5 +1,5 @@
---
-title: Image.BottomPadding Property (Access)
+title: Image.BottomPadding property (Access)
keywords: vbaac10.chm10416
f1_keywords:
- vbaac10.chm10416
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.BottomPadding Property (Access)
+# Image.BottomPadding property (Access)
Gets or sets the amount of space (in inches) between the image control and its bottom gridline. Read/write **Integer**.
## Syntax
- _expression_. `BottomPadding`
+_expression_. `BottomPadding`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## See also
diff --git a/api/Access.Image.Click.md b/api/Access.Image.Click.md
index 29d75a98169..8fc7bf80bc5 100644
--- a/api/Access.Image.Click.md
+++ b/api/Access.Image.Click.md
@@ -1,5 +1,5 @@
---
-title: Image.Click Event (Access)
+title: Image.Click event (Access)
keywords: vbaac10.chm14166
f1_keywords:
- vbaac10.chm14166
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.Click Event (Access)
+# Image.Click event (Access)
The **Click** event occurs when the user presses and then releases a mouse button over an object.
## Syntax
- _expression_. `Click`
+_expression_. `Click`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.ControlTipText.md b/api/Access.Image.ControlTipText.md
index d6aefc4c917..cd3773ad6d7 100644
--- a/api/Access.Image.ControlTipText.md
+++ b/api/Access.Image.ControlTipText.md
@@ -1,5 +1,5 @@
---
-title: Image.ControlTipText Property (Access)
+title: Image.ControlTipText property (Access)
keywords: vbaac10.chm10388
f1_keywords:
- vbaac10.chm10388
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.ControlTipText Property (Access)
+# Image.ControlTipText property (Access)
You can use the **ControlTipText** property to specify the text that appears in a ScreenTip when you hold the mouse pointer over a control. Read/write **String**.
## Syntax
- _expression_. `ControlTipText`
+_expression_. `ControlTipText`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.ControlType.md b/api/Access.Image.ControlType.md
index b6bd7a7a045..6694fab6fee 100644
--- a/api/Access.Image.ControlType.md
+++ b/api/Access.Image.ControlType.md
@@ -1,5 +1,5 @@
---
-title: Image.ControlType Property (Access)
+title: Image.ControlType property (Access)
keywords: vbaac10.chm10365
f1_keywords:
- vbaac10.chm10365
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.ControlType Property (Access)
+# Image.ControlType property (Access)
You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**.
## Syntax
- _expression_. `ControlType`
+_expression_. `ControlType`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.Controls.md b/api/Access.Image.Controls.md
index a9b95f42b02..03d37bd357d 100644
--- a/api/Access.Image.Controls.md
+++ b/api/Access.Image.Controls.md
@@ -1,5 +1,5 @@
---
-title: Image.Controls Property (Access)
+title: Image.Controls property (Access)
keywords: vbaac10.chm10361
f1_keywords:
- vbaac10.chm10361
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.Controls Property (Access)
+# Image.Controls property (Access)
Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**.
## Syntax
- _expression_. `Controls`
+_expression_. `Controls`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.DblClick.md b/api/Access.Image.DblClick.md
index efdb908d6d7..e92db90319e 100644
--- a/api/Access.Image.DblClick.md
+++ b/api/Access.Image.DblClick.md
@@ -1,5 +1,5 @@
---
-title: Image.DblClick Event (Access)
+title: Image.DblClick event (Access)
keywords: vbaac10.chm14167
f1_keywords:
- vbaac10.chm14167
@@ -11,23 +11,23 @@ ms.date: 06/08/2017
---
-# Image.DblClick Event (Access)
+# Image.DblClick event (Access)
The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system.
## Syntax
- _expression_. `DblClick`( ` _Cancel_` )
+_expression_. `DblClick`( ` _Cancel_` )
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cancel_|Required|**Integer**|The setting determines if the **DblClick** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **DblClick** event.|
diff --git a/api/Access.Image.DisplayWhen.md b/api/Access.Image.DisplayWhen.md
index ed890078042..ced140fb5ef 100644
--- a/api/Access.Image.DisplayWhen.md
+++ b/api/Access.Image.DisplayWhen.md
@@ -1,5 +1,5 @@
---
-title: Image.DisplayWhen Property (Access)
+title: Image.DisplayWhen property (Access)
keywords: vbaac10.chm10375
f1_keywords:
- vbaac10.chm10375
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.DisplayWhen Property (Access)
+# Image.DisplayWhen property (Access)
You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**.
## Syntax
- _expression_. `DisplayWhen`
+_expression_. `DisplayWhen`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.EventProcPrefix.md b/api/Access.Image.EventProcPrefix.md
index 492537e3cca..eb3c9312e35 100644
--- a/api/Access.Image.EventProcPrefix.md
+++ b/api/Access.Image.EventProcPrefix.md
@@ -1,5 +1,5 @@
---
-title: Image.EventProcPrefix Property (Access)
+title: Image.EventProcPrefix property (Access)
keywords: vbaac10.chm10363
f1_keywords:
- vbaac10.chm10363
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.EventProcPrefix Property (Access)
+# Image.EventProcPrefix property (Access)
Gets or sets the prefix portion of an event procedure name. Read/write **String**.
## Syntax
- _expression_. `EventProcPrefix`
+_expression_. `EventProcPrefix`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.GridlineColor.md b/api/Access.Image.GridlineColor.md
index 35f50204ac0..ccb4971f7ad 100644
--- a/api/Access.Image.GridlineColor.md
+++ b/api/Access.Image.GridlineColor.md
@@ -1,5 +1,5 @@
---
-title: Image.GridlineColor Property (Access)
+title: Image.GridlineColor property (Access)
keywords: vbaac10.chm10425
f1_keywords:
- vbaac10.chm10425
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.GridlineColor Property (Access)
+# Image.GridlineColor property (Access)
Gets or sets the color of the gridline for the specified image control. Read/write **Long**.
## Syntax
- _expression_. `GridlineColor`
+_expression_. `GridlineColor`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.GridlineShade.md b/api/Access.Image.GridlineShade.md
index 356b563e8fe..dd6e9fc98fe 100644
--- a/api/Access.Image.GridlineShade.md
+++ b/api/Access.Image.GridlineShade.md
@@ -1,5 +1,5 @@
---
-title: Image.GridlineShade Property (Access)
+title: Image.GridlineShade property (Access)
keywords: vbaac10.chm14637
f1_keywords:
- vbaac10.chm14637
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.GridlineShade Property (Access)
+# Image.GridlineShade property (Access)
Gets or sets the shade applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**.
## Syntax
- _expression_. `GridlineShade`
+_expression_. `GridlineShade`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.GridlineStyleBottom.md b/api/Access.Image.GridlineStyleBottom.md
index 47fe241de71..226f18b70fb 100644
--- a/api/Access.Image.GridlineStyleBottom.md
+++ b/api/Access.Image.GridlineStyleBottom.md
@@ -1,5 +1,5 @@
---
-title: Image.GridlineStyleBottom Property (Access)
+title: Image.GridlineStyleBottom property (Access)
keywords: vbaac10.chm10420
f1_keywords:
- vbaac10.chm10420
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.GridlineStyleBottom Property (Access)
+# Image.GridlineStyleBottom property (Access)
Gets or sets the bottom gridline style of the specified image control. Read/write **Byte**.
## Syntax
- _expression_. `GridlineStyleBottom`
+_expression_. `GridlineStyleBottom`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.GridlineStyleLeft.md b/api/Access.Image.GridlineStyleLeft.md
index 75504786d61..6c0838dd961 100644
--- a/api/Access.Image.GridlineStyleLeft.md
+++ b/api/Access.Image.GridlineStyleLeft.md
@@ -1,5 +1,5 @@
---
-title: Image.GridlineStyleLeft Property (Access)
+title: Image.GridlineStyleLeft property (Access)
keywords: vbaac10.chm10417
f1_keywords:
- vbaac10.chm10417
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.GridlineStyleLeft Property (Access)
+# Image.GridlineStyleLeft property (Access)
Gets or sets the width of the bottom gridline for the specified image. Read/write **Byte**.
## Syntax
- _expression_. `GridlineStyleLeft`
+_expression_. `GridlineStyleLeft`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.GridlineStyleRight.md b/api/Access.Image.GridlineStyleRight.md
index 91bac54daad..0b53ac2dcbe 100644
--- a/api/Access.Image.GridlineStyleRight.md
+++ b/api/Access.Image.GridlineStyleRight.md
@@ -1,5 +1,5 @@
---
-title: Image.GridlineStyleRight Property (Access)
+title: Image.GridlineStyleRight property (Access)
keywords: vbaac10.chm10419
f1_keywords:
- vbaac10.chm10419
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.GridlineStyleRight Property (Access)
+# Image.GridlineStyleRight property (Access)
Gets or sets the right gridline style of the specified image control. Read/write **Byte**.
## Syntax
- _expression_. `GridlineStyleRight`
+_expression_. `GridlineStyleRight`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.GridlineStyleTop.md b/api/Access.Image.GridlineStyleTop.md
index 136f3436d9a..daf70cbbbf0 100644
--- a/api/Access.Image.GridlineStyleTop.md
+++ b/api/Access.Image.GridlineStyleTop.md
@@ -1,5 +1,5 @@
---
-title: Image.GridlineStyleTop Property (Access)
+title: Image.GridlineStyleTop property (Access)
keywords: vbaac10.chm10418
f1_keywords:
- vbaac10.chm10418
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.GridlineStyleTop Property (Access)
+# Image.GridlineStyleTop property (Access)
Gets or sets the top gridline style of the specified image control. Read/write **Byte**.
## Syntax
- _expression_. `GridlineStyleTop`
+_expression_. `GridlineStyleTop`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.GridlineThemeColorIndex.md b/api/Access.Image.GridlineThemeColorIndex.md
index 06c209569cd..f92a526c6a7 100644
--- a/api/Access.Image.GridlineThemeColorIndex.md
+++ b/api/Access.Image.GridlineThemeColorIndex.md
@@ -1,5 +1,5 @@
---
-title: Image.GridlineThemeColorIndex Property (Access)
+title: Image.GridlineThemeColorIndex property (Access)
keywords: vbaac10.chm14635
f1_keywords:
- vbaac10.chm14635
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.GridlineThemeColorIndex Property (Access)
+# Image.GridlineThemeColorIndex property (Access)
Gets or sets the theme color index that represents a color in the applied color theme associated with the **GridlineColor** property of the specified object. Read/write **Long**.
## Syntax
- _expression_. `GridlineThemeColorIndex`
+_expression_. `GridlineThemeColorIndex`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.GridlineTint.md b/api/Access.Image.GridlineTint.md
index 7a3069464b7..3f03a18f7d1 100644
--- a/api/Access.Image.GridlineTint.md
+++ b/api/Access.Image.GridlineTint.md
@@ -1,5 +1,5 @@
---
-title: Image.GridlineTint Property (Access)
+title: Image.GridlineTint property (Access)
keywords: vbaac10.chm14636
f1_keywords:
- vbaac10.chm14636
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.GridlineTint Property (Access)
+# Image.GridlineTint property (Access)
Gets or sets the tint applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**.
## Syntax
- _expression_. `GridlineTint`
+_expression_. `GridlineTint`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.GridlineWidthBottom.md b/api/Access.Image.GridlineWidthBottom.md
index 7ac55d146cd..33065689930 100644
--- a/api/Access.Image.GridlineWidthBottom.md
+++ b/api/Access.Image.GridlineWidthBottom.md
@@ -1,5 +1,5 @@
---
-title: Image.GridlineWidthBottom Property (Access)
+title: Image.GridlineWidthBottom property (Access)
keywords: vbaac10.chm10424
f1_keywords:
- vbaac10.chm10424
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.GridlineWidthBottom Property (Access)
+# Image.GridlineWidthBottom property (Access)
Gets or sets the width of the bottom gridline for the specified image control. Read/write **Byte**.
## Syntax
- _expression_. `GridlineWidthBottom`
+_expression_. `GridlineWidthBottom`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.GridlineWidthLeft.md b/api/Access.Image.GridlineWidthLeft.md
index e678bcb142f..cf3abf32f65 100644
--- a/api/Access.Image.GridlineWidthLeft.md
+++ b/api/Access.Image.GridlineWidthLeft.md
@@ -1,5 +1,5 @@
---
-title: Image.GridlineWidthLeft Property (Access)
+title: Image.GridlineWidthLeft property (Access)
keywords: vbaac10.chm10421
f1_keywords:
- vbaac10.chm10421
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.GridlineWidthLeft Property (Access)
+# Image.GridlineWidthLeft property (Access)
Gets or sets the width of the left gridline for the specified image control. Read/write **Byte**.
## Syntax
- _expression_. `GridlineWidthLeft`
+_expression_. `GridlineWidthLeft`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.GridlineWidthRight.md b/api/Access.Image.GridlineWidthRight.md
index d74ea12e609..c75cab4ab7f 100644
--- a/api/Access.Image.GridlineWidthRight.md
+++ b/api/Access.Image.GridlineWidthRight.md
@@ -1,5 +1,5 @@
---
-title: Image.GridlineWidthRight Property (Access)
+title: Image.GridlineWidthRight property (Access)
keywords: vbaac10.chm10423
f1_keywords:
- vbaac10.chm10423
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.GridlineWidthRight Property (Access)
+# Image.GridlineWidthRight property (Access)
Gets or sets the width of the right gridline for the specified image control. Read/write **Byte**.
## Syntax
- _expression_. `GridlineWidthRight`
+_expression_. `GridlineWidthRight`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.GridlineWidthTop.md b/api/Access.Image.GridlineWidthTop.md
index 66658993cb4..0c26f0bd75b 100644
--- a/api/Access.Image.GridlineWidthTop.md
+++ b/api/Access.Image.GridlineWidthTop.md
@@ -1,5 +1,5 @@
---
-title: Image.GridlineWidthTop Property (Access)
+title: Image.GridlineWidthTop property (Access)
keywords: vbaac10.chm10422
f1_keywords:
- vbaac10.chm10422
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.GridlineWidthTop Property (Access)
+# Image.GridlineWidthTop property (Access)
Gets or sets the width of the top gridline for the specified image control. Read/write **Byte**.
## Syntax
- _expression_. `GridlineWidthTop`
+_expression_. `GridlineWidthTop`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.Height.md b/api/Access.Image.Height.md
index 5ed0a8a635a..597f0e5e05c 100644
--- a/api/Access.Image.Height.md
+++ b/api/Access.Image.Height.md
@@ -1,5 +1,5 @@
---
-title: Image.Height Property (Access)
+title: Image.Height property (Access)
keywords: vbaac10.chm10379
f1_keywords:
- vbaac10.chm10379
@@ -11,19 +11,19 @@ ms.date: 06/08/2017
---
-# Image.Height Property (Access)
+# Image.Height property (Access)
Gets or sets the height of the specified object in twips. Read/write **Integer**.
## Syntax
- _expression_. `Height`
+_expression_. `Height`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Access.Image.HelpContextId.md b/api/Access.Image.HelpContextId.md
index 387e60ddde6..dda6874a200 100644
--- a/api/Access.Image.HelpContextId.md
+++ b/api/Access.Image.HelpContextId.md
@@ -1,5 +1,5 @@
---
-title: Image.HelpContextId Property (Access)
+title: Image.HelpContextId property (Access)
keywords: vbaac10.chm10389
f1_keywords:
- vbaac10.chm10389
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.HelpContextId Property (Access)
+# Image.HelpContextId property (Access)
The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**.
## Syntax
- _expression_. `HelpContextId`
+_expression_. `HelpContextId`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.HorizontalAnchor.md b/api/Access.Image.HorizontalAnchor.md
index 8766f54d52e..5bc326c28a4 100644
--- a/api/Access.Image.HorizontalAnchor.md
+++ b/api/Access.Image.HorizontalAnchor.md
@@ -1,5 +1,5 @@
---
-title: Image.HorizontalAnchor Property (Access)
+title: Image.HorizontalAnchor property (Access)
keywords: vbaac10.chm10426
f1_keywords:
- vbaac10.chm10426
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.HorizontalAnchor Property (Access)
+# Image.HorizontalAnchor property (Access)
Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the image is anchored horizontally within its layout. Read/write.
## Syntax
- _expression_. `HorizontalAnchor`
+_expression_. `HorizontalAnchor`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.Hyperlink.md b/api/Access.Image.Hyperlink.md
index 309db3121af..2a0c5c33763 100644
--- a/api/Access.Image.Hyperlink.md
+++ b/api/Access.Image.Hyperlink.md
@@ -1,5 +1,5 @@
---
-title: Image.Hyperlink Property (Access)
+title: Image.Hyperlink property (Access)
keywords: vbaac10.chm10362
f1_keywords:
- vbaac10.chm10362
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.Hyperlink Property (Access)
+# Image.Hyperlink property (Access)
You can use the **Hyperlink** property to return a reference to a **Hyperlink** object. You can use the **Hyperlink** property to access the properties and methods of a control's hyperlink. Read-only.
## Syntax
- _expression_. `Hyperlink`
+_expression_. `Hyperlink`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Example
diff --git a/api/Access.Image.HyperlinkAddress.md b/api/Access.Image.HyperlinkAddress.md
index 75d7b7618b1..ff662bac930 100644
--- a/api/Access.Image.HyperlinkAddress.md
+++ b/api/Access.Image.HyperlinkAddress.md
@@ -1,5 +1,5 @@
---
-title: Image.HyperlinkAddress Property (Access)
+title: Image.HyperlinkAddress property (Access)
keywords: vbaac10.chm10372
f1_keywords:
- vbaac10.chm10372
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.HyperlinkAddress Property (Access)
+# Image.HyperlinkAddress property (Access)
You can use the **HyperlinkAddress** property to specify or determine the path to an object, document, Web page or other destination for a hyperlink associated with a the specified control. Read/write **String**.
## Syntax
- _expression_. `HyperlinkAddress`
+_expression_. `HyperlinkAddress`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.HyperlinkSubAddress.md b/api/Access.Image.HyperlinkSubAddress.md
index ede3cfbca7d..5a304a5ddc3 100644
--- a/api/Access.Image.HyperlinkSubAddress.md
+++ b/api/Access.Image.HyperlinkSubAddress.md
@@ -1,5 +1,5 @@
---
-title: Image.HyperlinkSubAddress Property (Access)
+title: Image.HyperlinkSubAddress property (Access)
keywords: vbaac10.chm10373
f1_keywords:
- vbaac10.chm10373
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.HyperlinkSubAddress Property (Access)
+# Image.HyperlinkSubAddress property (Access)
You can use the **HyperlinkSubAddress** property to specify or determine a location within the target document specified by the **HyperlinkAddress** property. Read/write **String**.
## Syntax
- _expression_. `HyperlinkSubAddress`
+_expression_. `HyperlinkSubAddress`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.ImageHeight.md b/api/Access.Image.ImageHeight.md
index 66e4e61b707..97cfe8530ce 100644
--- a/api/Access.Image.ImageHeight.md
+++ b/api/Access.Image.ImageHeight.md
@@ -1,5 +1,5 @@
---
-title: Image.ImageHeight Property (Access)
+title: Image.ImageHeight property (Access)
keywords: vbaac10.chm10400
f1_keywords:
- vbaac10.chm10400
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.ImageHeight Property (Access)
+# Image.ImageHeight property (Access)
You can use the **ImageHeight** property to determine the height in twips of the picture in an image control. Read/write **Long**.
## Syntax
- _expression_. `ImageHeight`
+_expression_. `ImageHeight`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.ImageWidth.md b/api/Access.Image.ImageWidth.md
index 8e176fc0086..60d9d97ad25 100644
--- a/api/Access.Image.ImageWidth.md
+++ b/api/Access.Image.ImageWidth.md
@@ -1,5 +1,5 @@
---
-title: Image.ImageWidth Property (Access)
+title: Image.ImageWidth property (Access)
keywords: vbaac10.chm10401
f1_keywords:
- vbaac10.chm10401
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.ImageWidth Property (Access)
+# Image.ImageWidth property (Access)
You can use the **ImageWidth** property to determine the width in twips of a picture in an image control. Read/write **Long**.
## Syntax
- _expression_. `ImageWidth`
+_expression_. `ImageWidth`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.InSelection.md b/api/Access.Image.InSelection.md
index 51d93a0732c..6112150907a 100644
--- a/api/Access.Image.InSelection.md
+++ b/api/Access.Image.InSelection.md
@@ -1,5 +1,5 @@
---
-title: Image.InSelection Property (Access)
+title: Image.InSelection property (Access)
keywords: vbaac10.chm10402
f1_keywords:
- vbaac10.chm10402
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.InSelection Property (Access)
+# Image.InSelection property (Access)
You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**.
## Syntax
- _expression_. `InSelection`
+_expression_. `InSelection`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.IsVisible.md b/api/Access.Image.IsVisible.md
index dba19ab1978..bce91258c27 100644
--- a/api/Access.Image.IsVisible.md
+++ b/api/Access.Image.IsVisible.md
@@ -1,5 +1,5 @@
---
-title: Image.IsVisible Property (Access)
+title: Image.IsVisible property (Access)
keywords: vbaac10.chm10393
f1_keywords:
- vbaac10.chm10393
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.IsVisible Property (Access)
+# Image.IsVisible property (Access)
You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**.
## Syntax
- _expression_. `IsVisible`
+_expression_. `IsVisible`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.Layout.md b/api/Access.Image.Layout.md
index adb40bba81c..c1f83d1c7d3 100644
--- a/api/Access.Image.Layout.md
+++ b/api/Access.Image.Layout.md
@@ -1,5 +1,5 @@
---
-title: Image.Layout Property (Access)
+title: Image.Layout property (Access)
keywords: vbaac10.chm10412
f1_keywords:
- vbaac10.chm10412
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.Layout Property (Access)
+# Image.Layout property (Access)
Returns the type of layout for the specified image. Read-only **[AcLayoutType](Access.AcLayoutType.md)**.
## Syntax
- _expression_. `Layout`
+_expression_. `Layout`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## See also
diff --git a/api/Access.Image.LayoutID.md b/api/Access.Image.LayoutID.md
index 31e594a43e2..acc6a082567 100644
--- a/api/Access.Image.LayoutID.md
+++ b/api/Access.Image.LayoutID.md
@@ -1,5 +1,5 @@
---
-title: Image.LayoutID Property (Access)
+title: Image.LayoutID property (Access)
keywords: vbaac10.chm10428
f1_keywords:
- vbaac10.chm10428
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.LayoutID Property (Access)
+# Image.LayoutID property (Access)
Returns the unique identifier for the layout that contains the specified image. Read-only **Long**.
## Syntax
- _expression_. `LayoutID`
+_expression_. `LayoutID`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.Left.md b/api/Access.Image.Left.md
index 6412a5b801f..74a75039774 100644
--- a/api/Access.Image.Left.md
+++ b/api/Access.Image.Left.md
@@ -1,5 +1,5 @@
---
-title: Image.Left Property (Access)
+title: Image.Left property (Access)
keywords: vbaac10.chm10376
f1_keywords:
- vbaac10.chm10376
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.Left Property (Access)
+# Image.Left property (Access)
You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**.
## Syntax
- _expression_. `Left`
+_expression_. `Left`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## Remarks
diff --git a/api/Access.Image.LeftPadding.md b/api/Access.Image.LeftPadding.md
index d3276d85970..2a2edd79301 100644
--- a/api/Access.Image.LeftPadding.md
+++ b/api/Access.Image.LeftPadding.md
@@ -1,5 +1,5 @@
---
-title: Image.LeftPadding Property (Access)
+title: Image.LeftPadding property (Access)
keywords: vbaac10.chm10413
f1_keywords:
- vbaac10.chm10413
@@ -11,16 +11,16 @@ ms.date: 06/08/2017
---
-# Image.LeftPadding Property (Access)
+# Image.LeftPadding property (Access)
Gets or sets the amount of space (in inches) between the image control and its left gridline. Read/write **Integer**.
## Syntax
- _expression_. `LeftPadding`
+_expression_. `LeftPadding`
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
## See also
diff --git a/api/Access.Image.MouseDown.md b/api/Access.Image.MouseDown.md
index b783cad9d16..832a8ff6709 100644
--- a/api/Access.Image.MouseDown.md
+++ b/api/Access.Image.MouseDown.md
@@ -1,5 +1,5 @@
---
-title: Image.MouseDown Event (Access)
+title: Image.MouseDown event (Access)
keywords: vbaac10.chm14168
f1_keywords:
- vbaac10.chm14168
@@ -11,23 +11,23 @@ ms.date: 06/08/2017
---
-# Image.MouseDown Event (Access)
+# Image.MouseDown event (Access)
The **MouseDown** event occurs when the user presses a mouse button.
## Syntax
- _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` )
+_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` )
- _expression_ A variable that represents an [Image](Access.Image.md) object.
+_expression_ A variable that represents an [Image](Access.Image.md) object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Button_|Required|**Integer**|The button that was pressed to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Image.MouseMove.md b/api/Access.Image.MouseMove.md index 2d67348c01a..3dd8f166092 100644 --- a/api/Access.Image.MouseMove.md +++ b/api/Access.Image.MouseMove.md @@ -1,5 +1,5 @@ --- -title: Image.MouseMove Event (Access) +title: Image.MouseMove event (Access) keywords: vbaac10.chm14169 f1_keywords: - vbaac10.chm14169 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Image.MouseMove Event (Access) +# Image.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Image.MouseUp.md b/api/Access.Image.MouseUp.md index 0e8d115566f..7e09ce754b6 100644 --- a/api/Access.Image.MouseUp.md +++ b/api/Access.Image.MouseUp.md @@ -1,5 +1,5 @@ --- -title: Image.MouseUp Event (Access) +title: Image.MouseUp event (Access) keywords: vbaac10.chm14170 f1_keywords: - vbaac10.chm14170 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Image.MouseUp Event (Access) +# Image.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Image.Move.md b/api/Access.Image.Move.md index b98fcb505bc..6c2b0aab4e6 100644 --- a/api/Access.Image.Move.md +++ b/api/Access.Image.Move.md @@ -1,5 +1,5 @@ --- -title: Image.Move Method (Access) +title: Image.Move method (Access) keywords: vbaac10.chm10405 f1_keywords: - vbaac10.chm10405 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Image.Move Method (Access) +# Image.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.Image.Name.md b/api/Access.Image.Name.md index 61f6c981fe6..addc903cfa4 100644 --- a/api/Access.Image.Name.md +++ b/api/Access.Image.Name.md @@ -1,5 +1,5 @@ --- -title: Image.Name Property (Access) +title: Image.Name property (Access) keywords: vbaac10.chm10404 f1_keywords: - vbaac10.chm10404 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.Name Property (Access) +# Image.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.ObjectPalette.md b/api/Access.Image.ObjectPalette.md index 15f3a18c974..916a46cb444 100644 --- a/api/Access.Image.ObjectPalette.md +++ b/api/Access.Image.ObjectPalette.md @@ -1,5 +1,5 @@ --- -title: Image.ObjectPalette Property (Access) +title: Image.ObjectPalette property (Access) keywords: vbaac10.chm10392 f1_keywords: - vbaac10.chm10392 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.ObjectPalette Property (Access) +# Image.ObjectPalette property (Access) The **ObjectPalette** property specifies the palette in the application used to create A bitmap or other graphic that is loaded into the specified control by using the **Picture** property. Read/write **Variant**. ## Syntax - _expression_. `ObjectPalette` +_expression_. `ObjectPalette` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.OldBorderStyle.md b/api/Access.Image.OldBorderStyle.md index 18b237f58fc..57ae47b98ad 100644 --- a/api/Access.Image.OldBorderStyle.md +++ b/api/Access.Image.OldBorderStyle.md @@ -1,5 +1,5 @@ --- -title: Image.OldBorderStyle Property (Access) +title: Image.OldBorderStyle property (Access) keywords: vbaac10.chm10384 f1_keywords: - vbaac10.chm10384 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.OldBorderStyle Property (Access) +# Image.OldBorderStyle property (Access) You can use this property to set or returns the unedited value of the **BorderStyle** property for a form or control. This property is useful if you need to revert to an unedited or preferred border style. Read/write **Byte**. ## Syntax - _expression_. `OldBorderStyle` +_expression_. `OldBorderStyle` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.OldValue.md b/api/Access.Image.OldValue.md index 90fd3166c8f..bb7879e797d 100644 --- a/api/Access.Image.OldValue.md +++ b/api/Access.Image.OldValue.md @@ -1,5 +1,5 @@ --- -title: Image.OldValue Property (Access) +title: Image.OldValue property (Access) keywords: vbaac10.chm10356 f1_keywords: - vbaac10.chm10356 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.OldValue Property (Access) +# Image.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.OnClick.md b/api/Access.Image.OnClick.md index 08168810d56..97d99cfa292 100644 --- a/api/Access.Image.OnClick.md +++ b/api/Access.Image.OnClick.md @@ -1,5 +1,5 @@ --- -title: Image.OnClick Property (Access) +title: Image.OnClick property (Access) keywords: vbaac10.chm10394 f1_keywords: - vbaac10.chm10394 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.OnClick Property (Access) +# Image.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Image.OnDblClick.md b/api/Access.Image.OnDblClick.md index e024aff8091..d5fd850f467 100644 --- a/api/Access.Image.OnDblClick.md +++ b/api/Access.Image.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: Image.OnDblClick Property (Access) +title: Image.OnDblClick property (Access) keywords: vbaac10.chm10395 f1_keywords: - vbaac10.chm10395 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.OnDblClick Property (Access) +# Image.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Image.OnMouseDown.md b/api/Access.Image.OnMouseDown.md index 9c6504b0f80..ab17d6ee18b 100644 --- a/api/Access.Image.OnMouseDown.md +++ b/api/Access.Image.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: Image.OnMouseDown Property (Access) +title: Image.OnMouseDown property (Access) keywords: vbaac10.chm10396 f1_keywords: - vbaac10.chm10396 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.OnMouseDown Property (Access) +# Image.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Image.OnMouseMove.md b/api/Access.Image.OnMouseMove.md index 0aab2ad764d..9b63377f633 100644 --- a/api/Access.Image.OnMouseMove.md +++ b/api/Access.Image.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: Image.OnMouseMove Property (Access) +title: Image.OnMouseMove property (Access) keywords: vbaac10.chm10397 f1_keywords: - vbaac10.chm10397 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.OnMouseMove Property (Access) +# Image.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Image.OnMouseUp.md b/api/Access.Image.OnMouseUp.md index 081a9fd14ee..675276229b8 100644 --- a/api/Access.Image.OnMouseUp.md +++ b/api/Access.Image.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: Image.OnMouseUp Property (Access) +title: Image.OnMouseUp property (Access) keywords: vbaac10.chm10398 f1_keywords: - vbaac10.chm10398 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.OnMouseUp Property (Access) +# Image.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Image.Parent.md b/api/Access.Image.Parent.md index 8a7773761e6..30f85f00988 100644 --- a/api/Access.Image.Parent.md +++ b/api/Access.Image.Parent.md @@ -1,5 +1,5 @@ --- -title: Image.Parent Property (Access) +title: Image.Parent property (Access) keywords: vbaac10.chm10355 f1_keywords: - vbaac10.chm10355 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.Parent Property (Access) +# Image.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## See also diff --git a/api/Access.Image.Picture.md b/api/Access.Image.Picture.md index 581b95d162e..71c5c57a397 100644 --- a/api/Access.Image.Picture.md +++ b/api/Access.Image.Picture.md @@ -1,5 +1,5 @@ --- -title: Image.Picture Property (Access) +title: Image.Picture property (Access) keywords: vbaac10.chm10366 f1_keywords: - vbaac10.chm10366 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.Picture Property (Access) +# Image.Picture property (Access) You can use the **Picture** property to specify a bitmap or other type of graphic to be displayed on the specified control. Read/write **String**. ## Syntax - _expression_. `Picture` +_expression_. `Picture` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.PictureAlignment.md b/api/Access.Image.PictureAlignment.md index 337a5a50933..de02c3bd16c 100644 --- a/api/Access.Image.PictureAlignment.md +++ b/api/Access.Image.PictureAlignment.md @@ -1,5 +1,5 @@ --- -title: Image.PictureAlignment Property (Access) +title: Image.PictureAlignment property (Access) keywords: vbaac10.chm10370 f1_keywords: - vbaac10.chm10370 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.PictureAlignment Property (Access) +# Image.PictureAlignment property (Access) You can use the **PictureAlignment** property to specify where a background picture will appear in an image control or on a form or report. Read/write **Byte**.Read/write. ## Syntax - _expression_. `PictureAlignment` +_expression_. `PictureAlignment` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.PictureData.md b/api/Access.Image.PictureData.md index 0af7249f8e8..b18c2a9f0b7 100644 --- a/api/Access.Image.PictureData.md +++ b/api/Access.Image.PictureData.md @@ -1,5 +1,5 @@ --- -title: Image.PictureData Property (Access) +title: Image.PictureData property (Access) keywords: vbaac10.chm10368 f1_keywords: - vbaac10.chm10368 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.PictureData Property (Access) +# Image.PictureData property (Access) You can use the **PictureData** property to copy the picture to another object that supports the **Picture** property. Read/write **Variant**. ## Syntax - _expression_. `PictureData` +_expression_. `PictureData` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.PictureTiling.md b/api/Access.Image.PictureTiling.md index 88e3e01315b..e19c58de423 100644 --- a/api/Access.Image.PictureTiling.md +++ b/api/Access.Image.PictureTiling.md @@ -1,5 +1,5 @@ --- -title: Image.PictureTiling Property (Access) +title: Image.PictureTiling property (Access) keywords: vbaac10.chm10371 f1_keywords: - vbaac10.chm10371 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.PictureTiling Property (Access) +# Image.PictureTiling property (Access) You can use the **PictureTiling** property to specify whether a background picture is tiled across the entire image control, Form window, form, or page of a report. Read/write **Boolean**. ## Syntax - _expression_. `PictureTiling` +_expression_. `PictureTiling` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.PictureType.md b/api/Access.Image.PictureType.md index 2c5e3b203f9..16efdfbb3a3 100644 --- a/api/Access.Image.PictureType.md +++ b/api/Access.Image.PictureType.md @@ -1,5 +1,5 @@ --- -title: Image.PictureType Property (Access) +title: Image.PictureType property (Access) keywords: vbaac10.chm10367 f1_keywords: - vbaac10.chm10367 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.PictureType Property (Access) +# Image.PictureType property (Access) You can use the **PictureType** property to specify whether Microsoft Access stores an object's picture as a linked or an embedded object. Read/write **Byte**. ## Syntax - _expression_. `PictureType` +_expression_. `PictureType` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.Properties.md b/api/Access.Image.Properties.md index 94ab46a2ce2..51a65e21f39 100644 --- a/api/Access.Image.Properties.md +++ b/api/Access.Image.Properties.md @@ -1,5 +1,5 @@ --- -title: Image.Properties Property (Access) +title: Image.Properties property (Access) keywords: vbaac10.chm10357 f1_keywords: - vbaac10.chm10357 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.Properties Property (Access) +# Image.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.Requery.md b/api/Access.Image.Requery.md index 5246c0b8c30..4a349b7c605 100644 --- a/api/Access.Image.Requery.md +++ b/api/Access.Image.Requery.md @@ -1,5 +1,5 @@ --- -title: Image.Requery Method (Access) +title: Image.Requery method (Access) keywords: vbaac10.chm10359 f1_keywords: - vbaac10.chm10359 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.Requery Method (Access) +# Image.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.RightPadding.md b/api/Access.Image.RightPadding.md index 548e000e26f..bbcbf551a36 100644 --- a/api/Access.Image.RightPadding.md +++ b/api/Access.Image.RightPadding.md @@ -1,5 +1,5 @@ --- -title: Image.RightPadding Property (Access) +title: Image.RightPadding property (Access) keywords: vbaac10.chm10415 f1_keywords: - vbaac10.chm10415 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.RightPadding Property (Access) +# Image.RightPadding property (Access) Gets or sets the amount of space (in inches) between the image control and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## See also diff --git a/api/Access.Image.Section.md b/api/Access.Image.Section.md index e83c31dadc9..3c56f0c708b 100644 --- a/api/Access.Image.Section.md +++ b/api/Access.Image.Section.md @@ -1,5 +1,5 @@ --- -title: Image.Section Property (Access) +title: Image.Section property (Access) keywords: vbaac10.chm10390 f1_keywords: - vbaac10.chm10390 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.Section Property (Access) +# Image.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.SetFocus.md b/api/Access.Image.SetFocus.md index bfcc53a7df8..279c1b32b10 100644 --- a/api/Access.Image.SetFocus.md +++ b/api/Access.Image.SetFocus.md @@ -1,5 +1,5 @@ --- -title: Image.SetFocus Method (Access) +title: Image.SetFocus method (Access) keywords: vbaac10.chm10360 f1_keywords: - vbaac10.chm10360 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# Image.SetFocus Method (Access) +# Image.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.Image.ShortcutMenuBar.md b/api/Access.Image.ShortcutMenuBar.md index 6742edcddeb..b21766b2f41 100644 --- a/api/Access.Image.ShortcutMenuBar.md +++ b/api/Access.Image.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: Image.ShortcutMenuBar Property (Access) +title: Image.ShortcutMenuBar property (Access) keywords: vbaac10.chm10399 f1_keywords: - vbaac10.chm10399 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.ShortcutMenuBar Property (Access) +# Image.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.SizeMode.md b/api/Access.Image.SizeMode.md index 1b8abd92f87..f62ede6badc 100644 --- a/api/Access.Image.SizeMode.md +++ b/api/Access.Image.SizeMode.md @@ -1,5 +1,5 @@ --- -title: Image.SizeMode Property (Access) +title: Image.SizeMode property (Access) keywords: vbaac10.chm10369 f1_keywords: - vbaac10.chm10369 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.SizeMode Property (Access) +# Image.SizeMode property (Access) You can use the **SizeMode** property to specify how to size a picture or other object in a bound object frame, an unbound object frame, or an image control. ## Syntax - _expression_. `SizeMode` +_expression_. `SizeMode` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.SizeToFit.md b/api/Access.Image.SizeToFit.md index a8786bcf188..a3ed124c2d4 100644 --- a/api/Access.Image.SizeToFit.md +++ b/api/Access.Image.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: Image.SizeToFit Method (Access) +title: Image.SizeToFit method (Access) keywords: vbaac10.chm10358 f1_keywords: - vbaac10.chm10358 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.SizeToFit Method (Access) +# Image.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.SpecialEffect.md b/api/Access.Image.SpecialEffect.md index bc4f01fd9fa..e895d69bc86 100644 --- a/api/Access.Image.SpecialEffect.md +++ b/api/Access.Image.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: Image.SpecialEffect Property (Access) +title: Image.SpecialEffect property (Access) keywords: vbaac10.chm10382 f1_keywords: - vbaac10.chm10382 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.SpecialEffect Property (Access) +# Image.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.Tag.md b/api/Access.Image.Tag.md index 23b0a3be96a..d7fb078c6ab 100644 --- a/api/Access.Image.Tag.md +++ b/api/Access.Image.Tag.md @@ -1,5 +1,5 @@ --- -title: Image.Tag Property (Access) +title: Image.Tag property (Access) keywords: vbaac10.chm10403 f1_keywords: - vbaac10.chm10403 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.Tag Property (Access) +# Image.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.Top.md b/api/Access.Image.Top.md index eff713d17d7..dcd59fdf9fd 100644 --- a/api/Access.Image.Top.md +++ b/api/Access.Image.Top.md @@ -1,5 +1,5 @@ --- -title: Image.Top Property (Access) +title: Image.Top property (Access) keywords: vbaac10.chm10377 f1_keywords: - vbaac10.chm10377 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.Top Property (Access) +# Image.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.TopPadding.md b/api/Access.Image.TopPadding.md index 28b48510c95..d451096c618 100644 --- a/api/Access.Image.TopPadding.md +++ b/api/Access.Image.TopPadding.md @@ -1,5 +1,5 @@ --- -title: Image.TopPadding Property (Access) +title: Image.TopPadding property (Access) keywords: vbaac10.chm10414 f1_keywords: - vbaac10.chm10414 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.TopPadding Property (Access) +# Image.TopPadding property (Access) Gets or sets the amount of space (in inches) between the image control and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## See also diff --git a/api/Access.Image.VerticalAnchor.md b/api/Access.Image.VerticalAnchor.md index 1476d7d740b..4db3f856f61 100644 --- a/api/Access.Image.VerticalAnchor.md +++ b/api/Access.Image.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: Image.VerticalAnchor Property (Access) +title: Image.VerticalAnchor property (Access) keywords: vbaac10.chm10427 f1_keywords: - vbaac10.chm10427 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.VerticalAnchor Property (Access) +# Image.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified image is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.Visible.md b/api/Access.Image.Visible.md index 72b2857e9a4..7e35cca3346 100644 --- a/api/Access.Image.Visible.md +++ b/api/Access.Image.Visible.md @@ -1,5 +1,5 @@ --- -title: Image.Visible Property (Access) +title: Image.Visible property (Access) keywords: vbaac10.chm10374 f1_keywords: - vbaac10.chm10374 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.Visible Property (Access) +# Image.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.Width.md b/api/Access.Image.Width.md index 0b9cbdf6fb3..a7c1ff9dbf2 100644 --- a/api/Access.Image.Width.md +++ b/api/Access.Image.Width.md @@ -1,5 +1,5 @@ --- -title: Image.Width Property (Access) +title: Image.Width property (Access) keywords: vbaac10.chm10378 f1_keywords: - vbaac10.chm10378 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Image.Width Property (Access) +# Image.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents an [Image](Access.Image.md) object. +_expression_ A variable that represents an [Image](Access.Image.md) object. ## Remarks diff --git a/api/Access.Image.md b/api/Access.Image.md index 63306abc7ee..85c45495705 100644 --- a/api/Access.Image.md +++ b/api/Access.Image.md @@ -1,5 +1,5 @@ --- -title: Image Object (Access) +title: Image object (Access) keywords: vbaac10.chm10436 f1_keywords: - vbaac10.chm10436 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Image Object (Access) +# Image object (Access) This object corresponds to an image control. The image control can add a picture to a form or report. For example, you could include an image control for a logo on an Invoice report. diff --git a/api/Access.ImportExportSpecification.Application.md b/api/Access.ImportExportSpecification.Application.md index e18272dc743..13615c6abf6 100644 --- a/api/Access.ImportExportSpecification.Application.md +++ b/api/Access.ImportExportSpecification.Application.md @@ -1,5 +1,5 @@ --- -title: ImportExportSpecification.Application Property (Access) +title: ImportExportSpecification.Application property (Access) keywords: vbaac10.chm13328 f1_keywords: - vbaac10.chm13328 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ImportExportSpecification.Application Property (Access) +# ImportExportSpecification.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents an [ImportExportSpecification](Access.ImportExportSpecification.md) object. +_expression_ A variable that represents an [ImportExportSpecification](Access.ImportExportSpecification.md) object. ## Remarks diff --git a/api/Access.ImportExportSpecification.Delete.md b/api/Access.ImportExportSpecification.Delete.md index 4549c6a66cd..c7c3e0b9161 100644 --- a/api/Access.ImportExportSpecification.Delete.md +++ b/api/Access.ImportExportSpecification.Delete.md @@ -1,5 +1,5 @@ --- -title: ImportExportSpecification.Delete Method (Access) +title: ImportExportSpecification.Delete method (Access) keywords: vbaac10.chm13332 f1_keywords: - vbaac10.chm13332 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ImportExportSpecification.Delete Method (Access) +# ImportExportSpecification.Delete method (Access) Deletes the specified **[ImportExportSpecification](Access.ImportExportSpecification.md)** object from the **[ImportExportSpecifications](Access.ImportExportSpecifications.md)** collection. ## Syntax - _expression_. `Delete` +_expression_. `Delete` - _expression_ A variable that represents an [ImportExportSpecification](Access.ImportExportSpecification.md) object. +_expression_ A variable that represents an [ImportExportSpecification](Access.ImportExportSpecification.md) object. ## See also diff --git a/api/Access.ImportExportSpecification.Description.md b/api/Access.ImportExportSpecification.Description.md index b46dac6398f..4f29c0e44e3 100644 --- a/api/Access.ImportExportSpecification.Description.md +++ b/api/Access.ImportExportSpecification.Description.md @@ -1,5 +1,5 @@ --- -title: ImportExportSpecification.Description Property (Access) +title: ImportExportSpecification.Description property (Access) keywords: vbaac10.chm13334 f1_keywords: - vbaac10.chm13334 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ImportExportSpecification.Description Property (Access) +# ImportExportSpecification.Description property (Access) Gets or sets a **String** that describes the specified **[ImportExportSpecification](Access.ImportExportSpecification.md)** object. Read/write. ## Syntax - _expression_. `Description` +_expression_. `Description` - _expression_ A variable that represents an [ImportExportSpecification](Access.ImportExportSpecification.md) object. +_expression_ A variable that represents an [ImportExportSpecification](Access.ImportExportSpecification.md) object. ## Remarks diff --git a/api/Access.ImportExportSpecification.Execute.md b/api/Access.ImportExportSpecification.Execute.md index dbf18bbf3e9..d6e94783c93 100644 --- a/api/Access.ImportExportSpecification.Execute.md +++ b/api/Access.ImportExportSpecification.Execute.md @@ -1,5 +1,5 @@ --- -title: ImportExportSpecification.Execute Method (Access) +title: ImportExportSpecification.Execute method (Access) keywords: vbaac10.chm13331 f1_keywords: - vbaac10.chm13331 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ImportExportSpecification.Execute Method (Access) +# ImportExportSpecification.Execute method (Access) Executes the specfied import or export specification. ## Syntax - _expression_. `Execute`( ` _OverwritePrompt_` ) +_expression_. `Execute`( ` _OverwritePrompt_` ) - _expression_ A variable that represents an [ImportExportSpecification](Access.ImportExportSpecification.md) object. +_expression_ A variable that represents an [ImportExportSpecification](Access.ImportExportSpecification.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _OverwritePrompt_|Optional|**Variant**|Specifies whether to notify the user when an export operation would overwrite an existing file. The default value is **True**.| diff --git a/api/Access.ImportExportSpecification.Name.md b/api/Access.ImportExportSpecification.Name.md index 80dd2f5eb10..42ef9ef737b 100644 --- a/api/Access.ImportExportSpecification.Name.md +++ b/api/Access.ImportExportSpecification.Name.md @@ -1,5 +1,5 @@ --- -title: ImportExportSpecification.Name Property (Access) +title: ImportExportSpecification.Name property (Access) keywords: vbaac10.chm13330 f1_keywords: - vbaac10.chm13330 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ImportExportSpecification.Name Property (Access) +# ImportExportSpecification.Name property (Access) Gets or sets the name of the specified **[ImportExportSpecification](Access.ImportExportSpecification.md)** object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents an [ImportExportSpecification](Access.ImportExportSpecification.md) object. +_expression_ A variable that represents an [ImportExportSpecification](Access.ImportExportSpecification.md) object. ## Remarks diff --git a/api/Access.ImportExportSpecification.Parent.md b/api/Access.ImportExportSpecification.Parent.md index b38f5f38d42..05623ee84cd 100644 --- a/api/Access.ImportExportSpecification.Parent.md +++ b/api/Access.ImportExportSpecification.Parent.md @@ -1,5 +1,5 @@ --- -title: ImportExportSpecification.Parent Property (Access) +title: ImportExportSpecification.Parent property (Access) keywords: vbaac10.chm13329 f1_keywords: - vbaac10.chm13329 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ImportExportSpecification.Parent Property (Access) +# ImportExportSpecification.Parent property (Access) Returns the parent object for the specified object. Read-only **Object**. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents an [ImportExportSpecification](Access.ImportExportSpecification.md) object. +_expression_ A variable that represents an [ImportExportSpecification](Access.ImportExportSpecification.md) object. ## See also diff --git a/api/Access.ImportExportSpecification.XML.md b/api/Access.ImportExportSpecification.XML.md index 991d367ab2b..e1d732d763c 100644 --- a/api/Access.ImportExportSpecification.XML.md +++ b/api/Access.ImportExportSpecification.XML.md @@ -1,5 +1,5 @@ --- -title: ImportExportSpecification.XML Property (Access) +title: ImportExportSpecification.XML property (Access) keywords: vbaac10.chm13333 f1_keywords: - vbaac10.chm13333 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ImportExportSpecification.XML Property (Access) +# ImportExportSpecification.XML property (Access) Gets or sets the Extensible Markup Language (XML) string that defines an **[ImportExportSpecification](Access.ImportExportSpecification.md)** object. Read/write **String**. ## Syntax - _expression_. `XML` +_expression_. `XML` - _expression_ A variable that represents an [ImportExportSpecification](Access.ImportExportSpecification.md) object. +_expression_ A variable that represents an [ImportExportSpecification](Access.ImportExportSpecification.md) object. ## See also diff --git a/api/Access.ImportExportSpecification.md b/api/Access.ImportExportSpecification.md index 09107a703a7..85616a97356 100644 --- a/api/Access.ImportExportSpecification.md +++ b/api/Access.ImportExportSpecification.md @@ -1,5 +1,5 @@ --- -title: ImportExportSpecification Object (Access) +title: ImportExportSpecification object (Access) keywords: vbaac10.chm13327 f1_keywords: - vbaac10.chm13327 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ImportExportSpecification Object (Access) +# ImportExportSpecification object (Access) Represents a saved import or export operation. diff --git a/api/Access.ImportExportSpecifications.Add.md b/api/Access.ImportExportSpecifications.Add.md index 39448009ec7..1c818fee970 100644 --- a/api/Access.ImportExportSpecifications.Add.md +++ b/api/Access.ImportExportSpecifications.Add.md @@ -1,5 +1,5 @@ --- -title: ImportExportSpecifications.Add Method (Access) +title: ImportExportSpecifications.Add method (Access) keywords: vbaac10.chm13341 f1_keywords: - vbaac10.chm13341 @@ -11,28 +11,28 @@ ms.date: 06/08/2017 --- -# ImportExportSpecifications.Add Method (Access) +# ImportExportSpecifications.Add method (Access) Adds a new [ImportExportSpecification](Access.ImportExportSpecification.md) object to the [ImportExportSpecifications](Access.ImportExportSpecifications.md) collection. ## Syntax - _expression_. `Add`( ` _Name_`, ` _SpecificationDefinition_` ) +_expression_. `Add`( ` _Name_`, ` _SpecificationDefinition_` ) - _expression_ A variable that represents an [ImportExportSpecifications](Access.ImportExportSpecifications.md) object. +_expression_ A variable that represents an [ImportExportSpecifications](Access.ImportExportSpecifications.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required|**String**|The name to use for the **ImportExportSpecification**.| | _SpecificationDefinition_|Required|**String**|The XML markup that represents the settings to save for the import or export operation.| -### Return Value +### Return value ImportExportSpecification diff --git a/api/Access.ImportExportSpecifications.Application.md b/api/Access.ImportExportSpecifications.Application.md index 8f949be44f2..461e915e876 100644 --- a/api/Access.ImportExportSpecifications.Application.md +++ b/api/Access.ImportExportSpecifications.Application.md @@ -1,5 +1,5 @@ --- -title: ImportExportSpecifications.Application Property (Access) +title: ImportExportSpecifications.Application property (Access) keywords: vbaac10.chm13337 f1_keywords: - vbaac10.chm13337 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ImportExportSpecifications.Application Property (Access) +# ImportExportSpecifications.Application property (Access) You can use the **Application** property to access the active Microsoft Access[Application](Access.Application.md)object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents an [ImportExportSpecifications](Access.ImportExportSpecifications.md) object. +_expression_ A variable that represents an [ImportExportSpecifications](Access.ImportExportSpecifications.md) object. ## Remarks diff --git a/api/Access.ImportExportSpecifications.Count.md b/api/Access.ImportExportSpecifications.Count.md index 7ce361cb95b..22a0c53c854 100644 --- a/api/Access.ImportExportSpecifications.Count.md +++ b/api/Access.ImportExportSpecifications.Count.md @@ -1,5 +1,5 @@ --- -title: ImportExportSpecifications.Count Property (Access) +title: ImportExportSpecifications.Count property (Access) keywords: vbaac10.chm13338 f1_keywords: - vbaac10.chm13338 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ImportExportSpecifications.Count Property (Access) +# ImportExportSpecifications.Count property (Access) You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents an [ImportExportSpecifications](Access.ImportExportSpecifications.md) object. +_expression_ A variable that represents an [ImportExportSpecifications](Access.ImportExportSpecifications.md) object. ## See also diff --git a/api/Access.ImportExportSpecifications.Item.md b/api/Access.ImportExportSpecifications.Item.md index 94c65dcca76..60235f7c21f 100644 --- a/api/Access.ImportExportSpecifications.Item.md +++ b/api/Access.ImportExportSpecifications.Item.md @@ -1,5 +1,5 @@ --- -title: ImportExportSpecifications.Item Property (Access) +title: ImportExportSpecifications.Item property (Access) keywords: vbaac10.chm13340 f1_keywords: - vbaac10.chm13340 @@ -11,25 +11,25 @@ ms.date: 06/08/2017 --- -# ImportExportSpecifications.Item Property (Access) +# ImportExportSpecifications.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **ImportExportSpecification**. ## Syntax - _expression_. `Item`( `Index`) +_expression_. `Item`( `Index`) - _expression_ A variable that represents an [ImportExportSpecifications](Access.ImportExportSpecifications.md) object. +_expression_ A variable that represents an [ImportExportSpecifications](Access.ImportExportSpecifications.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| -| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection.| +| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection.| ## See also diff --git a/api/Access.ImportExportSpecifications.Parent.md b/api/Access.ImportExportSpecifications.Parent.md index e60eefa4f1d..a6bcdbd8c19 100644 --- a/api/Access.ImportExportSpecifications.Parent.md +++ b/api/Access.ImportExportSpecifications.Parent.md @@ -1,5 +1,5 @@ --- -title: ImportExportSpecifications.Parent Property (Access) +title: ImportExportSpecifications.Parent property (Access) keywords: vbaac10.chm13339 f1_keywords: - vbaac10.chm13339 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ImportExportSpecifications.Parent Property (Access) +# ImportExportSpecifications.Parent property (Access) Returns the parent object for the specified object. Read-only **Object**. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents an [ImportExportSpecifications](Access.ImportExportSpecifications.md) object. +_expression_ A variable that represents an [ImportExportSpecifications](Access.ImportExportSpecifications.md) object. ## See also diff --git a/api/Access.ImportExportSpecifications.md b/api/Access.ImportExportSpecifications.md index abada9c4f8f..c89586125ea 100644 --- a/api/Access.ImportExportSpecifications.md +++ b/api/Access.ImportExportSpecifications.md @@ -1,5 +1,5 @@ --- -title: ImportExportSpecifications Object (Access) +title: ImportExportSpecifications object (Access) keywords: vbaac10.chm13336 f1_keywords: - vbaac10.chm13336 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ImportExportSpecifications Object (Access) +# ImportExportSpecifications object (Access) Represents the collection of available [ImportExportSpecification](Access.ImportExportSpecification.md) objects. diff --git a/api/Access.Label.Application.md b/api/Access.Label.Application.md index ee656b00fc2..f446fb46609 100644 --- a/api/Access.Label.Application.md +++ b/api/Access.Label.Application.md @@ -1,5 +1,5 @@ --- -title: Label.Application Property (Access) +title: Label.Application property (Access) keywords: vbaac10.chm10183 f1_keywords: - vbaac10.chm10183 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.Application Property (Access) +# Label.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.BackColor.md b/api/Access.Label.BackColor.md index 6f4bf6ac5b8..d3f5ab83570 100644 --- a/api/Access.Label.BackColor.md +++ b/api/Access.Label.BackColor.md @@ -1,5 +1,5 @@ --- -title: Label.BackColor Property (Access) +title: Label.BackColor property (Access) keywords: vbaac10.chm10202 f1_keywords: - vbaac10.chm10202 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.BackColor Property (Access) +# Label.BackColor property (Access) Gets or sets the interior color of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackColor` +_expression_. `BackColor` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.BackShade.md b/api/Access.Label.BackShade.md index 337a48420f2..5ddca8457d0 100644 --- a/api/Access.Label.BackShade.md +++ b/api/Access.Label.BackShade.md @@ -1,5 +1,5 @@ --- -title: Label.BackShade Property (Access) +title: Label.BackShade property (Access) keywords: vbaac10.chm14633 f1_keywords: - vbaac10.chm14633 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.BackShade Property (Access) +# Label.BackShade property (Access) Gets or sets the shade applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackShade` +_expression_. `BackShade` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.BackStyle.md b/api/Access.Label.BackStyle.md index 060e593ff27..dbec40ad3c9 100644 --- a/api/Access.Label.BackStyle.md +++ b/api/Access.Label.BackStyle.md @@ -1,5 +1,5 @@ --- -title: Label.BackStyle Property (Access) +title: Label.BackStyle property (Access) keywords: vbaac10.chm10201 f1_keywords: - vbaac10.chm10201 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.BackStyle Property (Access) +# Label.BackStyle property (Access) You can use the **BackStyle** property to specify whether a control will be transparent. Read/write **Byte**. ## Syntax - _expression_. `BackStyle` +_expression_. `BackStyle` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.BackThemeColorIndex.md b/api/Access.Label.BackThemeColorIndex.md index 620f68fd503..1d01d119f8e 100644 --- a/api/Access.Label.BackThemeColorIndex.md +++ b/api/Access.Label.BackThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: Label.BackThemeColorIndex Property (Access) +title: Label.BackThemeColorIndex property (Access) keywords: vbaac10.chm14631 f1_keywords: - vbaac10.chm14631 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.BackThemeColorIndex Property (Access) +# Label.BackThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BackColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackThemeColorIndex` +_expression_. `BackThemeColorIndex` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.BackTint.md b/api/Access.Label.BackTint.md index 128b8d91df4..423c2388be6 100644 --- a/api/Access.Label.BackTint.md +++ b/api/Access.Label.BackTint.md @@ -1,5 +1,5 @@ --- -title: Label.BackTint Property (Access) +title: Label.BackTint property (Access) keywords: vbaac10.chm14632 f1_keywords: - vbaac10.chm14632 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.BackTint Property (Access) +# Label.BackTint property (Access) Gets or sets the tint that is applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackTint` +_expression_. `BackTint` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.BorderColor.md b/api/Access.Label.BorderColor.md index 9687ae90781..0c66fa61cf5 100644 --- a/api/Access.Label.BorderColor.md +++ b/api/Access.Label.BorderColor.md @@ -1,5 +1,5 @@ --- -title: Label.BorderColor Property (Access) +title: Label.BorderColor property (Access) keywords: vbaac10.chm10206 f1_keywords: - vbaac10.chm10206 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.BorderColor Property (Access) +# Label.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.BorderShade.md b/api/Access.Label.BorderShade.md index 63846f9db53..1f5ba8c5ea3 100644 --- a/api/Access.Label.BorderShade.md +++ b/api/Access.Label.BorderShade.md @@ -1,5 +1,5 @@ --- -title: Label.BorderShade Property (Access) +title: Label.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.BorderShade Property (Access) +# Label.BorderShade property (Access) Gets or sets the shade that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.BorderStyle.md b/api/Access.Label.BorderStyle.md index 67daa0290e7..fc532de707f 100644 --- a/api/Access.Label.BorderStyle.md +++ b/api/Access.Label.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: Label.BorderStyle Property (Access) +title: Label.BorderStyle property (Access) keywords: vbaac10.chm10204 f1_keywords: - vbaac10.chm10204 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.BorderStyle Property (Access) +# Label.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.BorderThemeColorIndex.md b/api/Access.Label.BorderThemeColorIndex.md index 4d1a523b5d1..9d51101392c 100644 --- a/api/Access.Label.BorderThemeColorIndex.md +++ b/api/Access.Label.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: Label.BorderThemeColorIndex Property (Access) +title: Label.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.BorderThemeColorIndex Property (Access) +# Label.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.BorderTint.md b/api/Access.Label.BorderTint.md index e2b38b21d33..e0243e4e615 100644 --- a/api/Access.Label.BorderTint.md +++ b/api/Access.Label.BorderTint.md @@ -1,5 +1,5 @@ --- -title: Label.BorderTint Property (Access) +title: Label.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.BorderTint Property (Access) +# Label.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.BorderWidth.md b/api/Access.Label.BorderWidth.md index 523a7225882..a6b9f63121a 100644 --- a/api/Access.Label.BorderWidth.md +++ b/api/Access.Label.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: Label.BorderWidth Property (Access) +title: Label.BorderWidth property (Access) keywords: vbaac10.chm10207 f1_keywords: - vbaac10.chm10207 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.BorderWidth Property (Access) +# Label.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.BottomMargin.md b/api/Access.Label.BottomMargin.md index 4aa25058b2c..8f301e7197d 100644 --- a/api/Access.Label.BottomMargin.md +++ b/api/Access.Label.BottomMargin.md @@ -1,5 +1,5 @@ --- -title: Label.BottomMargin Property (Access) +title: Label.BottomMargin property (Access) keywords: vbaac10.chm10238 f1_keywords: - vbaac10.chm10238 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.BottomMargin Property (Access) +# Label.BottomMargin property (Access) Along with the **LeftMargin**, **RightMargin**, and **TopMargin** properties, specifies the location of information displayed within a label control. Read/write **Integer**. ## Syntax - _expression_. `BottomMargin` +_expression_. `BottomMargin` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.BottomPadding.md b/api/Access.Label.BottomPadding.md index bd76e9b12a4..5c3586d05c5 100644 --- a/api/Access.Label.BottomPadding.md +++ b/api/Access.Label.BottomPadding.md @@ -1,5 +1,5 @@ --- -title: Label.BottomPadding Property (Access) +title: Label.BottomPadding property (Access) keywords: vbaac10.chm10248 f1_keywords: - vbaac10.chm10248 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.BottomPadding Property (Access) +# Label.BottomPadding property (Access) Gets or sets the amount of space (in inches) between the label and its bottom gridline. Read/write **Integer**. ## Syntax - _expression_. `BottomPadding` +_expression_. `BottomPadding` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## See also diff --git a/api/Access.Label.Caption.md b/api/Access.Label.Caption.md index a4edf42f8c5..67e4e0caac2 100644 --- a/api/Access.Label.Caption.md +++ b/api/Access.Label.Caption.md @@ -1,5 +1,5 @@ --- -title: Label.Caption Property (Access) +title: Label.Caption property (Access) keywords: vbaac10.chm10191 f1_keywords: - vbaac10.chm10191 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.Caption Property (Access) +# Label.Caption property (Access) Gets or sets the text that appears in the control. Read/write **String**. ## Syntax - _expression_. `Caption` +_expression_. `Caption` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.Click.md b/api/Access.Label.Click.md index b7f9bf9ac3a..fdab6de7b71 100644 --- a/api/Access.Label.Click.md +++ b/api/Access.Label.Click.md @@ -1,5 +1,5 @@ --- -title: Label.Click Event (Access) +title: Label.Click event (Access) keywords: vbaac10.chm14284 f1_keywords: - vbaac10.chm14284 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.Click Event (Access) +# Label.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.ControlTipText.md b/api/Access.Label.ControlTipText.md index c982ac17cba..78d0cef5168 100644 --- a/api/Access.Label.ControlTipText.md +++ b/api/Access.Label.ControlTipText.md @@ -1,5 +1,5 @@ --- -title: Label.ControlTipText Property (Access) +title: Label.ControlTipText property (Access) keywords: vbaac10.chm10218 f1_keywords: - vbaac10.chm10218 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.ControlTipText Property (Access) +# Label.ControlTipText property (Access) You can use the **ControlTipText** property to specify the text that appears in a ScreenTip when you hold the mouse pointer over a control. Read/write **String**. ## Syntax - _expression_. `ControlTipText` +_expression_. `ControlTipText` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.ControlType.md b/api/Access.Label.ControlType.md index 4ce4176d6ce..19a197e1e78 100644 --- a/api/Access.Label.ControlType.md +++ b/api/Access.Label.ControlType.md @@ -1,5 +1,5 @@ --- -title: Label.ControlType Property (Access) +title: Label.ControlType property (Access) keywords: vbaac10.chm10190 f1_keywords: - vbaac10.chm10190 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.ControlType Property (Access) +# Label.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.DblClick.md b/api/Access.Label.DblClick.md index 8d841ee574a..3962ef8191a 100644 --- a/api/Access.Label.DblClick.md +++ b/api/Access.Label.DblClick.md @@ -1,5 +1,5 @@ --- -title: Label.DblClick Event (Access) +title: Label.DblClick event (Access) keywords: vbaac10.chm14285 f1_keywords: - vbaac10.chm14285 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Label.DblClick Event (Access) +# Label.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_` ) +_expression_. `DblClick`( ` _Cancel_` ) - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **DblClick** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **DblClick** event.| diff --git a/api/Access.Label.DisplayWhen.md b/api/Access.Label.DisplayWhen.md index d5885c95bfa..3681300d5ec 100644 --- a/api/Access.Label.DisplayWhen.md +++ b/api/Access.Label.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: Label.DisplayWhen Property (Access) +title: Label.DisplayWhen property (Access) keywords: vbaac10.chm10195 f1_keywords: - vbaac10.chm10195 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.DisplayWhen Property (Access) +# Label.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.EventProcPrefix.md b/api/Access.Label.EventProcPrefix.md index 114a610c337..d9d88fe3e28 100644 --- a/api/Access.Label.EventProcPrefix.md +++ b/api/Access.Label.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: Label.EventProcPrefix Property (Access) +title: Label.EventProcPrefix property (Access) keywords: vbaac10.chm10188 f1_keywords: - vbaac10.chm10188 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.EventProcPrefix Property (Access) +# Label.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.FontBold.md b/api/Access.Label.FontBold.md index 1ac97e0c291..2a7158cc5d0 100644 --- a/api/Access.Label.FontBold.md +++ b/api/Access.Label.FontBold.md @@ -1,5 +1,5 @@ --- -title: Label.FontBold Property (Access) +title: Label.FontBold property (Access) keywords: vbaac10.chm10217 f1_keywords: - vbaac10.chm10217 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Label.FontBold Property (Access) +# Label.FontBold property (Access) You can use the **FontBold** property to specify whether a font appears in a bold style in the following situations: @@ -26,9 +26,9 @@ You can use the **FontBold** property to specify whether a font appears in a bo ## Syntax - _expression_. `FontBold` +_expression_. `FontBold` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.FontItalic.md b/api/Access.Label.FontItalic.md index 06997a8a3a6..e688a0e1e0f 100644 --- a/api/Access.Label.FontItalic.md +++ b/api/Access.Label.FontItalic.md @@ -1,5 +1,5 @@ --- -title: Label.FontItalic Property (Access) +title: Label.FontItalic property (Access) keywords: vbaac10.chm10213 f1_keywords: - vbaac10.chm10213 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Label.FontItalic Property (Access) +# Label.FontItalic property (Access) You can use the **FontItalic** property to specify whether text is italic in the following situations: @@ -26,9 +26,9 @@ You can use the **FontItalic** property to specify whether text is italic in th ## Syntax - _expression_. `FontItalic` +_expression_. `FontItalic` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.FontName.md b/api/Access.Label.FontName.md index 8f0591f14e7..1d68f1cb4ae 100644 --- a/api/Access.Label.FontName.md +++ b/api/Access.Label.FontName.md @@ -1,5 +1,5 @@ --- -title: Label.FontName Property (Access) +title: Label.FontName property (Access) keywords: vbaac10.chm10210 f1_keywords: - vbaac10.chm10210 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Label.FontName Property (Access) +# Label.FontName property (Access) You can use the **FontName** property to specify the font for text in the following situations: @@ -26,9 +26,9 @@ Read/write **String**. ## Syntax - _expression_. `FontName` +_expression_. `FontName` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.FontSize.md b/api/Access.Label.FontSize.md index a73cad84064..ce8ea558afa 100644 --- a/api/Access.Label.FontSize.md +++ b/api/Access.Label.FontSize.md @@ -1,5 +1,5 @@ --- -title: Label.FontSize Property (Access) +title: Label.FontSize property (Access) keywords: vbaac10.chm10211 f1_keywords: - vbaac10.chm10211 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Label.FontSize Property (Access) +# Label.FontSize property (Access) You can use the **FontSize** property to specify the point size for text in the following situations: @@ -26,9 +26,9 @@ Read/write **Integer**. ## Syntax - _expression_. `FontSize` +_expression_. `FontSize` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.FontUnderline.md b/api/Access.Label.FontUnderline.md index 0e506fe05db..08408b68ad5 100644 --- a/api/Access.Label.FontUnderline.md +++ b/api/Access.Label.FontUnderline.md @@ -1,5 +1,5 @@ --- -title: Label.FontUnderline Property (Access) +title: Label.FontUnderline property (Access) keywords: vbaac10.chm10214 f1_keywords: - vbaac10.chm10214 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Label.FontUnderline Property (Access) +# Label.FontUnderline property (Access) You can use the **FontUnderline** property to specify whether text is underlined in the following situations: @@ -26,9 +26,9 @@ You can use the **FontUnderline** property to specify whether text is underline ## Syntax - _expression_. `FontUnderline` +_expression_. `FontUnderline` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.FontWeight.md b/api/Access.Label.FontWeight.md index 6dba2fa93f5..4afc74021e0 100644 --- a/api/Access.Label.FontWeight.md +++ b/api/Access.Label.FontWeight.md @@ -1,5 +1,5 @@ --- -title: Label.FontWeight Property (Access) +title: Label.FontWeight property (Access) keywords: vbaac10.chm10212 f1_keywords: - vbaac10.chm10212 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.FontWeight Property (Access) +# Label.FontWeight property (Access) You can use the **DatasheetFontWeight** property to specify the line width of the font used to display and print characters for field names and data in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `FontWeight` +_expression_. `FontWeight` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.ForeColor.md b/api/Access.Label.ForeColor.md index 5181424c9a3..281d6697537 100644 --- a/api/Access.Label.ForeColor.md +++ b/api/Access.Label.ForeColor.md @@ -1,5 +1,5 @@ --- -title: Label.ForeColor Property (Access) +title: Label.ForeColor property (Access) keywords: vbaac10.chm10209 f1_keywords: - vbaac10.chm10209 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.ForeColor Property (Access) +# Label.ForeColor property (Access) You can use the **ForeColor** property to specify the color for text in a control. Read/write **Long**. ## Syntax - _expression_. `ForeColor` +_expression_. `ForeColor` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.ForeShade.md b/api/Access.Label.ForeShade.md index 64c300c1cf6..f200acca33a 100644 --- a/api/Access.Label.ForeShade.md +++ b/api/Access.Label.ForeShade.md @@ -1,5 +1,5 @@ --- -title: Label.ForeShade Property (Access) +title: Label.ForeShade property (Access) keywords: vbaac10.chm14606 f1_keywords: - vbaac10.chm14606 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.ForeShade Property (Access) +# Label.ForeShade property (Access) Gets or sets the shade that is applied to the theme color in the **ForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `ForeShade` +_expression_. `ForeShade` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.ForeThemeColorIndex.md b/api/Access.Label.ForeThemeColorIndex.md index 6b1727dd26b..31c357f9a66 100644 --- a/api/Access.Label.ForeThemeColorIndex.md +++ b/api/Access.Label.ForeThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: Label.ForeThemeColorIndex Property (Access) +title: Label.ForeThemeColorIndex property (Access) keywords: vbaac10.chm14604 f1_keywords: - vbaac10.chm14604 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.ForeThemeColorIndex Property (Access) +# Label.ForeThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **ForeColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `ForeThemeColorIndex` +_expression_. `ForeThemeColorIndex` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.ForeTint.md b/api/Access.Label.ForeTint.md index 84dbc6594cc..2237414abfb 100644 --- a/api/Access.Label.ForeTint.md +++ b/api/Access.Label.ForeTint.md @@ -1,5 +1,5 @@ --- -title: Label.ForeTint Property (Access) +title: Label.ForeTint property (Access) keywords: vbaac10.chm14605 f1_keywords: - vbaac10.chm14605 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.ForeTint Property (Access) +# Label.ForeTint property (Access) Gets or sets the tint that is applied to the theme color in the **ForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `ForeTint` +_expression_. `ForeTint` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.GridlineColor.md b/api/Access.Label.GridlineColor.md index f6141b2f305..4c6d49a6f25 100644 --- a/api/Access.Label.GridlineColor.md +++ b/api/Access.Label.GridlineColor.md @@ -1,5 +1,5 @@ --- -title: Label.GridlineColor Property (Access) +title: Label.GridlineColor property (Access) keywords: vbaac10.chm10257 f1_keywords: - vbaac10.chm10257 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.GridlineColor Property (Access) +# Label.GridlineColor property (Access) Gets or sets the color of the gridline for the specified label. Read/write **Long**. ## Syntax - _expression_. `GridlineColor` +_expression_. `GridlineColor` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.GridlineShade.md b/api/Access.Label.GridlineShade.md index c9cdbf632c7..d907421baf2 100644 --- a/api/Access.Label.GridlineShade.md +++ b/api/Access.Label.GridlineShade.md @@ -1,5 +1,5 @@ --- -title: Label.GridlineShade Property (Access) +title: Label.GridlineShade property (Access) keywords: vbaac10.chm14637 f1_keywords: - vbaac10.chm14637 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.GridlineShade Property (Access) +# Label.GridlineShade property (Access) Gets or sets the shade applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineShade` +_expression_. `GridlineShade` - _expression_ A variable that represents an [Label](Access.Label.md) object. +_expression_ A variable that represents an [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.GridlineStyleBottom.md b/api/Access.Label.GridlineStyleBottom.md index d248ea41108..8d152e2288e 100644 --- a/api/Access.Label.GridlineStyleBottom.md +++ b/api/Access.Label.GridlineStyleBottom.md @@ -1,5 +1,5 @@ --- -title: Label.GridlineStyleBottom Property (Access) +title: Label.GridlineStyleBottom property (Access) keywords: vbaac10.chm10252 f1_keywords: - vbaac10.chm10252 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.GridlineStyleBottom Property (Access) +# Label.GridlineStyleBottom property (Access) Gets or sets the bottom gridline style of the specified label. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleBottom` +_expression_. `GridlineStyleBottom` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.GridlineStyleLeft.md b/api/Access.Label.GridlineStyleLeft.md index 4c0f355459e..342f7301db6 100644 --- a/api/Access.Label.GridlineStyleLeft.md +++ b/api/Access.Label.GridlineStyleLeft.md @@ -1,5 +1,5 @@ --- -title: Label.GridlineStyleLeft Property (Access) +title: Label.GridlineStyleLeft property (Access) keywords: vbaac10.chm10249 f1_keywords: - vbaac10.chm10249 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.GridlineStyleLeft Property (Access) +# Label.GridlineStyleLeft property (Access) Gets or sets the width of the bottom gridline for the specified label. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleLeft` +_expression_. `GridlineStyleLeft` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.GridlineStyleRight.md b/api/Access.Label.GridlineStyleRight.md index 80786382a30..6e5c724325a 100644 --- a/api/Access.Label.GridlineStyleRight.md +++ b/api/Access.Label.GridlineStyleRight.md @@ -1,5 +1,5 @@ --- -title: Label.GridlineStyleRight Property (Access) +title: Label.GridlineStyleRight property (Access) keywords: vbaac10.chm10251 f1_keywords: - vbaac10.chm10251 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.GridlineStyleRight Property (Access) +# Label.GridlineStyleRight property (Access) Gets or sets the right gridline style of the specified label. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleRight` +_expression_. `GridlineStyleRight` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.GridlineStyleTop.md b/api/Access.Label.GridlineStyleTop.md index 8be468da93f..c4ebf69963b 100644 --- a/api/Access.Label.GridlineStyleTop.md +++ b/api/Access.Label.GridlineStyleTop.md @@ -1,5 +1,5 @@ --- -title: Label.GridlineStyleTop Property (Access) +title: Label.GridlineStyleTop property (Access) keywords: vbaac10.chm10250 f1_keywords: - vbaac10.chm10250 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.GridlineStyleTop Property (Access) +# Label.GridlineStyleTop property (Access) Gets or sets the top gridline style of the specified label. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleTop` +_expression_. `GridlineStyleTop` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.GridlineThemeColorIndex.md b/api/Access.Label.GridlineThemeColorIndex.md index 2e9bf8a28bd..501e3e19bee 100644 --- a/api/Access.Label.GridlineThemeColorIndex.md +++ b/api/Access.Label.GridlineThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: Label.GridlineThemeColorIndex Property (Access) +title: Label.GridlineThemeColorIndex property (Access) keywords: vbaac10.chm14635 f1_keywords: - vbaac10.chm14635 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.GridlineThemeColorIndex Property (Access) +# Label.GridlineThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **GridlineColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `GridlineThemeColorIndex` +_expression_. `GridlineThemeColorIndex` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.GridlineTint.md b/api/Access.Label.GridlineTint.md index eb5fec0a8f4..6dcbfc0eece 100644 --- a/api/Access.Label.GridlineTint.md +++ b/api/Access.Label.GridlineTint.md @@ -1,5 +1,5 @@ --- -title: Label.GridlineTint Property (Access) +title: Label.GridlineTint property (Access) keywords: vbaac10.chm14636 f1_keywords: - vbaac10.chm14636 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.GridlineTint Property (Access) +# Label.GridlineTint property (Access) Gets or sets the tint applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineTint` +_expression_. `GridlineTint` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.GridlineWidthBottom.md b/api/Access.Label.GridlineWidthBottom.md index e8f2790c0cd..78f4bf8d587 100644 --- a/api/Access.Label.GridlineWidthBottom.md +++ b/api/Access.Label.GridlineWidthBottom.md @@ -1,5 +1,5 @@ --- -title: Label.GridlineWidthBottom Property (Access) +title: Label.GridlineWidthBottom property (Access) keywords: vbaac10.chm10256 f1_keywords: - vbaac10.chm10256 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.GridlineWidthBottom Property (Access) +# Label.GridlineWidthBottom property (Access) Gets or sets the width of the bottom gridline for the specified label. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthBottom` +_expression_. `GridlineWidthBottom` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.GridlineWidthLeft.md b/api/Access.Label.GridlineWidthLeft.md index 5fd555d9063..d8d145dbe79 100644 --- a/api/Access.Label.GridlineWidthLeft.md +++ b/api/Access.Label.GridlineWidthLeft.md @@ -1,5 +1,5 @@ --- -title: Label.GridlineWidthLeft Property (Access) +title: Label.GridlineWidthLeft property (Access) keywords: vbaac10.chm10253 f1_keywords: - vbaac10.chm10253 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.GridlineWidthLeft Property (Access) +# Label.GridlineWidthLeft property (Access) Gets or sets the width of the left gridline for the specified label. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthLeft` +_expression_. `GridlineWidthLeft` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.GridlineWidthRight.md b/api/Access.Label.GridlineWidthRight.md index ea739495b33..7da4e1d0e13 100644 --- a/api/Access.Label.GridlineWidthRight.md +++ b/api/Access.Label.GridlineWidthRight.md @@ -1,5 +1,5 @@ --- -title: Label.GridlineWidthRight Property (Access) +title: Label.GridlineWidthRight property (Access) keywords: vbaac10.chm10255 f1_keywords: - vbaac10.chm10255 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.GridlineWidthRight Property (Access) +# Label.GridlineWidthRight property (Access) Gets or sets the width of the right gridline for the specified label. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthRight` +_expression_. `GridlineWidthRight` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.GridlineWidthTop.md b/api/Access.Label.GridlineWidthTop.md index 5dd50d67409..e85f44c3548 100644 --- a/api/Access.Label.GridlineWidthTop.md +++ b/api/Access.Label.GridlineWidthTop.md @@ -1,5 +1,5 @@ --- -title: Label.GridlineWidthTop Property (Access) +title: Label.GridlineWidthTop property (Access) keywords: vbaac10.chm10254 f1_keywords: - vbaac10.chm10254 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.GridlineWidthTop Property (Access) +# Label.GridlineWidthTop property (Access) Gets or sets the width of the top gridline for the specified label. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthTop` +_expression_. `GridlineWidthTop` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.Height.md b/api/Access.Label.Height.md index 779a0c4409c..e3e3dc2bb35 100644 --- a/api/Access.Label.Height.md +++ b/api/Access.Label.Height.md @@ -1,5 +1,5 @@ --- -title: Label.Height Property (Access) +title: Label.Height property (Access) keywords: vbaac10.chm10200 f1_keywords: - vbaac10.chm10200 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.Height Property (Access) +# Label.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.HelpContextId.md b/api/Access.Label.HelpContextId.md index 0332f602e88..d061a0b0b0d 100644 --- a/api/Access.Label.HelpContextId.md +++ b/api/Access.Label.HelpContextId.md @@ -1,5 +1,5 @@ --- -title: Label.HelpContextId Property (Access) +title: Label.HelpContextId property (Access) keywords: vbaac10.chm10219 f1_keywords: - vbaac10.chm10219 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.HelpContextId Property (Access) +# Label.HelpContextId property (Access) The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**. ## Syntax - _expression_. `HelpContextId` +_expression_. `HelpContextId` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.HorizontalAnchor.md b/api/Access.Label.HorizontalAnchor.md index e23266068a3..c3c25c23542 100644 --- a/api/Access.Label.HorizontalAnchor.md +++ b/api/Access.Label.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: Label.HorizontalAnchor Property (Access) +title: Label.HorizontalAnchor property (Access) keywords: vbaac10.chm10258 f1_keywords: - vbaac10.chm10258 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.HorizontalAnchor Property (Access) +# Label.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the label is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.Hyperlink.md b/api/Access.Label.Hyperlink.md index 931bfc3c690..6ab4e02e005 100644 --- a/api/Access.Label.Hyperlink.md +++ b/api/Access.Label.Hyperlink.md @@ -1,5 +1,5 @@ --- -title: Label.Hyperlink Property (Access) +title: Label.Hyperlink property (Access) keywords: vbaac10.chm10187 f1_keywords: - vbaac10.chm10187 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.Hyperlink Property (Access) +# Label.Hyperlink property (Access) You can use the **Hyperlink** property to return a reference to a **Hyperlink** object. You can use the **Hyperlink** property to access the properties and methods of a control's hyperlink. Read-only. ## Syntax - _expression_. `Hyperlink` +_expression_. `Hyperlink` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Example diff --git a/api/Access.Label.HyperlinkAddress.md b/api/Access.Label.HyperlinkAddress.md index 91c44a6b89e..f16e83e24bf 100644 --- a/api/Access.Label.HyperlinkAddress.md +++ b/api/Access.Label.HyperlinkAddress.md @@ -1,5 +1,5 @@ --- -title: Label.HyperlinkAddress Property (Access) +title: Label.HyperlinkAddress property (Access) keywords: vbaac10.chm10192 f1_keywords: - vbaac10.chm10192 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.HyperlinkAddress Property (Access) +# Label.HyperlinkAddress property (Access) You can use the **HyperlinkAddress** property to specify or determine the path to an object, document, Web page or other destination for a hyperlink associated with a the specified control. Read/write **String**. ## Syntax - _expression_. `HyperlinkAddress` +_expression_. `HyperlinkAddress` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.HyperlinkSubAddress.md b/api/Access.Label.HyperlinkSubAddress.md index 2c5c2fa9741..3d2eddcc439 100644 --- a/api/Access.Label.HyperlinkSubAddress.md +++ b/api/Access.Label.HyperlinkSubAddress.md @@ -1,5 +1,5 @@ --- -title: Label.HyperlinkSubAddress Property (Access) +title: Label.HyperlinkSubAddress property (Access) keywords: vbaac10.chm10193 f1_keywords: - vbaac10.chm10193 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.HyperlinkSubAddress Property (Access) +# Label.HyperlinkSubAddress property (Access) You can use the **HyperlinkSubAddress** property to specify or determine a location within the target document specified by the **HyperlinkAddress** property. Read/write **String**. ## Syntax - _expression_. `HyperlinkSubAddress` +_expression_. `HyperlinkSubAddress` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.InSelection.md b/api/Access.Label.InSelection.md index 7814be65696..cb20c141e04 100644 --- a/api/Access.Label.InSelection.md +++ b/api/Access.Label.InSelection.md @@ -1,5 +1,5 @@ --- -title: Label.InSelection Property (Access) +title: Label.InSelection property (Access) keywords: vbaac10.chm10223 f1_keywords: - vbaac10.chm10223 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.InSelection Property (Access) +# Label.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.IsVisible.md b/api/Access.Label.IsVisible.md index 5db593cdc3c..76446462f51 100644 --- a/api/Access.Label.IsVisible.md +++ b/api/Access.Label.IsVisible.md @@ -1,5 +1,5 @@ --- -title: Label.IsVisible Property (Access) +title: Label.IsVisible property (Access) keywords: vbaac10.chm10222 f1_keywords: - vbaac10.chm10222 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.IsVisible Property (Access) +# Label.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.Layout.md b/api/Access.Label.Layout.md index 47193328c4d..4873b17d111 100644 --- a/api/Access.Label.Layout.md +++ b/api/Access.Label.Layout.md @@ -1,5 +1,5 @@ --- -title: Label.Layout Property (Access) +title: Label.Layout property (Access) keywords: vbaac10.chm10244 f1_keywords: - vbaac10.chm10244 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.Layout Property (Access) +# Label.Layout property (Access) Returns the type of layout for the specified label. Read-only **[AcLayoutType](Access.AcLayoutType.md)**. ## Syntax - _expression_. `Layout` +_expression_. `Layout` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## See also diff --git a/api/Access.Label.LayoutID.md b/api/Access.Label.LayoutID.md index dd5ff5061c7..c7713da6e73 100644 --- a/api/Access.Label.LayoutID.md +++ b/api/Access.Label.LayoutID.md @@ -1,5 +1,5 @@ --- -title: Label.LayoutID Property (Access) +title: Label.LayoutID property (Access) keywords: vbaac10.chm10265 f1_keywords: - vbaac10.chm10265 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.LayoutID Property (Access) +# Label.LayoutID property (Access) Returns the unique identifier for the layout that contains the specified label. Read-only **Long**. ## Syntax - _expression_. `LayoutID` +_expression_. `LayoutID` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.Left.md b/api/Access.Label.Left.md index 806652abece..4b4dd20bc7d 100644 --- a/api/Access.Label.Left.md +++ b/api/Access.Label.Left.md @@ -1,5 +1,5 @@ --- -title: Label.Left Property (Access) +title: Label.Left property (Access) keywords: vbaac10.chm10197 f1_keywords: - vbaac10.chm10197 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.Left Property (Access) +# Label.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.LeftMargin.md b/api/Access.Label.LeftMargin.md index 171d99cd860..c71f0646827 100644 --- a/api/Access.Label.LeftMargin.md +++ b/api/Access.Label.LeftMargin.md @@ -1,5 +1,5 @@ --- -title: Label.LeftMargin Property (Access) +title: Label.LeftMargin property (Access) keywords: vbaac10.chm10234 f1_keywords: - vbaac10.chm10234 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.LeftMargin Property (Access) +# Label.LeftMargin property (Access) Along with the **TopMargin**, **RightMargin**, and **BottomMargin** properties, specifies the location of information displayed within a label control. Read/write **Integer**. . ## Syntax - _expression_. `LeftMargin` +_expression_. `LeftMargin` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.LeftPadding.md b/api/Access.Label.LeftPadding.md index 1e730f58b7d..6981fd8e074 100644 --- a/api/Access.Label.LeftPadding.md +++ b/api/Access.Label.LeftPadding.md @@ -1,5 +1,5 @@ --- -title: Label.LeftPadding Property (Access) +title: Label.LeftPadding property (Access) keywords: vbaac10.chm10245 f1_keywords: - vbaac10.chm10245 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.LeftPadding Property (Access) +# Label.LeftPadding property (Access) Gets or sets the amount of space (in inches) between the label and its left gridline. Read/write **Integer**. ## Syntax - _expression_. `LeftPadding` +_expression_. `LeftPadding` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## See also diff --git a/api/Access.Label.LineSpacing.md b/api/Access.Label.LineSpacing.md index 427d7f1ba2a..f84f8f9b649 100644 --- a/api/Access.Label.LineSpacing.md +++ b/api/Access.Label.LineSpacing.md @@ -1,5 +1,5 @@ --- -title: Label.LineSpacing Property (Access) +title: Label.LineSpacing property (Access) keywords: vbaac10.chm10236 f1_keywords: - vbaac10.chm10236 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.LineSpacing Property (Access) +# Label.LineSpacing property (Access) You can use the **LineSpacing** property to specify or determine the location of information displayed within a label or text box control. Read/write **Integer**. ## Syntax - _expression_. `LineSpacing` +_expression_. `LineSpacing` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.MouseDown.md b/api/Access.Label.MouseDown.md index 07cbad602bd..8f0417feb69 100644 --- a/api/Access.Label.MouseDown.md +++ b/api/Access.Label.MouseDown.md @@ -1,5 +1,5 @@ --- -title: Label.MouseDown Event (Access) +title: Label.MouseDown event (Access) keywords: vbaac10.chm14286 f1_keywords: - vbaac10.chm14286 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Label.MouseDown Event (Access) +# Label.MouseDown event (Access) The **MouseDown** event occurs when the user presses a mouse button. ## Syntax - _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Label.MouseMove.md b/api/Access.Label.MouseMove.md index 193369b521b..d93aa8b144b 100644 --- a/api/Access.Label.MouseMove.md +++ b/api/Access.Label.MouseMove.md @@ -1,5 +1,5 @@ --- -title: Label.MouseMove Event (Access) +title: Label.MouseMove event (Access) keywords: vbaac10.chm14287 f1_keywords: - vbaac10.chm14287 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Label.MouseMove Event (Access) +# Label.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Label.MouseUp.md b/api/Access.Label.MouseUp.md index 4b08e6a111f..9be26f1b852 100644 --- a/api/Access.Label.MouseUp.md +++ b/api/Access.Label.MouseUp.md @@ -1,5 +1,5 @@ --- -title: Label.MouseUp Event (Access) +title: Label.MouseUp event (Access) keywords: vbaac10.chm14288 f1_keywords: - vbaac10.chm14288 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Label.MouseUp Event (Access) +# Label.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Label.Move.md b/api/Access.Label.Move.md index 22be12a0854..3333df06445 100644 --- a/api/Access.Label.Move.md +++ b/api/Access.Label.Move.md @@ -1,5 +1,5 @@ --- -title: Label.Move Method (Access) +title: Label.Move method (Access) keywords: vbaac10.chm10241 f1_keywords: - vbaac10.chm10241 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Label.Move Method (Access) +# Label.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.Label.Name.md b/api/Access.Label.Name.md index 3647913f262..ec61cdf2345 100644 --- a/api/Access.Label.Name.md +++ b/api/Access.Label.Name.md @@ -1,5 +1,5 @@ --- -title: Label.Name Property (Access) +title: Label.Name property (Access) keywords: vbaac10.chm10233 f1_keywords: - vbaac10.chm10233 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.Name Property (Access) +# Label.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.NumeralShapes.md b/api/Access.Label.NumeralShapes.md index 39f3f59dc56..d05c526b1a3 100644 --- a/api/Access.Label.NumeralShapes.md +++ b/api/Access.Label.NumeralShapes.md @@ -1,5 +1,5 @@ --- -title: Label.NumeralShapes Property (Access) +title: Label.NumeralShapes property (Access) keywords: vbaac10.chm10232 f1_keywords: - vbaac10.chm10232 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Label.NumeralShapes Property (Access) +# Label.NumeralShapes property (Access) @@ -19,9 +19,9 @@ ms.date: 06/08/2017 ## Syntax - _expression_. `NumeralShapes` +_expression_. `NumeralShapes` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.OldBorderStyle.md b/api/Access.Label.OldBorderStyle.md index 1d31e72752f..5a98c6b6a8f 100644 --- a/api/Access.Label.OldBorderStyle.md +++ b/api/Access.Label.OldBorderStyle.md @@ -1,5 +1,5 @@ --- -title: Label.OldBorderStyle Property (Access) +title: Label.OldBorderStyle property (Access) keywords: vbaac10.chm10205 f1_keywords: - vbaac10.chm10205 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.OldBorderStyle Property (Access) +# Label.OldBorderStyle property (Access) You can use this property to set or returns the unedited value of the **BorderStyle** property for a form or control. This property is useful if you need to revert to an unedited or preferred border style. Read/write **Byte**. ## Syntax - _expression_. `OldBorderStyle` +_expression_. `OldBorderStyle` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.OnClick.md b/api/Access.Label.OnClick.md index 1d7520340f9..20d0082a5cd 100644 --- a/api/Access.Label.OnClick.md +++ b/api/Access.Label.OnClick.md @@ -1,5 +1,5 @@ --- -title: Label.OnClick Property (Access) +title: Label.OnClick property (Access) keywords: vbaac10.chm10224 f1_keywords: - vbaac10.chm10224 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.OnClick Property (Access) +# Label.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Label.OnDblClick.md b/api/Access.Label.OnDblClick.md index 42cde4eea03..c51cc4f8b97 100644 --- a/api/Access.Label.OnDblClick.md +++ b/api/Access.Label.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: Label.OnDblClick Property (Access) +title: Label.OnDblClick property (Access) keywords: vbaac10.chm10225 f1_keywords: - vbaac10.chm10225 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.OnDblClick Property (Access) +# Label.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Label.OnMouseDown.md b/api/Access.Label.OnMouseDown.md index d20abbbfc60..52fe2951bbc 100644 --- a/api/Access.Label.OnMouseDown.md +++ b/api/Access.Label.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: Label.OnMouseDown Property (Access) +title: Label.OnMouseDown property (Access) keywords: vbaac10.chm10226 f1_keywords: - vbaac10.chm10226 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.OnMouseDown Property (Access) +# Label.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Label.OnMouseMove.md b/api/Access.Label.OnMouseMove.md index e6b9f59633a..14a40f45b57 100644 --- a/api/Access.Label.OnMouseMove.md +++ b/api/Access.Label.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: Label.OnMouseMove Property (Access) +title: Label.OnMouseMove property (Access) keywords: vbaac10.chm10227 f1_keywords: - vbaac10.chm10227 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.OnMouseMove Property (Access) +# Label.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Label.OnMouseUp.md b/api/Access.Label.OnMouseUp.md index 776b0ce3cd7..f8c0a46c321 100644 --- a/api/Access.Label.OnMouseUp.md +++ b/api/Access.Label.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: Label.OnMouseUp Property (Access) +title: Label.OnMouseUp property (Access) keywords: vbaac10.chm10228 f1_keywords: - vbaac10.chm10228 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.OnMouseUp Property (Access) +# Label.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Label.Parent.md b/api/Access.Label.Parent.md index fa17fb3376d..05b7e97eebd 100644 --- a/api/Access.Label.Parent.md +++ b/api/Access.Label.Parent.md @@ -1,5 +1,5 @@ --- -title: Label.Parent Property (Access) +title: Label.Parent property (Access) keywords: vbaac10.chm10184 f1_keywords: - vbaac10.chm10184 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.Parent Property (Access) +# Label.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.Properties.md b/api/Access.Label.Properties.md index 7e37ace515e..823992abd44 100644 --- a/api/Access.Label.Properties.md +++ b/api/Access.Label.Properties.md @@ -1,5 +1,5 @@ --- -title: Label.Properties Property (Access) +title: Label.Properties property (Access) keywords: vbaac10.chm10185 f1_keywords: - vbaac10.chm10185 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.Properties Property (Access) +# Label.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.ReadingOrder.md b/api/Access.Label.ReadingOrder.md index e0ae9a71063..79d3cc97c00 100644 --- a/api/Access.Label.ReadingOrder.md +++ b/api/Access.Label.ReadingOrder.md @@ -1,5 +1,5 @@ --- -title: Label.ReadingOrder Property (Access) +title: Label.ReadingOrder property (Access) keywords: vbaac10.chm10231 f1_keywords: - vbaac10.chm10231 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.ReadingOrder Property (Access) +# Label.ReadingOrder property (Access) You can use the **ReadingOrder** property to specify or determine the reading order of words in text. Read/write **Byte**. ## Syntax - _expression_. `ReadingOrder` +_expression_. `ReadingOrder` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.RightMargin.md b/api/Access.Label.RightMargin.md index 3780c917319..da7169ee4ed 100644 --- a/api/Access.Label.RightMargin.md +++ b/api/Access.Label.RightMargin.md @@ -1,5 +1,5 @@ --- -title: Label.RightMargin Property (Access) +title: Label.RightMargin property (Access) keywords: vbaac10.chm10237 f1_keywords: - vbaac10.chm10237 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.RightMargin Property (Access) +# Label.RightMargin property (Access) Along with the **TopMargin**, **Left Margin**, and **BottomMargin** properties, specifies the location of information displayed within a label control. Read/write **Integer**. ## Syntax - _expression_. `RightMargin` +_expression_. `RightMargin` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.RightPadding.md b/api/Access.Label.RightPadding.md index 1abe553633d..1b02cd12636 100644 --- a/api/Access.Label.RightPadding.md +++ b/api/Access.Label.RightPadding.md @@ -1,5 +1,5 @@ --- -title: Label.RightPadding Property (Access) +title: Label.RightPadding property (Access) keywords: vbaac10.chm10247 f1_keywords: - vbaac10.chm10247 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.RightPadding Property (Access) +# Label.RightPadding property (Access) Gets or sets the amount of space (in inches) between the label and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## See also diff --git a/api/Access.Label.Section.md b/api/Access.Label.Section.md index 980474f07df..5f9d212d54e 100644 --- a/api/Access.Label.Section.md +++ b/api/Access.Label.Section.md @@ -1,5 +1,5 @@ --- -title: Label.Section Property (Access) +title: Label.Section property (Access) keywords: vbaac10.chm10220 f1_keywords: - vbaac10.chm10220 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.Section Property (Access) +# Label.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.ShortcutMenuBar.md b/api/Access.Label.ShortcutMenuBar.md index e954dc54576..e9b6108002c 100644 --- a/api/Access.Label.ShortcutMenuBar.md +++ b/api/Access.Label.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: Label.ShortcutMenuBar Property (Access) +title: Label.ShortcutMenuBar property (Access) keywords: vbaac10.chm10229 f1_keywords: - vbaac10.chm10229 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.ShortcutMenuBar Property (Access) +# Label.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.SizeToFit.md b/api/Access.Label.SizeToFit.md index 0f3b85e660a..36a11985b9d 100644 --- a/api/Access.Label.SizeToFit.md +++ b/api/Access.Label.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: Label.SizeToFit Method (Access) +title: Label.SizeToFit method (Access) keywords: vbaac10.chm10186 f1_keywords: - vbaac10.chm10186 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.SizeToFit Method (Access) +# Label.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.SmartTags.md b/api/Access.Label.SmartTags.md index 486f4c22d34..55bba72a7a9 100644 --- a/api/Access.Label.SmartTags.md +++ b/api/Access.Label.SmartTags.md @@ -1,5 +1,5 @@ --- -title: Label.SmartTags Property (Access) +title: Label.SmartTags property (Access) keywords: vbaac10.chm10242 f1_keywords: - vbaac10.chm10242 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.SmartTags Property (Access) +# Label.SmartTags property (Access) Returns a **[SmartTags](Access.SmartTags.md)** collection that represents the collection of smart tags that have been added to a control. . ## Syntax - _expression_. `SmartTags` +_expression_. `SmartTags` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.SpecialEffect.md b/api/Access.Label.SpecialEffect.md index f43c7785db6..737076264e0 100644 --- a/api/Access.Label.SpecialEffect.md +++ b/api/Access.Label.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: Label.SpecialEffect Property (Access) +title: Label.SpecialEffect property (Access) keywords: vbaac10.chm10203 f1_keywords: - vbaac10.chm10203 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.SpecialEffect Property (Access) +# Label.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.Tag.md b/api/Access.Label.Tag.md index 804efee352e..5566d8e6650 100644 --- a/api/Access.Label.Tag.md +++ b/api/Access.Label.Tag.md @@ -1,5 +1,5 @@ --- -title: Label.Tag Property (Access) +title: Label.Tag property (Access) keywords: vbaac10.chm10230 f1_keywords: - vbaac10.chm10230 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.Tag Property (Access) +# Label.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.TextAlign.md b/api/Access.Label.TextAlign.md index 14170188203..2ed5d9ffea4 100644 --- a/api/Access.Label.TextAlign.md +++ b/api/Access.Label.TextAlign.md @@ -1,5 +1,5 @@ --- -title: Label.TextAlign Property (Access) +title: Label.TextAlign property (Access) keywords: vbaac10.chm10216 f1_keywords: - vbaac10.chm10216 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.TextAlign Property (Access) +# Label.TextAlign property (Access) The **TextAlign** property specifies the text alignment in new controls. Read/write **Byte**. ## Syntax - _expression_. `TextAlign` +_expression_. `TextAlign` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.ThemeFontIndex.md b/api/Access.Label.ThemeFontIndex.md index a924cc181cc..cf251d13291 100644 --- a/api/Access.Label.ThemeFontIndex.md +++ b/api/Access.Label.ThemeFontIndex.md @@ -1,5 +1,5 @@ --- -title: Label.ThemeFontIndex Property (Access) +title: Label.ThemeFontIndex property (Access) keywords: vbaac10.chm14610 f1_keywords: - vbaac10.chm14610 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.ThemeFontIndex Property (Access) +# Label.ThemeFontIndex property (Access) Gets or sets the font index that represents a font in the applied theme associated with the **FontName** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `ThemeFontIndex` +_expression_. `ThemeFontIndex` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.Top.md b/api/Access.Label.Top.md index 4167b5fdb6b..c954ed7d6a9 100644 --- a/api/Access.Label.Top.md +++ b/api/Access.Label.Top.md @@ -1,5 +1,5 @@ --- -title: Label.Top Property (Access) +title: Label.Top property (Access) keywords: vbaac10.chm10198 f1_keywords: - vbaac10.chm10198 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.Top Property (Access) +# Label.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.TopMargin.md b/api/Access.Label.TopMargin.md index 67858848c68..ff7b6d3313b 100644 --- a/api/Access.Label.TopMargin.md +++ b/api/Access.Label.TopMargin.md @@ -1,5 +1,5 @@ --- -title: Label.TopMargin Property (Access) +title: Label.TopMargin property (Access) keywords: vbaac10.chm10235 f1_keywords: - vbaac10.chm10235 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.TopMargin Property (Access) +# Label.TopMargin property (Access) Along with the **LeftMargin**, **RightMargin**, and **BottomMargin** properties, specifies the location of information displayed within a label control. Read/write **Integer**. ## Syntax - _expression_. `TopMargin` +_expression_. `TopMargin` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.TopPadding.md b/api/Access.Label.TopPadding.md index ee6507e001f..9dd784a42ed 100644 --- a/api/Access.Label.TopPadding.md +++ b/api/Access.Label.TopPadding.md @@ -1,5 +1,5 @@ --- -title: Label.TopPadding Property (Access) +title: Label.TopPadding property (Access) keywords: vbaac10.chm10246 f1_keywords: - vbaac10.chm10246 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.TopPadding Property (Access) +# Label.TopPadding property (Access) Gets or sets the amount of space (in inches) between the label and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## See also diff --git a/api/Access.Label.Vertical.md b/api/Access.Label.Vertical.md index 2557b980e8b..08445ee4818 100644 --- a/api/Access.Label.Vertical.md +++ b/api/Access.Label.Vertical.md @@ -1,5 +1,5 @@ --- -title: Label.Vertical Property (Access) +title: Label.Vertical property (Access) keywords: vbaac10.chm10196 f1_keywords: - vbaac10.chm10196 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.Vertical Property (Access) +# Label.Vertical property (Access) You can use the **Vertical** property to set a form control for vertical display and editing or set a report control for vertical display and printing. Read/write **Boolean**. ## Syntax - _expression_. `Vertical` +_expression_. `Vertical` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.VerticalAnchor.md b/api/Access.Label.VerticalAnchor.md index c10461637f1..1985cf9b814 100644 --- a/api/Access.Label.VerticalAnchor.md +++ b/api/Access.Label.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: Label.VerticalAnchor Property (Access) +title: Label.VerticalAnchor property (Access) keywords: vbaac10.chm10259 f1_keywords: - vbaac10.chm10259 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.VerticalAnchor Property (Access) +# Label.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified label is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.Visible.md b/api/Access.Label.Visible.md index 4c36d71d84a..e0ff9ed1e55 100644 --- a/api/Access.Label.Visible.md +++ b/api/Access.Label.Visible.md @@ -1,5 +1,5 @@ --- -title: Label.Visible Property (Access) +title: Label.Visible property (Access) keywords: vbaac10.chm10194 f1_keywords: - vbaac10.chm10194 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.Visible Property (Access) +# Label.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.Width.md b/api/Access.Label.Width.md index 02887cdf0d1..93ee07dee61 100644 --- a/api/Access.Label.Width.md +++ b/api/Access.Label.Width.md @@ -1,5 +1,5 @@ --- -title: Label.Width Property (Access) +title: Label.Width property (Access) keywords: vbaac10.chm10199 f1_keywords: - vbaac10.chm10199 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Label.Width Property (Access) +# Label.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [Label](Access.Label.md) object. +_expression_ A variable that represents a [Label](Access.Label.md) object. ## Remarks diff --git a/api/Access.Label.md b/api/Access.Label.md index 15080d41b02..e2ce9bdc264 100644 --- a/api/Access.Label.md +++ b/api/Access.Label.md @@ -1,5 +1,5 @@ --- -title: Label Object (Access) +title: Label object (Access) keywords: vbaac10.chm10271 f1_keywords: - vbaac10.chm10271 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Label Object (Access) +# Label object (Access) This object corresponds to a label control. Labels on a form or report display descriptive text such as titles, captions, or brief instructions. diff --git a/api/Access.Line.Application.md b/api/Access.Line.Application.md index 038d6592004..511c374dbb0 100644 --- a/api/Access.Line.Application.md +++ b/api/Access.Line.Application.md @@ -1,5 +1,5 @@ --- -title: Line.Application Property (Access) +title: Line.Application property (Access) keywords: vbaac10.chm10322 f1_keywords: - vbaac10.chm10322 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.Application Property (Access) +# Line.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.BorderColor.md b/api/Access.Line.BorderColor.md index bc9897499be..43ae4209723 100644 --- a/api/Access.Line.BorderColor.md +++ b/api/Access.Line.BorderColor.md @@ -1,5 +1,5 @@ --- -title: Line.BorderColor Property (Access) +title: Line.BorderColor property (Access) keywords: vbaac10.chm10339 f1_keywords: - vbaac10.chm10339 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.BorderColor Property (Access) +# Line.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.BorderShade.md b/api/Access.Line.BorderShade.md index 9e7ae0f6fa1..77600b09b64 100644 --- a/api/Access.Line.BorderShade.md +++ b/api/Access.Line.BorderShade.md @@ -1,5 +1,5 @@ --- -title: Line.BorderShade Property (Access) +title: Line.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.BorderShade Property (Access) +# Line.BorderShade property (Access) Gets or sets the shade that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.BorderStyle.md b/api/Access.Line.BorderStyle.md index 2288e7f1a51..b6968a7452c 100644 --- a/api/Access.Line.BorderStyle.md +++ b/api/Access.Line.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: Line.BorderStyle Property (Access) +title: Line.BorderStyle property (Access) keywords: vbaac10.chm10337 f1_keywords: - vbaac10.chm10337 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.BorderStyle Property (Access) +# Line.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.BorderThemeColorIndex.md b/api/Access.Line.BorderThemeColorIndex.md index f849b8f24f5..0d5728e1317 100644 --- a/api/Access.Line.BorderThemeColorIndex.md +++ b/api/Access.Line.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: Line.BorderThemeColorIndex Property (Access) +title: Line.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.BorderThemeColorIndex Property (Access) +# Line.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.BorderTint.md b/api/Access.Line.BorderTint.md index 4c16885186d..5ed055f2772 100644 --- a/api/Access.Line.BorderTint.md +++ b/api/Access.Line.BorderTint.md @@ -1,5 +1,5 @@ --- -title: Line.BorderTint Property (Access) +title: Line.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.BorderTint Property (Access) +# Line.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.BorderWidth.md b/api/Access.Line.BorderWidth.md index b846c3c9a4c..4bbdf2e3725 100644 --- a/api/Access.Line.BorderWidth.md +++ b/api/Access.Line.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: Line.BorderWidth Property (Access) +title: Line.BorderWidth property (Access) keywords: vbaac10.chm10340 f1_keywords: - vbaac10.chm10340 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.BorderWidth Property (Access) +# Line.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.ControlType.md b/api/Access.Line.ControlType.md index b87c2f586ce..2ad4c046e60 100644 --- a/api/Access.Line.ControlType.md +++ b/api/Access.Line.ControlType.md @@ -1,5 +1,5 @@ --- -title: Line.ControlType Property (Access) +title: Line.ControlType property (Access) keywords: vbaac10.chm10328 f1_keywords: - vbaac10.chm10328 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.ControlType Property (Access) +# Line.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.DisplayWhen.md b/api/Access.Line.DisplayWhen.md index 4d1d9bba172..65dbc1f8eea 100644 --- a/api/Access.Line.DisplayWhen.md +++ b/api/Access.Line.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: Line.DisplayWhen Property (Access) +title: Line.DisplayWhen property (Access) keywords: vbaac10.chm10331 f1_keywords: - vbaac10.chm10331 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.DisplayWhen Property (Access) +# Line.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.EventProcPrefix.md b/api/Access.Line.EventProcPrefix.md index d1c8ea26d89..78c778b142d 100644 --- a/api/Access.Line.EventProcPrefix.md +++ b/api/Access.Line.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: Line.EventProcPrefix Property (Access) +title: Line.EventProcPrefix property (Access) keywords: vbaac10.chm10326 f1_keywords: - vbaac10.chm10326 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.EventProcPrefix Property (Access) +# Line.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.Height.md b/api/Access.Line.Height.md index c80bab4170e..548c3470859 100644 --- a/api/Access.Line.Height.md +++ b/api/Access.Line.Height.md @@ -1,5 +1,5 @@ --- -title: Line.Height Property (Access) +title: Line.Height property (Access) keywords: vbaac10.chm10335 f1_keywords: - vbaac10.chm10335 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.Height Property (Access) +# Line.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.HorizontalAnchor.md b/api/Access.Line.HorizontalAnchor.md index 00fcdd5281f..521f280adab 100644 --- a/api/Access.Line.HorizontalAnchor.md +++ b/api/Access.Line.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: Line.HorizontalAnchor Property (Access) +title: Line.HorizontalAnchor property (Access) keywords: vbaac10.chm10350 f1_keywords: - vbaac10.chm10350 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.HorizontalAnchor Property (Access) +# Line.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the line is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.InSelection.md b/api/Access.Line.InSelection.md index b0dee9b89ef..636e1d8a270 100644 --- a/api/Access.Line.InSelection.md +++ b/api/Access.Line.InSelection.md @@ -1,5 +1,5 @@ --- -title: Line.InSelection Property (Access) +title: Line.InSelection property (Access) keywords: vbaac10.chm10346 f1_keywords: - vbaac10.chm10346 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.InSelection Property (Access) +# Line.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.IsVisible.md b/api/Access.Line.IsVisible.md index f094081a9ae..13c6180a0ae 100644 --- a/api/Access.Line.IsVisible.md +++ b/api/Access.Line.IsVisible.md @@ -1,5 +1,5 @@ --- -title: Line.IsVisible Property (Access) +title: Line.IsVisible property (Access) keywords: vbaac10.chm10345 f1_keywords: - vbaac10.chm10345 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.IsVisible Property (Access) +# Line.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.Left.md b/api/Access.Line.Left.md index 3e1d0e62e03..d4421153d72 100644 --- a/api/Access.Line.Left.md +++ b/api/Access.Line.Left.md @@ -1,5 +1,5 @@ --- -title: Line.Left Property (Access) +title: Line.Left property (Access) keywords: vbaac10.chm10332 f1_keywords: - vbaac10.chm10332 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.Left Property (Access) +# Line.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.LineSlant.md b/api/Access.Line.LineSlant.md index 2c3a2bf34a6..af3c562d40d 100644 --- a/api/Access.Line.LineSlant.md +++ b/api/Access.Line.LineSlant.md @@ -1,5 +1,5 @@ --- -title: Line.LineSlant Property (Access) +title: Line.LineSlant property (Access) keywords: vbaac10.chm10329 f1_keywords: - vbaac10.chm10329 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.LineSlant Property (Access) +# Line.LineSlant property (Access) You use the **LineSlant** property to specify whether a [line control](overview/line-control.md)slants from upper left to lower right or from upper right to lower left. Read/write **Boolean**. ## Syntax - _expression_. `LineSlant` +_expression_. `LineSlant` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.Move.md b/api/Access.Line.Move.md index 42aeb2c97a8..a6e5b8701d4 100644 --- a/api/Access.Line.Move.md +++ b/api/Access.Line.Move.md @@ -1,5 +1,5 @@ --- -title: Line.Move Method (Access) +title: Line.Move method (Access) keywords: vbaac10.chm10348 f1_keywords: - vbaac10.chm10348 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Line.Move Method (Access) +# Line.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.Line.Name.md b/api/Access.Line.Name.md index b4ff9a01bc7..8b2c4278920 100644 --- a/api/Access.Line.Name.md +++ b/api/Access.Line.Name.md @@ -1,5 +1,5 @@ --- -title: Line.Name Property (Access) +title: Line.Name property (Access) keywords: vbaac10.chm10347 f1_keywords: - vbaac10.chm10347 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.Name Property (Access) +# Line.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.OldBorderStyle.md b/api/Access.Line.OldBorderStyle.md index b3f83be5eb1..e0458c93f7a 100644 --- a/api/Access.Line.OldBorderStyle.md +++ b/api/Access.Line.OldBorderStyle.md @@ -1,5 +1,5 @@ --- -title: Line.OldBorderStyle Property (Access) +title: Line.OldBorderStyle property (Access) keywords: vbaac10.chm10338 f1_keywords: - vbaac10.chm10338 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.OldBorderStyle Property (Access) +# Line.OldBorderStyle property (Access) You can use this property to set or returns the unedited value of the **BorderStyle** property for a form or control. This property is useful if you need to revert to an unedited or preferred border style. Read/write **Byte**. ## Syntax - _expression_. `OldBorderStyle` +_expression_. `OldBorderStyle` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.Parent.md b/api/Access.Line.Parent.md index abc07a10a8c..5af84bf652d 100644 --- a/api/Access.Line.Parent.md +++ b/api/Access.Line.Parent.md @@ -1,5 +1,5 @@ --- -title: Line.Parent Property (Access) +title: Line.Parent property (Access) keywords: vbaac10.chm10323 f1_keywords: - vbaac10.chm10323 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.Parent Property (Access) +# Line.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## See also diff --git a/api/Access.Line.Properties.md b/api/Access.Line.Properties.md index 42f4ae01edf..ac0a63f6fd5 100644 --- a/api/Access.Line.Properties.md +++ b/api/Access.Line.Properties.md @@ -1,5 +1,5 @@ --- -title: Line.Properties Property (Access) +title: Line.Properties property (Access) keywords: vbaac10.chm10324 f1_keywords: - vbaac10.chm10324 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.Properties Property (Access) +# Line.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.Section.md b/api/Access.Line.Section.md index 90152989d9a..d08fbacef1c 100644 --- a/api/Access.Line.Section.md +++ b/api/Access.Line.Section.md @@ -1,5 +1,5 @@ --- -title: Line.Section Property (Access) +title: Line.Section property (Access) keywords: vbaac10.chm10342 f1_keywords: - vbaac10.chm10342 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.Section Property (Access) +# Line.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.SizeToFit.md b/api/Access.Line.SizeToFit.md index 7ad41b0b591..7b4dc8041db 100644 --- a/api/Access.Line.SizeToFit.md +++ b/api/Access.Line.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: Line.SizeToFit Method (Access) +title: Line.SizeToFit method (Access) keywords: vbaac10.chm10325 f1_keywords: - vbaac10.chm10325 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.SizeToFit Method (Access) +# Line.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.SpecialEffect.md b/api/Access.Line.SpecialEffect.md index e59d71199ff..f5b30cd71f7 100644 --- a/api/Access.Line.SpecialEffect.md +++ b/api/Access.Line.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: Line.SpecialEffect Property (Access) +title: Line.SpecialEffect property (Access) keywords: vbaac10.chm10336 f1_keywords: - vbaac10.chm10336 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.SpecialEffect Property (Access) +# Line.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.Tag.md b/api/Access.Line.Tag.md index 2c29a08bea5..46b50d76598 100644 --- a/api/Access.Line.Tag.md +++ b/api/Access.Line.Tag.md @@ -1,5 +1,5 @@ --- -title: Line.Tag Property (Access) +title: Line.Tag property (Access) keywords: vbaac10.chm10344 f1_keywords: - vbaac10.chm10344 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.Tag Property (Access) +# Line.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.Top.md b/api/Access.Line.Top.md index 91cf8c3b606..ff4d8901feb 100644 --- a/api/Access.Line.Top.md +++ b/api/Access.Line.Top.md @@ -1,5 +1,5 @@ --- -title: Line.Top Property (Access) +title: Line.Top property (Access) keywords: vbaac10.chm10333 f1_keywords: - vbaac10.chm10333 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.Top Property (Access) +# Line.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.VerticalAnchor.md b/api/Access.Line.VerticalAnchor.md index f7540fb90c0..4beafd30d1f 100644 --- a/api/Access.Line.VerticalAnchor.md +++ b/api/Access.Line.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: Line.VerticalAnchor Property (Access) +title: Line.VerticalAnchor property (Access) keywords: vbaac10.chm10351 f1_keywords: - vbaac10.chm10351 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.VerticalAnchor Property (Access) +# Line.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified line is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.Visible.md b/api/Access.Line.Visible.md index cb8e36f9270..699e2151914 100644 --- a/api/Access.Line.Visible.md +++ b/api/Access.Line.Visible.md @@ -1,5 +1,5 @@ --- -title: Line.Visible Property (Access) +title: Line.Visible property (Access) keywords: vbaac10.chm10330 f1_keywords: - vbaac10.chm10330 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.Visible Property (Access) +# Line.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.Width.md b/api/Access.Line.Width.md index c251a898663..190ad8ac337 100644 --- a/api/Access.Line.Width.md +++ b/api/Access.Line.Width.md @@ -1,5 +1,5 @@ --- -title: Line.Width Property (Access) +title: Line.Width property (Access) keywords: vbaac10.chm10334 f1_keywords: - vbaac10.chm10334 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Line.Width Property (Access) +# Line.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [Line](Access.Line.md) object. +_expression_ A variable that represents a [Line](Access.Line.md) object. ## Remarks diff --git a/api/Access.Line.md b/api/Access.Line.md index d597b86bd38..4700ad06427 100644 --- a/api/Access.Line.md +++ b/api/Access.Line.md @@ -1,5 +1,5 @@ --- -title: Line Object (Access) +title: Line object (Access) keywords: vbaac10.chm10352 f1_keywords: - vbaac10.chm10352 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Line Object (Access) +# Line object (Access) The line control displays a horizontal, vertical, or diagonal line on a form or report. diff --git a/api/Access.ListBox.AddColon.md b/api/Access.ListBox.AddColon.md index 504b2a88e6f..e5218a0d9e1 100644 --- a/api/Access.ListBox.AddColon.md +++ b/api/Access.ListBox.AddColon.md @@ -1,5 +1,5 @@ --- -title: ListBox.AddColon Property (Access) +title: ListBox.AddColon property (Access) keywords: vbaac10.chm11267 f1_keywords: - vbaac10.chm11267 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.AddColon Property (Access) +# ListBox.AddColon property (Access) Specifies whether a colon follows the text in labels for new controls. Read/write **Boolean**. ## Syntax - _expression_. `AddColon` +_expression_. `AddColon` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## See also diff --git a/api/Access.ListBox.AddItem.md b/api/Access.ListBox.AddItem.md index 47c91e2343b..a73f0c48d0e 100644 --- a/api/Access.ListBox.AddItem.md +++ b/api/Access.ListBox.AddItem.md @@ -1,5 +1,5 @@ --- -title: ListBox.AddItem Method (Access) +title: ListBox.AddItem method (Access) keywords: vbaac10.chm11301 f1_keywords: - vbaac10.chm11301 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ListBox.AddItem Method (Access) +# ListBox.AddItem method (Access) Adds a new item to the list of values displayed by the specified list box control. ## Syntax - _expression_. `AddItem`( ` _Item_`, ` _Index_` ) +_expression_. `AddItem`( ` _Item_`, ` _Index_` ) - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Item_|Required|**String**|The display text for the new item.| | _Index_|Optional|**Variant**|The position of the item in the list. If this argument is omitted, the item is added to the end of the list.| diff --git a/api/Access.ListBox.AfterUpdate(even).md b/api/Access.ListBox.AfterUpdate(even).md index 8fbaffb92be..5ad1ba115f4 100644 --- a/api/Access.ListBox.AfterUpdate(even).md +++ b/api/Access.ListBox.AfterUpdate(even).md @@ -1,5 +1,5 @@ --- -title: ListBox.AfterUpdate Event (Access) +title: ListBox.AfterUpdate event (Access) keywords: vbaac10.chm14172 f1_keywords: - vbaac10.chm14172 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.AfterUpdate Event (Access) +# ListBox.AfterUpdate event (Access) The **AfterUpdate** event occurs after changed data in a control or record is updated. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.AfterUpdate(property).md b/api/Access.ListBox.AfterUpdate(property).md index 0553363fd6e..b6f110f3541 100644 --- a/api/Access.ListBox.AfterUpdate(property).md +++ b/api/Access.ListBox.AfterUpdate(property).md @@ -1,5 +1,5 @@ --- -title: ListBox.AfterUpdate Property (Access) +title: ListBox.AfterUpdate property (Access) keywords: vbaac10.chm11279 f1_keywords: - vbaac10.chm11279 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.AfterUpdate Property (Access) +# ListBox.AfterUpdate property (Access) Returns or sets which macro, event procedure, or user-defined function runs when the **AfterUpdate** event occurs. Read/write **String**. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.AllowValueListEdits.md b/api/Access.ListBox.AllowValueListEdits.md index 70f20db9feb..b1692b7b3ff 100644 --- a/api/Access.ListBox.AllowValueListEdits.md +++ b/api/Access.ListBox.AllowValueListEdits.md @@ -1,5 +1,5 @@ --- -title: ListBox.AllowValueListEdits Property (Access) +title: ListBox.AllowValueListEdits property (Access) keywords: vbaac10.chm11335 f1_keywords: - vbaac10.chm11335 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.AllowValueListEdits Property (Access) +# ListBox.AllowValueListEdits property (Access) Gets or sets whether the **Edit List Items** command is available when the user right-clicks a list box. Read/write **Boolean**. ## Syntax - _expression_. `AllowValueListEdits` +_expression_. `AllowValueListEdits` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Application.md b/api/Access.ListBox.Application.md index a11ef3eec47..e4b8355fa78 100644 --- a/api/Access.ListBox.Application.md +++ b/api/Access.ListBox.Application.md @@ -1,5 +1,5 @@ --- -title: ListBox.Application Property (Access) +title: ListBox.Application property (Access) keywords: vbaac10.chm11203 f1_keywords: - vbaac10.chm11203 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Application Property (Access) +# ListBox.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.AutoLabel.md b/api/Access.ListBox.AutoLabel.md index 4d2c5f83b8c..78d0ca7ac37 100644 --- a/api/Access.ListBox.AutoLabel.md +++ b/api/Access.ListBox.AutoLabel.md @@ -1,5 +1,5 @@ --- -title: ListBox.AutoLabel Property (Access) +title: ListBox.AutoLabel property (Access) keywords: vbaac10.chm11266 f1_keywords: - vbaac10.chm11266 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.AutoLabel Property (Access) +# ListBox.AutoLabel property (Access) Specifies whether labels are automatically created and attached to new controls. Read/write **Boolean**. ## Syntax - _expression_. `AutoLabel` +_expression_. `AutoLabel` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## See also diff --git a/api/Access.ListBox.BackColor.md b/api/Access.ListBox.BackColor.md index 5f0d0ac3104..1090798a7fb 100644 --- a/api/Access.ListBox.BackColor.md +++ b/api/Access.ListBox.BackColor.md @@ -1,5 +1,5 @@ --- -title: ListBox.BackColor Property (Access) +title: ListBox.BackColor property (Access) keywords: vbaac10.chm11245 f1_keywords: - vbaac10.chm11245 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.BackColor Property (Access) +# ListBox.BackColor property (Access) Gets or sets the interior color of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackColor` +_expression_. `BackColor` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.BackShade.md b/api/Access.ListBox.BackShade.md index ceb66548cd6..49ff8de17fa 100644 --- a/api/Access.ListBox.BackShade.md +++ b/api/Access.ListBox.BackShade.md @@ -1,5 +1,5 @@ --- -title: ListBox.BackShade Property (Access) +title: ListBox.BackShade property (Access) keywords: vbaac10.chm14633 f1_keywords: - vbaac10.chm14633 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.BackShade Property (Access) +# ListBox.BackShade property (Access) Gets or sets the shade applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackShade` +_expression_. `BackShade` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.BackThemeColorIndex.md b/api/Access.ListBox.BackThemeColorIndex.md index 7052caa57ae..52a3c1da310 100644 --- a/api/Access.ListBox.BackThemeColorIndex.md +++ b/api/Access.ListBox.BackThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ListBox.BackThemeColorIndex Property (Access) +title: ListBox.BackThemeColorIndex property (Access) keywords: vbaac10.chm14631 f1_keywords: - vbaac10.chm14631 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.BackThemeColorIndex Property (Access) +# ListBox.BackThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BackColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackThemeColorIndex` +_expression_. `BackThemeColorIndex` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.BackTint.md b/api/Access.ListBox.BackTint.md index cf06ba1e141..43db453507f 100644 --- a/api/Access.ListBox.BackTint.md +++ b/api/Access.ListBox.BackTint.md @@ -1,5 +1,5 @@ --- -title: ListBox.BackTint Property (Access) +title: ListBox.BackTint property (Access) keywords: vbaac10.chm14632 f1_keywords: - vbaac10.chm14632 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.BackTint Property (Access) +# ListBox.BackTint property (Access) Gets or sets the tint that is applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackTint` +_expression_. `BackTint` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.BeforeUpdate(even).md b/api/Access.ListBox.BeforeUpdate(even).md index 60998e9827e..d51d32c8312 100644 --- a/api/Access.ListBox.BeforeUpdate(even).md +++ b/api/Access.ListBox.BeforeUpdate(even).md @@ -1,5 +1,5 @@ --- -title: ListBox.BeforeUpdate Event (Access) +title: ListBox.BeforeUpdate event (Access) keywords: vbaac10.chm14171 f1_keywords: - vbaac10.chm14171 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ListBox.BeforeUpdate Event (Access) +# ListBox.BeforeUpdate event (Access) The **BeforeUpdate** event occurs before changed data in a control or record is updated. ## Syntax - _expression_. `BeforeUpdate`( ` _Cancel_` ) +_expression_. `BeforeUpdate`( ` _Cancel_` ) - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **BeforeUpdate** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **BeforeUpdate** event.| diff --git a/api/Access.ListBox.BeforeUpdate(property).md b/api/Access.ListBox.BeforeUpdate(property).md index 7b992bf9335..7f2c37c4cec 100644 --- a/api/Access.ListBox.BeforeUpdate(property).md +++ b/api/Access.ListBox.BeforeUpdate(property).md @@ -1,5 +1,5 @@ --- -title: ListBox.BeforeUpdate Property (Access) +title: ListBox.BeforeUpdate property (Access) keywords: vbaac10.chm11278 f1_keywords: - vbaac10.chm11278 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.BeforeUpdate Property (Access) +# ListBox.BeforeUpdate property (Access) Returns or sets which macro, event procedure, or user-defined function runs when the **BeforeUpdate** event occurs. Read/write **String**. ## Syntax - _expression_. `BeforeUpdate` +_expression_. `BeforeUpdate` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.BorderColor.md b/api/Access.ListBox.BorderColor.md index 6185e4c5572..bee48bfc3e5 100644 --- a/api/Access.ListBox.BorderColor.md +++ b/api/Access.ListBox.BorderColor.md @@ -1,5 +1,5 @@ --- -title: ListBox.BorderColor Property (Access) +title: ListBox.BorderColor property (Access) keywords: vbaac10.chm11251 f1_keywords: - vbaac10.chm11251 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.BorderColor Property (Access) +# ListBox.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.BorderShade.md b/api/Access.ListBox.BorderShade.md index 55a262557d3..aa8cd57ec76 100644 --- a/api/Access.ListBox.BorderShade.md +++ b/api/Access.ListBox.BorderShade.md @@ -1,5 +1,5 @@ --- -title: ListBox.BorderShade Property (Access) +title: ListBox.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.BorderShade Property (Access) +# ListBox.BorderShade property (Access) Gets or sets the shade that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.BorderStyle.md b/api/Access.ListBox.BorderStyle.md index bccb9d5f74d..a42bb393e69 100644 --- a/api/Access.ListBox.BorderStyle.md +++ b/api/Access.ListBox.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: ListBox.BorderStyle Property (Access) +title: ListBox.BorderStyle property (Access) keywords: vbaac10.chm11247 f1_keywords: - vbaac10.chm11247 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.BorderStyle Property (Access) +# ListBox.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.BorderThemeColorIndex.md b/api/Access.ListBox.BorderThemeColorIndex.md index cc667566e57..1a9a486915c 100644 --- a/api/Access.ListBox.BorderThemeColorIndex.md +++ b/api/Access.ListBox.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ListBox.BorderThemeColorIndex Property (Access) +title: ListBox.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.BorderThemeColorIndex Property (Access) +# ListBox.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.BorderTint.md b/api/Access.ListBox.BorderTint.md index 4941265dd9e..b780b555cd8 100644 --- a/api/Access.ListBox.BorderTint.md +++ b/api/Access.ListBox.BorderTint.md @@ -1,5 +1,5 @@ --- -title: ListBox.BorderTint Property (Access) +title: ListBox.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.BorderTint Property (Access) +# ListBox.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.BorderWidth.md b/api/Access.ListBox.BorderWidth.md index f48397fb5d3..ea9530acf62 100644 --- a/api/Access.ListBox.BorderWidth.md +++ b/api/Access.ListBox.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: ListBox.BorderWidth Property (Access) +title: ListBox.BorderWidth property (Access) keywords: vbaac10.chm11249 f1_keywords: - vbaac10.chm11249 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.BorderWidth Property (Access) +# ListBox.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.BottomPadding.md b/api/Access.ListBox.BottomPadding.md index 882958c381f..64d9c35bea7 100644 --- a/api/Access.ListBox.BottomPadding.md +++ b/api/Access.ListBox.BottomPadding.md @@ -1,5 +1,5 @@ --- -title: ListBox.BottomPadding Property (Access) +title: ListBox.BottomPadding property (Access) keywords: vbaac10.chm11309 f1_keywords: - vbaac10.chm11309 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.BottomPadding Property (Access) +# ListBox.BottomPadding property (Access) Gets or sets the amount of space (in inches) between the list box and its bottom gridline. Read/write **Integer**. ## Syntax - _expression_. `BottomPadding` +_expression_. `BottomPadding` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## See also diff --git a/api/Access.ListBox.BoundColumn.md b/api/Access.ListBox.BoundColumn.md index e15a1753e75..e52f84fc223 100644 --- a/api/Access.ListBox.BoundColumn.md +++ b/api/Access.ListBox.BoundColumn.md @@ -1,5 +1,5 @@ --- -title: ListBox.BoundColumn Property (Access) +title: ListBox.BoundColumn property (Access) keywords: vbaac10.chm11227 f1_keywords: - vbaac10.chm11227 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.BoundColumn Property (Access) +# ListBox.BoundColumn property (Access) When you make a selection from a list box, the **BoundColumn** property tells Microsoft Access which column's values to use as the value of the control. If the control is bound to a field, the value in the column specified by the **BoundColumn** property is stored in the field named in the **ControlSource** property. Read/write **Long**. ## Syntax - _expression_. `BoundColumn` +_expression_. `BoundColumn` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Click.md b/api/Access.ListBox.Click.md index e2b8a6a816e..358bf69ffaa 100644 --- a/api/Access.ListBox.Click.md +++ b/api/Access.ListBox.Click.md @@ -1,5 +1,5 @@ --- -title: ListBox.Click Event (Access) +title: ListBox.Click event (Access) keywords: vbaac10.chm14177 f1_keywords: - vbaac10.chm14177 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Click Event (Access) +# ListBox.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Column.md b/api/Access.ListBox.Column.md index 756b1e0cdcb..aaf7de2a76b 100644 --- a/api/Access.ListBox.Column.md +++ b/api/Access.ListBox.Column.md @@ -1,5 +1,5 @@ --- -title: ListBox.Column Property (Access) +title: ListBox.Column property (Access) keywords: vbaac10.chm11206 f1_keywords: - vbaac10.chm11206 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ListBox.Column Property (Access) +# ListBox.Column property (Access) You can use the **Column** property to refer to a specific column, or column and row combination, in a multiple-column combo box or list box. Read-only **Variant**. ## Syntax - _expression_. `Column`( ` _Index_`, ` _Row_` ) +_expression_. `Column`( ` _Index_`, ` _Row_` ) - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required|**Long**|A long integer that can range from 0 to the setting of the **ColumnCount** property minus one.| | _Row_|Optional|**Variant**|An integer that can range from 0 to the setting of the **ListCount** property minus 1.| diff --git a/api/Access.ListBox.ColumnCount.md b/api/Access.ListBox.ColumnCount.md index 82dc532bb60..edf091a9426 100644 --- a/api/Access.ListBox.ColumnCount.md +++ b/api/Access.ListBox.ColumnCount.md @@ -1,5 +1,5 @@ --- -title: ListBox.ColumnCount Property (Access) +title: ListBox.ColumnCount property (Access) keywords: vbaac10.chm11224 f1_keywords: - vbaac10.chm11224 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ColumnCount Property (Access) +# ListBox.ColumnCount property (Access) You can use the **ColumnCount** property to specify the number of columns displayed in a list box or in the list box portion of a combo box, or sent to OLE objects in a chart control or unbound object frame . Read/write **Integer**. ## Syntax - _expression_. `ColumnCount` +_expression_. `ColumnCount` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ColumnHeads.md b/api/Access.ListBox.ColumnHeads.md index 191aecb998a..4d82e3ca0aa 100644 --- a/api/Access.ListBox.ColumnHeads.md +++ b/api/Access.ListBox.ColumnHeads.md @@ -1,5 +1,5 @@ --- -title: ListBox.ColumnHeads Property (Access) +title: ListBox.ColumnHeads property (Access) keywords: vbaac10.chm11225 f1_keywords: - vbaac10.chm11225 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ColumnHeads Property (Access) +# ListBox.ColumnHeads property (Access) You can use the **ColumnHeads** property to display a single row of column headings for list boxes, combo boxes, and OLE objects that accept column headings. You can also use this property to create a label for each entry in a chart control . What is actually displayed as the first-row column heading depends on the object's **RowSourceType** property setting. Read/write **Boolean**. ## Syntax - _expression_. `ColumnHeads` +_expression_. `ColumnHeads` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ColumnHidden.md b/api/Access.ListBox.ColumnHidden.md index c9bbdb274f4..6aac9982b68 100644 --- a/api/Access.ListBox.ColumnHidden.md +++ b/api/Access.ListBox.ColumnHidden.md @@ -1,5 +1,5 @@ --- -title: ListBox.ColumnHidden Property (Access) +title: ListBox.ColumnHidden property (Access) keywords: vbaac10.chm11265 f1_keywords: - vbaac10.chm11265 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ColumnHidden Property (Access) +# ListBox.ColumnHidden property (Access) You can use the **ColumnHidden** property to show or hide a specified column in Datasheet view. Read/write **Boolean**. ## Syntax - _expression_. `ColumnHidden` +_expression_. `ColumnHidden` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ColumnOrder.md b/api/Access.ListBox.ColumnOrder.md index c1ddf4daf32..870398eb667 100644 --- a/api/Access.ListBox.ColumnOrder.md +++ b/api/Access.ListBox.ColumnOrder.md @@ -1,5 +1,5 @@ --- -title: ListBox.ColumnOrder Property (Access) +title: ListBox.ColumnOrder property (Access) keywords: vbaac10.chm11264 f1_keywords: - vbaac10.chm11264 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ColumnOrder Property (Access) +# ListBox.ColumnOrder property (Access) You can use the **ColumnOrder** property to specify the order of the columns in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `ColumnOrder` +_expression_. `ColumnOrder` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ColumnWidth.md b/api/Access.ListBox.ColumnWidth.md index df16e0979d4..1849a2467e7 100644 --- a/api/Access.ListBox.ColumnWidth.md +++ b/api/Access.ListBox.ColumnWidth.md @@ -1,5 +1,5 @@ --- -title: ListBox.ColumnWidth Property (Access) +title: ListBox.ColumnWidth property (Access) keywords: vbaac10.chm11263 f1_keywords: - vbaac10.chm11263 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ColumnWidth Property (Access) +# ListBox.ColumnWidth property (Access) You can use the **ColumnWidth** property to specify the width of a column in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `ColumnWidth` +_expression_. `ColumnWidth` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ColumnWidths.md b/api/Access.ListBox.ColumnWidths.md index f5a6c235515..dbc306655c1 100644 --- a/api/Access.ListBox.ColumnWidths.md +++ b/api/Access.ListBox.ColumnWidths.md @@ -1,5 +1,5 @@ --- -title: ListBox.ColumnWidths Property (Access) +title: ListBox.ColumnWidths property (Access) keywords: vbaac10.chm11226 f1_keywords: - vbaac10.chm11226 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ColumnWidths Property (Access) +# ListBox.ColumnWidths property (Access) You can use the **ColumnWidths** property to specify the width of each column in a multiple-column list box. Read/write **String**. ## Syntax - _expression_. `ColumnWidths` +_expression_. `ColumnWidths` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ControlSource.md b/api/Access.ListBox.ControlSource.md index d2125172467..edc0cdeb3ea 100644 --- a/api/Access.ListBox.ControlSource.md +++ b/api/Access.ListBox.ControlSource.md @@ -1,5 +1,5 @@ --- -title: ListBox.ControlSource Property (Access) +title: ListBox.ControlSource property (Access) keywords: vbaac10.chm11221 f1_keywords: - vbaac10.chm11221 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ControlSource Property (Access) +# ListBox.ControlSource property (Access) You can use the **ControlSource** property to specify what data appears in a control. You can display and edit data bound to a field in a table, query, or SQL statement. You can also display the result of an expression. Read/write **String**. ## Syntax - _expression_. `ControlSource` +_expression_. `ControlSource` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ControlTipText.md b/api/Access.ListBox.ControlTipText.md index ccf354610f3..87bbe628bf5 100644 --- a/api/Access.ListBox.ControlTipText.md +++ b/api/Access.ListBox.ControlTipText.md @@ -1,5 +1,5 @@ --- -title: ListBox.ControlTipText Property (Access) +title: ListBox.ControlTipText property (Access) keywords: vbaac10.chm11261 f1_keywords: - vbaac10.chm11261 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ControlTipText Property (Access) +# ListBox.ControlTipText property (Access) You can use the **ControlTipText** property to specify the text that appears in a ScreenTip when you hold the mouse pointer over a control. Read/write **String**. ## Syntax - _expression_. `ControlTipText` +_expression_. `ControlTipText` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ControlType.md b/api/Access.ListBox.ControlType.md index 6215caeb73a..eca4cf53b30 100644 --- a/api/Access.ListBox.ControlType.md +++ b/api/Access.ListBox.ControlType.md @@ -1,5 +1,5 @@ --- -title: ListBox.ControlType Property (Access) +title: ListBox.ControlType property (Access) keywords: vbaac10.chm11220 f1_keywords: - vbaac10.chm11220 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ControlType Property (Access) +# ListBox.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Controls.md b/api/Access.ListBox.Controls.md index b083f56a64b..53b53b379f4 100644 --- a/api/Access.ListBox.Controls.md +++ b/api/Access.ListBox.Controls.md @@ -1,5 +1,5 @@ --- -title: ListBox.Controls Property (Access) +title: ListBox.Controls property (Access) keywords: vbaac10.chm11214 f1_keywords: - vbaac10.chm11214 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Controls Property (Access) +# ListBox.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.DblClick.md b/api/Access.ListBox.DblClick.md index f9b206b7f53..14f2ee7f403 100644 --- a/api/Access.ListBox.DblClick.md +++ b/api/Access.ListBox.DblClick.md @@ -1,5 +1,5 @@ --- -title: ListBox.DblClick Event (Access) +title: ListBox.DblClick event (Access) keywords: vbaac10.chm14178 f1_keywords: - vbaac10.chm14178 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ListBox.DblClick Event (Access) +# ListBox.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_` ) +_expression_. `DblClick`( ` _Cancel_` ) - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **DblClick** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **DblClick** event.| diff --git a/api/Access.ListBox.DefaultValue.md b/api/Access.ListBox.DefaultValue.md index 3522797a016..684c964c448 100644 --- a/api/Access.ListBox.DefaultValue.md +++ b/api/Access.ListBox.DefaultValue.md @@ -1,5 +1,5 @@ --- -title: ListBox.DefaultValue Property (Access) +title: ListBox.DefaultValue property (Access) keywords: vbaac10.chm11228 f1_keywords: - vbaac10.chm11228 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.DefaultValue Property (Access) +# ListBox.DefaultValue property (Access) Specifies a value that is automatically entered in a field when a new record is created. For example, in an Addresses table you can set the default value for the City field to New York. When users add a record to the table, they can either accept this value or enter the name of a different city. Read/write **String**. ## Syntax - _expression_. `DefaultValue` +_expression_. `DefaultValue` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.DisplayWhen.md b/api/Access.ListBox.DisplayWhen.md index 1cc2e996a55..faa26fdc3ae 100644 --- a/api/Access.ListBox.DisplayWhen.md +++ b/api/Access.ListBox.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: ListBox.DisplayWhen Property (Access) +title: ListBox.DisplayWhen property (Access) keywords: vbaac10.chm11234 f1_keywords: - vbaac10.chm11234 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.DisplayWhen Property (Access) +# ListBox.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Enabled.md b/api/Access.ListBox.Enabled.md index 047057aed29..57bb4bdc458 100644 --- a/api/Access.ListBox.Enabled.md +++ b/api/Access.ListBox.Enabled.md @@ -1,5 +1,5 @@ --- -title: ListBox.Enabled Property (Access) +title: ListBox.Enabled property (Access) keywords: vbaac10.chm11235 f1_keywords: - vbaac10.chm11235 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Enabled Property (Access) +# ListBox.Enabled property (Access) You can use the **Enabled** property to set or return the status of the conditional format in the **[FormatCondition](Access.FormatCondition.md)** object. Read/write **Boolean**. ## Syntax - _expression_. `Enabled` +_expression_. `Enabled` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Enter.md b/api/Access.ListBox.Enter.md index 73dc3648fe5..f12c8af1a2d 100644 --- a/api/Access.ListBox.Enter.md +++ b/api/Access.ListBox.Enter.md @@ -1,5 +1,5 @@ --- -title: ListBox.Enter Event (Access) +title: ListBox.Enter event (Access) keywords: vbaac10.chm14173 f1_keywords: - vbaac10.chm14173 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Enter Event (Access) +# ListBox.Enter event (Access) The **Enter** event occurs before a control actually receives the focus from a control on the same form or report. ## Syntax - _expression_. `Enter` +_expression_. `Enter` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.EventProcPrefix.md b/api/Access.ListBox.EventProcPrefix.md index 70381aa1690..96e574197cc 100644 --- a/api/Access.ListBox.EventProcPrefix.md +++ b/api/Access.ListBox.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: ListBox.EventProcPrefix Property (Access) +title: ListBox.EventProcPrefix property (Access) keywords: vbaac10.chm11218 f1_keywords: - vbaac10.chm11218 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.EventProcPrefix Property (Access) +# ListBox.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Exit.md b/api/Access.ListBox.Exit.md index dea3a08ae8d..35a3f0d84c3 100644 --- a/api/Access.ListBox.Exit.md +++ b/api/Access.ListBox.Exit.md @@ -1,5 +1,5 @@ --- -title: ListBox.Exit Event (Access) +title: ListBox.Exit event (Access) keywords: vbaac10.chm14174 f1_keywords: - vbaac10.chm14174 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ListBox.Exit Event (Access) +# ListBox.Exit event (Access) The **Exit** event occurs just before a control loses the focus to another control on the same form or report. ## Syntax - _expression_. `Exit`( ` _Cancel_` ) +_expression_. `Exit`( ` _Cancel_` ) - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|Set to **True** to cancel the event.| diff --git a/api/Access.ListBox.FontBold.md b/api/Access.ListBox.FontBold.md index 1862c517fa5..06503d719c3 100644 --- a/api/Access.ListBox.FontBold.md +++ b/api/Access.ListBox.FontBold.md @@ -1,5 +1,5 @@ --- -title: ListBox.FontBold Property (Access) +title: ListBox.FontBold property (Access) keywords: vbaac10.chm11259 f1_keywords: - vbaac10.chm11259 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ListBox.FontBold Property (Access) +# ListBox.FontBold property (Access) You can use the **FontBold** property to specify whether a font appears in a bold style in the following situations: @@ -26,9 +26,9 @@ You can use the **FontBold** property to specify whether a font appears in a bo ## Syntax - _expression_. `FontBold` +_expression_. `FontBold` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.FontItalic.md b/api/Access.ListBox.FontItalic.md index eb70c6fb0cd..1dffcde30e7 100644 --- a/api/Access.ListBox.FontItalic.md +++ b/api/Access.ListBox.FontItalic.md @@ -1,5 +1,5 @@ --- -title: ListBox.FontItalic Property (Access) +title: ListBox.FontItalic property (Access) keywords: vbaac10.chm11256 f1_keywords: - vbaac10.chm11256 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ListBox.FontItalic Property (Access) +# ListBox.FontItalic property (Access) You can use the **FontItalic** property to specify whether text is italic in the following situations: @@ -26,9 +26,9 @@ You can use the **FontItalic** property to specify whether text is italic in th ## Syntax - _expression_. `FontItalic` +_expression_. `FontItalic` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.FontName.md b/api/Access.ListBox.FontName.md index 1044e190ae9..e72f2958ae0 100644 --- a/api/Access.ListBox.FontName.md +++ b/api/Access.ListBox.FontName.md @@ -1,5 +1,5 @@ --- -title: ListBox.FontName Property (Access) +title: ListBox.FontName property (Access) keywords: vbaac10.chm11253 f1_keywords: - vbaac10.chm11253 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ListBox.FontName Property (Access) +# ListBox.FontName property (Access) You can use the **FontName** property to specify the font for text in the following situations: @@ -26,9 +26,9 @@ Read/write **String**. ## Syntax - _expression_. `FontName` +_expression_. `FontName` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.FontSize.md b/api/Access.ListBox.FontSize.md index 737792e88c6..58c92b2bc0f 100644 --- a/api/Access.ListBox.FontSize.md +++ b/api/Access.ListBox.FontSize.md @@ -1,5 +1,5 @@ --- -title: ListBox.FontSize Property (Access) +title: ListBox.FontSize property (Access) keywords: vbaac10.chm11254 f1_keywords: - vbaac10.chm11254 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ListBox.FontSize Property (Access) +# ListBox.FontSize property (Access) You can use the **FontSize** property to specify the point size for text in the following situations: @@ -26,9 +26,9 @@ Read/write **Integer**. ## Syntax - _expression_. `FontSize` +_expression_. `FontSize` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.FontUnderline.md b/api/Access.ListBox.FontUnderline.md index 6c60d0b4c34..f17143de0f4 100644 --- a/api/Access.ListBox.FontUnderline.md +++ b/api/Access.ListBox.FontUnderline.md @@ -1,5 +1,5 @@ --- -title: ListBox.FontUnderline Property (Access) +title: ListBox.FontUnderline property (Access) keywords: vbaac10.chm11257 f1_keywords: - vbaac10.chm11257 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ListBox.FontUnderline Property (Access) +# ListBox.FontUnderline property (Access) You can use the **FontUnderline** property to specify whether text is underlined in the following situations: @@ -26,9 +26,9 @@ You can use the **FontUnderline** property to specify whether text is underline ## Syntax - _expression_. `FontUnderline` +_expression_. `FontUnderline` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.FontWeight.md b/api/Access.ListBox.FontWeight.md index 1dbca43949a..41f6a230df3 100644 --- a/api/Access.ListBox.FontWeight.md +++ b/api/Access.ListBox.FontWeight.md @@ -1,5 +1,5 @@ --- -title: ListBox.FontWeight Property (Access) +title: ListBox.FontWeight property (Access) keywords: vbaac10.chm11255 f1_keywords: - vbaac10.chm11255 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.FontWeight Property (Access) +# ListBox.FontWeight property (Access) You can use the **DatasheetFontWeight** property to specify the line width of the font used to display and print characters for field names and data in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `FontWeight` +_expression_. `FontWeight` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ForeColor.md b/api/Access.ListBox.ForeColor.md index fb7085e54ed..2b0806af21e 100644 --- a/api/Access.ListBox.ForeColor.md +++ b/api/Access.ListBox.ForeColor.md @@ -1,5 +1,5 @@ --- -title: ListBox.ForeColor Property (Access) +title: ListBox.ForeColor property (Access) keywords: vbaac10.chm11252 f1_keywords: - vbaac10.chm11252 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ForeColor Property (Access) +# ListBox.ForeColor property (Access) You can use the **ForeColor** property to specify the color for text in a control. Read/write **Long**. ## Syntax - _expression_. `ForeColor` +_expression_. `ForeColor` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ForeShade.md b/api/Access.ListBox.ForeShade.md index 152cde362e9..2c19111b73d 100644 --- a/api/Access.ListBox.ForeShade.md +++ b/api/Access.ListBox.ForeShade.md @@ -1,5 +1,5 @@ --- -title: ListBox.ForeShade Property (Access) +title: ListBox.ForeShade property (Access) keywords: vbaac10.chm14606 f1_keywords: - vbaac10.chm14606 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ForeShade Property (Access) +# ListBox.ForeShade property (Access) Gets or sets the shade that is applied to the theme color in the **ForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `ForeShade` +_expression_. `ForeShade` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ForeThemeColorIndex.md b/api/Access.ListBox.ForeThemeColorIndex.md index c75a68d7d94..21f00e4e9eb 100644 --- a/api/Access.ListBox.ForeThemeColorIndex.md +++ b/api/Access.ListBox.ForeThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ListBox.ForeThemeColorIndex Property (Access) +title: ListBox.ForeThemeColorIndex property (Access) keywords: vbaac10.chm14604 f1_keywords: - vbaac10.chm14604 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ForeThemeColorIndex Property (Access) +# ListBox.ForeThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **ForeColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `ForeThemeColorIndex` +_expression_. `ForeThemeColorIndex` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ForeTint.md b/api/Access.ListBox.ForeTint.md index dca23253e92..7b4fdbb0a04 100644 --- a/api/Access.ListBox.ForeTint.md +++ b/api/Access.ListBox.ForeTint.md @@ -1,5 +1,5 @@ --- -title: ListBox.ForeTint Property (Access) +title: ListBox.ForeTint property (Access) keywords: vbaac10.chm14605 f1_keywords: - vbaac10.chm14605 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ForeTint Property (Access) +# ListBox.ForeTint property (Access) Gets or sets the tint that is applied to the theme color in the **ForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `ForeTint` +_expression_. `ForeTint` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.GotFocus.md b/api/Access.ListBox.GotFocus.md index 557a4cb9fd1..fc90ba62a88 100644 --- a/api/Access.ListBox.GotFocus.md +++ b/api/Access.ListBox.GotFocus.md @@ -1,5 +1,5 @@ --- -title: ListBox.GotFocus Event (Access) +title: ListBox.GotFocus event (Access) keywords: vbaac10.chm14175 f1_keywords: - vbaac10.chm14175 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.GotFocus Event (Access) +# ListBox.GotFocus event (Access) The **GotFocus** event occurs when the specified object receives the focus. ## Syntax - _expression_. `GotFocus` +_expression_. `GotFocus` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.GridlineColor.md b/api/Access.ListBox.GridlineColor.md index 0b3f9c62c03..b03e3dab158 100644 --- a/api/Access.ListBox.GridlineColor.md +++ b/api/Access.ListBox.GridlineColor.md @@ -1,5 +1,5 @@ --- -title: ListBox.GridlineColor Property (Access) +title: ListBox.GridlineColor property (Access) keywords: vbaac10.chm11318 f1_keywords: - vbaac10.chm11318 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.GridlineColor Property (Access) +# ListBox.GridlineColor property (Access) Gets or sets the color of the gridline for the specified list box. Read/write **Long**. ## Syntax - _expression_. `GridlineColor` +_expression_. `GridlineColor` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.GridlineShade.md b/api/Access.ListBox.GridlineShade.md index 5ce55b5e5af..0e86c288c4e 100644 --- a/api/Access.ListBox.GridlineShade.md +++ b/api/Access.ListBox.GridlineShade.md @@ -1,5 +1,5 @@ --- -title: ListBox.GridlineShade Property (Access) +title: ListBox.GridlineShade property (Access) keywords: vbaac10.chm14637 f1_keywords: - vbaac10.chm14637 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.GridlineShade Property (Access) +# ListBox.GridlineShade property (Access) Gets or sets the shade applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineShade` +_expression_. `GridlineShade` - _expression_ A variable that represents an [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents an [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.GridlineStyleBottom.md b/api/Access.ListBox.GridlineStyleBottom.md index cd6c7acdcf7..a3390cc37ba 100644 --- a/api/Access.ListBox.GridlineStyleBottom.md +++ b/api/Access.ListBox.GridlineStyleBottom.md @@ -1,5 +1,5 @@ --- -title: ListBox.GridlineStyleBottom Property (Access) +title: ListBox.GridlineStyleBottom property (Access) keywords: vbaac10.chm11313 f1_keywords: - vbaac10.chm11313 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.GridlineStyleBottom Property (Access) +# ListBox.GridlineStyleBottom property (Access) Gets or sets the bottom gridline style of the specified list box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleBottom` +_expression_. `GridlineStyleBottom` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.GridlineStyleLeft.md b/api/Access.ListBox.GridlineStyleLeft.md index 20fac3eba6e..180e15f38a3 100644 --- a/api/Access.ListBox.GridlineStyleLeft.md +++ b/api/Access.ListBox.GridlineStyleLeft.md @@ -1,5 +1,5 @@ --- -title: ListBox.GridlineStyleLeft Property (Access) +title: ListBox.GridlineStyleLeft property (Access) keywords: vbaac10.chm11310 f1_keywords: - vbaac10.chm11310 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.GridlineStyleLeft Property (Access) +# ListBox.GridlineStyleLeft property (Access) Gets or sets the width of the bottom gridline for the specified list box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleLeft` +_expression_. `GridlineStyleLeft` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.GridlineStyleRight.md b/api/Access.ListBox.GridlineStyleRight.md index c1f46f133ce..0a5867ddfe7 100644 --- a/api/Access.ListBox.GridlineStyleRight.md +++ b/api/Access.ListBox.GridlineStyleRight.md @@ -1,5 +1,5 @@ --- -title: ListBox.GridlineStyleRight Property (Access) +title: ListBox.GridlineStyleRight property (Access) keywords: vbaac10.chm11312 f1_keywords: - vbaac10.chm11312 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.GridlineStyleRight Property (Access) +# ListBox.GridlineStyleRight property (Access) Gets or sets the right gridline style of the specified list box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleRight` +_expression_. `GridlineStyleRight` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.GridlineStyleTop.md b/api/Access.ListBox.GridlineStyleTop.md index a2767cfe5e4..50d04999ca9 100644 --- a/api/Access.ListBox.GridlineStyleTop.md +++ b/api/Access.ListBox.GridlineStyleTop.md @@ -1,5 +1,5 @@ --- -title: ListBox.GridlineStyleTop Property (Access) +title: ListBox.GridlineStyleTop property (Access) keywords: vbaac10.chm11311 f1_keywords: - vbaac10.chm11311 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.GridlineStyleTop Property (Access) +# ListBox.GridlineStyleTop property (Access) Gets or sets the top gridline style of the specified list box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleTop` +_expression_. `GridlineStyleTop` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.GridlineThemeColorIndex.md b/api/Access.ListBox.GridlineThemeColorIndex.md index 62b5539cf51..580872e4e69 100644 --- a/api/Access.ListBox.GridlineThemeColorIndex.md +++ b/api/Access.ListBox.GridlineThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ListBox.GridlineThemeColorIndex Property (Access) +title: ListBox.GridlineThemeColorIndex property (Access) keywords: vbaac10.chm14635 f1_keywords: - vbaac10.chm14635 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.GridlineThemeColorIndex Property (Access) +# ListBox.GridlineThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **GridlineColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `GridlineThemeColorIndex` +_expression_. `GridlineThemeColorIndex` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.GridlineTint.md b/api/Access.ListBox.GridlineTint.md index b29030ee816..66f8195d573 100644 --- a/api/Access.ListBox.GridlineTint.md +++ b/api/Access.ListBox.GridlineTint.md @@ -1,5 +1,5 @@ --- -title: ListBox.GridlineTint Property (Access) +title: ListBox.GridlineTint property (Access) keywords: vbaac10.chm14636 f1_keywords: - vbaac10.chm14636 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.GridlineTint Property (Access) +# ListBox.GridlineTint property (Access) Gets or sets the tint applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineTint` +_expression_. `GridlineTint` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.GridlineWidthBottom.md b/api/Access.ListBox.GridlineWidthBottom.md index 41f6096fc63..be829223696 100644 --- a/api/Access.ListBox.GridlineWidthBottom.md +++ b/api/Access.ListBox.GridlineWidthBottom.md @@ -1,5 +1,5 @@ --- -title: ListBox.GridlineWidthBottom Property (Access) +title: ListBox.GridlineWidthBottom property (Access) keywords: vbaac10.chm11317 f1_keywords: - vbaac10.chm11317 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.GridlineWidthBottom Property (Access) +# ListBox.GridlineWidthBottom property (Access) Gets or sets the width of the bottom gridline for the specified list box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthBottom` +_expression_. `GridlineWidthBottom` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.GridlineWidthLeft.md b/api/Access.ListBox.GridlineWidthLeft.md index fee285e43bf..d5c0dbd4613 100644 --- a/api/Access.ListBox.GridlineWidthLeft.md +++ b/api/Access.ListBox.GridlineWidthLeft.md @@ -1,5 +1,5 @@ --- -title: ListBox.GridlineWidthLeft Property (Access) +title: ListBox.GridlineWidthLeft property (Access) keywords: vbaac10.chm11314 f1_keywords: - vbaac10.chm11314 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.GridlineWidthLeft Property (Access) +# ListBox.GridlineWidthLeft property (Access) Gets or sets the width of the left gridline for the specified list box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthLeft` +_expression_. `GridlineWidthLeft` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.GridlineWidthRight.md b/api/Access.ListBox.GridlineWidthRight.md index a117605ed01..d913ad1b07c 100644 --- a/api/Access.ListBox.GridlineWidthRight.md +++ b/api/Access.ListBox.GridlineWidthRight.md @@ -1,5 +1,5 @@ --- -title: ListBox.GridlineWidthRight Property (Access) +title: ListBox.GridlineWidthRight property (Access) keywords: vbaac10.chm11316 f1_keywords: - vbaac10.chm11316 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.GridlineWidthRight Property (Access) +# ListBox.GridlineWidthRight property (Access) Gets or sets the width of the right gridline for the specified list box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthRight` +_expression_. `GridlineWidthRight` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.GridlineWidthTop.md b/api/Access.ListBox.GridlineWidthTop.md index fb65decd397..8f2bf3b9227 100644 --- a/api/Access.ListBox.GridlineWidthTop.md +++ b/api/Access.ListBox.GridlineWidthTop.md @@ -1,5 +1,5 @@ --- -title: ListBox.GridlineWidthTop Property (Access) +title: ListBox.GridlineWidthTop property (Access) keywords: vbaac10.chm11315 f1_keywords: - vbaac10.chm11315 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.GridlineWidthTop Property (Access) +# ListBox.GridlineWidthTop property (Access) Gets or sets the width of the top gridline for the specified list box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthTop` +_expression_. `GridlineWidthTop` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Height.md b/api/Access.ListBox.Height.md index 7844326e26c..0bf91ff440e 100644 --- a/api/Access.ListBox.Height.md +++ b/api/Access.ListBox.Height.md @@ -1,5 +1,5 @@ --- -title: ListBox.Height Property (Access) +title: ListBox.Height property (Access) keywords: vbaac10.chm11244 f1_keywords: - vbaac10.chm11244 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Height Property (Access) +# ListBox.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.HelpContextId.md b/api/Access.ListBox.HelpContextId.md index c6b69facfb7..43b7301e9ce 100644 --- a/api/Access.ListBox.HelpContextId.md +++ b/api/Access.ListBox.HelpContextId.md @@ -1,5 +1,5 @@ --- -title: ListBox.HelpContextId Property (Access) +title: ListBox.HelpContextId property (Access) keywords: vbaac10.chm11262 f1_keywords: - vbaac10.chm11262 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.HelpContextId Property (Access) +# ListBox.HelpContextId property (Access) The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**. ## Syntax - _expression_. `HelpContextId` +_expression_. `HelpContextId` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.HideDuplicates.md b/api/Access.ListBox.HideDuplicates.md index 3ee2f2b7170..7adc34dbd7b 100644 --- a/api/Access.ListBox.HideDuplicates.md +++ b/api/Access.ListBox.HideDuplicates.md @@ -1,5 +1,5 @@ --- -title: ListBox.HideDuplicates Property (Access) +title: ListBox.HideDuplicates property (Access) keywords: vbaac10.chm11240 f1_keywords: - vbaac10.chm11240 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.HideDuplicates Property (Access) +# ListBox.HideDuplicates property (Access) You can use the **HideDuplicates** property to hide a control on a report when its value is the same as in the preceding record. Read/write **Boolean**. ## Syntax - _expression_. `HideDuplicates` +_expression_. `HideDuplicates` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.HorizontalAnchor.md b/api/Access.ListBox.HorizontalAnchor.md index ec587123c1c..bd0793fb47a 100644 --- a/api/Access.ListBox.HorizontalAnchor.md +++ b/api/Access.ListBox.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: ListBox.HorizontalAnchor Property (Access) +title: ListBox.HorizontalAnchor property (Access) keywords: vbaac10.chm11319 f1_keywords: - vbaac10.chm11319 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.HorizontalAnchor Property (Access) +# ListBox.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the list box is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Hyperlink.md b/api/Access.ListBox.Hyperlink.md index c11cf400b8e..d28b15ebc3e 100644 --- a/api/Access.ListBox.Hyperlink.md +++ b/api/Access.ListBox.Hyperlink.md @@ -1,5 +1,5 @@ --- -title: ListBox.Hyperlink Property (Access) +title: ListBox.Hyperlink property (Access) keywords: vbaac10.chm11216 f1_keywords: - vbaac10.chm11216 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Hyperlink Property (Access) +# ListBox.Hyperlink property (Access) You can use the **Hyperlink** property to return a reference to a **Hyperlink** object. You can use the **Hyperlink** property to access the properties and methods of a control's hyperlink. Read-only. ## Syntax - _expression_. `Hyperlink` +_expression_. `Hyperlink` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Example diff --git a/api/Access.ListBox.IMEHold.md b/api/Access.ListBox.IMEHold.md index 97258c17d93..e8adf6c82f2 100644 --- a/api/Access.ListBox.IMEHold.md +++ b/api/Access.ListBox.IMEHold.md @@ -1,5 +1,5 @@ --- -title: ListBox.IMEHold Property (Access) +title: ListBox.IMEHold property (Access) keywords: vbaac10.chm11229 f1_keywords: - vbaac10.chm11229 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.IMEHold Property (Access) +# ListBox.IMEHold property (Access) [Language-specific information](overview/learn-about-language-specific-information-access.md)You can use the **IMEHold/Hold KanjiConversionMode** property to show whether the Kanji Conversion Mode is maintained when the control loses the focus. Read/write **Boolean**. ## Syntax - _expression_. `IMEHold` +_expression_. `IMEHold` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.IMEMode.md b/api/Access.ListBox.IMEMode.md index 9368589f7d0..1d5ae460357 100644 --- a/api/Access.ListBox.IMEMode.md +++ b/api/Access.ListBox.IMEMode.md @@ -1,5 +1,5 @@ --- -title: ListBox.IMEMode Property (Access) +title: ListBox.IMEMode property (Access) keywords: vbaac10.chm11296 f1_keywords: - vbaac10.chm11296 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ListBox.IMEMode Property (Access) +# ListBox.IMEMode property (Access) @@ -19,9 +19,9 @@ ms.date: 06/08/2017 ## Syntax - _expression_. `IMEMode` +_expression_. `IMEMode` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.IMESentenceMode.md b/api/Access.ListBox.IMESentenceMode.md index b5f1e0d3ebc..256217a07a3 100644 --- a/api/Access.ListBox.IMESentenceMode.md +++ b/api/Access.ListBox.IMESentenceMode.md @@ -1,5 +1,5 @@ --- -title: ListBox.IMESentenceMode Property (Access) +title: ListBox.IMESentenceMode property (Access) keywords: vbaac10.chm11298 f1_keywords: - vbaac10.chm11298 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ListBox.IMESentenceMode Property (Access) +# ListBox.IMESentenceMode property (Access) @@ -19,14 +19,14 @@ ms.date: 06/08/2017 ## Syntax - _expression_. `IMESentenceMode` +_expression_. `IMESentenceMode` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks -The **IMESentenceMode** property accepts the [AcImeSentenceMode Enumeration (Access)](Access.AcImeSentenceMode.md) enumeration. +The **IMESentenceMode** property accepts the [AcImeSentenceMode enumeration (Access)](Access.AcImeSentenceMode.md) enumeration. diff --git a/api/Access.ListBox.InSelection.md b/api/Access.ListBox.InSelection.md index b99363199f3..460c26fce20 100644 --- a/api/Access.ListBox.InSelection.md +++ b/api/Access.ListBox.InSelection.md @@ -1,5 +1,5 @@ --- -title: ListBox.InSelection Property (Access) +title: ListBox.InSelection property (Access) keywords: vbaac10.chm11277 f1_keywords: - vbaac10.chm11277 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.InSelection Property (Access) +# ListBox.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.InheritValueList.md b/api/Access.ListBox.InheritValueList.md index e9be29ce664..407d274bad8 100644 --- a/api/Access.ListBox.InheritValueList.md +++ b/api/Access.ListBox.InheritValueList.md @@ -1,5 +1,5 @@ --- -title: ListBox.InheritValueList Property (Access) +title: ListBox.InheritValueList property (Access) keywords: vbaac10.chm11337 f1_keywords: - vbaac10.chm11337 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.InheritValueList Property (Access) +# ListBox.InheritValueList property (Access) Gets or sets whether a list box's value list is inherited from its field. Read/write **Boolean**. ## Syntax - _expression_. `InheritValueList` +_expression_. `InheritValueList` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.IsVisible.md b/api/Access.ListBox.IsVisible.md index 0dd4dc5947c..dedd4332d46 100644 --- a/api/Access.ListBox.IsVisible.md +++ b/api/Access.ListBox.IsVisible.md @@ -1,5 +1,5 @@ --- -title: ListBox.IsVisible Property (Access) +title: ListBox.IsVisible property (Access) keywords: vbaac10.chm11276 f1_keywords: - vbaac10.chm11276 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.IsVisible Property (Access) +# ListBox.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ItemData.md b/api/Access.ListBox.ItemData.md index ade8e52eef6..3b1b28ebeb1 100644 --- a/api/Access.ListBox.ItemData.md +++ b/api/Access.ListBox.ItemData.md @@ -1,5 +1,5 @@ --- -title: ListBox.ItemData Property (Access) +title: ListBox.ItemData property (Access) keywords: vbaac10.chm11209 f1_keywords: - vbaac10.chm11209 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ListBox.ItemData Property (Access) +# ListBox.ItemData property (Access) The **ItemData** property returns the data in the bound column for the specified row in a list box. Read-only **Variant**. ## Syntax - _expression_. `ItemData`( ` _Index_` ) +_expression_. `ItemData`( ` _Index_` ) - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required|**Long**|The row in the combo box or list box containing the data you want to return. Rows in combo and list boxes are indexed starting with zero. For example, to return the item in the sixth row of a combo box, you'd specify 5 for the _rowindex_ argument.| diff --git a/api/Access.ListBox.ItemsSelected.md b/api/Access.ListBox.ItemsSelected.md index 79699bc3593..92d93267ce7 100644 --- a/api/Access.ListBox.ItemsSelected.md +++ b/api/Access.ListBox.ItemsSelected.md @@ -1,5 +1,5 @@ --- -title: ListBox.ItemsSelected Property (Access) +title: ListBox.ItemsSelected property (Access) keywords: vbaac10.chm11215 f1_keywords: - vbaac10.chm11215 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ItemsSelected Property (Access) +# ListBox.ItemsSelected property (Access) You can use the **ItemsSelected** property to return a read-only reference to the hidden **ItemsSelected** collection. This hidden collection can be used to access data in the selected rows of a multiselect list box control. ## Syntax - _expression_. `ItemsSelected` +_expression_. `ItemsSelected` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.KeyDown.md b/api/Access.ListBox.KeyDown.md index 07c4f053387..e32a52f2aae 100644 --- a/api/Access.ListBox.KeyDown.md +++ b/api/Access.ListBox.KeyDown.md @@ -1,5 +1,5 @@ --- -title: ListBox.KeyDown Event (Access) +title: ListBox.KeyDown event (Access) keywords: vbaac10.chm14182 f1_keywords: - vbaac10.chm14182 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ListBox.KeyDown Event (Access) +# ListBox.KeyDown event (Access) The **KeyDown** event occurs when the user presses a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|A key code, such as **vbKeyF1** (the F1 key) or **vbKeyHome** (the HOME key). To specify key codes, use the intrinsic constants shown in the Object Browser. You can prevent an object from receiving a keystroke by setting KeyCode to 0.| | _Shift_|Required|**Integer**|The state of the SHIFT, CTRL, and ALT keys at the time of the event. If you need to test for the Shift argument, you can use one of the following intrinsic constants as bit masks: diff --git a/api/Access.ListBox.KeyPress.md b/api/Access.ListBox.KeyPress.md index 6d81b4f0d1a..b6246258740 100644 --- a/api/Access.ListBox.KeyPress.md +++ b/api/Access.ListBox.KeyPress.md @@ -1,5 +1,5 @@ --- -title: ListBox.KeyPress Event (Access) +title: ListBox.KeyPress event (Access) keywords: vbaac10.chm14183 f1_keywords: - vbaac10.chm14183 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ListBox.KeyPress Event (Access) +# ListBox.KeyPress event (Access) The **KeyPress** event occurs when the user presses and releases a key or key combination that corresponds to an ANSI code while a form or control has the focus. This event also occurs if you send an ANSI keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyPress`( ` _KeyAscii_` ) +_expression_. `KeyPress`( ` _KeyAscii_` ) - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyAscii_|Required|**Integer**| Returns a numeric ANSI key code. The _KeyAscii_ argument is passed by reference; changing it sends a different character to the object. Setting the _KeyAscii_ argument to 0 cancels the keystroke so that the object doesn't recognize that a key was pressed.| diff --git a/api/Access.ListBox.KeyUp.md b/api/Access.ListBox.KeyUp.md index 8551d4de2e6..a1737751d51 100644 --- a/api/Access.ListBox.KeyUp.md +++ b/api/Access.ListBox.KeyUp.md @@ -1,5 +1,5 @@ --- -title: ListBox.KeyUp Event (Access) +title: ListBox.KeyUp event (Access) keywords: vbaac10.chm14184 f1_keywords: - vbaac10.chm14184 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ListBox.KeyUp Event (Access) +# ListBox.KeyUp event (Access) The **KeyUp** event occurs when the user releases a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|A key code, such as **vbKeyF1** (the F1 key) or **vbKeyHome** (the HOME key). To specify key codes, use the intrinsic constants shown in the Object Browser. You can prevent an object from receiving a keystroke by setting KeyCode to 0.| | _Shift_|Required|**Integer**|The state of the SHIFT, CTRL, and ALT keys at the time of the event. If you need to test for the Shift argument, you can use one of the following intrinsic constants as bit masks: diff --git a/api/Access.ListBox.LabelAlign.md b/api/Access.ListBox.LabelAlign.md index 50e93196fd9..a53e8621380 100644 --- a/api/Access.ListBox.LabelAlign.md +++ b/api/Access.ListBox.LabelAlign.md @@ -1,5 +1,5 @@ --- -title: ListBox.LabelAlign Property (Access) +title: ListBox.LabelAlign property (Access) keywords: vbaac10.chm11270 f1_keywords: - vbaac10.chm11270 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.LabelAlign Property (Access) +# ListBox.LabelAlign property (Access) The property specifies the text alignment within attached labels on new controls. Read/write **Byte**. ## Syntax - _expression_. `LabelAlign` +_expression_. `LabelAlign` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.LabelX.md b/api/Access.ListBox.LabelX.md index bcf1d74df31..14850d01ac4 100644 --- a/api/Access.ListBox.LabelX.md +++ b/api/Access.ListBox.LabelX.md @@ -1,5 +1,5 @@ --- -title: ListBox.LabelX Property (Access) +title: ListBox.LabelX property (Access) keywords: vbaac10.chm11268 f1_keywords: - vbaac10.chm11268 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ListBox.LabelX Property (Access) +# ListBox.LabelX property (Access) The **LabelX** property (along with the **LabelY** property) specifies the placement of the label for a new control. Read/write **Integer**. @@ -19,9 +19,9 @@ The **LabelX** property (along with the **LabelY** property) specifies the plac ## Syntax - _expression_. `LabelX` +_expression_. `LabelX` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.LabelY.md b/api/Access.ListBox.LabelY.md index 2287d983fa6..f9d63244b45 100644 --- a/api/Access.ListBox.LabelY.md +++ b/api/Access.ListBox.LabelY.md @@ -1,5 +1,5 @@ --- -title: ListBox.LabelY Property (Access) +title: ListBox.LabelY property (Access) keywords: vbaac10.chm11269 f1_keywords: - vbaac10.chm11269 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ListBox.LabelY Property (Access) +# ListBox.LabelY property (Access) The **LabelY** property (along with the **LabelX** property) specifies the placement of the label for a new control. Read/write **Integer**. @@ -19,9 +19,9 @@ The **LabelY** property (along with the **LabelX** property) specifies the plac ## Syntax - _expression_. `LabelY` +_expression_. `LabelY` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Layout.md b/api/Access.ListBox.Layout.md index 1eb1cb19f32..953c183bf04 100644 --- a/api/Access.ListBox.Layout.md +++ b/api/Access.ListBox.Layout.md @@ -1,5 +1,5 @@ --- -title: ListBox.Layout Property (Access) +title: ListBox.Layout property (Access) keywords: vbaac10.chm11305 f1_keywords: - vbaac10.chm11305 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Layout Property (Access) +# ListBox.Layout property (Access) Returns the type of layout for the specified list box. Read-only **[AcLayoutType](Access.AcLayoutType.md)**. ## Syntax - _expression_. `Layout` +_expression_. `Layout` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## See also diff --git a/api/Access.ListBox.LayoutID.md b/api/Access.ListBox.LayoutID.md index a438b611a22..9c7bad2d819 100644 --- a/api/Access.ListBox.LayoutID.md +++ b/api/Access.ListBox.LayoutID.md @@ -1,5 +1,5 @@ --- -title: ListBox.LayoutID Property (Access) +title: ListBox.LayoutID property (Access) keywords: vbaac10.chm11338 f1_keywords: - vbaac10.chm11338 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.LayoutID Property (Access) +# ListBox.LayoutID property (Access) Returns the unique identifier for the layout that contains the specified list box. Read-only **Long**. ## Syntax - _expression_. `LayoutID` +_expression_. `LayoutID` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Left.md b/api/Access.ListBox.Left.md index 69b7c184b97..c180c6e18bb 100644 --- a/api/Access.ListBox.Left.md +++ b/api/Access.ListBox.Left.md @@ -1,5 +1,5 @@ --- -title: ListBox.Left Property (Access) +title: ListBox.Left property (Access) keywords: vbaac10.chm11241 f1_keywords: - vbaac10.chm11241 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Left Property (Access) +# ListBox.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.LeftPadding.md b/api/Access.ListBox.LeftPadding.md index f7ceb92241b..85615025218 100644 --- a/api/Access.ListBox.LeftPadding.md +++ b/api/Access.ListBox.LeftPadding.md @@ -1,5 +1,5 @@ --- -title: ListBox.LeftPadding Property (Access) +title: ListBox.LeftPadding property (Access) keywords: vbaac10.chm11306 f1_keywords: - vbaac10.chm11306 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.LeftPadding Property (Access) +# ListBox.LeftPadding property (Access) Gets or sets the amount of space (in inches) between the list box and its left gridline. Read/write **Integer**. ## Syntax - _expression_. `LeftPadding` +_expression_. `LeftPadding` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## See also diff --git a/api/Access.ListBox.ListCount.md b/api/Access.ListBox.ListCount.md index 2aa54d3c3f1..452e7c51bbc 100644 --- a/api/Access.ListBox.ListCount.md +++ b/api/Access.ListBox.ListCount.md @@ -1,5 +1,5 @@ --- -title: ListBox.ListCount Property (Access) +title: ListBox.ListCount property (Access) keywords: vbaac10.chm11274 f1_keywords: - vbaac10.chm11274 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ListCount Property (Access) +# ListBox.ListCount property (Access) You can use the **ListCount** property to determine the number of rows in a list box. Read/write **Long**. ## Syntax - _expression_. `ListCount` +_expression_. `ListCount` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ListIndex.md b/api/Access.ListBox.ListIndex.md index 5228f8a4bb0..5a8c1ca2b0a 100644 --- a/api/Access.ListBox.ListIndex.md +++ b/api/Access.ListBox.ListIndex.md @@ -1,5 +1,5 @@ --- -title: ListBox.ListIndex Property (Access) +title: ListBox.ListIndex property (Access) keywords: vbaac10.chm11275 f1_keywords: - vbaac10.chm11275 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ListIndex Property (Access) +# ListBox.ListIndex property (Access) You can use the **ListIndex** property to determine which item is selected in a list box. Read/write **Long**. ## Syntax - _expression_. `ListIndex` +_expression_. `ListIndex` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ListItemsEditForm.md b/api/Access.ListBox.ListItemsEditForm.md index d88642780ac..5188ba37727 100644 --- a/api/Access.ListBox.ListItemsEditForm.md +++ b/api/Access.ListBox.ListItemsEditForm.md @@ -1,5 +1,5 @@ --- -title: ListBox.ListItemsEditForm Property (Access) +title: ListBox.ListItemsEditForm property (Access) keywords: vbaac10.chm11336 f1_keywords: - vbaac10.chm11336 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ListItemsEditForm Property (Access) +# ListBox.ListItemsEditForm property (Access) Gets or sets the name of the form that is displayed when the user clicks **Edit List Items**. Read/write **String**. ## Syntax - _expression_. `ListItemsEditForm` +_expression_. `ListItemsEditForm` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Locked.md b/api/Access.ListBox.Locked.md index 24306cc0501..929e89df8af 100644 --- a/api/Access.ListBox.Locked.md +++ b/api/Access.ListBox.Locked.md @@ -1,5 +1,5 @@ --- -title: ListBox.Locked Property (Access) +title: ListBox.Locked property (Access) keywords: vbaac10.chm11236 f1_keywords: - vbaac10.chm11236 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Locked Property (Access) +# ListBox.Locked property (Access) The **Locked** property specifies whether you can edit data in a control in Form view. Read/write **Boolean**. ## Syntax - _expression_. `Locked` +_expression_. `Locked` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.LostFocus.md b/api/Access.ListBox.LostFocus.md index 7c43073a1c1..1455e285f45 100644 --- a/api/Access.ListBox.LostFocus.md +++ b/api/Access.ListBox.LostFocus.md @@ -1,5 +1,5 @@ --- -title: ListBox.LostFocus Event (Access) +title: ListBox.LostFocus event (Access) keywords: vbaac10.chm14176 f1_keywords: - vbaac10.chm14176 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.LostFocus Event (Access) +# ListBox.LostFocus event (Access) The **LostFocus** event occurs when the specified object loses the focus. ## Syntax - _expression_. `LostFocus` +_expression_. `LostFocus` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.MouseDown.md b/api/Access.ListBox.MouseDown.md index 86150d15583..98f1d534740 100644 --- a/api/Access.ListBox.MouseDown.md +++ b/api/Access.ListBox.MouseDown.md @@ -1,5 +1,5 @@ --- -title: ListBox.MouseDown Event (Access) +title: ListBox.MouseDown event (Access) keywords: vbaac10.chm14179 f1_keywords: - vbaac10.chm14179 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ListBox.MouseDown Event (Access) +# ListBox.MouseDown event (Access) The **MouseDown** event occurs when the user presses a mouse button. ## Syntax - _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.ListBox.MouseMove.md b/api/Access.ListBox.MouseMove.md index 120b29c9d74..c797109436e 100644 --- a/api/Access.ListBox.MouseMove.md +++ b/api/Access.ListBox.MouseMove.md @@ -1,5 +1,5 @@ --- -title: ListBox.MouseMove Event (Access) +title: ListBox.MouseMove event (Access) keywords: vbaac10.chm14180 f1_keywords: - vbaac10.chm14180 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ListBox.MouseMove Event (Access) +# ListBox.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.ListBox.MouseUp.md b/api/Access.ListBox.MouseUp.md index 462f582eafb..306b6fd0812 100644 --- a/api/Access.ListBox.MouseUp.md +++ b/api/Access.ListBox.MouseUp.md @@ -1,5 +1,5 @@ --- -title: ListBox.MouseUp Event (Access) +title: ListBox.MouseUp event (Access) keywords: vbaac10.chm14181 f1_keywords: - vbaac10.chm14181 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ListBox.MouseUp Event (Access) +# ListBox.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.ListBox.Move.md b/api/Access.ListBox.Move.md index b1c3e505bc8..35711fdc6d8 100644 --- a/api/Access.ListBox.Move.md +++ b/api/Access.ListBox.Move.md @@ -1,5 +1,5 @@ --- -title: ListBox.Move Method (Access) +title: ListBox.Move method (Access) keywords: vbaac10.chm11299 f1_keywords: - vbaac10.chm11299 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ListBox.Move Method (Access) +# ListBox.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.ListBox.MultiSelect.md b/api/Access.ListBox.MultiSelect.md index d72d14412ce..1b48bcfbdba 100644 --- a/api/Access.ListBox.MultiSelect.md +++ b/api/Access.ListBox.MultiSelect.md @@ -1,5 +1,5 @@ --- -title: ListBox.MultiSelect Property (Access) +title: ListBox.MultiSelect property (Access) keywords: vbaac10.chm11237,vbaac10.chm4432 f1_keywords: - vbaac10.chm11237,vbaac10.chm4432 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.MultiSelect Property (Access) +# ListBox.MultiSelect property (Access) You can use the **MultiSelect** property to specify whether a user can make multiple selections in a list box on a form and how the multiple selections can be made. Read/write **Byte**. ## Syntax - _expression_. `MultiSelect` +_expression_. `MultiSelect` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Name.md b/api/Access.ListBox.Name.md index 8ecbdd9cd11..722cec0772a 100644 --- a/api/Access.ListBox.Name.md +++ b/api/Access.ListBox.Name.md @@ -1,5 +1,5 @@ --- -title: ListBox.Name Property (Access) +title: ListBox.Name property (Access) keywords: vbaac10.chm11297 f1_keywords: - vbaac10.chm11297 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Name Property (Access) +# ListBox.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.NumeralShapes.md b/api/Access.ListBox.NumeralShapes.md index 032215b8183..742ffcdd8e6 100644 --- a/api/Access.ListBox.NumeralShapes.md +++ b/api/Access.ListBox.NumeralShapes.md @@ -1,5 +1,5 @@ --- -title: ListBox.NumeralShapes Property (Access) +title: ListBox.NumeralShapes property (Access) keywords: vbaac10.chm11295 f1_keywords: - vbaac10.chm11295 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ListBox.NumeralShapes Property (Access) +# ListBox.NumeralShapes property (Access) @@ -19,9 +19,9 @@ ms.date: 06/08/2017 ## Syntax - _expression_. `NumeralShapes` +_expression_. `NumeralShapes` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.OldBorderStyle.md b/api/Access.ListBox.OldBorderStyle.md index 56adf8ab587..30525182d2c 100644 --- a/api/Access.ListBox.OldBorderStyle.md +++ b/api/Access.ListBox.OldBorderStyle.md @@ -1,5 +1,5 @@ --- -title: ListBox.OldBorderStyle Property (Access) +title: ListBox.OldBorderStyle property (Access) keywords: vbaac10.chm11248 f1_keywords: - vbaac10.chm11248 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.OldBorderStyle Property (Access) +# ListBox.OldBorderStyle property (Access) You can use this property to set or returns the unedited value of the **BorderStyle** property for a form or control. This property is useful if you need to revert to an unedited or preferred border style. Read/write **Byte**. ## Syntax - _expression_. `OldBorderStyle` +_expression_. `OldBorderStyle` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.OldValue.md b/api/Access.ListBox.OldValue.md index a89352faf31..13f731575f3 100644 --- a/api/Access.ListBox.OldValue.md +++ b/api/Access.ListBox.OldValue.md @@ -1,5 +1,5 @@ --- -title: ListBox.OldValue Property (Access) +title: ListBox.OldValue property (Access) keywords: vbaac10.chm11208 f1_keywords: - vbaac10.chm11208 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.OldValue Property (Access) +# ListBox.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.OnClick.md b/api/Access.ListBox.OnClick.md index 56877ebade6..679cc3ba3ca 100644 --- a/api/Access.ListBox.OnClick.md +++ b/api/Access.ListBox.OnClick.md @@ -1,5 +1,5 @@ --- -title: ListBox.OnClick Property (Access) +title: ListBox.OnClick property (Access) keywords: vbaac10.chm11284 f1_keywords: - vbaac10.chm11284 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.OnClick Property (Access) +# ListBox.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ListBox.OnDblClick.md b/api/Access.ListBox.OnDblClick.md index 3b859088ec8..4b6a6732c4c 100644 --- a/api/Access.ListBox.OnDblClick.md +++ b/api/Access.ListBox.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: ListBox.OnDblClick Property (Access) +title: ListBox.OnDblClick property (Access) keywords: vbaac10.chm11285 f1_keywords: - vbaac10.chm11285 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.OnDblClick Property (Access) +# ListBox.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ListBox.OnEnter.md b/api/Access.ListBox.OnEnter.md index d79ddb26041..a3606e6ef25 100644 --- a/api/Access.ListBox.OnEnter.md +++ b/api/Access.ListBox.OnEnter.md @@ -1,5 +1,5 @@ --- -title: ListBox.OnEnter Property (Access) +title: ListBox.OnEnter property (Access) keywords: vbaac10.chm11280 f1_keywords: - vbaac10.chm11280 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.OnEnter Property (Access) +# ListBox.OnEnter property (Access) Sets or returns the value of the **On Enter** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnEnter` +_expression_. `OnEnter` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Enter** event occurs before a control actually receives the focus from a The **OnEnter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Enter** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ListBox.OnExit.md b/api/Access.ListBox.OnExit.md index 983b6a5de19..0235d8baba9 100644 --- a/api/Access.ListBox.OnExit.md +++ b/api/Access.ListBox.OnExit.md @@ -1,5 +1,5 @@ --- -title: ListBox.OnExit Property (Access) +title: ListBox.OnExit property (Access) keywords: vbaac10.chm11281 f1_keywords: - vbaac10.chm11281 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.OnExit Property (Access) +# ListBox.OnExit property (Access) Sets or returns the value of the **On Exit** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnExit` +_expression_. `OnExit` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Exit** event occurs just before a control loses the focus to another cont The **OnExit** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Exit** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ListBox.OnGotFocus.md b/api/Access.ListBox.OnGotFocus.md index 4a1d925554e..c8edf0db0fa 100644 --- a/api/Access.ListBox.OnGotFocus.md +++ b/api/Access.ListBox.OnGotFocus.md @@ -1,5 +1,5 @@ --- -title: ListBox.OnGotFocus Property (Access) +title: ListBox.OnGotFocus property (Access) keywords: vbaac10.chm11282 f1_keywords: - vbaac10.chm11282 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.OnGotFocus Property (Access) +# ListBox.OnGotFocus property (Access) Sets or returns the value of the **On Got Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnGotFocus` +_expression_. `OnGotFocus` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **GotFocus** event occurs when the object receives the focus. The **OnGotFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Got Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ListBox.OnKeyDown.md b/api/Access.ListBox.OnKeyDown.md index 4a391132d0a..5a57d96953a 100644 --- a/api/Access.ListBox.OnKeyDown.md +++ b/api/Access.ListBox.OnKeyDown.md @@ -1,5 +1,5 @@ --- -title: ListBox.OnKeyDown Property (Access) +title: ListBox.OnKeyDown property (Access) keywords: vbaac10.chm11289 f1_keywords: - vbaac10.chm11289 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.OnKeyDown Property (Access) +# ListBox.OnKeyDown property (Access) Sets or returns the value of the **On Key Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyDown` +_expression_. `OnKeyDown` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyDown** event occurs when a user presses a key while a form or control The **OnKeyDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ListBox.OnKeyPress.md b/api/Access.ListBox.OnKeyPress.md index d65fd80bf56..41b8fc817a1 100644 --- a/api/Access.ListBox.OnKeyPress.md +++ b/api/Access.ListBox.OnKeyPress.md @@ -1,5 +1,5 @@ --- -title: ListBox.OnKeyPress Property (Access) +title: ListBox.OnKeyPress property (Access) keywords: vbaac10.chm11291 f1_keywords: - vbaac10.chm11291 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.OnKeyPress Property (Access) +# ListBox.OnKeyPress property (Access) Sets or returns the value of the **On Key Press** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyPress` +_expression_. `OnKeyPress` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyPress** event occurs when a user presses a key while a form or control The **OnKeyPress** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Press** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ListBox.OnKeyUp.md b/api/Access.ListBox.OnKeyUp.md index 04454b9357e..2f49edfa1d8 100644 --- a/api/Access.ListBox.OnKeyUp.md +++ b/api/Access.ListBox.OnKeyUp.md @@ -1,5 +1,5 @@ --- -title: ListBox.OnKeyUp Property (Access) +title: ListBox.OnKeyUp property (Access) keywords: vbaac10.chm11290 f1_keywords: - vbaac10.chm11290 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.OnKeyUp Property (Access) +# ListBox.OnKeyUp property (Access) Sets or returns the value of the **On Key Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyUp` +_expression_. `OnKeyUp` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyUp** event occurs when a user presses a key while a form or control ha The **OnKeyUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ListBox.OnLostFocus.md b/api/Access.ListBox.OnLostFocus.md index 309f1000d60..6919bb580f4 100644 --- a/api/Access.ListBox.OnLostFocus.md +++ b/api/Access.ListBox.OnLostFocus.md @@ -1,5 +1,5 @@ --- -title: ListBox.OnLostFocus Property (Access) +title: ListBox.OnLostFocus property (Access) keywords: vbaac10.chm11283 f1_keywords: - vbaac10.chm11283 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.OnLostFocus Property (Access) +# ListBox.OnLostFocus property (Access) Sets or returns the value of the **On Lost Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnLostFocus` +_expression_. `OnLostFocus` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **LostFocus** event occurs when the object loses the focus. The **OnLostFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Lost Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ListBox.OnMouseDown.md b/api/Access.ListBox.OnMouseDown.md index ed60b42b28f..8f15cc02670 100644 --- a/api/Access.ListBox.OnMouseDown.md +++ b/api/Access.ListBox.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: ListBox.OnMouseDown Property (Access) +title: ListBox.OnMouseDown property (Access) keywords: vbaac10.chm11286 f1_keywords: - vbaac10.chm11286 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.OnMouseDown Property (Access) +# ListBox.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ListBox.OnMouseMove.md b/api/Access.ListBox.OnMouseMove.md index 6df4e6e1710..1af686b0ec9 100644 --- a/api/Access.ListBox.OnMouseMove.md +++ b/api/Access.ListBox.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: ListBox.OnMouseMove Property (Access) +title: ListBox.OnMouseMove property (Access) keywords: vbaac10.chm11287 f1_keywords: - vbaac10.chm11287 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.OnMouseMove Property (Access) +# ListBox.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ListBox.OnMouseUp.md b/api/Access.ListBox.OnMouseUp.md index 45fdd77c8a6..8a6ab8ce3f6 100644 --- a/api/Access.ListBox.OnMouseUp.md +++ b/api/Access.ListBox.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: ListBox.OnMouseUp Property (Access) +title: ListBox.OnMouseUp property (Access) keywords: vbaac10.chm11288 f1_keywords: - vbaac10.chm11288 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.OnMouseUp Property (Access) +# ListBox.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ListBox.Parent.md b/api/Access.ListBox.Parent.md index b2dee49ad15..66c35a44a19 100644 --- a/api/Access.ListBox.Parent.md +++ b/api/Access.ListBox.Parent.md @@ -1,5 +1,5 @@ --- -title: ListBox.Parent Property (Access) +title: ListBox.Parent property (Access) keywords: vbaac10.chm11204 f1_keywords: - vbaac10.chm11204 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Parent Property (Access) +# ListBox.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## See also diff --git a/api/Access.ListBox.Properties.md b/api/Access.ListBox.Properties.md index 1063f5d2f82..ad3ab3af2f5 100644 --- a/api/Access.ListBox.Properties.md +++ b/api/Access.ListBox.Properties.md @@ -1,5 +1,5 @@ --- -title: ListBox.Properties Property (Access) +title: ListBox.Properties property (Access) keywords: vbaac10.chm11210 f1_keywords: - vbaac10.chm11210 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Properties Property (Access) +# ListBox.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ReadingOrder.md b/api/Access.ListBox.ReadingOrder.md index 46d72469803..c21936d7657 100644 --- a/api/Access.ListBox.ReadingOrder.md +++ b/api/Access.ListBox.ReadingOrder.md @@ -1,5 +1,5 @@ --- -title: ListBox.ReadingOrder Property (Access) +title: ListBox.ReadingOrder property (Access) keywords: vbaac10.chm11292 f1_keywords: - vbaac10.chm11292 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ReadingOrder Property (Access) +# ListBox.ReadingOrder property (Access) You can use the **ReadingOrder** property to specify or determine the reading order of words in text. Read/write **Byte**. ## Syntax - _expression_. `ReadingOrder` +_expression_. `ReadingOrder` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Recordset.md b/api/Access.ListBox.Recordset.md index 0cc3e2029d5..bbad3b8c091 100644 --- a/api/Access.ListBox.Recordset.md +++ b/api/Access.ListBox.Recordset.md @@ -1,5 +1,5 @@ --- -title: ListBox.Recordset Property (Access) +title: ListBox.Recordset property (Access) keywords: vbaac10.chm11300 f1_keywords: - vbaac10.chm11300 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Recordset Property (Access) +# ListBox.Recordset property (Access) Returns or sets the ADO **Recordset** or DAO **[Recordset](overview/Access.md)** object representing the record source for the specified object. Read/write **Object**. ## Syntax - _expression_. `Recordset` +_expression_. `Recordset` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.RemoveItem.md b/api/Access.ListBox.RemoveItem.md index a2afb9c880f..1a1ea6ac9cf 100644 --- a/api/Access.ListBox.RemoveItem.md +++ b/api/Access.ListBox.RemoveItem.md @@ -1,5 +1,5 @@ --- -title: ListBox.RemoveItem Method (Access) +title: ListBox.RemoveItem method (Access) keywords: vbaac10.chm11302 f1_keywords: - vbaac10.chm11302 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ListBox.RemoveItem Method (Access) +# ListBox.RemoveItem method (Access) Removes an item from the list of values displayed by the specified list box control. ## Syntax - _expression_. `RemoveItem`( ` _Index_` ) +_expression_. `RemoveItem`( ` _Index_` ) - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required|**Variant**|The item to be removed from the list, expressed as either an item number or the list item text.| diff --git a/api/Access.ListBox.Requery.md b/api/Access.ListBox.Requery.md index df6f7f5d408..a292eeb127c 100644 --- a/api/Access.ListBox.Requery.md +++ b/api/Access.ListBox.Requery.md @@ -1,5 +1,5 @@ --- -title: ListBox.Requery Method (Access) +title: ListBox.Requery method (Access) keywords: vbaac10.chm11212 f1_keywords: - vbaac10.chm11212 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Requery Method (Access) +# ListBox.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.RightPadding.md b/api/Access.ListBox.RightPadding.md index 2e62a10b4ba..fe9234517a3 100644 --- a/api/Access.ListBox.RightPadding.md +++ b/api/Access.ListBox.RightPadding.md @@ -1,5 +1,5 @@ --- -title: ListBox.RightPadding Property (Access) +title: ListBox.RightPadding property (Access) keywords: vbaac10.chm11308 f1_keywords: - vbaac10.chm11308 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.RightPadding Property (Access) +# ListBox.RightPadding property (Access) Gets or sets the amount of space (in inches) between the list box and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## See also diff --git a/api/Access.ListBox.RowSource.md b/api/Access.ListBox.RowSource.md index 18eb22a8fcd..d02605f1ed8 100644 --- a/api/Access.ListBox.RowSource.md +++ b/api/Access.ListBox.RowSource.md @@ -1,5 +1,5 @@ --- -title: ListBox.RowSource Property (Access) +title: ListBox.RowSource property (Access) keywords: vbaac10.chm11223 f1_keywords: - vbaac10.chm11223 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.RowSource Property (Access) +# ListBox.RowSource property (Access) You can use the **RowSource** property (along with the **RowSourceType** property) to tell Microsoft Access how to provide data tothe specified object. Read/write **String**. ## Syntax - _expression_. `RowSource` +_expression_. `RowSource` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.RowSourceType.md b/api/Access.ListBox.RowSourceType.md index f70958ecfe2..d02a93e1def 100644 --- a/api/Access.ListBox.RowSourceType.md +++ b/api/Access.ListBox.RowSourceType.md @@ -1,5 +1,5 @@ --- -title: ListBox.RowSourceType Property (Access) +title: ListBox.RowSourceType property (Access) keywords: vbaac10.chm11222 f1_keywords: - vbaac10.chm11222 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.RowSourceType Property (Access) +# ListBox.RowSourceType property (Access) You can use the **RowSourceType** property (along with the **RowSource** property) to tell Microsoft Access how to provide data tothe specified object. Read/write **String**. ## Syntax - _expression_. `RowSourceType` +_expression_. `RowSourceType` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ScrollBarAlign.md b/api/Access.ListBox.ScrollBarAlign.md index b825f031f08..7408672e4c0 100644 --- a/api/Access.ListBox.ScrollBarAlign.md +++ b/api/Access.ListBox.ScrollBarAlign.md @@ -1,5 +1,5 @@ --- -title: ListBox.ScrollBarAlign Property (Access) +title: ListBox.ScrollBarAlign property (Access) keywords: vbaac10.chm11293 f1_keywords: - vbaac10.chm11293 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ScrollBarAlign Property (Access) +# ListBox.ScrollBarAlign property (Access) You can use the **ScrollBarAlign** to specify or determine the alignment of a vertical scroll bar. Read/write **Byte**. ## Syntax - _expression_. `ScrollBarAlign` +_expression_. `ScrollBarAlign` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Section.md b/api/Access.ListBox.Section.md index d84a430e86d..79de1f7ae39 100644 --- a/api/Access.ListBox.Section.md +++ b/api/Access.ListBox.Section.md @@ -1,5 +1,5 @@ --- -title: ListBox.Section Property (Access) +title: ListBox.Section property (Access) keywords: vbaac10.chm11271 f1_keywords: - vbaac10.chm11271 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Section Property (Access) +# ListBox.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Selected.md b/api/Access.ListBox.Selected.md index 326d53bc0bf..f56f37ea529 100644 --- a/api/Access.ListBox.Selected.md +++ b/api/Access.ListBox.Selected.md @@ -1,5 +1,5 @@ --- -title: ListBox.Selected Property (Access) +title: ListBox.Selected property (Access) keywords: vbaac10.chm11207 f1_keywords: - vbaac10.chm11207 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ListBox.Selected Property (Access) +# ListBox.Selected property (Access) You can use the **Selected** property in Visual Basic to determine if an item in a list box is selected. Read/write **Long**. ## Syntax - _expression_. `Selected`( ` _lRow_` ) +_expression_. `Selected`( ` _lRow_` ) - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _lRow_|Required|**Long**|The item in the list box. The first item is represented by a zero (0), the second by a one (1), and so on.| diff --git a/api/Access.ListBox.SetFocus.md b/api/Access.ListBox.SetFocus.md index 89c0375c23c..338ef12ee35 100644 --- a/api/Access.ListBox.SetFocus.md +++ b/api/Access.ListBox.SetFocus.md @@ -1,5 +1,5 @@ --- -title: ListBox.SetFocus Method (Access) +title: ListBox.SetFocus method (Access) keywords: vbaac10.chm11213 f1_keywords: - vbaac10.chm11213 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# ListBox.SetFocus Method (Access) +# ListBox.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.ListBox.ShortcutMenuBar.md b/api/Access.ListBox.ShortcutMenuBar.md index 4ad74aa71a6..44028eb822e 100644 --- a/api/Access.ListBox.ShortcutMenuBar.md +++ b/api/Access.ListBox.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: ListBox.ShortcutMenuBar Property (Access) +title: ListBox.ShortcutMenuBar property (Access) keywords: vbaac10.chm11260 f1_keywords: - vbaac10.chm11260 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ShortcutMenuBar Property (Access) +# ListBox.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ShowOnlyRowSourceValues.md b/api/Access.ListBox.ShowOnlyRowSourceValues.md index beb55daba08..ea94db5f9ef 100644 --- a/api/Access.ListBox.ShowOnlyRowSourceValues.md +++ b/api/Access.ListBox.ShowOnlyRowSourceValues.md @@ -1,5 +1,5 @@ --- -title: ListBox.ShowOnlyRowSourceValues Property (Access) +title: ListBox.ShowOnlyRowSourceValues property (Access) keywords: vbaac10.chm11339 f1_keywords: - vbaac10.chm11339 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ShowOnlyRowSourceValues Property (Access) +# ListBox.ShowOnlyRowSourceValues property (Access) Gets or sets whether the list box can display values that aren't specified by the **RowSource** property. Read/write **Boolean**. ## Syntax - _expression_. `ShowOnlyRowSourceValues` +_expression_. `ShowOnlyRowSourceValues` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## See also diff --git a/api/Access.ListBox.SizeToFit.md b/api/Access.ListBox.SizeToFit.md index 2c2ecb61091..65dc0d62def 100644 --- a/api/Access.ListBox.SizeToFit.md +++ b/api/Access.ListBox.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: ListBox.SizeToFit Method (Access) +title: ListBox.SizeToFit method (Access) keywords: vbaac10.chm11211 f1_keywords: - vbaac10.chm11211 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.SizeToFit Method (Access) +# ListBox.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.SmartTags.md b/api/Access.ListBox.SmartTags.md index b2ccdf6bcfa..de6363ea310 100644 --- a/api/Access.ListBox.SmartTags.md +++ b/api/Access.ListBox.SmartTags.md @@ -1,5 +1,5 @@ --- -title: ListBox.SmartTags Property (Access) +title: ListBox.SmartTags property (Access) keywords: vbaac10.chm11303 f1_keywords: - vbaac10.chm11303 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.SmartTags Property (Access) +# ListBox.SmartTags property (Access) Returns a **[SmartTags](Access.SmartTags.md)** collection that represents the collection of smart tags that have been added to a control. . ## Syntax - _expression_. `SmartTags` +_expression_. `SmartTags` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.SpecialEffect.md b/api/Access.ListBox.SpecialEffect.md index 6f7c6f0b87c..0b7de213fae 100644 --- a/api/Access.ListBox.SpecialEffect.md +++ b/api/Access.ListBox.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: ListBox.SpecialEffect Property (Access) +title: ListBox.SpecialEffect property (Access) keywords: vbaac10.chm11246 f1_keywords: - vbaac10.chm11246 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.SpecialEffect Property (Access) +# ListBox.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.StatusBarText.md b/api/Access.ListBox.StatusBarText.md index 3562de3600c..926125e7af8 100644 --- a/api/Access.ListBox.StatusBarText.md +++ b/api/Access.ListBox.StatusBarText.md @@ -1,5 +1,5 @@ --- -title: ListBox.StatusBarText Property (Access) +title: ListBox.StatusBarText property (Access) keywords: vbaac10.chm11232 f1_keywords: - vbaac10.chm11232 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.StatusBarText Property (Access) +# ListBox.StatusBarText property (Access) You can use the **StatusBarText** property to specify the text that is displayed in the status bar when a control is selected. Read/write **String**. ## Syntax - _expression_. `StatusBarText` +_expression_. `StatusBarText` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.TabIndex.md b/api/Access.ListBox.TabIndex.md index 4c0f223649c..2a3f1b677e0 100644 --- a/api/Access.ListBox.TabIndex.md +++ b/api/Access.ListBox.TabIndex.md @@ -1,5 +1,5 @@ --- -title: ListBox.TabIndex Property (Access) +title: ListBox.TabIndex property (Access) keywords: vbaac10.chm11239 f1_keywords: - vbaac10.chm11239 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.TabIndex Property (Access) +# ListBox.TabIndex property (Access) You can use the **TabIndex** property to specify a control's place in the tab order on a form or report. Read/write **Integer**. ## Syntax - _expression_. `TabIndex` +_expression_. `TabIndex` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.TabStop.md b/api/Access.ListBox.TabStop.md index 0cf6be5408b..57125798ede 100644 --- a/api/Access.ListBox.TabStop.md +++ b/api/Access.ListBox.TabStop.md @@ -1,5 +1,5 @@ --- -title: ListBox.TabStop Property (Access) +title: ListBox.TabStop property (Access) keywords: vbaac10.chm11238 f1_keywords: - vbaac10.chm11238 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.TabStop Property (Access) +# ListBox.TabStop property (Access) You can use the **TabStop** property to specify whether you can use the TAB key to move the focus to a control. Read/write **Boolean**. ## Syntax - _expression_. `TabStop` +_expression_. `TabStop` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Tag.md b/api/Access.ListBox.Tag.md index 9e36cfb8d26..11f0270f46a 100644 --- a/api/Access.ListBox.Tag.md +++ b/api/Access.ListBox.Tag.md @@ -1,5 +1,5 @@ --- -title: ListBox.Tag Property (Access) +title: ListBox.Tag property (Access) keywords: vbaac10.chm11273 f1_keywords: - vbaac10.chm11273 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Tag Property (Access) +# ListBox.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ThemeFontIndex.md b/api/Access.ListBox.ThemeFontIndex.md index 830ea55e871..e5b9128029c 100644 --- a/api/Access.ListBox.ThemeFontIndex.md +++ b/api/Access.ListBox.ThemeFontIndex.md @@ -1,5 +1,5 @@ --- -title: ListBox.ThemeFontIndex Property (Access) +title: ListBox.ThemeFontIndex property (Access) keywords: vbaac10.chm14610 f1_keywords: - vbaac10.chm14610 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ThemeFontIndex Property (Access) +# ListBox.ThemeFontIndex property (Access) Gets or sets the font index that represents a font in the applied theme associated with the **FontName** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `ThemeFontIndex` +_expression_. `ThemeFontIndex` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Top.md b/api/Access.ListBox.Top.md index 674ef4d7002..dbb9dd3bca8 100644 --- a/api/Access.ListBox.Top.md +++ b/api/Access.ListBox.Top.md @@ -1,5 +1,5 @@ --- -title: ListBox.Top Property (Access) +title: ListBox.Top property (Access) keywords: vbaac10.chm11242 f1_keywords: - vbaac10.chm11242 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Top Property (Access) +# ListBox.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.TopPadding.md b/api/Access.ListBox.TopPadding.md index cf37cf72146..5ee6340d6c2 100644 --- a/api/Access.ListBox.TopPadding.md +++ b/api/Access.ListBox.TopPadding.md @@ -1,5 +1,5 @@ --- -title: ListBox.TopPadding Property (Access) +title: ListBox.TopPadding property (Access) keywords: vbaac10.chm11307 f1_keywords: - vbaac10.chm11307 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.TopPadding Property (Access) +# ListBox.TopPadding property (Access) Gets or sets the amount of space (in inches) between the list box and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## See also diff --git a/api/Access.ListBox.Undo.md b/api/Access.ListBox.Undo.md index 42820af270e..2692a36cf70 100644 --- a/api/Access.ListBox.Undo.md +++ b/api/Access.ListBox.Undo.md @@ -1,5 +1,5 @@ --- -title: ListBox.Undo Method (Access) +title: ListBox.Undo method (Access) keywords: vbaac10.chm11205 f1_keywords: - vbaac10.chm11205 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Undo Method (Access) +# ListBox.Undo method (Access) You can use the **Undo** method to reset a control or form when its value has been changed. ## Syntax - _expression_. `Undo` +_expression_. `Undo` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ValidationRule.md b/api/Access.ListBox.ValidationRule.md index 14a0c3e6c3c..db491136a36 100644 --- a/api/Access.ListBox.ValidationRule.md +++ b/api/Access.ListBox.ValidationRule.md @@ -1,5 +1,5 @@ --- -title: ListBox.ValidationRule Property (Access) +title: ListBox.ValidationRule property (Access) keywords: vbaac10.chm11230 f1_keywords: - vbaac10.chm11230 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ValidationRule Property (Access) +# ListBox.ValidationRule property (Access) You can use the **ValidationRule** property to specify requirements for data entered into a record, field, or control. When data is entered that violates the **ValidationRule** setting, you can use the **ValidationText** property to specify the message to be displayed to the user. Read/write **String**. ## Syntax - _expression_. `ValidationRule` +_expression_. `ValidationRule` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.ValidationText.md b/api/Access.ListBox.ValidationText.md index 8349b68f8b2..f16747efa05 100644 --- a/api/Access.ListBox.ValidationText.md +++ b/api/Access.ListBox.ValidationText.md @@ -1,5 +1,5 @@ --- -title: ListBox.ValidationText Property (Access) +title: ListBox.ValidationText property (Access) keywords: vbaac10.chm11231 f1_keywords: - vbaac10.chm11231 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.ValidationText Property (Access) +# ListBox.ValidationText property (Access) Use the **ValidationText** property to specify a message to be displayed to the user when data is entered that violates a **ValidationRule** setting for a record, field, or control. Read/write **String**. ## Syntax - _expression_. `ValidationText` +_expression_. `ValidationText` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Value.md b/api/Access.ListBox.Value.md index a48f8c303ee..84a12727402 100644 --- a/api/Access.ListBox.Value.md +++ b/api/Access.ListBox.Value.md @@ -1,5 +1,5 @@ --- -title: ListBox.Value Property (Access) +title: ListBox.Value property (Access) keywords: vbaac10.chm11217 f1_keywords: - vbaac10.chm11217 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Value Property (Access) +# ListBox.Value property (Access) Determines or specifies which value or option in the list box is selected. Read/write **Variant**. ## Syntax - _expression_. `Value` +_expression_. `Value` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.VerticalAnchor.md b/api/Access.ListBox.VerticalAnchor.md index baaeb466c91..fba83f1e098 100644 --- a/api/Access.ListBox.VerticalAnchor.md +++ b/api/Access.ListBox.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: ListBox.VerticalAnchor Property (Access) +title: ListBox.VerticalAnchor property (Access) keywords: vbaac10.chm11320 f1_keywords: - vbaac10.chm11320 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.VerticalAnchor Property (Access) +# ListBox.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified list box is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Visible.md b/api/Access.ListBox.Visible.md index aefdef7d0d0..d6d1b5777c4 100644 --- a/api/Access.ListBox.Visible.md +++ b/api/Access.ListBox.Visible.md @@ -1,5 +1,5 @@ --- -title: ListBox.Visible Property (Access) +title: ListBox.Visible property (Access) keywords: vbaac10.chm11233 f1_keywords: - vbaac10.chm11233 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Visible Property (Access) +# ListBox.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.Width.md b/api/Access.ListBox.Width.md index ef31fafdbd5..4b8e4aff7d7 100644 --- a/api/Access.ListBox.Width.md +++ b/api/Access.ListBox.Width.md @@ -1,5 +1,5 @@ --- -title: ListBox.Width Property (Access) +title: ListBox.Width property (Access) keywords: vbaac10.chm11243 f1_keywords: - vbaac10.chm11243 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ListBox.Width Property (Access) +# ListBox.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [ListBox](Access.ListBox.md) object. +_expression_ A variable that represents a [ListBox](Access.ListBox.md) object. ## Remarks diff --git a/api/Access.ListBox.md b/api/Access.ListBox.md index 6ac717f19b8..6e58895aca1 100644 --- a/api/Access.ListBox.md +++ b/api/Access.ListBox.md @@ -1,5 +1,5 @@ --- -title: ListBox Object (Access) +title: ListBox object (Access) keywords: vbaac10.chm11354 f1_keywords: - vbaac10.chm11354 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ListBox Object (Access) +# ListBox object (Access) This object corresponds to a list box control. The list box control displays a list of values or alternatives. diff --git a/api/Access.MacroError.Arguments.md b/api/Access.MacroError.Arguments.md index 8bffca464f1..88672439cd3 100644 --- a/api/Access.MacroError.Arguments.md +++ b/api/Access.MacroError.Arguments.md @@ -1,5 +1,5 @@ --- -title: MacroError.Arguments Property (Access) +title: MacroError.Arguments property (Access) keywords: vbaac10.chm14048 f1_keywords: - vbaac10.chm14048 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# MacroError.Arguments Property (Access) +# MacroError.Arguments property (Access) Gets the arguments specified for the macro action that was executing when an error occurred. Read-only **String**. ## Syntax - _expression_. `Arguments` +_expression_. `Arguments` - _expression_ A variable that represents a [MacroError](Access.MacroError.md) object. +_expression_ A variable that represents a [MacroError](Access.MacroError.md) object. ## Remarks diff --git a/api/Access.MacroError.Condition.md b/api/Access.MacroError.Condition.md index 177a5decd7f..89c9f4a3765 100644 --- a/api/Access.MacroError.Condition.md +++ b/api/Access.MacroError.Condition.md @@ -1,5 +1,5 @@ --- -title: MacroError.Condition Property (Access) +title: MacroError.Condition property (Access) keywords: vbaac10.chm14046 f1_keywords: - vbaac10.chm14046 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# MacroError.Condition Property (Access) +# MacroError.Condition property (Access) Gets the condition of the macro action that was executing when an error occurred. Read-only **String**. ## Syntax - _expression_. `Condition` +_expression_. `Condition` - _expression_ A variable that represents a [MacroError](Access.MacroError.md) object. +_expression_ A variable that represents a [MacroError](Access.MacroError.md) object. ## Remarks diff --git a/api/Access.MacroError.Description.md b/api/Access.MacroError.Description.md index 17df5818322..bf812c65e2e 100644 --- a/api/Access.MacroError.Description.md +++ b/api/Access.MacroError.Description.md @@ -1,5 +1,5 @@ --- -title: MacroError.Description Property (Access) +title: MacroError.Description property (Access) keywords: vbaac10.chm14049 f1_keywords: - vbaac10.chm14049 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# MacroError.Description Property (Access) +# MacroError.Description property (Access) Gets the text that represents the current error message. Read-only **String**. ## Syntax - _expression_. `Description` +_expression_. `Description` - _expression_ A variable that represents a [MacroError](Access.MacroError.md) object. +_expression_ A variable that represents a [MacroError](Access.MacroError.md) object. ## Remarks diff --git a/api/Access.MacroError.MacroName.md b/api/Access.MacroError.MacroName.md index 092f77a8f34..f8db0f2247e 100644 --- a/api/Access.MacroError.MacroName.md +++ b/api/Access.MacroError.MacroName.md @@ -1,5 +1,5 @@ --- -title: MacroError.MacroName Property (Access) +title: MacroError.MacroName property (Access) keywords: vbaac10.chm14051 f1_keywords: - vbaac10.chm14051 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# MacroError.MacroName Property (Access) +# MacroError.MacroName property (Access) Gets the name of the macro that was running when an error occurred. Read-only **String**. ## Syntax - _expression_. `MacroName` +_expression_. `MacroName` - _expression_ A variable that represents a [MacroError](Access.MacroError.md) object. +_expression_ A variable that represents a [MacroError](Access.MacroError.md) object. ## Remarks diff --git a/api/Access.MacroError.Number.md b/api/Access.MacroError.Number.md index ab970dc8520..82e00532b42 100644 --- a/api/Access.MacroError.Number.md +++ b/api/Access.MacroError.Number.md @@ -1,5 +1,5 @@ --- -title: MacroError.Number Property (Access) +title: MacroError.Number property (Access) keywords: vbaac10.chm14050 f1_keywords: - vbaac10.chm14050 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# MacroError.Number Property (Access) +# MacroError.Number property (Access) Gets the current error number. Read-only **Long**. ## Syntax - _expression_. `Number` +_expression_. `Number` - _expression_ A variable that represents a [MacroError](Access.MacroError.md) object. +_expression_ A variable that represents a [MacroError](Access.MacroError.md) object. ## Remarks diff --git a/api/Access.MacroError.md b/api/Access.MacroError.md index 28dddb69460..887a58365ec 100644 --- a/api/Access.MacroError.md +++ b/api/Access.MacroError.md @@ -1,5 +1,5 @@ --- -title: MacroError Object (Access) +title: MacroError object (Access) keywords: vbaac10.chm14053 f1_keywords: - vbaac10.chm14053 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# MacroError Object (Access) +# MacroError object (Access) Represents the properties of a run-time error that occurs in a macro. diff --git a/api/Access.Module.AddFromFile.md b/api/Access.Module.AddFromFile.md index 1536446a934..333ab64a914 100644 --- a/api/Access.Module.AddFromFile.md +++ b/api/Access.Module.AddFromFile.md @@ -1,5 +1,5 @@ --- -title: Module.AddFromFile Method (Access) +title: Module.AddFromFile method (Access) keywords: vbaac10.chm12274 f1_keywords: - vbaac10.chm12274 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Module.AddFromFile Method (Access) +# Module.AddFromFile method (Access) The **AddFromFile** method adds the contents of a text file to a **Module** object. The **Module** object may represent a standard module or a class module. ## Syntax - _expression_. `AddFromFile`( ` _FileName_` ) +_expression_. `AddFromFile`( ` _FileName_` ) - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _FileName_|Required|**String**|The name and full path of a text (.txt) file or another file that stores text in an ANSI format.| diff --git a/api/Access.Module.AddFromString.md b/api/Access.Module.AddFromString.md index 7195b89c586..b5248b78556 100644 --- a/api/Access.Module.AddFromString.md +++ b/api/Access.Module.AddFromString.md @@ -1,5 +1,5 @@ --- -title: Module.AddFromString Method (Access) +title: Module.AddFromString method (Access) keywords: vbaac10.chm12273 f1_keywords: - vbaac10.chm12273 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# Module.AddFromString Method (Access) +# Module.AddFromString method (Access) The **AddFromString** method adds a string to a **[Module](Access.Module.md)** object. The **Module** object may represent a standard module or a class module. ## Syntax - _expression_. `AddFromString`( ` _String_` ) +_expression_. `AddFromString`( ` _String_` ) - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _String_|Required|**String**|The information that you want to add to the module.| -### Return Value +### Return value Nothing diff --git a/api/Access.Module.Application.md b/api/Access.Module.Application.md index f14cf7651fd..6b21c2e4ae6 100644 --- a/api/Access.Module.Application.md +++ b/api/Access.Module.Application.md @@ -1,5 +1,5 @@ --- -title: Module.Application Property (Access) +title: Module.Application property (Access) keywords: vbaac10.chm12269 f1_keywords: - vbaac10.chm12269 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Module.Application Property (Access) +# Module.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ## Remarks diff --git a/api/Access.Module.CountOfDeclarationLines.md b/api/Access.Module.CountOfDeclarationLines.md index 93b7bfeee3e..252436c2646 100644 --- a/api/Access.Module.CountOfDeclarationLines.md +++ b/api/Access.Module.CountOfDeclarationLines.md @@ -1,5 +1,5 @@ --- -title: Module.CountOfDeclarationLines Property (Access) +title: Module.CountOfDeclarationLines property (Access) keywords: vbaac10.chm12284 f1_keywords: - vbaac10.chm12284 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Module.CountOfDeclarationLines Property (Access) +# Module.CountOfDeclarationLines property (Access) The **CountOfDeclarationLines** property returns a **Long** value indicating the number of lines of code in the Declarations section in a standard module or class module. Read-only **Long**. ## Syntax - _expression_. `CountOfDeclarationLines` +_expression_. `CountOfDeclarationLines` - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ## Remarks diff --git a/api/Access.Module.CountOfLines.md b/api/Access.Module.CountOfLines.md index c05b7f250b0..12f6561676e 100644 --- a/api/Access.Module.CountOfLines.md +++ b/api/Access.Module.CountOfLines.md @@ -1,5 +1,5 @@ --- -title: Module.CountOfLines Property (Access) +title: Module.CountOfLines property (Access) keywords: vbaac10.chm12276 f1_keywords: - vbaac10.chm12276 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Module.CountOfLines Property (Access) +# Module.CountOfLines property (Access) The **CountOfLines** property returns a **Long** value indicating the number of lines of code in a standard module or class module. Read-only **Long**. ## Syntax - _expression_. `CountOfLines` +_expression_. `CountOfLines` - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ## Remarks diff --git a/api/Access.Module.CreateEventProc.md b/api/Access.Module.CreateEventProc.md index 4a47c60d995..fda78d98675 100644 --- a/api/Access.Module.CreateEventProc.md +++ b/api/Access.Module.CreateEventProc.md @@ -1,5 +1,5 @@ --- -title: Module.CreateEventProc Method (Access) +title: Module.CreateEventProc method (Access) keywords: vbaac10.chm12285 f1_keywords: - vbaac10.chm12285 @@ -11,28 +11,28 @@ ms.date: 06/08/2017 --- -# Module.CreateEventProc Method (Access) +# Module.CreateEventProc method (Access) The **CreateEventProc** method creates an event procedure in a class module. ## Syntax - _expression_. `CreateEventProc`( ` _EventName_`, ` _ObjectName_` ) +_expression_. `CreateEventProc`( ` _EventName_`, ` _ObjectName_` ) - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _EventName_|Required|**String**|The name of an event.| | _ObjectName_|Required|**String**|An object that has the event specified by the _eventname_ argument. If the event procedure is being added to a **[Form](Access.Form.md)**, the word "Form" should be specified for this argument. If the event procedure is being added to a **[Report](Access.Report.md)**, the word "Report" should be specified for this argument. If the event procedure is being added to a **[Control](Access.Control.md)**, the name of the control should be specified for this argument.| -### Return Value +### Return value Long diff --git a/api/Access.Module.DeleteLines.md b/api/Access.Module.DeleteLines.md index 02a915fa21b..d53b8e5e09a 100644 --- a/api/Access.Module.DeleteLines.md +++ b/api/Access.Module.DeleteLines.md @@ -1,5 +1,5 @@ --- -title: Module.DeleteLines Method (Access) +title: Module.DeleteLines method (Access) keywords: vbaac10.chm12278 f1_keywords: - vbaac10.chm12278 @@ -11,28 +11,28 @@ ms.date: 06/08/2017 --- -# Module.DeleteLines Method (Access) +# Module.DeleteLines method (Access) The **DeleteLines** method deletes lines from a standard module or a class module. ## Syntax - _expression_. `DeleteLines`( ` _StartLine_`, ` _Count_` ) +_expression_. `DeleteLines`( ` _StartLine_`, ` _Count_` ) - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _StartLine_|Required|**Long**| The number of the line from which to begin deleting.| | _Count_|Required|**Long**|The number of lines to delete.| -### Return Value +### Return value Nothing diff --git a/api/Access.Module.Find.md b/api/Access.Module.Find.md index e42eb10dd19..264bd0609d1 100644 --- a/api/Access.Module.Find.md +++ b/api/Access.Module.Find.md @@ -1,5 +1,5 @@ --- -title: Module.Find Method (Access) +title: Module.Find method (Access) keywords: vbaac10.chm12286 f1_keywords: - vbaac10.chm12286 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Module.Find Method (Access) +# Module.Find method (Access) Finds specified text in a standard module or class module. ## Syntax - _expression_. `Find`( ` _Target_`, ` _StartLine_`, ` _StartColumn_`, ` _EndLine_`, ` _EndColumn_`, ` _WholeWord_`, ` _MatchCase_`, ` _PatternSearch_` ) +_expression_. `Find`( ` _Target_`, ` _StartLine_`, ` _StartColumn_`, ` _EndLine_`, ` _EndColumn_`, ` _WholeWord_`, ` _MatchCase_`, ` _PatternSearch_` ) - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Target_|Required|**String**|The text that you want to find.| | _StartLine_|Required|**Long**|The line on which to begin searching. If a match is found, the value of the _StartLine_ argument is set to the line on which the beginning character of the matching text is found.| @@ -38,7 +38,7 @@ Finds specified text in a standard module or class module. | _MatchCase_|Optional|**Boolean**|**True** results in a search for words with case matching the _Target_ argument. The default is **False**.| | _PatternSearch_|Optional|**Boolean**|**True** results in a search in which the _Target_ argument may contain wildcard characters such as an asterisk (*) or a question mark (?). The default is **False**.| -### Return Value +### Return value Boolean diff --git a/api/Access.Module.InsertLines.md b/api/Access.Module.InsertLines.md index d2aca5dd8a6..f58caa40dd1 100644 --- a/api/Access.Module.InsertLines.md +++ b/api/Access.Module.InsertLines.md @@ -1,5 +1,5 @@ --- -title: Module.InsertLines Method (Access) +title: Module.InsertLines method (Access) keywords: vbaac10.chm12277 f1_keywords: - vbaac10.chm12277 @@ -11,28 +11,28 @@ ms.date: 06/08/2017 --- -# Module.InsertLines Method (Access) +# Module.InsertLines method (Access) The **InsertLines** method inserts a line or group of lines of code in a standard module or a class module. ## Syntax - _expression_. `InsertLines`( ` _Line_`, ` _String_` ) +_expression_. `InsertLines`( ` _Line_`, ` _String_` ) - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Line_|Required|**Long**|The number of the line at which to begin inserting.| | _String_|Required|**String**|The text to be inserted into the module.| -### Return Value +### Return value Nothing diff --git a/api/Access.Module.InsertText.md b/api/Access.Module.InsertText.md index 2acb9986b55..6a67a0bb2b6 100644 --- a/api/Access.Module.InsertText.md +++ b/api/Access.Module.InsertText.md @@ -1,5 +1,5 @@ --- -title: Module.InsertText Method (Access) +title: Module.InsertText method (Access) keywords: vbaac10.chm12271 f1_keywords: - vbaac10.chm12271 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# Module.InsertText Method (Access) +# Module.InsertText method (Access) The **InsertText** method inserts a specified string of text into a standard module or a class module. ## Syntax - _expression_. `InsertText`( ` _Text_` ) +_expression_. `InsertText`( ` _Text_` ) - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Text_|Required|**String**|The text to be inserted into the module.| -### Return Value +### Return value Nothing diff --git a/api/Access.Module.Lines.md b/api/Access.Module.Lines.md index 01f72c7798a..faf7ef049e3 100644 --- a/api/Access.Module.Lines.md +++ b/api/Access.Module.Lines.md @@ -1,5 +1,5 @@ --- -title: Module.Lines Property (Access) +title: Module.Lines property (Access) keywords: vbaac10.chm12275 f1_keywords: - vbaac10.chm12275 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Module.Lines Property (Access) +# Module.Lines property (Access) The **Lines** property returns a string containing the contents of a specified line or lines in a standard module or a class module. Read-only **String**. ## Syntax - _expression_. `Lines`( ` _Line_`, ` _NumLines_` ) +_expression_. `Lines`( ` _Line_`, ` _NumLines_` ) - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Line_|Required|**Long**|The number of the first line to return.| | _NumLines_|Required|**Long**|The number of lines to return.| diff --git a/api/Access.Module.Name.md b/api/Access.Module.Name.md index 1d46e8f8b3b..b4bcca4c04a 100644 --- a/api/Access.Module.Name.md +++ b/api/Access.Module.Name.md @@ -1,5 +1,5 @@ --- -title: Module.Name Property (Access) +title: Module.Name property (Access) keywords: vbaac10.chm12272 f1_keywords: - vbaac10.chm12272 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Module.Name Property (Access) +# Module.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ## Remarks diff --git a/api/Access.Module.Parent.md b/api/Access.Module.Parent.md index 28c69ce5c41..a95f7430583 100644 --- a/api/Access.Module.Parent.md +++ b/api/Access.Module.Parent.md @@ -1,5 +1,5 @@ --- -title: Module.Parent Property (Access) +title: Module.Parent property (Access) keywords: vbaac10.chm12270 f1_keywords: - vbaac10.chm12270 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Module.Parent Property (Access) +# Module.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ## See also diff --git a/api/Access.Module.ProcBodyLine.md b/api/Access.Module.ProcBodyLine.md index 7d2cb0b197b..1de3cec93b1 100644 --- a/api/Access.Module.ProcBodyLine.md +++ b/api/Access.Module.ProcBodyLine.md @@ -1,5 +1,5 @@ --- -title: Module.ProcBodyLine Property (Access) +title: Module.ProcBodyLine property (Access) keywords: vbaac10.chm12282 f1_keywords: - vbaac10.chm12282 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Module.ProcBodyLine Property (Access) +# Module.ProcBodyLine property (Access) The **ProcBodyLine** property returns the number of the line at which the body of a specified procedure begins in a standard module or a class module. Read-only **Long**. ## Syntax - _expression_. `ProcBodyLine`( ` _ProcName_`, ` _ProcKind_` ) +_expression_. `ProcBodyLine`( ` _ProcName_`, ` _ProcKind_` ) - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ProcName_|Required|**String**|The name of a procedure in the module.| | _ProcKind_|Required|**vbext_ProcKind**|The type of procedure. See the Remarks section for the possible settings.| diff --git a/api/Access.Module.ProcCountLines.md b/api/Access.Module.ProcCountLines.md index 23e13eb5be8..f6cac21609d 100644 --- a/api/Access.Module.ProcCountLines.md +++ b/api/Access.Module.ProcCountLines.md @@ -1,5 +1,5 @@ --- -title: Module.ProcCountLines Property (Access) +title: Module.ProcCountLines property (Access) keywords: vbaac10.chm12281 f1_keywords: - vbaac10.chm12281 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Module.ProcCountLines Property (Access) +# Module.ProcCountLines property (Access) The **ProcCountLines** property returns the number of lines in a specified procedure in a standard module or a class module. Read-only **Long**. ## Syntax - _expression_. `ProcCountLines`( ` _ProcName_`, ` _ProcKind_` ) +_expression_. `ProcCountLines`( ` _ProcName_`, ` _ProcKind_` ) - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ProcName_|Required|**String**|The name of a procedure in the module.| | _ProcKind_|Required|**vbext_ProcKind**|The type of procedure. See the Remarks section for the possible settings.| diff --git a/api/Access.Module.ProcOfLine.md b/api/Access.Module.ProcOfLine.md index 0d000428dee..9e30730a9f3 100644 --- a/api/Access.Module.ProcOfLine.md +++ b/api/Access.Module.ProcOfLine.md @@ -1,5 +1,5 @@ --- -title: Module.ProcOfLine Property (Access) +title: Module.ProcOfLine property (Access) keywords: vbaac10.chm12283 f1_keywords: - vbaac10.chm12283 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Module.ProcOfLine Property (Access) +# Module.ProcOfLine property (Access) The **ProcOfLine** property returns the name of the procedure that contains a specified line in a standard module or a class module. Read-only string. ## Syntax - _expression_. `ProcOfLine`( ` _Line_`, ` _pprockind_` ) +_expression_. `ProcOfLine`( ` _Line_`, ` _pprockind_` ) - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Line_|Required|**Long**|The number of a line in the module.| | _pprockind_|Required|**vbext_ProcKind**|The type of procedure. See the Remarks section for the possible settings.| diff --git a/api/Access.Module.ProcStartLine.md b/api/Access.Module.ProcStartLine.md index 371fa7b0216..6b2fad09220 100644 --- a/api/Access.Module.ProcStartLine.md +++ b/api/Access.Module.ProcStartLine.md @@ -1,5 +1,5 @@ --- -title: Module.ProcStartLine Property (Access) +title: Module.ProcStartLine property (Access) keywords: vbaac10.chm12280 f1_keywords: - vbaac10.chm12280 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Module.ProcStartLine Property (Access) +# Module.ProcStartLine property (Access) The **ProcStartLine** property returns avalue identifying the line at which a specified procedure begins in a standard module or a class module. Read-only **Long**. ## Syntax - _expression_. `ProcStartLine`( ` _ProcName_`, ` _ProcKind_` ) +_expression_. `ProcStartLine`( ` _ProcName_`, ` _ProcKind_` ) - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ProcName_|Required|**String**|The name of a procedure in the module.| | _ProcKind_|Required|**vbext_ProcKind**|The type of procedure. See the Remarks section for the possible settings.| diff --git a/api/Access.Module.ReplaceLine.md b/api/Access.Module.ReplaceLine.md index 5d6329cf97f..10ec08596ab 100644 --- a/api/Access.Module.ReplaceLine.md +++ b/api/Access.Module.ReplaceLine.md @@ -1,5 +1,5 @@ --- -title: Module.ReplaceLine Method (Access) +title: Module.ReplaceLine method (Access) keywords: vbaac10.chm12279 f1_keywords: - vbaac10.chm12279 @@ -11,28 +11,28 @@ ms.date: 06/08/2017 --- -# Module.ReplaceLine Method (Access) +# Module.ReplaceLine method (Access) The **ReplaceLine** method replaces a specified line in a standard module or a class module. ## Syntax - _expression_. `ReplaceLine`( ` _Line_`, ` _String_` ) +_expression_. `ReplaceLine`( ` _Line_`, ` _String_` ) - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Line_|Required|**Long**|The number of the line to be replaced.| | _String_|Required|**String**|The text that is to replace the existing line.| -### Return Value +### Return value Nothing diff --git a/api/Access.Module.Type.md b/api/Access.Module.Type.md index cfec47f2dfe..2d13d95a6de 100644 --- a/api/Access.Module.Type.md +++ b/api/Access.Module.Type.md @@ -1,5 +1,5 @@ --- -title: Module.Type Property (Access) +title: Module.Type property (Access) keywords: vbaac10.chm12287 f1_keywords: - vbaac10.chm12287 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Module.Type Property (Access) +# Module.Type property (Access) Indicates whether a module is a standard module or a class module. Read-only **[AcModuleType](Access.AcModuleType.md)**. ## Syntax - _expression_. `Type` +_expression_. `Type` - _expression_ A variable that represents a [Module](Access.Module.md) object. +_expression_ A variable that represents a [Module](Access.Module.md) object. ## Example diff --git a/api/Access.Module.md b/api/Access.Module.md index f3ddbe3efe4..9db5c1dc6c1 100644 --- a/api/Access.Module.md +++ b/api/Access.Module.md @@ -1,5 +1,5 @@ --- -title: Module Object (Access) +title: Module object (Access) keywords: vbaac10.chm12268 f1_keywords: - vbaac10.chm12268 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Module Object (Access) +# Module object (Access) A **Module** object refers to a standard module or a class module. diff --git a/api/Access.Modules.Application.md b/api/Access.Modules.Application.md index cc60bac3728..945151fe4b7 100644 --- a/api/Access.Modules.Application.md +++ b/api/Access.Modules.Application.md @@ -1,5 +1,5 @@ --- -title: Modules.Application Property (Access) +title: Modules.Application property (Access) keywords: vbaac10.chm12290 f1_keywords: - vbaac10.chm12290 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Modules.Application Property (Access) +# Modules.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [Modules](Access.Modules.md) object. +_expression_ A variable that represents a [Modules](Access.Modules.md) object. ## Remarks diff --git a/api/Access.Modules.Count.md b/api/Access.Modules.Count.md index 04f4ae3e0f5..9e6fd6f1c2c 100644 --- a/api/Access.Modules.Count.md +++ b/api/Access.Modules.Count.md @@ -1,5 +1,5 @@ --- -title: Modules.Count Property (Access) +title: Modules.Count property (Access) keywords: vbaac10.chm12293 f1_keywords: - vbaac10.chm12293 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Modules.Count Property (Access) +# Modules.Count property (Access) You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [Modules](Access.Modules.md) object. +_expression_ A variable that represents a [Modules](Access.Modules.md) object. ## See also diff --git a/api/Access.Modules.Item.md b/api/Access.Modules.Item.md index 510008e0674..1ebad6e6803 100644 --- a/api/Access.Modules.Item.md +++ b/api/Access.Modules.Item.md @@ -1,5 +1,5 @@ --- -title: Modules.Item Property (Access) +title: Modules.Item property (Access) keywords: vbaac10.chm12292 f1_keywords: - vbaac10.chm12292 @@ -11,25 +11,25 @@ ms.date: 06/08/2017 --- -# Modules.Item Property (Access) +# Modules.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **Module**. ## Syntax - _expression_. `Item`( ` _Index_` ) +_expression_. `Item`( ` _Index_` ) - _expression_ A variable that represents a [Modules](Access.Modules.md) object. +_expression_ A variable that represents a [Modules](Access.Modules.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| -| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| +| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| ## Remarks diff --git a/api/Access.Modules.Parent.md b/api/Access.Modules.Parent.md index 4ac98582573..d65798b5a07 100644 --- a/api/Access.Modules.Parent.md +++ b/api/Access.Modules.Parent.md @@ -1,5 +1,5 @@ --- -title: Modules.Parent Property (Access) +title: Modules.Parent property (Access) keywords: vbaac10.chm12291 f1_keywords: - vbaac10.chm12291 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Modules.Parent Property (Access) +# Modules.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [Modules](Access.Modules.md) object. +_expression_ A variable that represents a [Modules](Access.Modules.md) object. ## See also diff --git a/api/Access.Modules.md b/api/Access.Modules.md index 5eb776a4bf5..97e81f8d74d 100644 --- a/api/Access.Modules.md +++ b/api/Access.Modules.md @@ -1,5 +1,5 @@ --- -title: Modules Object (Access) +title: Modules object (Access) keywords: vbaac10.chm12289 f1_keywords: - vbaac10.chm12289 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Modules Object (Access) +# Modules object (Access) The **Modules** collection contains all open standard modules and class modules in a Microsoft Access database. diff --git a/api/Access.NavigationButton.AddColon.md b/api/Access.NavigationButton.AddColon.md index 94afc4a47e5..6d63346d355 100644 --- a/api/Access.NavigationButton.AddColon.md +++ b/api/Access.NavigationButton.AddColon.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.AddColon Property (Access) +title: NavigationButton.AddColon property (Access) keywords: vbaac10.chm10483 f1_keywords: - vbaac10.chm10483 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.AddColon Property (Access) +# NavigationButton.AddColon property (Access) Specifies whether a colon (:) follows the text in labels for new controls. Read/write **Boolean**. ## Syntax - _expression_. `AddColon` +_expression_. `AddColon` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## See also diff --git a/api/Access.NavigationButton.Alignment.md b/api/Access.NavigationButton.Alignment.md index 769d94fbc70..6bbfc1cfff1 100644 --- a/api/Access.NavigationButton.Alignment.md +++ b/api/Access.NavigationButton.Alignment.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Alignment Property (Access) +title: NavigationButton.Alignment property (Access) keywords: vbaac10.chm14292 f1_keywords: - vbaac10.chm14292 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Alignment Property (Access) +# NavigationButton.Alignment property (Access) Gets or sets how the specified button's caption and picture are aligned. Read/write **Byte**. ## Syntax - _expression_. `Alignment` +_expression_. `Alignment` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Application.md b/api/Access.NavigationButton.Application.md index 03cfb6b2da6..0a1a4bd64af 100644 --- a/api/Access.NavigationButton.Application.md +++ b/api/Access.NavigationButton.Application.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Application Property (Access) +title: NavigationButton.Application property (Access) keywords: vbaac10.chm10438 f1_keywords: - vbaac10.chm10438 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Application Property (Access) +# NavigationButton.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.AutoLabel.md b/api/Access.NavigationButton.AutoLabel.md index 933658486ca..58044008a40 100644 --- a/api/Access.NavigationButton.AutoLabel.md +++ b/api/Access.NavigationButton.AutoLabel.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.AutoLabel Property (Access) +title: NavigationButton.AutoLabel property (Access) keywords: vbaac10.chm10482 f1_keywords: - vbaac10.chm10482 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.AutoLabel Property (Access) +# NavigationButton.AutoLabel property (Access) Specifies whether labels are automatically created and attached to new controls. Read/write **Boolean**. ## Syntax - _expression_. `AutoLabel` +_expression_. `AutoLabel` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## See also diff --git a/api/Access.NavigationButton.AutoRepeat.md b/api/Access.NavigationButton.AutoRepeat.md index 8f161159d1f..65ab28c2279 100644 --- a/api/Access.NavigationButton.AutoRepeat.md +++ b/api/Access.NavigationButton.AutoRepeat.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.AutoRepeat Property (Access) +title: NavigationButton.AutoRepeat property (Access) keywords: vbaac10.chm10457 f1_keywords: - vbaac10.chm10457 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.AutoRepeat Property (Access) +# NavigationButton.AutoRepeat property (Access) You can use the **AutoRepeat** property to specify whether an event procedure or macro runs repeatedly while a command button on a form remains pressed in. Read/write **Boolean**. ## Syntax - _expression_. `AutoRepeat` +_expression_. `AutoRepeat` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.BackColor.md b/api/Access.NavigationButton.BackColor.md index ee989af81c5..4705710b730 100644 --- a/api/Access.NavigationButton.BackColor.md +++ b/api/Access.NavigationButton.BackColor.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.BackColor Property (Access) +title: NavigationButton.BackColor property (Access) keywords: vbaac10.chm11076 f1_keywords: - vbaac10.chm11076 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.BackColor Property (Access) +# NavigationButton.BackColor property (Access) Gets or sets the interior color of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackColor` +_expression_. `BackColor` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.BackShade.md b/api/Access.NavigationButton.BackShade.md index a2a3849968c..7d9e7aa3ebd 100644 --- a/api/Access.NavigationButton.BackShade.md +++ b/api/Access.NavigationButton.BackShade.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.BackShade Property (Access) +title: NavigationButton.BackShade property (Access) keywords: vbaac10.chm14633 f1_keywords: - vbaac10.chm14633 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.BackShade Property (Access) +# NavigationButton.BackShade property (Access) Gets or sets the shade applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackShade` +_expression_. `BackShade` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.BackStyle.md b/api/Access.NavigationButton.BackStyle.md index d38ee187b39..5dabaababd7 100644 --- a/api/Access.NavigationButton.BackStyle.md +++ b/api/Access.NavigationButton.BackStyle.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.BackStyle Property (Access) +title: NavigationButton.BackStyle property (Access) keywords: vbaac10.chm10540 f1_keywords: - vbaac10.chm10540 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.BackStyle Property (Access) +# NavigationButton.BackStyle property (Access) You can use the **BackStyle** property to specify whether a control will be transparent. Read/write **Byte**. ## Syntax - _expression_. `BackStyle` +_expression_. `BackStyle` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.BackThemeColorIndex.md b/api/Access.NavigationButton.BackThemeColorIndex.md index 3d13d014420..69d4e078b5a 100644 --- a/api/Access.NavigationButton.BackThemeColorIndex.md +++ b/api/Access.NavigationButton.BackThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.BackThemeColorIndex Property (Access) +title: NavigationButton.BackThemeColorIndex property (Access) keywords: vbaac10.chm14631 f1_keywords: - vbaac10.chm14631 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.BackThemeColorIndex Property (Access) +# NavigationButton.BackThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BackColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackThemeColorIndex` +_expression_. `BackThemeColorIndex` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.BackTint.md b/api/Access.NavigationButton.BackTint.md index 731f8f22a50..fb269f42d43 100644 --- a/api/Access.NavigationButton.BackTint.md +++ b/api/Access.NavigationButton.BackTint.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.BackTint Property (Access) +title: NavigationButton.BackTint property (Access) keywords: vbaac10.chm14632 f1_keywords: - vbaac10.chm14632 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.BackTint Property (Access) +# NavigationButton.BackTint property (Access) Gets or sets the tint that is applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackTint` +_expression_. `BackTint` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Bevel.md b/api/Access.NavigationButton.Bevel.md index 8dda3676b7a..6f01350aa69 100644 --- a/api/Access.NavigationButton.Bevel.md +++ b/api/Access.NavigationButton.Bevel.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Bevel Property (Access) +title: NavigationButton.Bevel property (Access) keywords: vbaac10.chm14629 f1_keywords: - vbaac10.chm14629 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Bevel Property (Access) +# NavigationButton.Bevel property (Access) Gets or sets the bevel effect applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `Bevel` +_expression_. `Bevel` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.BorderColor.md b/api/Access.NavigationButton.BorderColor.md index 321f81a54bb..5f813c9b7a3 100644 --- a/api/Access.NavigationButton.BorderColor.md +++ b/api/Access.NavigationButton.BorderColor.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.BorderColor Property (Access) +title: NavigationButton.BorderColor property (Access) keywords: vbaac10.chm11080 f1_keywords: - vbaac10.chm11080 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.BorderColor Property (Access) +# NavigationButton.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.BorderShade.md b/api/Access.NavigationButton.BorderShade.md index 58452d5453a..c6da0cb0298 100644 --- a/api/Access.NavigationButton.BorderShade.md +++ b/api/Access.NavigationButton.BorderShade.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.BorderShade Property (Access) +title: NavigationButton.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.BorderShade Property (Access) +# NavigationButton.BorderShade property (Access) Gets or sets the shade applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.BorderStyle.md b/api/Access.NavigationButton.BorderStyle.md index ce8e650def0..643c73c2f19 100644 --- a/api/Access.NavigationButton.BorderStyle.md +++ b/api/Access.NavigationButton.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.BorderStyle Property (Access) +title: NavigationButton.BorderStyle property (Access) keywords: vbaac10.chm10204 f1_keywords: - vbaac10.chm10204 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.BorderStyle Property (Access) +# NavigationButton.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.BorderThemeColorIndex.md b/api/Access.NavigationButton.BorderThemeColorIndex.md index 53c4d2fc7f7..e599e075650 100644 --- a/api/Access.NavigationButton.BorderThemeColorIndex.md +++ b/api/Access.NavigationButton.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.BorderThemeColorIndex Property (Access) +title: NavigationButton.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.BorderThemeColorIndex Property (Access) +# NavigationButton.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.BorderTint.md b/api/Access.NavigationButton.BorderTint.md index 608286d2596..f869513c74b 100644 --- a/api/Access.NavigationButton.BorderTint.md +++ b/api/Access.NavigationButton.BorderTint.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.BorderTint Property (Access) +title: NavigationButton.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.BorderTint Property (Access) +# NavigationButton.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.BorderWidth.md b/api/Access.NavigationButton.BorderWidth.md index 357a0518155..f3667787335 100644 --- a/api/Access.NavigationButton.BorderWidth.md +++ b/api/Access.NavigationButton.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.BorderWidth Property (Access) +title: NavigationButton.BorderWidth property (Access) keywords: vbaac10.chm10207 f1_keywords: - vbaac10.chm10207 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.BorderWidth Property (Access) +# NavigationButton.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.BottomPadding.md b/api/Access.NavigationButton.BottomPadding.md index c26edf3ba0c..9e63a8a9902 100644 --- a/api/Access.NavigationButton.BottomPadding.md +++ b/api/Access.NavigationButton.BottomPadding.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.BottomPadding Property (Access) +title: NavigationButton.BottomPadding property (Access) keywords: vbaac10.chm10527 f1_keywords: - vbaac10.chm10527 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.BottomPadding Property (Access) +# NavigationButton.BottomPadding property (Access) Gets or sets the amount of space (in inches) between the list box and its bottom gridline. Read/write **Integer**. ## Syntax - _expression_. `BottomPadding` +_expression_. `BottomPadding` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## See also diff --git a/api/Access.NavigationButton.Caption.md b/api/Access.NavigationButton.Caption.md index c79c919d0aa..fd7d6d62a5c 100644 --- a/api/Access.NavigationButton.Caption.md +++ b/api/Access.NavigationButton.Caption.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Caption Property (Access) +title: NavigationButton.Caption property (Access) keywords: vbaac10.chm10450 f1_keywords: - vbaac10.chm10450 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Caption Property (Access) +# NavigationButton.Caption property (Access) Gets or sets the text that appears in the control. Read/write **String**. ## Syntax - _expression_. `Caption` +_expression_. `Caption` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Click.md b/api/Access.NavigationButton.Click.md index 5142423d0fa..9c7435f8d5a 100644 --- a/api/Access.NavigationButton.Click.md +++ b/api/Access.NavigationButton.Click.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Click Event (Access) +title: NavigationButton.Click event (Access) keywords: vbaac10.chm14077 f1_keywords: - vbaac10.chm14077 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# NavigationButton.Click Event (Access) +# NavigationButton.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. -### Return Value +### Return value nothing diff --git a/api/Access.NavigationButton.ControlTipText.md b/api/Access.NavigationButton.ControlTipText.md index f2262956d92..96b93547049 100644 --- a/api/Access.NavigationButton.ControlTipText.md +++ b/api/Access.NavigationButton.ControlTipText.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.ControlTipText Property (Access) +title: NavigationButton.ControlTipText property (Access) keywords: vbaac10.chm10480 f1_keywords: - vbaac10.chm10480 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.ControlTipText Property (Access) +# NavigationButton.ControlTipText property (Access) You can use the **ControlTipText** property to specify the text that appears in a ScreenTip when you hold the mouse pointer over a control. Read/write **String**. ## Syntax - _expression_. `ControlTipText` +_expression_. `ControlTipText` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.ControlType.md b/api/Access.NavigationButton.ControlType.md index d6760619b88..e2a4b571c76 100644 --- a/api/Access.NavigationButton.ControlType.md +++ b/api/Access.NavigationButton.ControlType.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.ControlType Property (Access) +title: NavigationButton.ControlType property (Access) keywords: vbaac10.chm10449 f1_keywords: - vbaac10.chm10449 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.ControlType Property (Access) +# NavigationButton.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Controls.md b/api/Access.NavigationButton.Controls.md index 8266a8c16b8..bfe2118a210 100644 --- a/api/Access.NavigationButton.Controls.md +++ b/api/Access.NavigationButton.Controls.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Controls Property (Access) +title: NavigationButton.Controls property (Access) keywords: vbaac10.chm10445 f1_keywords: - vbaac10.chm10445 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Controls Property (Access) +# NavigationButton.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.CursorOnHover.md b/api/Access.NavigationButton.CursorOnHover.md index 2036f91447c..e142c5e8219 100644 --- a/api/Access.NavigationButton.CursorOnHover.md +++ b/api/Access.NavigationButton.CursorOnHover.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.CursorOnHover Property (Access) +title: NavigationButton.CursorOnHover property (Access) keywords: vbaac10.chm10541 f1_keywords: - vbaac10.chm10541 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.CursorOnHover Property (Access) +# NavigationButton.CursorOnHover property (Access) Gets or sets the type of mouse cursor displayed when the user rests the pointer on a button. Read/write **[AcCursorOnHover](Access.AcCursorOnHover.md)**. ## Syntax - _expression_. `CursorOnHover` +_expression_. `CursorOnHover` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.DblClick.md b/api/Access.NavigationButton.DblClick.md index b342c9c500c..bb62ea8409a 100644 --- a/api/Access.NavigationButton.DblClick.md +++ b/api/Access.NavigationButton.DblClick.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.DblClick Event (Access) +title: NavigationButton.DblClick event (Access) keywords: vbaac10.chm14082 f1_keywords: - vbaac10.chm14082 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# NavigationButton.DblClick Event (Access) +# NavigationButton.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_`, ) +_expression_. `DblClick`( ` _Cancel_`, ) - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationButton.DisplayWhen.md b/api/Access.NavigationButton.DisplayWhen.md index 62c654ec81a..691f5695cd2 100644 --- a/api/Access.NavigationButton.DisplayWhen.md +++ b/api/Access.NavigationButton.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.DisplayWhen Property (Access) +title: NavigationButton.DisplayWhen property (Access) keywords: vbaac10.chm10463 f1_keywords: - vbaac10.chm10463 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.DisplayWhen Property (Access) +# NavigationButton.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Enabled.md b/api/Access.NavigationButton.Enabled.md index ffc60f0709f..af1e0200bb6 100644 --- a/api/Access.NavigationButton.Enabled.md +++ b/api/Access.NavigationButton.Enabled.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Enabled Property (Access) +title: NavigationButton.Enabled property (Access) keywords: vbaac10.chm10464 f1_keywords: - vbaac10.chm10464 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Enabled Property (Access) +# NavigationButton.Enabled property (Access) You can use the **Enabled** property to set or return the status of the conditional format in the **[FormatCondition](Access.FormatCondition.md)** object. Read/write **Boolean**. ## Syntax - _expression_. `Enabled` +_expression_. `Enabled` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Enter.md b/api/Access.NavigationButton.Enter.md index 4132717b086..99e8d977067 100644 --- a/api/Access.NavigationButton.Enter.md +++ b/api/Access.NavigationButton.Enter.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Enter Event (Access) +title: NavigationButton.Enter event (Access) keywords: vbaac10.chm14078 f1_keywords: - vbaac10.chm14078 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# NavigationButton.Enter Event (Access) +# NavigationButton.Enter event (Access) The **Enter** event occurs before a control actually receives the focus from a control on the same form or report. ## Syntax - _expression_. `Enter` +_expression_. `Enter` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. -### Return Value +### Return value nothing diff --git a/api/Access.NavigationButton.EventProcPrefix.md b/api/Access.NavigationButton.EventProcPrefix.md index 18b24faa177..90e9bbcc0a6 100644 --- a/api/Access.NavigationButton.EventProcPrefix.md +++ b/api/Access.NavigationButton.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.EventProcPrefix Property (Access) +title: NavigationButton.EventProcPrefix property (Access) keywords: vbaac10.chm10447 f1_keywords: - vbaac10.chm10447 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.EventProcPrefix Property (Access) +# NavigationButton.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Exit.md b/api/Access.NavigationButton.Exit.md index 4afe5cad0e9..427feb655a8 100644 --- a/api/Access.NavigationButton.Exit.md +++ b/api/Access.NavigationButton.Exit.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Exit Event (Access) +title: NavigationButton.Exit event (Access) keywords: vbaac10.chm14079 f1_keywords: - vbaac10.chm14079 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# NavigationButton.Exit Event (Access) +# NavigationButton.Exit event (Access) The **Exit** event occurs just before a control loses the focus to another control on the same form or report. ## Syntax - _expression_. `Exit`( ` _Cancel_`, ) +_expression_. `Exit`( ` _Cancel_`, ) - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationButton.FontBold.md b/api/Access.NavigationButton.FontBold.md index cab9548114d..c2f729c40d7 100644 --- a/api/Access.NavigationButton.FontBold.md +++ b/api/Access.NavigationButton.FontBold.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.FontBold Property (Access) +title: NavigationButton.FontBold property (Access) keywords: vbaac10.chm10478 f1_keywords: - vbaac10.chm10478 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# NavigationButton.FontBold Property (Access) +# NavigationButton.FontBold property (Access) You can use the **FontBold** property to specify whether a font appears in a bold style in the following situations: @@ -26,9 +26,9 @@ You can use the **FontBold** property to specify whether a font appears in a bo ## Syntax - _expression_. `FontBold` +_expression_. `FontBold` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.FontItalic.md b/api/Access.NavigationButton.FontItalic.md index ae10da576f2..fd13b400437 100644 --- a/api/Access.NavigationButton.FontItalic.md +++ b/api/Access.NavigationButton.FontItalic.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.FontItalic Property (Access) +title: NavigationButton.FontItalic property (Access) keywords: vbaac10.chm10475 f1_keywords: - vbaac10.chm10475 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# NavigationButton.FontItalic Property (Access) +# NavigationButton.FontItalic property (Access) You can use the **FontItalic** property to specify whether text is italic in the following situations: @@ -26,9 +26,9 @@ You can use the **FontItalic** property to specify whether text is italic in th ## Syntax - _expression_. `FontItalic` +_expression_. `FontItalic` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.FontName.md b/api/Access.NavigationButton.FontName.md index 6f65b0148ff..d9c086e0ca3 100644 --- a/api/Access.NavigationButton.FontName.md +++ b/api/Access.NavigationButton.FontName.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.FontName Property (Access) +title: NavigationButton.FontName property (Access) keywords: vbaac10.chm10472 f1_keywords: - vbaac10.chm10472 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# NavigationButton.FontName Property (Access) +# NavigationButton.FontName property (Access) You can use the **FontName** property to specify the font for text in the following situations: @@ -26,9 +26,9 @@ Read/write **String**. ## Syntax - _expression_. `FontName` +_expression_. `FontName` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.FontSize.md b/api/Access.NavigationButton.FontSize.md index c827e458d60..6aef113e06f 100644 --- a/api/Access.NavigationButton.FontSize.md +++ b/api/Access.NavigationButton.FontSize.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.FontSize Property (Access) +title: NavigationButton.FontSize property (Access) keywords: vbaac10.chm10473 f1_keywords: - vbaac10.chm10473 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# NavigationButton.FontSize Property (Access) +# NavigationButton.FontSize property (Access) You can use the **FontSize** property to specify the point size for text in the following situations: @@ -26,9 +26,9 @@ Read/write **Integer**. ## Syntax - _expression_. `FontSize` +_expression_. `FontSize` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.FontUnderline.md b/api/Access.NavigationButton.FontUnderline.md index 514f7e95e96..f3c1d83f00a 100644 --- a/api/Access.NavigationButton.FontUnderline.md +++ b/api/Access.NavigationButton.FontUnderline.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.FontUnderline Property (Access) +title: NavigationButton.FontUnderline property (Access) keywords: vbaac10.chm10476 f1_keywords: - vbaac10.chm10476 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# NavigationButton.FontUnderline Property (Access) +# NavigationButton.FontUnderline property (Access) You can use the **FontUnderline** property to specify whether text is underlined in the following situations: @@ -26,9 +26,9 @@ You can use the **FontUnderline** property to specify whether text is underline ## Syntax - _expression_. `FontUnderline` +_expression_. `FontUnderline` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.FontWeight.md b/api/Access.NavigationButton.FontWeight.md index 3e6a0ee67e1..85079b8ad20 100644 --- a/api/Access.NavigationButton.FontWeight.md +++ b/api/Access.NavigationButton.FontWeight.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.FontWeight Property (Access) +title: NavigationButton.FontWeight property (Access) keywords: vbaac10.chm10474 f1_keywords: - vbaac10.chm10474 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.FontWeight Property (Access) +# NavigationButton.FontWeight property (Access) You can use the **DatasheetFontWeight** property to specify the line width of the font used to display and print characters for field names and data in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `FontWeight` +_expression_. `FontWeight` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.ForeColor.md b/api/Access.NavigationButton.ForeColor.md index d9550e27002..97a811ca378 100644 --- a/api/Access.NavigationButton.ForeColor.md +++ b/api/Access.NavigationButton.ForeColor.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.ForeColor Property (Access) +title: NavigationButton.ForeColor property (Access) keywords: vbaac10.chm10471 f1_keywords: - vbaac10.chm10471 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.ForeColor Property (Access) +# NavigationButton.ForeColor property (Access) You can use the **ForeColor** property to specify the color for text in a control. Read/write **Long**. ## Syntax - _expression_. `ForeColor` +_expression_. `ForeColor` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.ForeShade.md b/api/Access.NavigationButton.ForeShade.md index 28fd8cc6076..d4a0d45374b 100644 --- a/api/Access.NavigationButton.ForeShade.md +++ b/api/Access.NavigationButton.ForeShade.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.ForeShade Property (Access) +title: NavigationButton.ForeShade property (Access) keywords: vbaac10.chm14606 f1_keywords: - vbaac10.chm14606 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.ForeShade Property (Access) +# NavigationButton.ForeShade property (Access) Gets or sets the shade that is applied to the theme color in the **ForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `ForeShade` +_expression_. `ForeShade` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.ForeThemeColorIndex.md b/api/Access.NavigationButton.ForeThemeColorIndex.md index 48ecce20925..cd0d04df554 100644 --- a/api/Access.NavigationButton.ForeThemeColorIndex.md +++ b/api/Access.NavigationButton.ForeThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.ForeThemeColorIndex Property (Access) +title: NavigationButton.ForeThemeColorIndex property (Access) keywords: vbaac10.chm14604 f1_keywords: - vbaac10.chm14604 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.ForeThemeColorIndex Property (Access) +# NavigationButton.ForeThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **ForeColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `ForeThemeColorIndex` +_expression_. `ForeThemeColorIndex` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.ForeTint.md b/api/Access.NavigationButton.ForeTint.md index 6136b1a57eb..273d51bb2fe 100644 --- a/api/Access.NavigationButton.ForeTint.md +++ b/api/Access.NavigationButton.ForeTint.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.ForeTint Property (Access) +title: NavigationButton.ForeTint property (Access) keywords: vbaac10.chm14605 f1_keywords: - vbaac10.chm14605 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.ForeTint Property (Access) +# NavigationButton.ForeTint property (Access) Gets or sets the tint that is applied to the theme color in the **ForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `ForeTint` +_expression_. `ForeTint` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Glow.md b/api/Access.NavigationButton.Glow.md index eb831b7adde..95641ace240 100644 --- a/api/Access.NavigationButton.Glow.md +++ b/api/Access.NavigationButton.Glow.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Glow Property (Access) +title: NavigationButton.Glow property (Access) keywords: vbaac10.chm14630 f1_keywords: - vbaac10.chm14630 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Glow Property (Access) +# NavigationButton.Glow property (Access) Gets or sets the Glow effect applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `Glow` +_expression_. `Glow` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.GotFocus.md b/api/Access.NavigationButton.GotFocus.md index 9877fe720a9..73a4fd29021 100644 --- a/api/Access.NavigationButton.GotFocus.md +++ b/api/Access.NavigationButton.GotFocus.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.GotFocus Event (Access) +title: NavigationButton.GotFocus event (Access) keywords: vbaac10.chm14080 f1_keywords: - vbaac10.chm14080 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# NavigationButton.GotFocus Event (Access) +# NavigationButton.GotFocus event (Access) The **GotFocus** event occurs when the specified object receives the focus. ## Syntax - _expression_. `GotFocus` +_expression_. `GotFocus` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. -### Return Value +### Return value nothing diff --git a/api/Access.NavigationButton.Gradient.md b/api/Access.NavigationButton.Gradient.md index 66e97b0bd0d..16efabc60e6 100644 --- a/api/Access.NavigationButton.Gradient.md +++ b/api/Access.NavigationButton.Gradient.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Gradient Property (Access) +title: NavigationButton.Gradient property (Access) keywords: vbaac10.chm14662 f1_keywords: - vbaac10.chm14662 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Gradient Property (Access) +# NavigationButton.Gradient property (Access) Gets or sets the gradient fill applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `Gradient` +_expression_. `Gradient` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.GridlineColor.md b/api/Access.NavigationButton.GridlineColor.md index 9d7a7596c9b..5dc6676ed9e 100644 --- a/api/Access.NavigationButton.GridlineColor.md +++ b/api/Access.NavigationButton.GridlineColor.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.GridlineColor Property (Access) +title: NavigationButton.GridlineColor property (Access) keywords: vbaac10.chm10536 f1_keywords: - vbaac10.chm10536 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.GridlineColor Property (Access) +# NavigationButton.GridlineColor property (Access) Gets or sets the color of the gridline for the specified list box. Read/write **Long**. ## Syntax - _expression_. `GridlineColor` +_expression_. `GridlineColor` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.GridlineShade.md b/api/Access.NavigationButton.GridlineShade.md index fb50e6c558c..0926bb55c74 100644 --- a/api/Access.NavigationButton.GridlineShade.md +++ b/api/Access.NavigationButton.GridlineShade.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.GridlineShade Property (Access) +title: NavigationButton.GridlineShade property (Access) keywords: vbaac10.chm14637 f1_keywords: - vbaac10.chm14637 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.GridlineShade Property (Access) +# NavigationButton.GridlineShade property (Access) Gets or sets the shade applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineShade` +_expression_. `GridlineShade` - _expression_ A variable that represents an [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents an [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.GridlineStyleBottom.md b/api/Access.NavigationButton.GridlineStyleBottom.md index 099d3e16e24..0020e328e54 100644 --- a/api/Access.NavigationButton.GridlineStyleBottom.md +++ b/api/Access.NavigationButton.GridlineStyleBottom.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.GridlineStyleBottom Property (Access) +title: NavigationButton.GridlineStyleBottom property (Access) keywords: vbaac10.chm10531 f1_keywords: - vbaac10.chm10531 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.GridlineStyleBottom Property (Access) +# NavigationButton.GridlineStyleBottom property (Access) Gets or sets the bottom gridline style of the specified list box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleBottom` +_expression_. `GridlineStyleBottom` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.GridlineStyleLeft.md b/api/Access.NavigationButton.GridlineStyleLeft.md index c56d29ea498..eeec260faf7 100644 --- a/api/Access.NavigationButton.GridlineStyleLeft.md +++ b/api/Access.NavigationButton.GridlineStyleLeft.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.GridlineStyleLeft Property (Access) +title: NavigationButton.GridlineStyleLeft property (Access) keywords: vbaac10.chm10528 f1_keywords: - vbaac10.chm10528 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.GridlineStyleLeft Property (Access) +# NavigationButton.GridlineStyleLeft property (Access) Gets or sets the width of the bottom gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleLeft` +_expression_. `GridlineStyleLeft` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.GridlineStyleRight.md b/api/Access.NavigationButton.GridlineStyleRight.md index 1cd5862e6ea..e115c950c25 100644 --- a/api/Access.NavigationButton.GridlineStyleRight.md +++ b/api/Access.NavigationButton.GridlineStyleRight.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.GridlineStyleRight Property (Access) +title: NavigationButton.GridlineStyleRight property (Access) keywords: vbaac10.chm10530 f1_keywords: - vbaac10.chm10530 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.GridlineStyleRight Property (Access) +# NavigationButton.GridlineStyleRight property (Access) Gets or sets the right gridline style of the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleRight` +_expression_. `GridlineStyleRight` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.GridlineStyleTop.md b/api/Access.NavigationButton.GridlineStyleTop.md index 245407700c4..655fbdb7116 100644 --- a/api/Access.NavigationButton.GridlineStyleTop.md +++ b/api/Access.NavigationButton.GridlineStyleTop.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.GridlineStyleTop Property (Access) +title: NavigationButton.GridlineStyleTop property (Access) keywords: vbaac10.chm10529 f1_keywords: - vbaac10.chm10529 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.GridlineStyleTop Property (Access) +# NavigationButton.GridlineStyleTop property (Access) Gets or sets the top gridline style of the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleTop` +_expression_. `GridlineStyleTop` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.GridlineThemeColorIndex.md b/api/Access.NavigationButton.GridlineThemeColorIndex.md index e9811a0c456..5617a4cfafb 100644 --- a/api/Access.NavigationButton.GridlineThemeColorIndex.md +++ b/api/Access.NavigationButton.GridlineThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.GridlineThemeColorIndex Property (Access) +title: NavigationButton.GridlineThemeColorIndex property (Access) keywords: vbaac10.chm14635 f1_keywords: - vbaac10.chm14635 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.GridlineThemeColorIndex Property (Access) +# NavigationButton.GridlineThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **GridlineColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `GridlineThemeColorIndex` +_expression_. `GridlineThemeColorIndex` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.GridlineTint.md b/api/Access.NavigationButton.GridlineTint.md index af056074d6d..7884c5f29ba 100644 --- a/api/Access.NavigationButton.GridlineTint.md +++ b/api/Access.NavigationButton.GridlineTint.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.GridlineTint Property (Access) +title: NavigationButton.GridlineTint property (Access) keywords: vbaac10.chm14636 f1_keywords: - vbaac10.chm14636 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.GridlineTint Property (Access) +# NavigationButton.GridlineTint property (Access) Gets or sets the tint applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineTint` +_expression_. `GridlineTint` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.GridlineWidthBottom.md b/api/Access.NavigationButton.GridlineWidthBottom.md index 8f124b6f7f1..b159199d2ce 100644 --- a/api/Access.NavigationButton.GridlineWidthBottom.md +++ b/api/Access.NavigationButton.GridlineWidthBottom.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.GridlineWidthBottom Property (Access) +title: NavigationButton.GridlineWidthBottom property (Access) keywords: vbaac10.chm10535 f1_keywords: - vbaac10.chm10535 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.GridlineWidthBottom Property (Access) +# NavigationButton.GridlineWidthBottom property (Access) Gets or sets the width of the bottom gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthBottom` +_expression_. `GridlineWidthBottom` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.GridlineWidthLeft.md b/api/Access.NavigationButton.GridlineWidthLeft.md index 9d1f8093408..e88abc6d6a0 100644 --- a/api/Access.NavigationButton.GridlineWidthLeft.md +++ b/api/Access.NavigationButton.GridlineWidthLeft.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.GridlineWidthLeft Property (Access) +title: NavigationButton.GridlineWidthLeft property (Access) keywords: vbaac10.chm10532 f1_keywords: - vbaac10.chm10532 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.GridlineWidthLeft Property (Access) +# NavigationButton.GridlineWidthLeft property (Access) Gets or sets the width of the left gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthLeft` +_expression_. `GridlineWidthLeft` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.GridlineWidthRight.md b/api/Access.NavigationButton.GridlineWidthRight.md index 0b5bad1e9d6..e9f4a50de79 100644 --- a/api/Access.NavigationButton.GridlineWidthRight.md +++ b/api/Access.NavigationButton.GridlineWidthRight.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.GridlineWidthRight Property (Access) +title: NavigationButton.GridlineWidthRight property (Access) keywords: vbaac10.chm10534 f1_keywords: - vbaac10.chm10534 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.GridlineWidthRight Property (Access) +# NavigationButton.GridlineWidthRight property (Access) Gets or sets the width of the right gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthRight` +_expression_. `GridlineWidthRight` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.GridlineWidthTop.md b/api/Access.NavigationButton.GridlineWidthTop.md index 0ad233a419c..1582e5c10c7 100644 --- a/api/Access.NavigationButton.GridlineWidthTop.md +++ b/api/Access.NavigationButton.GridlineWidthTop.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.GridlineWidthTop Property (Access) +title: NavigationButton.GridlineWidthTop property (Access) keywords: vbaac10.chm10533 f1_keywords: - vbaac10.chm10533 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.GridlineWidthTop Property (Access) +# NavigationButton.GridlineWidthTop property (Access) Gets or sets the width of the top gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthTop` +_expression_. `GridlineWidthTop` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Height.md b/api/Access.NavigationButton.Height.md index 194a564f0c0..715756b4f17 100644 --- a/api/Access.NavigationButton.Height.md +++ b/api/Access.NavigationButton.Height.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Height Property (Access) +title: NavigationButton.Height property (Access) keywords: vbaac10.chm10470 f1_keywords: - vbaac10.chm10470 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Height Property (Access) +# NavigationButton.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.HelpContextId.md b/api/Access.NavigationButton.HelpContextId.md index 979370ccc11..006d16f3753 100644 --- a/api/Access.NavigationButton.HelpContextId.md +++ b/api/Access.NavigationButton.HelpContextId.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.HelpContextId Property (Access) +title: NavigationButton.HelpContextId property (Access) keywords: vbaac10.chm10481 f1_keywords: - vbaac10.chm10481 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.HelpContextId Property (Access) +# NavigationButton.HelpContextId property (Access) The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**. ## Syntax - _expression_. `HelpContextId` +_expression_. `HelpContextId` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.HorizontalAnchor.md b/api/Access.NavigationButton.HorizontalAnchor.md index eb12b24c0e9..9bc86e6f1e7 100644 --- a/api/Access.NavigationButton.HorizontalAnchor.md +++ b/api/Access.NavigationButton.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.HorizontalAnchor Property (Access) +title: NavigationButton.HorizontalAnchor property (Access) keywords: vbaac10.chm10537 f1_keywords: - vbaac10.chm10537 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.HorizontalAnchor Property (Access) +# NavigationButton.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the text box is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.HoverColor.md b/api/Access.NavigationButton.HoverColor.md index 0cea8369bcc..65bb03b7089 100644 --- a/api/Access.NavigationButton.HoverColor.md +++ b/api/Access.NavigationButton.HoverColor.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.HoverColor Property (Access) +title: NavigationButton.HoverColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.HoverColor Property (Access) +# NavigationButton.HoverColor property (Access) Gets or sets the color displayed on the control when the user rests the mouse cursor over it. Read/write **Long**. ## Syntax - _expression_. `HoverColor` +_expression_. `HoverColor` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.HoverForeColor.md b/api/Access.NavigationButton.HoverForeColor.md index 2d215012bd4..93937a53785 100644 --- a/api/Access.NavigationButton.HoverForeColor.md +++ b/api/Access.NavigationButton.HoverForeColor.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.HoverForeColor Property (Access) +title: NavigationButton.HoverForeColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.HoverForeColor Property (Access) +# NavigationButton.HoverForeColor property (Access) Gets or sets the color of the text displayed on the control when the user rests the mouse cursor over it. Read/write **Long**. ## Syntax - _expression_. `HoverForeColor` +_expression_. `HoverForeColor` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.HoverForeShade.md b/api/Access.NavigationButton.HoverForeShade.md index 9005aa8596e..b9265aedacf 100644 --- a/api/Access.NavigationButton.HoverForeShade.md +++ b/api/Access.NavigationButton.HoverForeShade.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.HoverForeShade Property (Access) +title: NavigationButton.HoverForeShade property (Access) keywords: vbaac10.chm14618 f1_keywords: - vbaac10.chm14618 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.HoverForeShade Property (Access) +# NavigationButton.HoverForeShade property (Access) Gets or sets the shade applied to the theme color in the **HoverForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `HoverForeShade` +_expression_. `HoverForeShade` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.HoverForeThemeColorIndex.md b/api/Access.NavigationButton.HoverForeThemeColorIndex.md index 19afd6caa5e..d4b67962faa 100644 --- a/api/Access.NavigationButton.HoverForeThemeColorIndex.md +++ b/api/Access.NavigationButton.HoverForeThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.HoverForeThemeColorIndex Property (Access) +title: NavigationButton.HoverForeThemeColorIndex property (Access) keywords: vbaac10.chm14616 f1_keywords: - vbaac10.chm14616 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.HoverForeThemeColorIndex Property (Access) +# NavigationButton.HoverForeThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **HoverForeColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `HoverForeThemeColorIndex` +_expression_. `HoverForeThemeColorIndex` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.HoverForeTint.md b/api/Access.NavigationButton.HoverForeTint.md index 84d52d21d6a..4023fac5705 100644 --- a/api/Access.NavigationButton.HoverForeTint.md +++ b/api/Access.NavigationButton.HoverForeTint.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.HoverForeTint Property (Access) +title: NavigationButton.HoverForeTint property (Access) keywords: vbaac10.chm14617 f1_keywords: - vbaac10.chm14617 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.HoverForeTint Property (Access) +# NavigationButton.HoverForeTint property (Access) Gets or sets the tint applied to the theme color in the **HoverForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `HoverForeTint` +_expression_. `HoverForeTint` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.HoverShade.md b/api/Access.NavigationButton.HoverShade.md index f0e43b63bae..396b8463c20 100644 --- a/api/Access.NavigationButton.HoverShade.md +++ b/api/Access.NavigationButton.HoverShade.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.HoverShade Property (Access) +title: NavigationButton.HoverShade property (Access) keywords: vbaac10.chm14614 f1_keywords: - vbaac10.chm14614 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.HoverShade Property (Access) +# NavigationButton.HoverShade property (Access) Gets or sets the shade that is applied to the theme color in the **HoverColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `HoverShade` +_expression_. `HoverShade` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.HoverThemeColorIndex.md b/api/Access.NavigationButton.HoverThemeColorIndex.md index 7f276a6876c..84f8de085f4 100644 --- a/api/Access.NavigationButton.HoverThemeColorIndex.md +++ b/api/Access.NavigationButton.HoverThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.HoverThemeColorIndex Property (Access) +title: NavigationButton.HoverThemeColorIndex property (Access) keywords: vbaac10.chm14612 f1_keywords: - vbaac10.chm14612 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.HoverThemeColorIndex Property (Access) +# NavigationButton.HoverThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **HoverColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `HoverThemeColorIndex` +_expression_. `HoverThemeColorIndex` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.HoverTint.md b/api/Access.NavigationButton.HoverTint.md index 200c0d75e97..499caad19fe 100644 --- a/api/Access.NavigationButton.HoverTint.md +++ b/api/Access.NavigationButton.HoverTint.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.HoverTint Property (Access) +title: NavigationButton.HoverTint property (Access) keywords: vbaac10.chm14613 f1_keywords: - vbaac10.chm14613 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.HoverTint Property (Access) +# NavigationButton.HoverTint property (Access) Gets or sets the tint applied to the theme color in the **HoverColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `HoverTint` +_expression_. `HoverTint` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Hyperlink.md b/api/Access.NavigationButton.Hyperlink.md index fececc742cd..bf7d46b546a 100644 --- a/api/Access.NavigationButton.Hyperlink.md +++ b/api/Access.NavigationButton.Hyperlink.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Hyperlink Property (Access) +title: NavigationButton.Hyperlink property (Access) keywords: vbaac10.chm10446 f1_keywords: - vbaac10.chm10446 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Hyperlink Property (Access) +# NavigationButton.Hyperlink property (Access) You can use the **Hyperlink** property to return a reference to a **Hyperlink** object. You can use the **Hyperlink** property to access the properties and methods of a control's hyperlink. Read-only. ## Syntax - _expression_. `Hyperlink` +_expression_. `Hyperlink` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Example diff --git a/api/Access.NavigationButton.HyperlinkAddress.md b/api/Access.NavigationButton.HyperlinkAddress.md index 7a7bc61ec59..6642b0e1c68 100644 --- a/api/Access.NavigationButton.HyperlinkAddress.md +++ b/api/Access.NavigationButton.HyperlinkAddress.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.HyperlinkAddress Property (Access) +title: NavigationButton.HyperlinkAddress property (Access) keywords: vbaac10.chm10460 f1_keywords: - vbaac10.chm10460 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.HyperlinkAddress Property (Access) +# NavigationButton.HyperlinkAddress property (Access) You can use the **HyperlinkAddress** property to specify or determine the path to an object, document, Web page or other destination for a hyperlink associated with a the specified control. Read/write **String**. ## Syntax - _expression_. `HyperlinkAddress` +_expression_. `HyperlinkAddress` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.HyperlinkSubAddress.md b/api/Access.NavigationButton.HyperlinkSubAddress.md index 66d7096d18d..07073ecf22b 100644 --- a/api/Access.NavigationButton.HyperlinkSubAddress.md +++ b/api/Access.NavigationButton.HyperlinkSubAddress.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.HyperlinkSubAddress Property (Access) +title: NavigationButton.HyperlinkSubAddress property (Access) keywords: vbaac10.chm10461 f1_keywords: - vbaac10.chm10461 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.HyperlinkSubAddress Property (Access) +# NavigationButton.HyperlinkSubAddress property (Access) You can use the **HyperlinkSubAddress** property to specify or determine a location within the target document specified by the **HyperlinkAddress** property. Read/write **String**. ## Syntax - _expression_. `HyperlinkSubAddress` +_expression_. `HyperlinkSubAddress` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.InSelection.md b/api/Access.NavigationButton.InSelection.md index 3b84d941090..a4bd36a8507 100644 --- a/api/Access.NavigationButton.InSelection.md +++ b/api/Access.NavigationButton.InSelection.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.InSelection Property (Access) +title: NavigationButton.InSelection property (Access) keywords: vbaac10.chm10492 f1_keywords: - vbaac10.chm10492 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.InSelection Property (Access) +# NavigationButton.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.IsVisible.md b/api/Access.NavigationButton.IsVisible.md index c11e3732b8b..fec01aa96e2 100644 --- a/api/Access.NavigationButton.IsVisible.md +++ b/api/Access.NavigationButton.IsVisible.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.IsVisible Property (Access) +title: NavigationButton.IsVisible property (Access) keywords: vbaac10.chm10491 f1_keywords: - vbaac10.chm10491 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.IsVisible Property (Access) +# NavigationButton.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.KeyDown.md b/api/Access.NavigationButton.KeyDown.md index dea6f09a208..57734ddb86b 100644 --- a/api/Access.NavigationButton.KeyDown.md +++ b/api/Access.NavigationButton.KeyDown.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.KeyDown Event (Access) +title: NavigationButton.KeyDown event (Access) keywords: vbaac10.chm14086 f1_keywords: - vbaac10.chm14086 @@ -11,28 +11,28 @@ ms.date: 06/08/2017 --- -# NavigationButton.KeyDown Event (Access) +# NavigationButton.KeyDown event (Access) The **KeyDown** event occurs when the user presses a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|| | _Shift_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationButton.KeyPress.md b/api/Access.NavigationButton.KeyPress.md index fc2b68c0c42..1e4678dcb9e 100644 --- a/api/Access.NavigationButton.KeyPress.md +++ b/api/Access.NavigationButton.KeyPress.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.KeyPress Event (Access) +title: NavigationButton.KeyPress event (Access) keywords: vbaac10.chm14087 f1_keywords: - vbaac10.chm14087 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# NavigationButton.KeyPress Event (Access) +# NavigationButton.KeyPress event (Access) The **KeyPress** event occurs when the user presses and releases a key or key combination that corresponds to an ANSI code while a form or control has the focus. This event also occurs if you send an ANSI keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyPress`( ` _KeyAscii_`, ) +_expression_. `KeyPress`( ` _KeyAscii_`, ) - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyAscii_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationButton.KeyUp.md b/api/Access.NavigationButton.KeyUp.md index b340fdcdba6..2e9aeb26160 100644 --- a/api/Access.NavigationButton.KeyUp.md +++ b/api/Access.NavigationButton.KeyUp.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.KeyUp Event (Access) +title: NavigationButton.KeyUp event (Access) keywords: vbaac10.chm14088 f1_keywords: - vbaac10.chm14088 @@ -11,28 +11,28 @@ ms.date: 06/08/2017 --- -# NavigationButton.KeyUp Event (Access) +# NavigationButton.KeyUp event (Access) The **KeyUp** event occurs when the user releases a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|| | _Shift_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationButton.LabelAlign.md b/api/Access.NavigationButton.LabelAlign.md index 3e4fcf733e5..3c408eb6708 100644 --- a/api/Access.NavigationButton.LabelAlign.md +++ b/api/Access.NavigationButton.LabelAlign.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.LabelAlign Property (Access) +title: NavigationButton.LabelAlign property (Access) keywords: vbaac10.chm10486 f1_keywords: - vbaac10.chm10486 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.LabelAlign Property (Access) +# NavigationButton.LabelAlign property (Access) The property specifies the text alignment within attached labels on new controls. Read/write **Byte**. ## Syntax - _expression_. `LabelAlign` +_expression_. `LabelAlign` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.LabelX.md b/api/Access.NavigationButton.LabelX.md index d91399c97ad..9ff02965a09 100644 --- a/api/Access.NavigationButton.LabelX.md +++ b/api/Access.NavigationButton.LabelX.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.LabelX Property (Access) +title: NavigationButton.LabelX property (Access) keywords: vbaac10.chm10484 f1_keywords: - vbaac10.chm10484 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# NavigationButton.LabelX Property (Access) +# NavigationButton.LabelX property (Access) The **LabelX** property (along with the **LabelY** property) specifies the placement of the label for a new control. Read/write **Integer**. @@ -19,9 +19,9 @@ The **LabelX** property (along with the **LabelY** property) specifies the plac ## Syntax - _expression_. `LabelX` +_expression_. `LabelX` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.LabelY.md b/api/Access.NavigationButton.LabelY.md index 35314ce2961..07c9e14bfbe 100644 --- a/api/Access.NavigationButton.LabelY.md +++ b/api/Access.NavigationButton.LabelY.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.LabelY Property (Access) +title: NavigationButton.LabelY property (Access) keywords: vbaac10.chm10485 f1_keywords: - vbaac10.chm10485 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# NavigationButton.LabelY Property (Access) +# NavigationButton.LabelY property (Access) The **LabelY** property (along with the **LabelX** property) specifies the placement of the label for a new control. Read/write **Integer**. @@ -19,9 +19,9 @@ The **LabelY** property (along with the **LabelX** property) specifies the plac ## Syntax - _expression_. `LabelY` +_expression_. `LabelY` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Layout.md b/api/Access.NavigationButton.Layout.md index c4b6e42ef6a..61bf1c00a07 100644 --- a/api/Access.NavigationButton.Layout.md +++ b/api/Access.NavigationButton.Layout.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Layout Property (Access) +title: NavigationButton.Layout property (Access) keywords: vbaac10.chm10523 f1_keywords: - vbaac10.chm10523 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Layout Property (Access) +# NavigationButton.Layout property (Access) Returns the type of layout for the specified text box. Read-only **[AcLayoutType](Access.AcLayoutType.md)**. ## Syntax - _expression_. `Layout` +_expression_. `Layout` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## See also diff --git a/api/Access.NavigationButton.LayoutID.md b/api/Access.NavigationButton.LayoutID.md index 63d426ce98d..2332bee7629 100644 --- a/api/Access.NavigationButton.LayoutID.md +++ b/api/Access.NavigationButton.LayoutID.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.LayoutID Property (Access) +title: NavigationButton.LayoutID property (Access) keywords: vbaac10.chm10539 f1_keywords: - vbaac10.chm10539 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.LayoutID Property (Access) +# NavigationButton.LayoutID property (Access) Returns the unique identifier for the layout that contains the specified text box. Read-only **Long**. ## Syntax - _expression_. `LayoutID` +_expression_. `LayoutID` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Left.md b/api/Access.NavigationButton.Left.md index 37af95b6ef9..ce03091bccd 100644 --- a/api/Access.NavigationButton.Left.md +++ b/api/Access.NavigationButton.Left.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Left Property (Access) +title: NavigationButton.Left property (Access) keywords: vbaac10.chm10467 f1_keywords: - vbaac10.chm10467 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Left Property (Access) +# NavigationButton.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.LeftPadding.md b/api/Access.NavigationButton.LeftPadding.md index a761256d391..af39f4a4f8a 100644 --- a/api/Access.NavigationButton.LeftPadding.md +++ b/api/Access.NavigationButton.LeftPadding.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.LeftPadding Property (Access) +title: NavigationButton.LeftPadding property (Access) keywords: vbaac10.chm10524 f1_keywords: - vbaac10.chm10524 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.LeftPadding Property (Access) +# NavigationButton.LeftPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its left gridline. Read/write **Integer**. ## Syntax - _expression_. `LeftPadding` +_expression_. `LeftPadding` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## See also diff --git a/api/Access.NavigationButton.LostFocus.md b/api/Access.NavigationButton.LostFocus.md index 7b66a2e66c5..8ee2fb5a854 100644 --- a/api/Access.NavigationButton.LostFocus.md +++ b/api/Access.NavigationButton.LostFocus.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.LostFocus Event (Access) +title: NavigationButton.LostFocus event (Access) keywords: vbaac10.chm14081 f1_keywords: - vbaac10.chm14081 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# NavigationButton.LostFocus Event (Access) +# NavigationButton.LostFocus event (Access) The **LostFocus** event occurs when the specified object loses the focus. ## Syntax - _expression_. `LostFocus` +_expression_. `LostFocus` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. -### Return Value +### Return value nothing diff --git a/api/Access.NavigationButton.MouseDown.md b/api/Access.NavigationButton.MouseDown.md index 77a3c88c455..62bf775df3f 100644 --- a/api/Access.NavigationButton.MouseDown.md +++ b/api/Access.NavigationButton.MouseDown.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.MouseDown Event (Access) +title: NavigationButton.MouseDown event (Access) keywords: vbaac10.chm14083 f1_keywords: - vbaac10.chm14083 @@ -11,30 +11,30 @@ ms.date: 06/08/2017 --- -# NavigationButton.MouseDown Event (Access) +# NavigationButton.MouseDown event (Access) The **MouseDown** event occurs when the user presses a mouse button. ## Syntax - _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|| | _Shift_|Required|**Integer**|| | _X_|Required|**Single**|| | _Y_|Required|**Single**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationButton.MouseMove.md b/api/Access.NavigationButton.MouseMove.md index 31c63865434..c8a3c20b45d 100644 --- a/api/Access.NavigationButton.MouseMove.md +++ b/api/Access.NavigationButton.MouseMove.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.MouseMove Event (Access) +title: NavigationButton.MouseMove event (Access) keywords: vbaac10.chm14084 f1_keywords: - vbaac10.chm14084 @@ -11,30 +11,30 @@ ms.date: 06/08/2017 --- -# NavigationButton.MouseMove Event (Access) +# NavigationButton.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|| | _Shift_|Required|**Integer**|| | _X_|Required|**Single**|| | _Y_|Required|**Single**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationButton.MouseUp.md b/api/Access.NavigationButton.MouseUp.md index ebf4cf5521d..84a8c4977d0 100644 --- a/api/Access.NavigationButton.MouseUp.md +++ b/api/Access.NavigationButton.MouseUp.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.MouseUp Event (Access) +title: NavigationButton.MouseUp event (Access) keywords: vbaac10.chm14085 f1_keywords: - vbaac10.chm14085 @@ -11,30 +11,30 @@ ms.date: 06/08/2017 --- -# NavigationButton.MouseUp Event (Access) +# NavigationButton.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|| | _Shift_|Required|**Integer**|| | _X_|Required|**Single**|| | _Y_|Required|**Single**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationButton.Move.md b/api/Access.NavigationButton.Move.md index 97b0bb745da..b5eb5c3d45f 100644 --- a/api/Access.NavigationButton.Move.md +++ b/api/Access.NavigationButton.Move.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Move Method (Access) +title: NavigationButton.Move method (Access) keywords: vbaac10.chm10507 f1_keywords: - vbaac10.chm10507 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# NavigationButton.Move Method (Access) +# NavigationButton.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|| | _Top_|Optional|**Variant**|| diff --git a/api/Access.NavigationButton.Name.md b/api/Access.NavigationButton.Name.md index 5653a1d9c1c..72f65285450 100644 --- a/api/Access.NavigationButton.Name.md +++ b/api/Access.NavigationButton.Name.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Name Property (Access) +title: NavigationButton.Name property (Access) keywords: vbaac10.chm10506 f1_keywords: - vbaac10.chm10506 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Name Property (Access) +# NavigationButton.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.NavigationTargetName.md b/api/Access.NavigationButton.NavigationTargetName.md index ddf48a73e35..bd421e9fa35 100644 --- a/api/Access.NavigationButton.NavigationTargetName.md +++ b/api/Access.NavigationButton.NavigationTargetName.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.NavigationTargetName Property (Access) +title: NavigationButton.NavigationTargetName property (Access) keywords: vbaac10.chm14641 f1_keywords: - vbaac10.chm14641 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.NavigationTargetName Property (Access) +# NavigationButton.NavigationTargetName property (Access) Gets or sets the name of the form or report to be displayed when the user click the specified navigation button. Read/write **String**. ## Syntax - _expression_. `NavigationTargetName` +_expression_. `NavigationTargetName` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## See also diff --git a/api/Access.NavigationButton.NavigationWhereClause.md b/api/Access.NavigationButton.NavigationWhereClause.md index 3a9173ed6d9..a7427745a7e 100644 --- a/api/Access.NavigationButton.NavigationWhereClause.md +++ b/api/Access.NavigationButton.NavigationWhereClause.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.NavigationWhereClause Property (Access) +title: NavigationButton.NavigationWhereClause property (Access) keywords: vbaac10.chm14642 f1_keywords: - vbaac10.chm14642 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.NavigationWhereClause Property (Access) +# NavigationButton.NavigationWhereClause property (Access) Gets or sets the filter criteria applied when opening the form or report associated with the specified navigation button. Read/write **String**. ## Syntax - _expression_. `NavigationWhereClause` +_expression_. `NavigationWhereClause` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.ObjectPalette.md b/api/Access.NavigationButton.ObjectPalette.md index 70a41b2beb2..d457633f46b 100644 --- a/api/Access.NavigationButton.ObjectPalette.md +++ b/api/Access.NavigationButton.ObjectPalette.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.ObjectPalette Property (Access) +title: NavigationButton.ObjectPalette property (Access) keywords: vbaac10.chm10490 f1_keywords: - vbaac10.chm10490 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.ObjectPalette Property (Access) +# NavigationButton.ObjectPalette property (Access) The **ObjectPalette** property specifies the palette in the application used to create A bitmap or other graphic that is loaded into the specified control by using the **Picture** property. Read/write **Variant**. ## Syntax - _expression_. `ObjectPalette` +_expression_. `ObjectPalette` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.OldValue.md b/api/Access.NavigationButton.OldValue.md index eb33528f165..9f91e0e7fc1 100644 --- a/api/Access.NavigationButton.OldValue.md +++ b/api/Access.NavigationButton.OldValue.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.OldValue Property (Access) +title: NavigationButton.OldValue property (Access) keywords: vbaac10.chm10440 f1_keywords: - vbaac10.chm10440 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.OldValue Property (Access) +# NavigationButton.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.OnClick.md b/api/Access.NavigationButton.OnClick.md index c64d06cff85..3cb569ee5c1 100644 --- a/api/Access.NavigationButton.OnClick.md +++ b/api/Access.NavigationButton.OnClick.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.OnClick Property (Access) +title: NavigationButton.OnClick property (Access) keywords: vbaac10.chm10497 f1_keywords: - vbaac10.chm10497 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.OnClick Property (Access) +# NavigationButton.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationButton.OnDblClick.md b/api/Access.NavigationButton.OnDblClick.md index 87e05629004..41e6e710d12 100644 --- a/api/Access.NavigationButton.OnDblClick.md +++ b/api/Access.NavigationButton.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.OnDblClick Property (Access) +title: NavigationButton.OnDblClick property (Access) keywords: vbaac10.chm10498 f1_keywords: - vbaac10.chm10498 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.OnDblClick Property (Access) +# NavigationButton.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationButton.OnEnter.md b/api/Access.NavigationButton.OnEnter.md index 43f73b7f58a..dd5a638fe0d 100644 --- a/api/Access.NavigationButton.OnEnter.md +++ b/api/Access.NavigationButton.OnEnter.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.OnEnter Property (Access) +title: NavigationButton.OnEnter property (Access) keywords: vbaac10.chm10493 f1_keywords: - vbaac10.chm10493 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.OnEnter Property (Access) +# NavigationButton.OnEnter property (Access) Sets or returns the value of the **On Enter** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnEnter` +_expression_. `OnEnter` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Enter** event occurs before a control actually receives the focus from a The **OnEnter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Enter** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationButton.OnExit.md b/api/Access.NavigationButton.OnExit.md index 8ab111bf9db..585ba643e6f 100644 --- a/api/Access.NavigationButton.OnExit.md +++ b/api/Access.NavigationButton.OnExit.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.OnExit Property (Access) +title: NavigationButton.OnExit property (Access) keywords: vbaac10.chm10494 f1_keywords: - vbaac10.chm10494 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.OnExit Property (Access) +# NavigationButton.OnExit property (Access) Sets or returns the value of the **On Exit** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnExit` +_expression_. `OnExit` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Exit** event occurs just before a control loses the focus to another cont The **OnExit** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Exit** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationButton.OnGotFocus.md b/api/Access.NavigationButton.OnGotFocus.md index e83c0bd0209..0091a34f2b9 100644 --- a/api/Access.NavigationButton.OnGotFocus.md +++ b/api/Access.NavigationButton.OnGotFocus.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.OnGotFocus Property (Access) +title: NavigationButton.OnGotFocus property (Access) keywords: vbaac10.chm10495 f1_keywords: - vbaac10.chm10495 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.OnGotFocus Property (Access) +# NavigationButton.OnGotFocus property (Access) Sets or returns the value of the **On Got Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnGotFocus` +_expression_. `OnGotFocus` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **GotFocus** event occurs when the object receives the focus. The **OnGotFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Got Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationButton.OnKeyDown.md b/api/Access.NavigationButton.OnKeyDown.md index e4d6e1a410d..a50f4e660b7 100644 --- a/api/Access.NavigationButton.OnKeyDown.md +++ b/api/Access.NavigationButton.OnKeyDown.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.OnKeyDown Property (Access) +title: NavigationButton.OnKeyDown property (Access) keywords: vbaac10.chm10502 f1_keywords: - vbaac10.chm10502 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.OnKeyDown Property (Access) +# NavigationButton.OnKeyDown property (Access) Sets or returns the value of the **On Key Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyDown` +_expression_. `OnKeyDown` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyDown** event occurs when a user presses a key while a form or control The **OnKeyDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationButton.OnKeyPress.md b/api/Access.NavigationButton.OnKeyPress.md index f258b2e1863..f4af9284306 100644 --- a/api/Access.NavigationButton.OnKeyPress.md +++ b/api/Access.NavigationButton.OnKeyPress.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.OnKeyPress Property (Access) +title: NavigationButton.OnKeyPress property (Access) keywords: vbaac10.chm10504 f1_keywords: - vbaac10.chm10504 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.OnKeyPress Property (Access) +# NavigationButton.OnKeyPress property (Access) Sets or returns the value of the **On Key Press** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyPress` +_expression_. `OnKeyPress` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyPress** event occurs when a user presses a key while a form or control The **OnKeyPress** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Press** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationButton.OnKeyUp.md b/api/Access.NavigationButton.OnKeyUp.md index cb9f8cf1583..46b49e8a016 100644 --- a/api/Access.NavigationButton.OnKeyUp.md +++ b/api/Access.NavigationButton.OnKeyUp.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.OnKeyUp Property (Access) +title: NavigationButton.OnKeyUp property (Access) keywords: vbaac10.chm10503 f1_keywords: - vbaac10.chm10503 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.OnKeyUp Property (Access) +# NavigationButton.OnKeyUp property (Access) Sets or returns the value of the **On Key Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyUp` +_expression_. `OnKeyUp` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyUp** event occurs when a user presses a key while a form or control ha The **OnKeyUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationButton.OnLostFocus.md b/api/Access.NavigationButton.OnLostFocus.md index a5c69fa4aff..e11c284dc60 100644 --- a/api/Access.NavigationButton.OnLostFocus.md +++ b/api/Access.NavigationButton.OnLostFocus.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.OnLostFocus Property (Access) +title: NavigationButton.OnLostFocus property (Access) keywords: vbaac10.chm10496 f1_keywords: - vbaac10.chm10496 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.OnLostFocus Property (Access) +# NavigationButton.OnLostFocus property (Access) Sets or returns the value of the **On Lost Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnLostFocus` +_expression_. `OnLostFocus` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **LostFocus** event occurs when the object loses the focus. The **OnLostFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Lost Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationButton.OnMouseDown.md b/api/Access.NavigationButton.OnMouseDown.md index 5c59c0b6de0..fcd1e8065ec 100644 --- a/api/Access.NavigationButton.OnMouseDown.md +++ b/api/Access.NavigationButton.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.OnMouseDown Property (Access) +title: NavigationButton.OnMouseDown property (Access) keywords: vbaac10.chm10499 f1_keywords: - vbaac10.chm10499 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.OnMouseDown Property (Access) +# NavigationButton.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationButton.OnMouseMove.md b/api/Access.NavigationButton.OnMouseMove.md index 54ec235a629..2ba1692d591 100644 --- a/api/Access.NavigationButton.OnMouseMove.md +++ b/api/Access.NavigationButton.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.OnMouseMove Property (Access) +title: NavigationButton.OnMouseMove property (Access) keywords: vbaac10.chm10500 f1_keywords: - vbaac10.chm10500 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.OnMouseMove Property (Access) +# NavigationButton.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationButton.OnMouseUp.md b/api/Access.NavigationButton.OnMouseUp.md index c7c916d8928..5cc7ce020ac 100644 --- a/api/Access.NavigationButton.OnMouseUp.md +++ b/api/Access.NavigationButton.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.OnMouseUp Property (Access) +title: NavigationButton.OnMouseUp property (Access) keywords: vbaac10.chm10501 f1_keywords: - vbaac10.chm10501 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.OnMouseUp Property (Access) +# NavigationButton.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationButton.OnPush.md b/api/Access.NavigationButton.OnPush.md index a86175df4e2..50630955964 100644 --- a/api/Access.NavigationButton.OnPush.md +++ b/api/Access.NavigationButton.OnPush.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.OnPush Property (Access) +title: NavigationButton.OnPush property (Access) keywords: vbaac10.chm10459 f1_keywords: - vbaac10.chm10459 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.OnPush Property (Access) +# NavigationButton.OnPush property (Access) Sets or returns the value of the **On Click** box in the **Properties** window of a command button. Read/write **String**. ## Syntax - _expression_. `OnPush` +_expression_. `OnPush` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks @@ -32,7 +32,7 @@ Although the name of this property is **OnPush**, setting this property actuall The **OnPush** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the command button's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationButton.Parent.md b/api/Access.NavigationButton.Parent.md index e7f3cd60155..7cb043c91bf 100644 --- a/api/Access.NavigationButton.Parent.md +++ b/api/Access.NavigationButton.Parent.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Parent Property (Access) +title: NavigationButton.Parent property (Access) keywords: vbaac10.chm10439 f1_keywords: - vbaac10.chm10439 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Parent Property (Access) +# NavigationButton.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## See also diff --git a/api/Access.NavigationButton.ParentTab.md b/api/Access.NavigationButton.ParentTab.md index 62f8100e4e0..84496a25810 100644 --- a/api/Access.NavigationButton.ParentTab.md +++ b/api/Access.NavigationButton.ParentTab.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.ParentTab Property (Access) +title: NavigationButton.ParentTab property (Access) keywords: vbaac10.chm14645 f1_keywords: - vbaac10.chm14645 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.ParentTab Property (Access) +# NavigationButton.ParentTab property (Access) Gets the top-level navigation button associated with the specified navigation button. Read-only **NavigationButton**. ## Syntax - _expression_. `ParentTab` +_expression_. `ParentTab` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Picture.md b/api/Access.NavigationButton.Picture.md index 856bcd638cd..6bf33239f90 100644 --- a/api/Access.NavigationButton.Picture.md +++ b/api/Access.NavigationButton.Picture.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Picture Property (Access) +title: NavigationButton.Picture property (Access) keywords: vbaac10.chm10451 f1_keywords: - vbaac10.chm10451 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Picture Property (Access) +# NavigationButton.Picture property (Access) You can use the **Picture** property to specify a bitmap or other type of graphic to be displayed on the specified control. Read/write **String**. ## Syntax - _expression_. `Picture` +_expression_. `Picture` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.PictureCaptionArrangement.md b/api/Access.NavigationButton.PictureCaptionArrangement.md index 17cb310e770..ced118a8fd1 100644 --- a/api/Access.NavigationButton.PictureCaptionArrangement.md +++ b/api/Access.NavigationButton.PictureCaptionArrangement.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.PictureCaptionArrangement Property (Access) +title: NavigationButton.PictureCaptionArrangement property (Access) keywords: vbaac10.chm14291 f1_keywords: - vbaac10.chm14291 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.PictureCaptionArrangement Property (Access) +# NavigationButton.PictureCaptionArrangement property (Access) Gets or sets how the specified button's caption is arranged in relation to its picture. Read/write **[AcPictureCaptionArrangement](Access.AcPictureCaptionArrangement.md)**. ## Syntax - _expression_. `PictureCaptionArrangement` +_expression_. `PictureCaptionArrangement` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## See also diff --git a/api/Access.NavigationButton.PictureData.md b/api/Access.NavigationButton.PictureData.md index dcb10b30552..6353b4b1a88 100644 --- a/api/Access.NavigationButton.PictureData.md +++ b/api/Access.NavigationButton.PictureData.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.PictureData Property (Access) +title: NavigationButton.PictureData property (Access) keywords: vbaac10.chm10453 f1_keywords: - vbaac10.chm10453 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.PictureData Property (Access) +# NavigationButton.PictureData property (Access) You can use the **PictureData** property to copy the picture to another object that supports the **Picture** property. Read/write **Variant**. ## Syntax - _expression_. `PictureData` +_expression_. `PictureData` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.PictureType.md b/api/Access.NavigationButton.PictureType.md index 56f03e2f1be..b95735df77d 100644 --- a/api/Access.NavigationButton.PictureType.md +++ b/api/Access.NavigationButton.PictureType.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.PictureType Property (Access) +title: NavigationButton.PictureType property (Access) keywords: vbaac10.chm10452 f1_keywords: - vbaac10.chm10452 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.PictureType Property (Access) +# NavigationButton.PictureType property (Access) You can use the **PictureType** property to specify whether Microsoft Access stores an object's picture as a linked or an embedded object. Read/write **Byte**. ## Syntax - _expression_. `PictureType` +_expression_. `PictureType` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.PressedColor.md b/api/Access.NavigationButton.PressedColor.md index 21b07594442..6c088afc64a 100644 --- a/api/Access.NavigationButton.PressedColor.md +++ b/api/Access.NavigationButton.PressedColor.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.PressedColor Property (Access) +title: NavigationButton.PressedColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.PressedColor Property (Access) +# NavigationButton.PressedColor property (Access) Gets or sets the color displayed on the control when the user clicks it. Read/write **Long**. ## Syntax - _expression_. `PressedColor` +_expression_. `PressedColor` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.PressedForeColor.md b/api/Access.NavigationButton.PressedForeColor.md index b253afb670b..8d806148a4c 100644 --- a/api/Access.NavigationButton.PressedForeColor.md +++ b/api/Access.NavigationButton.PressedForeColor.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.PressedForeColor Property (Access) +title: NavigationButton.PressedForeColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.PressedForeColor Property (Access) +# NavigationButton.PressedForeColor property (Access) Gets or sets the color of the text displayed on the control when the user clicks it. Read/write **Long**. ## Syntax - _expression_. `PressedForeColor` +_expression_. `PressedForeColor` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.PressedForeShade.md b/api/Access.NavigationButton.PressedForeShade.md index 7d83508e4eb..292131965a9 100644 --- a/api/Access.NavigationButton.PressedForeShade.md +++ b/api/Access.NavigationButton.PressedForeShade.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.PressedForeShade Property (Access) +title: NavigationButton.PressedForeShade property (Access) keywords: vbaac10.chm14626 f1_keywords: - vbaac10.chm14626 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.PressedForeShade Property (Access) +# NavigationButton.PressedForeShade property (Access) Gets or sets the shade applied to the theme color in the **PressedForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `PressedForeShade` +_expression_. `PressedForeShade` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.PressedForeThemeColorIndex.md b/api/Access.NavigationButton.PressedForeThemeColorIndex.md index c405c3fc754..aaead8d0bda 100644 --- a/api/Access.NavigationButton.PressedForeThemeColorIndex.md +++ b/api/Access.NavigationButton.PressedForeThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.PressedForeThemeColorIndex Property (Access) +title: NavigationButton.PressedForeThemeColorIndex property (Access) keywords: vbaac10.chm14624 f1_keywords: - vbaac10.chm14624 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.PressedForeThemeColorIndex Property (Access) +# NavigationButton.PressedForeThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **PressedForeColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `PressedForeThemeColorIndex` +_expression_. `PressedForeThemeColorIndex` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.PressedForeTint.md b/api/Access.NavigationButton.PressedForeTint.md index 4db24870130..719f2c0db80 100644 --- a/api/Access.NavigationButton.PressedForeTint.md +++ b/api/Access.NavigationButton.PressedForeTint.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.PressedForeTint Property (Access) +title: NavigationButton.PressedForeTint property (Access) keywords: vbaac10.chm14625 f1_keywords: - vbaac10.chm14625 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.PressedForeTint Property (Access) +# NavigationButton.PressedForeTint property (Access) Gets or sets the tint applied to the theme color in the **PressedForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `PressedForeTint` +_expression_. `PressedForeTint` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.PressedShade.md b/api/Access.NavigationButton.PressedShade.md index bebdc4fa03a..02b6e725d62 100644 --- a/api/Access.NavigationButton.PressedShade.md +++ b/api/Access.NavigationButton.PressedShade.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.PressedShade Property (Access) +title: NavigationButton.PressedShade property (Access) keywords: vbaac10.chm14622 f1_keywords: - vbaac10.chm14622 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.PressedShade Property (Access) +# NavigationButton.PressedShade property (Access) Gets or sets the shade that is applied to the theme color in the **PressedColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `PressedShade` +_expression_. `PressedShade` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.PressedThemeColorIndex.md b/api/Access.NavigationButton.PressedThemeColorIndex.md index 14719cbcb0b..d26b05b9fe8 100644 --- a/api/Access.NavigationButton.PressedThemeColorIndex.md +++ b/api/Access.NavigationButton.PressedThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.PressedThemeColorIndex Property (Access) +title: NavigationButton.PressedThemeColorIndex property (Access) keywords: vbaac10.chm14620 f1_keywords: - vbaac10.chm14620 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.PressedThemeColorIndex Property (Access) +# NavigationButton.PressedThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **PressedColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `PressedThemeColorIndex` +_expression_. `PressedThemeColorIndex` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.PressedTint.md b/api/Access.NavigationButton.PressedTint.md index 36fd2cc2cbd..6601fc80670 100644 --- a/api/Access.NavigationButton.PressedTint.md +++ b/api/Access.NavigationButton.PressedTint.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.PressedTint Property (Access) +title: NavigationButton.PressedTint property (Access) keywords: vbaac10.chm14621 f1_keywords: - vbaac10.chm14621 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.PressedTint Property (Access) +# NavigationButton.PressedTint property (Access) Gets or sets the tint applied to the theme color in the **PressedColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `PressedTint` +_expression_. `PressedTint` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Properties.md b/api/Access.NavigationButton.Properties.md index 0d4deb591b2..65b3019f830 100644 --- a/api/Access.NavigationButton.Properties.md +++ b/api/Access.NavigationButton.Properties.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Properties Property (Access) +title: NavigationButton.Properties property (Access) keywords: vbaac10.chm10441 f1_keywords: - vbaac10.chm10441 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Properties Property (Access) +# NavigationButton.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.QuickStyle.md b/api/Access.NavigationButton.QuickStyle.md index d5031e49066..e7659aaf80c 100644 --- a/api/Access.NavigationButton.QuickStyle.md +++ b/api/Access.NavigationButton.QuickStyle.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.QuickStyle Property (Access) +title: NavigationButton.QuickStyle property (Access) keywords: vbaac10.chm14646 f1_keywords: - vbaac10.chm14646 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.QuickStyle Property (Access) +# NavigationButton.QuickStyle property (Access) Gets or sets the Quick Style that is applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `QuickStyle` +_expression_. `QuickStyle` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.ReadingOrder.md b/api/Access.NavigationButton.ReadingOrder.md index 0591984c08a..97350aaea47 100644 --- a/api/Access.NavigationButton.ReadingOrder.md +++ b/api/Access.NavigationButton.ReadingOrder.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.ReadingOrder Property (Access) +title: NavigationButton.ReadingOrder property (Access) keywords: vbaac10.chm10505 f1_keywords: - vbaac10.chm10505 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.ReadingOrder Property (Access) +# NavigationButton.ReadingOrder property (Access) You can use the **ReadingOrder** property to specify or determine the reading order of words in text. Read/write **Byte**. ## Syntax - _expression_. `ReadingOrder` +_expression_. `ReadingOrder` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Requery.md b/api/Access.NavigationButton.Requery.md index bd68584459e..d1ab2916de2 100644 --- a/api/Access.NavigationButton.Requery.md +++ b/api/Access.NavigationButton.Requery.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Requery Method (Access) +title: NavigationButton.Requery method (Access) keywords: vbaac10.chm10443 f1_keywords: - vbaac10.chm10443 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Requery Method (Access) +# NavigationButton.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.RightPadding.md b/api/Access.NavigationButton.RightPadding.md index ba345bb5234..57bc42a32ba 100644 --- a/api/Access.NavigationButton.RightPadding.md +++ b/api/Access.NavigationButton.RightPadding.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.RightPadding Property (Access) +title: NavigationButton.RightPadding property (Access) keywords: vbaac10.chm10526 f1_keywords: - vbaac10.chm10526 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.RightPadding Property (Access) +# NavigationButton.RightPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## See also diff --git a/api/Access.NavigationButton.Section.md b/api/Access.NavigationButton.Section.md index 045f257da62..f524bf50fdf 100644 --- a/api/Access.NavigationButton.Section.md +++ b/api/Access.NavigationButton.Section.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Section Property (Access) +title: NavigationButton.Section property (Access) keywords: vbaac10.chm10487 f1_keywords: - vbaac10.chm10487 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Section Property (Access) +# NavigationButton.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.SetFocus.md b/api/Access.NavigationButton.SetFocus.md index db554b3707c..990b570ef23 100644 --- a/api/Access.NavigationButton.SetFocus.md +++ b/api/Access.NavigationButton.SetFocus.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.SetFocus Method (Access) +title: NavigationButton.SetFocus method (Access) keywords: vbaac10.chm10444 f1_keywords: - vbaac10.chm10444 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.SetFocus Method (Access) +# NavigationButton.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Shadow.md b/api/Access.NavigationButton.Shadow.md index b60caabbfb2..8f36362dd3e 100644 --- a/api/Access.NavigationButton.Shadow.md +++ b/api/Access.NavigationButton.Shadow.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Shadow Property (Access) +title: NavigationButton.Shadow property (Access) keywords: vbaac10.chm14638 f1_keywords: - vbaac10.chm14638 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Shadow Property (Access) +# NavigationButton.Shadow property (Access) Gets or sets the **Shadow** effect applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `Shadow` +_expression_. `Shadow` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Shape.md b/api/Access.NavigationButton.Shape.md index 91652194477..9637f6d0e36 100644 --- a/api/Access.NavigationButton.Shape.md +++ b/api/Access.NavigationButton.Shape.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Shape Property (Access) +title: NavigationButton.Shape property (Access) keywords: vbaac10.chm14628 f1_keywords: - vbaac10.chm14628 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Shape Property (Access) +# NavigationButton.Shape property (Access) Returns or sets the shape of the specifiednavigation button. Read/write **Long**. ## Syntax - _expression_. `Shape` +_expression_. `Shape` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.ShortcutMenuBar.md b/api/Access.NavigationButton.ShortcutMenuBar.md index 46a4430d651..36691f59814 100644 --- a/api/Access.NavigationButton.ShortcutMenuBar.md +++ b/api/Access.NavigationButton.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.ShortcutMenuBar Property (Access) +title: NavigationButton.ShortcutMenuBar property (Access) keywords: vbaac10.chm10479 f1_keywords: - vbaac10.chm10479 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.ShortcutMenuBar Property (Access) +# NavigationButton.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.SizeToFit.md b/api/Access.NavigationButton.SizeToFit.md index 859c1027bac..2de77a850ef 100644 --- a/api/Access.NavigationButton.SizeToFit.md +++ b/api/Access.NavigationButton.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.SizeToFit Method (Access) +title: NavigationButton.SizeToFit method (Access) keywords: vbaac10.chm10442 f1_keywords: - vbaac10.chm10442 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.SizeToFit Method (Access) +# NavigationButton.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.SoftEdges.md b/api/Access.NavigationButton.SoftEdges.md index a8800f715e4..b9adbea46bd 100644 --- a/api/Access.NavigationButton.SoftEdges.md +++ b/api/Access.NavigationButton.SoftEdges.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.SoftEdges Property (Access) +title: NavigationButton.SoftEdges property (Access) keywords: vbaac10.chm14639 f1_keywords: - vbaac10.chm14639 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.SoftEdges Property (Access) +# NavigationButton.SoftEdges property (Access) Gets or sets the **Soft Edges** effect applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `SoftEdges` +_expression_. `SoftEdges` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.StatusBarText.md b/api/Access.NavigationButton.StatusBarText.md index ac2e2c9aeef..577b8465817 100644 --- a/api/Access.NavigationButton.StatusBarText.md +++ b/api/Access.NavigationButton.StatusBarText.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.StatusBarText Property (Access) +title: NavigationButton.StatusBarText property (Access) keywords: vbaac10.chm10458 f1_keywords: - vbaac10.chm10458 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.StatusBarText Property (Access) +# NavigationButton.StatusBarText property (Access) You can use the **StatusBarText** property to specify the text that is displayed in the status bar when a control is selected. Read/write **String**. ## Syntax - _expression_. `StatusBarText` +_expression_. `StatusBarText` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.TabIndex.md b/api/Access.NavigationButton.TabIndex.md index 98304597ca1..3b34b460d48 100644 --- a/api/Access.NavigationButton.TabIndex.md +++ b/api/Access.NavigationButton.TabIndex.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.TabIndex Property (Access) +title: NavigationButton.TabIndex property (Access) keywords: vbaac10.chm10466 f1_keywords: - vbaac10.chm10466 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.TabIndex Property (Access) +# NavigationButton.TabIndex property (Access) You can use the **TabIndex** property to specify a control's place in the tab order on a form or report. Read/write **Integer**. ## Syntax - _expression_. `TabIndex` +_expression_. `TabIndex` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.TabStop.md b/api/Access.NavigationButton.TabStop.md index 1c9621ef860..9291ff3d5dc 100644 --- a/api/Access.NavigationButton.TabStop.md +++ b/api/Access.NavigationButton.TabStop.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.TabStop Property (Access) +title: NavigationButton.TabStop property (Access) keywords: vbaac10.chm10465 f1_keywords: - vbaac10.chm10465 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.TabStop Property (Access) +# NavigationButton.TabStop property (Access) You can use the **TabStop** property to specify whether you can use the TAB key to move the focus to a control. Read/write **Boolean**. ## Syntax - _expression_. `TabStop` +_expression_. `TabStop` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Tag.md b/api/Access.NavigationButton.Tag.md index 18865ab0920..78a60275d79 100644 --- a/api/Access.NavigationButton.Tag.md +++ b/api/Access.NavigationButton.Tag.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Tag Property (Access) +title: NavigationButton.Tag property (Access) keywords: vbaac10.chm10489 f1_keywords: - vbaac10.chm10489 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Tag Property (Access) +# NavigationButton.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.ThemeFontIndex.md b/api/Access.NavigationButton.ThemeFontIndex.md index fee91083a95..bddf10689ef 100644 --- a/api/Access.NavigationButton.ThemeFontIndex.md +++ b/api/Access.NavigationButton.ThemeFontIndex.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.ThemeFontIndex Property (Access) +title: NavigationButton.ThemeFontIndex property (Access) keywords: vbaac10.chm14610 f1_keywords: - vbaac10.chm14610 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.ThemeFontIndex Property (Access) +# NavigationButton.ThemeFontIndex property (Access) Gets or sets the font index that represents a font in the applied theme associated with the **FontName** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `ThemeFontIndex` +_expression_. `ThemeFontIndex` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Top.md b/api/Access.NavigationButton.Top.md index f6aad56f948..d9514ddc1e9 100644 --- a/api/Access.NavigationButton.Top.md +++ b/api/Access.NavigationButton.Top.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Top Property (Access) +title: NavigationButton.Top property (Access) keywords: vbaac10.chm10468 f1_keywords: - vbaac10.chm10468 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Top Property (Access) +# NavigationButton.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.TopPadding.md b/api/Access.NavigationButton.TopPadding.md index 05c2346ea8a..d6d1f460f8a 100644 --- a/api/Access.NavigationButton.TopPadding.md +++ b/api/Access.NavigationButton.TopPadding.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.TopPadding Property (Access) +title: NavigationButton.TopPadding property (Access) keywords: vbaac10.chm10525 f1_keywords: - vbaac10.chm10525 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.TopPadding Property (Access) +# NavigationButton.TopPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## See also diff --git a/api/Access.NavigationButton.Transparent.md b/api/Access.NavigationButton.Transparent.md index d9092060a90..9a2405b7869 100644 --- a/api/Access.NavigationButton.Transparent.md +++ b/api/Access.NavigationButton.Transparent.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Transparent Property (Access) +title: NavigationButton.Transparent property (Access) keywords: vbaac10.chm10454 f1_keywords: - vbaac10.chm10454 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Transparent Property (Access) +# NavigationButton.Transparent property (Access) You can use the **Transparent** property to specify whether a command button is solid or transparent. Read/write **Boolean**. ## Syntax - _expression_. `Transparent` +_expression_. `Transparent` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.VerticalAnchor.md b/api/Access.NavigationButton.VerticalAnchor.md index 2347b4cc2af..2e48f5f502a 100644 --- a/api/Access.NavigationButton.VerticalAnchor.md +++ b/api/Access.NavigationButton.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.VerticalAnchor Property (Access) +title: NavigationButton.VerticalAnchor property (Access) keywords: vbaac10.chm10538 f1_keywords: - vbaac10.chm10538 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.VerticalAnchor Property (Access) +# NavigationButton.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified text box is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Visible.md b/api/Access.NavigationButton.Visible.md index 8a8d06e6bb8..6deaf5bb8c8 100644 --- a/api/Access.NavigationButton.Visible.md +++ b/api/Access.NavigationButton.Visible.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Visible Property (Access) +title: NavigationButton.Visible property (Access) keywords: vbaac10.chm10462 f1_keywords: - vbaac10.chm10462 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Visible Property (Access) +# NavigationButton.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.Width.md b/api/Access.NavigationButton.Width.md index f80e125c981..eed8ae126da 100644 --- a/api/Access.NavigationButton.Width.md +++ b/api/Access.NavigationButton.Width.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.Width Property (Access) +title: NavigationButton.Width property (Access) keywords: vbaac10.chm10469 f1_keywords: - vbaac10.chm10469 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.Width Property (Access) +# NavigationButton.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.NavigationButton.md b/api/Access.NavigationButton.md index 79f6dca24b2..abbd8c74f46 100644 --- a/api/Access.NavigationButton.md +++ b/api/Access.NavigationButton.md @@ -1,5 +1,5 @@ --- -title: NavigationButton Object (Access) +title: NavigationButton object (Access) keywords: vbaac10.chm11201 f1_keywords: - vbaac10.chm11201 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# NavigationButton Object (Access) +# NavigationButton object (Access) This object represents a navigation button in a navigation control on a form. diff --git a/api/Access.NavigationControl.AfterUpdate.md b/api/Access.NavigationControl.AfterUpdate.md index 503b2b65488..9a1b0eccf2a 100644 --- a/api/Access.NavigationControl.AfterUpdate.md +++ b/api/Access.NavigationControl.AfterUpdate.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.AfterUpdate Event (Access) +title: NavigationControl.AfterUpdate event (Access) keywords: vbaac10.chm14195 f1_keywords: - vbaac10.chm14195 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.AfterUpdate Event (Access) +# NavigationControl.AfterUpdate event (Access) The **AfterUpdate** event occurs after changed data in a control or record is updated. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Application.md b/api/Access.NavigationControl.Application.md index cd668c7f98b..c456e4cb886 100644 --- a/api/Access.NavigationControl.Application.md +++ b/api/Access.NavigationControl.Application.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Application Property (Access) +title: NavigationControl.Application property (Access) keywords: vbaac10.chm11028 f1_keywords: - vbaac10.chm11028 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Application Property (Access) +# NavigationControl.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.AutoTab.md b/api/Access.NavigationControl.AutoTab.md index c7b50745f26..397c80bc32f 100644 --- a/api/Access.NavigationControl.AutoTab.md +++ b/api/Access.NavigationControl.AutoTab.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.AutoTab Property (Access) +title: NavigationControl.AutoTab property (Access) keywords: vbaac10.chm11063 f1_keywords: - vbaac10.chm11063 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.AutoTab Property (Access) +# NavigationControl.AutoTab property (Access) You can use the **AutoTab** property to specify whether an automatic tab occurs when the last character permitted by a text box control's input mask is entered. An automatic tab moves the focus to the next control in the form's tab order. Read/write **Boolean**. ## Syntax - _expression_. `AutoTab` +_expression_. `AutoTab` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.BackColor.md b/api/Access.NavigationControl.BackColor.md index 211a011ac8c..d1296e2838c 100644 --- a/api/Access.NavigationControl.BackColor.md +++ b/api/Access.NavigationControl.BackColor.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.BackColor Property (Access) +title: NavigationControl.BackColor property (Access) keywords: vbaac10.chm11076 f1_keywords: - vbaac10.chm11076 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.BackColor Property (Access) +# NavigationControl.BackColor property (Access) Gets or sets the interior color of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackColor` +_expression_. `BackColor` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.BackShade.md b/api/Access.NavigationControl.BackShade.md index 9fed406146a..ba23d96752e 100644 --- a/api/Access.NavigationControl.BackShade.md +++ b/api/Access.NavigationControl.BackShade.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.BackShade Property (Access) +title: NavigationControl.BackShade property (Access) keywords: vbaac10.chm14633 f1_keywords: - vbaac10.chm14633 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.BackShade Property (Access) +# NavigationControl.BackShade property (Access) Gets or sets the shade applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackShade` +_expression_. `BackShade` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.BackStyle.md b/api/Access.NavigationControl.BackStyle.md index 97ea5cad55d..784f33625fd 100644 --- a/api/Access.NavigationControl.BackStyle.md +++ b/api/Access.NavigationControl.BackStyle.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.BackStyle Property (Access) +title: NavigationControl.BackStyle property (Access) keywords: vbaac10.chm11075 f1_keywords: - vbaac10.chm11075 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.BackStyle Property (Access) +# NavigationControl.BackStyle property (Access) You can use the **BackStyle** property to specify whether a control will be transparent. Read/write **Byte**. ## Syntax - _expression_. `BackStyle` +_expression_. `BackStyle` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.BackThemeColorIndex.md b/api/Access.NavigationControl.BackThemeColorIndex.md index 95bd06eceaf..4bb23b5b997 100644 --- a/api/Access.NavigationControl.BackThemeColorIndex.md +++ b/api/Access.NavigationControl.BackThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.BackThemeColorIndex Property (Access) +title: NavigationControl.BackThemeColorIndex property (Access) keywords: vbaac10.chm14631 f1_keywords: - vbaac10.chm14631 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.BackThemeColorIndex Property (Access) +# NavigationControl.BackThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BackColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackThemeColorIndex` +_expression_. `BackThemeColorIndex` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.BackTint.md b/api/Access.NavigationControl.BackTint.md index cf117b014c6..c94b0ac0dfb 100644 --- a/api/Access.NavigationControl.BackTint.md +++ b/api/Access.NavigationControl.BackTint.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.BackTint Property (Access) +title: NavigationControl.BackTint property (Access) keywords: vbaac10.chm14632 f1_keywords: - vbaac10.chm14632 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.BackTint Property (Access) +# NavigationControl.BackTint property (Access) Gets or sets the tint that is applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackTint` +_expression_. `BackTint` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.BeforeUpdate.md b/api/Access.NavigationControl.BeforeUpdate.md index 05a1b209695..5ba5b3e4ab5 100644 --- a/api/Access.NavigationControl.BeforeUpdate.md +++ b/api/Access.NavigationControl.BeforeUpdate.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.BeforeUpdate Event (Access) +title: NavigationControl.BeforeUpdate event (Access) keywords: vbaac10.chm14194 f1_keywords: - vbaac10.chm14194 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# NavigationControl.BeforeUpdate Event (Access) +# NavigationControl.BeforeUpdate event (Access) The **BeforeUpdate** event occurs before changed data in a control or record is updated. ## Syntax - _expression_. `BeforeUpdate`( ` _Cancel_`, ) +_expression_. `BeforeUpdate`( ` _Cancel_`, ) - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationControl.BorderColor.md b/api/Access.NavigationControl.BorderColor.md index c47a6c9881c..bc878fa8357 100644 --- a/api/Access.NavigationControl.BorderColor.md +++ b/api/Access.NavigationControl.BorderColor.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.BorderColor Property (Access) +title: NavigationControl.BorderColor property (Access) keywords: vbaac10.chm11080 f1_keywords: - vbaac10.chm11080 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.BorderColor Property (Access) +# NavigationControl.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.BorderShade.md b/api/Access.NavigationControl.BorderShade.md index 6880c545afa..0bb13d91523 100644 --- a/api/Access.NavigationControl.BorderShade.md +++ b/api/Access.NavigationControl.BorderShade.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.BorderShade Property (Access) +title: NavigationControl.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.BorderShade Property (Access) +# NavigationControl.BorderShade property (Access) Gets or sets the shade applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.BorderStyle.md b/api/Access.NavigationControl.BorderStyle.md index 01a36352e32..3d72984973e 100644 --- a/api/Access.NavigationControl.BorderStyle.md +++ b/api/Access.NavigationControl.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.BorderStyle Property (Access) +title: NavigationControl.BorderStyle property (Access) keywords: vbaac10.chm11078 f1_keywords: - vbaac10.chm11078 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.BorderStyle Property (Access) +# NavigationControl.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.BorderThemeColorIndex.md b/api/Access.NavigationControl.BorderThemeColorIndex.md index 4229477003c..bdc19a66251 100644 --- a/api/Access.NavigationControl.BorderThemeColorIndex.md +++ b/api/Access.NavigationControl.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.BorderThemeColorIndex Property (Access) +title: NavigationControl.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.BorderThemeColorIndex Property (Access) +# NavigationControl.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.BorderTint.md b/api/Access.NavigationControl.BorderTint.md index 542bed2e85e..dd592acd9eb 100644 --- a/api/Access.NavigationControl.BorderTint.md +++ b/api/Access.NavigationControl.BorderTint.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.BorderTint Property (Access) +title: NavigationControl.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.BorderTint Property (Access) +# NavigationControl.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.BorderWidth.md b/api/Access.NavigationControl.BorderWidth.md index 50cf0d00379..fba3f357fdc 100644 --- a/api/Access.NavigationControl.BorderWidth.md +++ b/api/Access.NavigationControl.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.BorderWidth Property (Access) +title: NavigationControl.BorderWidth property (Access) keywords: vbaac10.chm11081 f1_keywords: - vbaac10.chm11081 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.BorderWidth Property (Access) +# NavigationControl.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.BottomPadding.md b/api/Access.NavigationControl.BottomPadding.md index 0c18a61eb53..8b12ccf63a7 100644 --- a/api/Access.NavigationControl.BottomPadding.md +++ b/api/Access.NavigationControl.BottomPadding.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.BottomPadding Property (Access) +title: NavigationControl.BottomPadding property (Access) keywords: vbaac10.chm11155 f1_keywords: - vbaac10.chm11155 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.BottomPadding Property (Access) +# NavigationControl.BottomPadding property (Access) Gets or sets the amount of space (in inches) between the list box and its bottom gridline. Read/write **Integer**. ## Syntax - _expression_. `BottomPadding` +_expression_. `BottomPadding` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## See also diff --git a/api/Access.NavigationControl.Change.md b/api/Access.NavigationControl.Change.md index 11532de0748..ea8c08caa94 100644 --- a/api/Access.NavigationControl.Change.md +++ b/api/Access.NavigationControl.Change.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Change Event (Access) +title: NavigationControl.Change event (Access) keywords: vbaac10.chm14196 f1_keywords: - vbaac10.chm14196 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# NavigationControl.Change Event (Access) +# NavigationControl.Change event (Access) The **Change** event occurs when the contents of the specified control changes. ## Syntax - _expression_. `Change` +_expression_. `Change` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. -### Return Value +### Return value nothing diff --git a/api/Access.NavigationControl.Click.md b/api/Access.NavigationControl.Click.md index a1daaf2f8b1..4fdf5f6f86d 100644 --- a/api/Access.NavigationControl.Click.md +++ b/api/Access.NavigationControl.Click.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Click Event (Access) +title: NavigationControl.Click event (Access) keywords: vbaac10.chm14201 f1_keywords: - vbaac10.chm14201 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# NavigationControl.Click Event (Access) +# NavigationControl.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. -### Return Value +### Return value nothing diff --git a/api/Access.NavigationControl.ControlTipText.md b/api/Access.NavigationControl.ControlTipText.md index 486b4ee6e00..70f995fd25c 100644 --- a/api/Access.NavigationControl.ControlTipText.md +++ b/api/Access.NavigationControl.ControlTipText.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.ControlTipText Property (Access) +title: NavigationControl.ControlTipText property (Access) keywords: vbaac10.chm11093 f1_keywords: - vbaac10.chm11093 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.ControlTipText Property (Access) +# NavigationControl.ControlTipText property (Access) You can use the **ControlTipText** property to specify the text that appears in a ScreenTip when you hold the mouse pointer over a control. Read/write **String**. ## Syntax - _expression_. `ControlTipText` +_expression_. `ControlTipText` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.ControlType.md b/api/Access.NavigationControl.ControlType.md index 347e408affd..4e9c41bbdfd 100644 --- a/api/Access.NavigationControl.ControlType.md +++ b/api/Access.NavigationControl.ControlType.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.ControlType Property (Access) +title: NavigationControl.ControlType property (Access) keywords: vbaac10.chm11042 f1_keywords: - vbaac10.chm11042 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.ControlType Property (Access) +# NavigationControl.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Controls.md b/api/Access.NavigationControl.Controls.md index d6d71a60ce3..1b9ddaf0540 100644 --- a/api/Access.NavigationControl.Controls.md +++ b/api/Access.NavigationControl.Controls.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Controls Property (Access) +title: NavigationControl.Controls property (Access) keywords: vbaac10.chm11036 f1_keywords: - vbaac10.chm11036 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Controls Property (Access) +# NavigationControl.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.DblClick.md b/api/Access.NavigationControl.DblClick.md index 3af5604c2be..dd2fc22b54f 100644 --- a/api/Access.NavigationControl.DblClick.md +++ b/api/Access.NavigationControl.DblClick.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.DblClick Event (Access) +title: NavigationControl.DblClick event (Access) keywords: vbaac10.chm14202 f1_keywords: - vbaac10.chm14202 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# NavigationControl.DblClick Event (Access) +# NavigationControl.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_`, ) +_expression_. `DblClick`( ` _Cancel_`, ) - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationControl.Dirty.md b/api/Access.NavigationControl.Dirty.md index d56b9ebed41..26091411bbd 100644 --- a/api/Access.NavigationControl.Dirty.md +++ b/api/Access.NavigationControl.Dirty.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Dirty Event (Access) +title: NavigationControl.Dirty event (Access) keywords: vbaac10.chm14209 f1_keywords: - vbaac10.chm14209 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# NavigationControl.Dirty Event (Access) +# NavigationControl.Dirty event (Access) The Dirty event occurs when the contents of the specified control changes. ## Syntax - _expression_. `Dirty`( ` _Cancel_`, ) +_expression_. `Dirty`( ` _Cancel_`, ) - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationControl.DisplayWhen.md b/api/Access.NavigationControl.DisplayWhen.md index 4bca5bc887a..aa8c760774d 100644 --- a/api/Access.NavigationControl.DisplayWhen.md +++ b/api/Access.NavigationControl.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.DisplayWhen Property (Access) +title: NavigationControl.DisplayWhen property (Access) keywords: vbaac10.chm11057 f1_keywords: - vbaac10.chm11057 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.DisplayWhen Property (Access) +# NavigationControl.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Enabled.md b/api/Access.NavigationControl.Enabled.md index 00b3ff4f212..f99a685e3ee 100644 --- a/api/Access.NavigationControl.Enabled.md +++ b/api/Access.NavigationControl.Enabled.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Enabled Property (Access) +title: NavigationControl.Enabled property (Access) keywords: vbaac10.chm11060 f1_keywords: - vbaac10.chm11060 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Enabled Property (Access) +# NavigationControl.Enabled property (Access) You can use the **Enabled** property to set or return the status of the conditional format in the **[FormatCondition](Access.FormatCondition.md)** object. Read/write **Boolean**. ## Syntax - _expression_. `Enabled` +_expression_. `Enabled` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Enter.md b/api/Access.NavigationControl.Enter.md index d3ed6bf1254..3db7e7bdfdd 100644 --- a/api/Access.NavigationControl.Enter.md +++ b/api/Access.NavigationControl.Enter.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Enter Event (Access) +title: NavigationControl.Enter event (Access) keywords: vbaac10.chm14197 f1_keywords: - vbaac10.chm14197 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# NavigationControl.Enter Event (Access) +# NavigationControl.Enter event (Access) The **Enter** event occurs before a control actually receives the focus from a control on the same form or report. ## Syntax - _expression_. `Enter` +_expression_. `Enter` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. -### Return Value +### Return value nothing diff --git a/api/Access.NavigationControl.EventProcPrefix.md b/api/Access.NavigationControl.EventProcPrefix.md index 0bd749e9cf6..ff7a9be828d 100644 --- a/api/Access.NavigationControl.EventProcPrefix.md +++ b/api/Access.NavigationControl.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.EventProcPrefix Property (Access) +title: NavigationControl.EventProcPrefix property (Access) keywords: vbaac10.chm11040 f1_keywords: - vbaac10.chm11040 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.EventProcPrefix Property (Access) +# NavigationControl.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Exit.md b/api/Access.NavigationControl.Exit.md index ce56ca4a19e..179bfc49b4d 100644 --- a/api/Access.NavigationControl.Exit.md +++ b/api/Access.NavigationControl.Exit.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Exit Event (Access) +title: NavigationControl.Exit event (Access) keywords: vbaac10.chm14198 f1_keywords: - vbaac10.chm14198 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# NavigationControl.Exit Event (Access) +# NavigationControl.Exit event (Access) The **Exit** event occurs just before a control loses the focus to another control on the same form or report. ## Syntax - _expression_. `Exit`( ` _Cancel_`, ) +_expression_. `Exit`( ` _Cancel_`, ) - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationControl.FilterLookup.md b/api/Access.NavigationControl.FilterLookup.md index 1e49bb544bd..22cd74b889c 100644 --- a/api/Access.NavigationControl.FilterLookup.md +++ b/api/Access.NavigationControl.FilterLookup.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.FilterLookup Property (Access) +title: NavigationControl.FilterLookup property (Access) keywords: vbaac10.chm11062 f1_keywords: - vbaac10.chm11062 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.FilterLookup Property (Access) +# NavigationControl.FilterLookup property (Access) You can use the **FilterLookup** property to specify whether values appear in a boundtext box control when using the Filter By Form or Server Filter By Form window. Read/write **Byte**. ## Syntax - _expression_. `FilterLookup` +_expression_. `FilterLookup` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.FormatConditions.md b/api/Access.NavigationControl.FormatConditions.md index aff08436f4d..9993a83d644 100644 --- a/api/Access.NavigationControl.FormatConditions.md +++ b/api/Access.NavigationControl.FormatConditions.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.FormatConditions Property (Access) +title: NavigationControl.FormatConditions property (Access) keywords: vbaac10.chm11038 f1_keywords: - vbaac10.chm11038 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.FormatConditions Property (Access) +# NavigationControl.FormatConditions property (Access) You can use the **FormatConditions** property to return a read-only reference to the **[FormatConditions](Access.FormatConditions.md)** collection and its related properties. ## Syntax - _expression_. `FormatConditions` +_expression_. `FormatConditions` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Example diff --git a/api/Access.NavigationControl.GotFocus.md b/api/Access.NavigationControl.GotFocus.md index 0701f1064e0..2ccbcfb3f87 100644 --- a/api/Access.NavigationControl.GotFocus.md +++ b/api/Access.NavigationControl.GotFocus.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.GotFocus Event (Access) +title: NavigationControl.GotFocus event (Access) keywords: vbaac10.chm14199 f1_keywords: - vbaac10.chm14199 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# NavigationControl.GotFocus Event (Access) +# NavigationControl.GotFocus event (Access) The **GotFocus** event occurs when the specified object receives the focus. ## Syntax - _expression_. `GotFocus` +_expression_. `GotFocus` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. -### Return Value +### Return value nothing diff --git a/api/Access.NavigationControl.GridlineColor.md b/api/Access.NavigationControl.GridlineColor.md index b87a477f65f..032d596a5fd 100644 --- a/api/Access.NavigationControl.GridlineColor.md +++ b/api/Access.NavigationControl.GridlineColor.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.GridlineColor Property (Access) +title: NavigationControl.GridlineColor property (Access) keywords: vbaac10.chm11164 f1_keywords: - vbaac10.chm11164 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.GridlineColor Property (Access) +# NavigationControl.GridlineColor property (Access) Gets or sets the color of the gridline for the specified list box. Read/write **Long**. ## Syntax - _expression_. `GridlineColor` +_expression_. `GridlineColor` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.GridlineShade.md b/api/Access.NavigationControl.GridlineShade.md index f88dee6012e..9d2ce0c6671 100644 --- a/api/Access.NavigationControl.GridlineShade.md +++ b/api/Access.NavigationControl.GridlineShade.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.GridlineShade Property (Access) +title: NavigationControl.GridlineShade property (Access) keywords: vbaac10.chm14637 f1_keywords: - vbaac10.chm14637 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.GridlineShade Property (Access) +# NavigationControl.GridlineShade property (Access) Gets or sets the shade applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineShade` +_expression_. `GridlineShade` - _expression_ A variable that represents an [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents an [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.GridlineStyleBottom.md b/api/Access.NavigationControl.GridlineStyleBottom.md index 4d2ce424b4d..78e98776574 100644 --- a/api/Access.NavigationControl.GridlineStyleBottom.md +++ b/api/Access.NavigationControl.GridlineStyleBottom.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.GridlineStyleBottom Property (Access) +title: NavigationControl.GridlineStyleBottom property (Access) keywords: vbaac10.chm11159 f1_keywords: - vbaac10.chm11159 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.GridlineStyleBottom Property (Access) +# NavigationControl.GridlineStyleBottom property (Access) Gets or sets the bottom gridline style of the specified list box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleBottom` +_expression_. `GridlineStyleBottom` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.GridlineStyleLeft.md b/api/Access.NavigationControl.GridlineStyleLeft.md index a62d091a3b9..015fa5290ae 100644 --- a/api/Access.NavigationControl.GridlineStyleLeft.md +++ b/api/Access.NavigationControl.GridlineStyleLeft.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.GridlineStyleLeft Property (Access) +title: NavigationControl.GridlineStyleLeft property (Access) keywords: vbaac10.chm11156 f1_keywords: - vbaac10.chm11156 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.GridlineStyleLeft Property (Access) +# NavigationControl.GridlineStyleLeft property (Access) Gets or sets the width of the bottom gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleLeft` +_expression_. `GridlineStyleLeft` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.GridlineStyleRight.md b/api/Access.NavigationControl.GridlineStyleRight.md index b4f6084b5a0..0fc44ffbbde 100644 --- a/api/Access.NavigationControl.GridlineStyleRight.md +++ b/api/Access.NavigationControl.GridlineStyleRight.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.GridlineStyleRight Property (Access) +title: NavigationControl.GridlineStyleRight property (Access) keywords: vbaac10.chm11158 f1_keywords: - vbaac10.chm11158 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.GridlineStyleRight Property (Access) +# NavigationControl.GridlineStyleRight property (Access) Gets or sets the right gridline style of the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleRight` +_expression_. `GridlineStyleRight` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.GridlineStyleTop.md b/api/Access.NavigationControl.GridlineStyleTop.md index aa4208c4b24..b248253b3b8 100644 --- a/api/Access.NavigationControl.GridlineStyleTop.md +++ b/api/Access.NavigationControl.GridlineStyleTop.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.GridlineStyleTop Property (Access) +title: NavigationControl.GridlineStyleTop property (Access) keywords: vbaac10.chm11157 f1_keywords: - vbaac10.chm11157 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.GridlineStyleTop Property (Access) +# NavigationControl.GridlineStyleTop property (Access) Gets or sets the top gridline style of the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleTop` +_expression_. `GridlineStyleTop` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.GridlineThemeColorIndex.md b/api/Access.NavigationControl.GridlineThemeColorIndex.md index 0b79fada4bf..db8da51ff9d 100644 --- a/api/Access.NavigationControl.GridlineThemeColorIndex.md +++ b/api/Access.NavigationControl.GridlineThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.GridlineThemeColorIndex Property (Access) +title: NavigationControl.GridlineThemeColorIndex property (Access) keywords: vbaac10.chm14635 f1_keywords: - vbaac10.chm14635 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.GridlineThemeColorIndex Property (Access) +# NavigationControl.GridlineThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **GridlineColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `GridlineThemeColorIndex` +_expression_. `GridlineThemeColorIndex` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.GridlineTint.md b/api/Access.NavigationControl.GridlineTint.md index 547de9c1bfd..fe45df713c1 100644 --- a/api/Access.NavigationControl.GridlineTint.md +++ b/api/Access.NavigationControl.GridlineTint.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.GridlineTint Property (Access) +title: NavigationControl.GridlineTint property (Access) keywords: vbaac10.chm14636 f1_keywords: - vbaac10.chm14636 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.GridlineTint Property (Access) +# NavigationControl.GridlineTint property (Access) Gets or sets the tint applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineTint` +_expression_. `GridlineTint` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.GridlineWidthBottom.md b/api/Access.NavigationControl.GridlineWidthBottom.md index 311dd332a87..af882b492ea 100644 --- a/api/Access.NavigationControl.GridlineWidthBottom.md +++ b/api/Access.NavigationControl.GridlineWidthBottom.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.GridlineWidthBottom Property (Access) +title: NavigationControl.GridlineWidthBottom property (Access) keywords: vbaac10.chm11163 f1_keywords: - vbaac10.chm11163 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.GridlineWidthBottom Property (Access) +# NavigationControl.GridlineWidthBottom property (Access) Gets or sets the width of the bottom gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthBottom` +_expression_. `GridlineWidthBottom` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.GridlineWidthLeft.md b/api/Access.NavigationControl.GridlineWidthLeft.md index 5e53cc8eaad..b680c6bc07f 100644 --- a/api/Access.NavigationControl.GridlineWidthLeft.md +++ b/api/Access.NavigationControl.GridlineWidthLeft.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.GridlineWidthLeft Property (Access) +title: NavigationControl.GridlineWidthLeft property (Access) keywords: vbaac10.chm11160 f1_keywords: - vbaac10.chm11160 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.GridlineWidthLeft Property (Access) +# NavigationControl.GridlineWidthLeft property (Access) Gets or sets the width of the left gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthLeft` +_expression_. `GridlineWidthLeft` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.GridlineWidthRight.md b/api/Access.NavigationControl.GridlineWidthRight.md index a76b34de315..8e6d3fa3339 100644 --- a/api/Access.NavigationControl.GridlineWidthRight.md +++ b/api/Access.NavigationControl.GridlineWidthRight.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.GridlineWidthRight Property (Access) +title: NavigationControl.GridlineWidthRight property (Access) keywords: vbaac10.chm11162 f1_keywords: - vbaac10.chm11162 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.GridlineWidthRight Property (Access) +# NavigationControl.GridlineWidthRight property (Access) Gets or sets the width of the right gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthRight` +_expression_. `GridlineWidthRight` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.GridlineWidthTop.md b/api/Access.NavigationControl.GridlineWidthTop.md index e33530732df..a51e280b11d 100644 --- a/api/Access.NavigationControl.GridlineWidthTop.md +++ b/api/Access.NavigationControl.GridlineWidthTop.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.GridlineWidthTop Property (Access) +title: NavigationControl.GridlineWidthTop property (Access) keywords: vbaac10.chm11161 f1_keywords: - vbaac10.chm11161 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.GridlineWidthTop Property (Access) +# NavigationControl.GridlineWidthTop property (Access) Gets or sets the width of the top gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthTop` +_expression_. `GridlineWidthTop` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Height.md b/api/Access.NavigationControl.Height.md index 5c1233cec37..3464d0e3771 100644 --- a/api/Access.NavigationControl.Height.md +++ b/api/Access.NavigationControl.Height.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Height Property (Access) +title: NavigationControl.Height property (Access) keywords: vbaac10.chm11074 f1_keywords: - vbaac10.chm11074 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Height Property (Access) +# NavigationControl.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.HelpContextId.md b/api/Access.NavigationControl.HelpContextId.md index 2f04c58fa56..b3c1462d715 100644 --- a/api/Access.NavigationControl.HelpContextId.md +++ b/api/Access.NavigationControl.HelpContextId.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.HelpContextId Property (Access) +title: NavigationControl.HelpContextId property (Access) keywords: vbaac10.chm11094 f1_keywords: - vbaac10.chm11094 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.HelpContextId Property (Access) +# NavigationControl.HelpContextId property (Access) The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**. ## Syntax - _expression_. `HelpContextId` +_expression_. `HelpContextId` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.HorizontalAnchor.md b/api/Access.NavigationControl.HorizontalAnchor.md index 4e5e9e93ed3..cd66acf2772 100644 --- a/api/Access.NavigationControl.HorizontalAnchor.md +++ b/api/Access.NavigationControl.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.HorizontalAnchor Property (Access) +title: NavigationControl.HorizontalAnchor property (Access) keywords: vbaac10.chm11165 f1_keywords: - vbaac10.chm11165 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.HorizontalAnchor Property (Access) +# NavigationControl.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the text box is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Hyperlink.md b/api/Access.NavigationControl.Hyperlink.md index c5b6389c56e..bf26df4206b 100644 --- a/api/Access.NavigationControl.Hyperlink.md +++ b/api/Access.NavigationControl.Hyperlink.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Hyperlink Property (Access) +title: NavigationControl.Hyperlink property (Access) keywords: vbaac10.chm11037 f1_keywords: - vbaac10.chm11037 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Hyperlink Property (Access) +# NavigationControl.Hyperlink property (Access) You can use the **Hyperlink** property to return a reference to a **Hyperlink** object. You can use the **Hyperlink** property to access the properties and methods of a control's hyperlink. Read-only. ## Syntax - _expression_. `Hyperlink` +_expression_. `Hyperlink` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Example diff --git a/api/Access.NavigationControl.InSelection.md b/api/Access.NavigationControl.InSelection.md index d05d9b932c3..c9ccbc965f3 100644 --- a/api/Access.NavigationControl.InSelection.md +++ b/api/Access.NavigationControl.InSelection.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.InSelection Property (Access) +title: NavigationControl.InSelection property (Access) keywords: vbaac10.chm11114 f1_keywords: - vbaac10.chm11114 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.InSelection Property (Access) +# NavigationControl.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.IsVisible.md b/api/Access.NavigationControl.IsVisible.md index af672670b3e..4802c17206c 100644 --- a/api/Access.NavigationControl.IsVisible.md +++ b/api/Access.NavigationControl.IsVisible.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.IsVisible Property (Access) +title: NavigationControl.IsVisible property (Access) keywords: vbaac10.chm11113 f1_keywords: - vbaac10.chm11113 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.IsVisible Property (Access) +# NavigationControl.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.KeyDown.md b/api/Access.NavigationControl.KeyDown.md index 68a83cef190..8eba2d613d5 100644 --- a/api/Access.NavigationControl.KeyDown.md +++ b/api/Access.NavigationControl.KeyDown.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.KeyDown Event (Access) +title: NavigationControl.KeyDown event (Access) keywords: vbaac10.chm14206 f1_keywords: - vbaac10.chm14206 @@ -11,28 +11,28 @@ ms.date: 06/08/2017 --- -# NavigationControl.KeyDown Event (Access) +# NavigationControl.KeyDown event (Access) The **KeyDown** event occurs when the user presses a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|| | _Shift_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationControl.KeyPress.md b/api/Access.NavigationControl.KeyPress.md index 64948169caf..21c46dfd1ff 100644 --- a/api/Access.NavigationControl.KeyPress.md +++ b/api/Access.NavigationControl.KeyPress.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.KeyPress Event (Access) +title: NavigationControl.KeyPress event (Access) keywords: vbaac10.chm14207 f1_keywords: - vbaac10.chm14207 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# NavigationControl.KeyPress Event (Access) +# NavigationControl.KeyPress event (Access) The **KeyPress** event occurs when the user presses and releases a key or key combination that corresponds to an ANSI code while a form or control has the focus. This event also occurs if you send an ANSI keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyPress`( ` _KeyAscii_`, ) +_expression_. `KeyPress`( ` _KeyAscii_`, ) - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyAscii_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationControl.KeyUp.md b/api/Access.NavigationControl.KeyUp.md index cf817c7dde2..37aac3ed8f5 100644 --- a/api/Access.NavigationControl.KeyUp.md +++ b/api/Access.NavigationControl.KeyUp.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.KeyUp Event (Access) +title: NavigationControl.KeyUp event (Access) keywords: vbaac10.chm14208 f1_keywords: - vbaac10.chm14208 @@ -11,28 +11,28 @@ ms.date: 06/08/2017 --- -# NavigationControl.KeyUp Event (Access) +# NavigationControl.KeyUp event (Access) The **KeyUp** event occurs when the user releases a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|| | _Shift_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationControl.KeyboardLanguage.md b/api/Access.NavigationControl.KeyboardLanguage.md index e7ee9cf34fd..d9ef116adcf 100644 --- a/api/Access.NavigationControl.KeyboardLanguage.md +++ b/api/Access.NavigationControl.KeyboardLanguage.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.KeyboardLanguage Property (Access) +title: NavigationControl.KeyboardLanguage property (Access) keywords: vbaac10.chm11131 f1_keywords: - vbaac10.chm11131 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# NavigationControl.KeyboardLanguage Property (Access) +# NavigationControl.KeyboardLanguage property (Access) @@ -19,9 +19,9 @@ ms.date: 06/08/2017 ## Syntax - _expression_. `KeyboardLanguage` +_expression_. `KeyboardLanguage` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Layout.md b/api/Access.NavigationControl.Layout.md index efe92e3e5eb..b8f621a687e 100644 --- a/api/Access.NavigationControl.Layout.md +++ b/api/Access.NavigationControl.Layout.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Layout Property (Access) +title: NavigationControl.Layout property (Access) keywords: vbaac10.chm11150 f1_keywords: - vbaac10.chm11150 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Layout Property (Access) +# NavigationControl.Layout property (Access) Returns the type of layout for the specified text box. Read-only **[AcLayoutType](Access.AcLayoutType.md)**. ## Syntax - _expression_. `Layout` +_expression_. `Layout` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## See also diff --git a/api/Access.NavigationControl.LayoutID.md b/api/Access.NavigationControl.LayoutID.md index dddafe7086b..672ca3957ac 100644 --- a/api/Access.NavigationControl.LayoutID.md +++ b/api/Access.NavigationControl.LayoutID.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.LayoutID Property (Access) +title: NavigationControl.LayoutID property (Access) keywords: vbaac10.chm11182 f1_keywords: - vbaac10.chm11182 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.LayoutID Property (Access) +# NavigationControl.LayoutID property (Access) Returns the unique identifier for the layout that contains the specified text box. Read-only **Long**. ## Syntax - _expression_. `LayoutID` +_expression_. `LayoutID` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Left.md b/api/Access.NavigationControl.Left.md index 5dc0f3e5d31..e5c1dc6c35f 100644 --- a/api/Access.NavigationControl.Left.md +++ b/api/Access.NavigationControl.Left.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Left Property (Access) +title: NavigationControl.Left property (Access) keywords: vbaac10.chm11071 f1_keywords: - vbaac10.chm11071 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Left Property (Access) +# NavigationControl.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.LeftPadding.md b/api/Access.NavigationControl.LeftPadding.md index b14ff27a6c9..411003644be 100644 --- a/api/Access.NavigationControl.LeftPadding.md +++ b/api/Access.NavigationControl.LeftPadding.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.LeftPadding Property (Access) +title: NavigationControl.LeftPadding property (Access) keywords: vbaac10.chm11152 f1_keywords: - vbaac10.chm11152 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.LeftPadding Property (Access) +# NavigationControl.LeftPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its left gridline. Read/write **Integer**. ## Syntax - _expression_. `LeftPadding` +_expression_. `LeftPadding` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## See also diff --git a/api/Access.NavigationControl.LineSpacing.md b/api/Access.NavigationControl.LineSpacing.md index 848a143be04..6c6f1cff37f 100644 --- a/api/Access.NavigationControl.LineSpacing.md +++ b/api/Access.NavigationControl.LineSpacing.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.LineSpacing Property (Access) +title: NavigationControl.LineSpacing property (Access) keywords: vbaac10.chm11140 f1_keywords: - vbaac10.chm11140 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.LineSpacing Property (Access) +# NavigationControl.LineSpacing property (Access) You can use the **LineSpacing** property to specify or determine the location of information displayed within a label or text box control. Read/write **Integer**. ## Syntax - _expression_. `LineSpacing` +_expression_. `LineSpacing` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.LostFocus.md b/api/Access.NavigationControl.LostFocus.md index 86364b1e6b2..6a3e7a14a70 100644 --- a/api/Access.NavigationControl.LostFocus.md +++ b/api/Access.NavigationControl.LostFocus.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.LostFocus Event (Access) +title: NavigationControl.LostFocus event (Access) keywords: vbaac10.chm14200 f1_keywords: - vbaac10.chm14200 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# NavigationControl.LostFocus Event (Access) +# NavigationControl.LostFocus event (Access) The **LostFocus** event occurs when the specified object loses the focus. ## Syntax - _expression_. `LostFocus` +_expression_. `LostFocus` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. -### Return Value +### Return value nothing diff --git a/api/Access.NavigationControl.MouseDown.md b/api/Access.NavigationControl.MouseDown.md index ab0c67350b6..ecccc1a8070 100644 --- a/api/Access.NavigationControl.MouseDown.md +++ b/api/Access.NavigationControl.MouseDown.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.MouseDown Event (Access) +title: NavigationControl.MouseDown event (Access) keywords: vbaac10.chm14203 f1_keywords: - vbaac10.chm14203 @@ -11,30 +11,30 @@ ms.date: 06/08/2017 --- -# NavigationControl.MouseDown Event (Access) +# NavigationControl.MouseDown event (Access) The **MouseDown** event occurs when the user presses a mouse button. ## Syntax - _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|| | _Shift_|Required|**Integer**|| | _X_|Required|**Single**|| | _Y_|Required|**Single**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationControl.MouseMove.md b/api/Access.NavigationControl.MouseMove.md index a44828b62cf..775e5280406 100644 --- a/api/Access.NavigationControl.MouseMove.md +++ b/api/Access.NavigationControl.MouseMove.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.MouseMove Event (Access) +title: NavigationControl.MouseMove event (Access) keywords: vbaac10.chm14204 f1_keywords: - vbaac10.chm14204 @@ -11,30 +11,30 @@ ms.date: 06/08/2017 --- -# NavigationControl.MouseMove Event (Access) +# NavigationControl.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|| | _Shift_|Required|**Integer**|| | _X_|Required|**Single**|| | _Y_|Required|**Single**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationControl.MouseUp.md b/api/Access.NavigationControl.MouseUp.md index 84a036abda8..e3cd0e0cafc 100644 --- a/api/Access.NavigationControl.MouseUp.md +++ b/api/Access.NavigationControl.MouseUp.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.MouseUp Event (Access) +title: NavigationControl.MouseUp event (Access) keywords: vbaac10.chm14205 f1_keywords: - vbaac10.chm14205 @@ -11,30 +11,30 @@ ms.date: 06/08/2017 --- -# NavigationControl.MouseUp Event (Access) +# NavigationControl.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|| | _Shift_|Required|**Integer**|| | _X_|Required|**Single**|| | _Y_|Required|**Single**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationControl.Move.md b/api/Access.NavigationControl.Move.md index 90be46c08a6..8a55db0ba84 100644 --- a/api/Access.NavigationControl.Move.md +++ b/api/Access.NavigationControl.Move.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Move Method (Access) +title: NavigationControl.Move method (Access) keywords: vbaac10.chm11144 f1_keywords: - vbaac10.chm11144 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# NavigationControl.Move Method (Access) +# NavigationControl.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|| | _Top_|Optional|**Variant**|| diff --git a/api/Access.NavigationControl.Name.md b/api/Access.NavigationControl.Name.md index d337b7680dc..7aeb962e872 100644 --- a/api/Access.NavigationControl.Name.md +++ b/api/Access.NavigationControl.Name.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Name Property (Access) +title: NavigationControl.Name property (Access) keywords: vbaac10.chm11136 f1_keywords: - vbaac10.chm11136 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Name Property (Access) +# NavigationControl.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.NumeralShapes.md b/api/Access.NavigationControl.NumeralShapes.md index 5d99e2ce8a5..a9ba3c9d76d 100644 --- a/api/Access.NavigationControl.NumeralShapes.md +++ b/api/Access.NavigationControl.NumeralShapes.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.NumeralShapes Property (Access) +title: NavigationControl.NumeralShapes property (Access) keywords: vbaac10.chm11134 f1_keywords: - vbaac10.chm11134 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# NavigationControl.NumeralShapes Property (Access) +# NavigationControl.NumeralShapes property (Access) @@ -19,9 +19,9 @@ ms.date: 06/08/2017 ## Syntax - _expression_. `NumeralShapes` +_expression_. `NumeralShapes` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.OldBorderStyle.md b/api/Access.NavigationControl.OldBorderStyle.md index 981532bed3b..6efb6f881ad 100644 --- a/api/Access.NavigationControl.OldBorderStyle.md +++ b/api/Access.NavigationControl.OldBorderStyle.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.OldBorderStyle Property (Access) +title: NavigationControl.OldBorderStyle property (Access) keywords: vbaac10.chm11079 f1_keywords: - vbaac10.chm11079 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.OldBorderStyle Property (Access) +# NavigationControl.OldBorderStyle property (Access) You can use this property to set or returns the unedited value of the **BorderStyle** property for a form or control. This property is useful if you need to revert to an unedited or preferred border style. Read/write **Byte**. ## Syntax - _expression_. `OldBorderStyle` +_expression_. `OldBorderStyle` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.OldValue.md b/api/Access.NavigationControl.OldValue.md index 06bb3504c8b..75ce07684f9 100644 --- a/api/Access.NavigationControl.OldValue.md +++ b/api/Access.NavigationControl.OldValue.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.OldValue Property (Access) +title: NavigationControl.OldValue property (Access) keywords: vbaac10.chm11031 f1_keywords: - vbaac10.chm11031 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.OldValue Property (Access) +# NavigationControl.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.OnClick.md b/api/Access.NavigationControl.OnClick.md index 4d211f08a03..28654758877 100644 --- a/api/Access.NavigationControl.OnClick.md +++ b/api/Access.NavigationControl.OnClick.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.OnClick Property (Access) +title: NavigationControl.OnClick property (Access) keywords: vbaac10.chm11122 f1_keywords: - vbaac10.chm11122 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.OnClick Property (Access) +# NavigationControl.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationControl.OnDblClick.md b/api/Access.NavigationControl.OnDblClick.md index 876259a390d..40839bc2287 100644 --- a/api/Access.NavigationControl.OnDblClick.md +++ b/api/Access.NavigationControl.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.OnDblClick Property (Access) +title: NavigationControl.OnDblClick property (Access) keywords: vbaac10.chm11123 f1_keywords: - vbaac10.chm11123 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.OnDblClick Property (Access) +# NavigationControl.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationControl.OnGotFocus.md b/api/Access.NavigationControl.OnGotFocus.md index ad43f90cb7f..004b9430ce7 100644 --- a/api/Access.NavigationControl.OnGotFocus.md +++ b/api/Access.NavigationControl.OnGotFocus.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.OnGotFocus Property (Access) +title: NavigationControl.OnGotFocus property (Access) keywords: vbaac10.chm11120 f1_keywords: - vbaac10.chm11120 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.OnGotFocus Property (Access) +# NavigationControl.OnGotFocus property (Access) Sets or returns the value of the **On Got Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnGotFocus` +_expression_. `OnGotFocus` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **GotFocus** event occurs when the object receives the focus. The **OnGotFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Got Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationControl.OnKeyDown.md b/api/Access.NavigationControl.OnKeyDown.md index f423c57c771..fd86606fe9c 100644 --- a/api/Access.NavigationControl.OnKeyDown.md +++ b/api/Access.NavigationControl.OnKeyDown.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.OnKeyDown Property (Access) +title: NavigationControl.OnKeyDown property (Access) keywords: vbaac10.chm11127 f1_keywords: - vbaac10.chm11127 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.OnKeyDown Property (Access) +# NavigationControl.OnKeyDown property (Access) Sets or returns the value of the **On Key Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyDown` +_expression_. `OnKeyDown` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyDown** event occurs when a user presses a key while a form or control The **OnKeyDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationControl.OnKeyPress.md b/api/Access.NavigationControl.OnKeyPress.md index 899993e25ba..854bea2d36b 100644 --- a/api/Access.NavigationControl.OnKeyPress.md +++ b/api/Access.NavigationControl.OnKeyPress.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.OnKeyPress Property (Access) +title: NavigationControl.OnKeyPress property (Access) keywords: vbaac10.chm11129 f1_keywords: - vbaac10.chm11129 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.OnKeyPress Property (Access) +# NavigationControl.OnKeyPress property (Access) Sets or returns the value of the **On Key Press** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyPress` +_expression_. `OnKeyPress` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyPress** event occurs when a user presses a key while a form or control The **OnKeyPress** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Press** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationControl.OnKeyUp.md b/api/Access.NavigationControl.OnKeyUp.md index 81294214c46..a38629ed1e4 100644 --- a/api/Access.NavigationControl.OnKeyUp.md +++ b/api/Access.NavigationControl.OnKeyUp.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.OnKeyUp Property (Access) +title: NavigationControl.OnKeyUp property (Access) keywords: vbaac10.chm11128 f1_keywords: - vbaac10.chm11128 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.OnKeyUp Property (Access) +# NavigationControl.OnKeyUp property (Access) Sets or returns the value of the **On Key Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyUp` +_expression_. `OnKeyUp` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyUp** event occurs when a user presses a key while a form or control ha The **OnKeyUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationControl.OnLostFocus.md b/api/Access.NavigationControl.OnLostFocus.md index 76d4d8e215c..6ce8744ed04 100644 --- a/api/Access.NavigationControl.OnLostFocus.md +++ b/api/Access.NavigationControl.OnLostFocus.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.OnLostFocus Property (Access) +title: NavigationControl.OnLostFocus property (Access) keywords: vbaac10.chm11121 f1_keywords: - vbaac10.chm11121 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.OnLostFocus Property (Access) +# NavigationControl.OnLostFocus property (Access) Sets or returns the value of the **On Lost Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnLostFocus` +_expression_. `OnLostFocus` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **LostFocus** event occurs when the object loses the focus. The **OnLostFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Lost Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationControl.OnMouseDown.md b/api/Access.NavigationControl.OnMouseDown.md index 922a902925f..98f7140e0d9 100644 --- a/api/Access.NavigationControl.OnMouseDown.md +++ b/api/Access.NavigationControl.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.OnMouseDown Property (Access) +title: NavigationControl.OnMouseDown property (Access) keywords: vbaac10.chm11124 f1_keywords: - vbaac10.chm11124 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.OnMouseDown Property (Access) +# NavigationControl.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationControl.OnMouseMove.md b/api/Access.NavigationControl.OnMouseMove.md index d3781a1583b..d2a7bd94eb7 100644 --- a/api/Access.NavigationControl.OnMouseMove.md +++ b/api/Access.NavigationControl.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.OnMouseMove Property (Access) +title: NavigationControl.OnMouseMove property (Access) keywords: vbaac10.chm11125 f1_keywords: - vbaac10.chm11125 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.OnMouseMove Property (Access) +# NavigationControl.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationControl.OnMouseUp.md b/api/Access.NavigationControl.OnMouseUp.md index 58d9a06bfd1..969cc5ae09d 100644 --- a/api/Access.NavigationControl.OnMouseUp.md +++ b/api/Access.NavigationControl.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.OnMouseUp Property (Access) +title: NavigationControl.OnMouseUp property (Access) keywords: vbaac10.chm11126 f1_keywords: - vbaac10.chm11126 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.OnMouseUp Property (Access) +# NavigationControl.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.NavigationControl.Parent.md b/api/Access.NavigationControl.Parent.md index 567610de84f..112957976d4 100644 --- a/api/Access.NavigationControl.Parent.md +++ b/api/Access.NavigationControl.Parent.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Parent Property (Access) +title: NavigationControl.Parent property (Access) keywords: vbaac10.chm11029 f1_keywords: - vbaac10.chm11029 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Parent Property (Access) +# NavigationControl.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## See also diff --git a/api/Access.NavigationControl.Properties.md b/api/Access.NavigationControl.Properties.md index 2a6ba10dce4..bbdcd5fcfba 100644 --- a/api/Access.NavigationControl.Properties.md +++ b/api/Access.NavigationControl.Properties.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Properties Property (Access) +title: NavigationControl.Properties property (Access) keywords: vbaac10.chm11032 f1_keywords: - vbaac10.chm11032 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Properties Property (Access) +# NavigationControl.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.ReadingOrder.md b/api/Access.NavigationControl.ReadingOrder.md index 400e148b479..d625f0f8743 100644 --- a/api/Access.NavigationControl.ReadingOrder.md +++ b/api/Access.NavigationControl.ReadingOrder.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.ReadingOrder Property (Access) +title: NavigationControl.ReadingOrder property (Access) keywords: vbaac10.chm11130 f1_keywords: - vbaac10.chm11130 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.ReadingOrder Property (Access) +# NavigationControl.ReadingOrder property (Access) You can use the **ReadingOrder** property to specify or determine the reading order of words in text. Read/write **Byte**. ## Syntax - _expression_. `ReadingOrder` +_expression_. `ReadingOrder` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Requery.md b/api/Access.NavigationControl.Requery.md index b998032f91e..3031ea7a209 100644 --- a/api/Access.NavigationControl.Requery.md +++ b/api/Access.NavigationControl.Requery.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Requery Method (Access) +title: NavigationControl.Requery method (Access) keywords: vbaac10.chm11034 f1_keywords: - vbaac10.chm11034 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Requery Method (Access) +# NavigationControl.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.RightPadding.md b/api/Access.NavigationControl.RightPadding.md index a7c18360168..798c9c591f7 100644 --- a/api/Access.NavigationControl.RightPadding.md +++ b/api/Access.NavigationControl.RightPadding.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.RightPadding Property (Access) +title: NavigationControl.RightPadding property (Access) keywords: vbaac10.chm11154 f1_keywords: - vbaac10.chm11154 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.RightPadding Property (Access) +# NavigationControl.RightPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## See also diff --git a/api/Access.NavigationControl.ScrollBarAlign.md b/api/Access.NavigationControl.ScrollBarAlign.md index 017c5bd19f9..ca8153fdb07 100644 --- a/api/Access.NavigationControl.ScrollBarAlign.md +++ b/api/Access.NavigationControl.ScrollBarAlign.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.ScrollBarAlign Property (Access) +title: NavigationControl.ScrollBarAlign property (Access) keywords: vbaac10.chm11133 f1_keywords: - vbaac10.chm11133 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.ScrollBarAlign Property (Access) +# NavigationControl.ScrollBarAlign property (Access) You can use the **ScrollBarAlign** to specify or determine the alignment of a vertical scroll bar. Read/write **Byte**. ## Syntax - _expression_. `ScrollBarAlign` +_expression_. `ScrollBarAlign` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Section.md b/api/Access.NavigationControl.Section.md index d2c6818fe19..19070be4c5f 100644 --- a/api/Access.NavigationControl.Section.md +++ b/api/Access.NavigationControl.Section.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Section Property (Access) +title: NavigationControl.Section property (Access) keywords: vbaac10.chm11103 f1_keywords: - vbaac10.chm11103 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Section Property (Access) +# NavigationControl.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.SelectedTab.md b/api/Access.NavigationControl.SelectedTab.md index 24281bd5dd1..4fddac9202f 100644 --- a/api/Access.NavigationControl.SelectedTab.md +++ b/api/Access.NavigationControl.SelectedTab.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.SelectedTab Property (Access) +title: NavigationControl.SelectedTab property (Access) keywords: vbaac10.chm14644 f1_keywords: - vbaac10.chm14644 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.SelectedTab Property (Access) +# NavigationControl.SelectedTab property (Access) Gets the active tab of the navigation control. Read-only **[NavigationButton](Access.NavigationButton.md)**. ## Syntax - _expression_. `SelectedTab` +_expression_. `SelectedTab` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## See also diff --git a/api/Access.NavigationControl.SetFocus.md b/api/Access.NavigationControl.SetFocus.md index 33653162acd..9324ca85945 100644 --- a/api/Access.NavigationControl.SetFocus.md +++ b/api/Access.NavigationControl.SetFocus.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.SetFocus Method (Access) +title: NavigationControl.SetFocus method (Access) keywords: vbaac10.chm11035 f1_keywords: - vbaac10.chm11035 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.SetFocus Method (Access) +# NavigationControl.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.ShortcutMenuBar.md b/api/Access.NavigationControl.ShortcutMenuBar.md index b442aeacae7..c412b79d40a 100644 --- a/api/Access.NavigationControl.ShortcutMenuBar.md +++ b/api/Access.NavigationControl.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.ShortcutMenuBar Property (Access) +title: NavigationControl.ShortcutMenuBar property (Access) keywords: vbaac10.chm11092 f1_keywords: - vbaac10.chm11092 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.ShortcutMenuBar Property (Access) +# NavigationControl.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.SizeToFit.md b/api/Access.NavigationControl.SizeToFit.md index 7715913e261..6160cc90aee 100644 --- a/api/Access.NavigationControl.SizeToFit.md +++ b/api/Access.NavigationControl.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.SizeToFit Method (Access) +title: NavigationControl.SizeToFit method (Access) keywords: vbaac10.chm11033 f1_keywords: - vbaac10.chm11033 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.SizeToFit Method (Access) +# NavigationControl.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.SmartTags.md b/api/Access.NavigationControl.SmartTags.md index 8e0d3b66e25..75cf90f5c94 100644 --- a/api/Access.NavigationControl.SmartTags.md +++ b/api/Access.NavigationControl.SmartTags.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.SmartTags Property (Access) +title: NavigationControl.SmartTags property (Access) keywords: vbaac10.chm11148 f1_keywords: - vbaac10.chm11148 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.SmartTags Property (Access) +# NavigationControl.SmartTags property (Access) Returns a **[SmartTags](Access.SmartTags.md)** collection that represents the collection of smart tags that have been added to a control. . ## Syntax - _expression_. `SmartTags` +_expression_. `SmartTags` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Span.md b/api/Access.NavigationControl.Span.md index 8f4a3a7a481..f7c26039405 100644 --- a/api/Access.NavigationControl.Span.md +++ b/api/Access.NavigationControl.Span.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Span Property (Access) +title: NavigationControl.Span property (Access) keywords: vbaac10.chm14675 f1_keywords: - vbaac10.chm14675 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Span Property (Access) +# NavigationControl.Span property (Access) Gets or sets the orientation of the navigation buttons. Read/write **[AcNavigationSpan](Access.AcNavigationSpan.md)**. ## Syntax - _expression_. `Span` +_expression_. `Span` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## See also diff --git a/api/Access.NavigationControl.SpecialEffect.md b/api/Access.NavigationControl.SpecialEffect.md index cc8ee96c205..a840e34afe4 100644 --- a/api/Access.NavigationControl.SpecialEffect.md +++ b/api/Access.NavigationControl.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.SpecialEffect Property (Access) +title: NavigationControl.SpecialEffect property (Access) keywords: vbaac10.chm11077 f1_keywords: - vbaac10.chm11077 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.SpecialEffect Property (Access) +# NavigationControl.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.StatusBarText.md b/api/Access.NavigationControl.StatusBarText.md index 14bc63519ae..efdb5d0b8c3 100644 --- a/api/Access.NavigationControl.StatusBarText.md +++ b/api/Access.NavigationControl.StatusBarText.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.StatusBarText Property (Access) +title: NavigationControl.StatusBarText property (Access) keywords: vbaac10.chm11053 f1_keywords: - vbaac10.chm11053 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.StatusBarText Property (Access) +# NavigationControl.StatusBarText property (Access) You can use the **StatusBarText** property to specify the text that is displayed in the status bar when a control is selected. Read/write **String**. ## Syntax - _expression_. `StatusBarText` +_expression_. `StatusBarText` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.SubForm.md b/api/Access.NavigationControl.SubForm.md index 62d4b99d944..c6281a2cfc8 100644 --- a/api/Access.NavigationControl.SubForm.md +++ b/api/Access.NavigationControl.SubForm.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.SubForm Property (Access) +title: NavigationControl.SubForm property (Access) keywords: vbaac10.chm14640 f1_keywords: - vbaac10.chm14640 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.SubForm Property (Access) +# NavigationControl.SubForm property (Access) Gets or sets the name of the **[SubForm](Access.SubForm.md)** object used to display forms. Read/write **String**. ## Syntax - _expression_. `SubForm` +_expression_. `SubForm` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## See also diff --git a/api/Access.NavigationControl.TabIndex.md b/api/Access.NavigationControl.TabIndex.md index 7aaa2c71f14..a46443b491b 100644 --- a/api/Access.NavigationControl.TabIndex.md +++ b/api/Access.NavigationControl.TabIndex.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.TabIndex Property (Access) +title: NavigationControl.TabIndex property (Access) keywords: vbaac10.chm11065 f1_keywords: - vbaac10.chm11065 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.TabIndex Property (Access) +# NavigationControl.TabIndex property (Access) You can use the **TabIndex** property to specify a control's place in the tab order on a form or report. Read/write **Integer**. ## Syntax - _expression_. `TabIndex` +_expression_. `TabIndex` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.TabStop.md b/api/Access.NavigationControl.TabStop.md index fd91d8a41d7..507c830a5e9 100644 --- a/api/Access.NavigationControl.TabStop.md +++ b/api/Access.NavigationControl.TabStop.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.TabStop Property (Access) +title: NavigationControl.TabStop property (Access) keywords: vbaac10.chm11064 f1_keywords: - vbaac10.chm11064 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.TabStop Property (Access) +# NavigationControl.TabStop property (Access) You can use the **TabStop** property to specify whether you can use the TAB key to move the focus to a control. Read/write **Boolean**. ## Syntax - _expression_. `TabStop` +_expression_. `TabStop` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Tabs.md b/api/Access.NavigationControl.Tabs.md index 4b8ade9d89f..e91d65d98fb 100644 --- a/api/Access.NavigationControl.Tabs.md +++ b/api/Access.NavigationControl.Tabs.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Tabs Property (Access) +title: NavigationControl.Tabs property (Access) keywords: vbaac10.chm14643 f1_keywords: - vbaac10.chm14643 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Tabs Property (Access) +# NavigationControl.Tabs property (Access) Gets the collection of navigation buttons for the specified navigation control. Read-only **Children**. ## Syntax - _expression_. `Tabs` +_expression_. `Tabs` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## See also diff --git a/api/Access.NavigationControl.Tag.md b/api/Access.NavigationControl.Tag.md index 7118d673db5..53f8b68958d 100644 --- a/api/Access.NavigationControl.Tag.md +++ b/api/Access.NavigationControl.Tag.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Tag Property (Access) +title: NavigationControl.Tag property (Access) keywords: vbaac10.chm11105 f1_keywords: - vbaac10.chm11105 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Tag Property (Access) +# NavigationControl.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Top.md b/api/Access.NavigationControl.Top.md index b9a8ab81870..b9b8d6e2919 100644 --- a/api/Access.NavigationControl.Top.md +++ b/api/Access.NavigationControl.Top.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Top Property (Access) +title: NavigationControl.Top property (Access) keywords: vbaac10.chm11072 f1_keywords: - vbaac10.chm11072 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Top Property (Access) +# NavigationControl.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.TopPadding.md b/api/Access.NavigationControl.TopPadding.md index 4e8172781c8..4e6e1190039 100644 --- a/api/Access.NavigationControl.TopPadding.md +++ b/api/Access.NavigationControl.TopPadding.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.TopPadding Property (Access) +title: NavigationControl.TopPadding property (Access) keywords: vbaac10.chm11153 f1_keywords: - vbaac10.chm11153 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.TopPadding Property (Access) +# NavigationControl.TopPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## See also diff --git a/api/Access.NavigationControl.Undo(event).md b/api/Access.NavigationControl.Undo(event).md index 7246771e5e6..316a5cb45fa 100644 --- a/api/Access.NavigationControl.Undo(event).md +++ b/api/Access.NavigationControl.Undo(event).md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Undo Event (Access) +title: NavigationControl.Undo event (Access) keywords: vbaac10.chm14210 f1_keywords: - vbaac10.chm14210 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# NavigationControl.Undo Event (Access) +# NavigationControl.Undo event (Access) Occurs when the user undoes a change. ## Syntax - _expression_. `Undo`( ` _Cancel_`, ) +_expression_. `Undo`( ` _Cancel_`, ) - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.NavigationControl.Undo(method).md b/api/Access.NavigationControl.Undo(method).md index dee9a91dfc0..ab2e80fe249 100644 --- a/api/Access.NavigationControl.Undo(method).md +++ b/api/Access.NavigationControl.Undo(method).md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Undo Method (Access) +title: NavigationControl.Undo method (Access) keywords: vbaac10.chm11030 f1_keywords: - vbaac10.chm11030 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Undo Method (Access) +# NavigationControl.Undo method (Access) You can use the **Undo** method to reset a control or form when its value has been changed. ## Syntax - _expression_. `Undo` +_expression_. `Undo` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Value.md b/api/Access.NavigationControl.Value.md index 363ec08e030..8efc4c642ed 100644 --- a/api/Access.NavigationControl.Value.md +++ b/api/Access.NavigationControl.Value.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Value Property (Access) +title: NavigationControl.Value property (Access) keywords: vbaac10.chm11039 f1_keywords: - vbaac10.chm11039 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Value Property (Access) +# NavigationControl.Value property (Access) Determines or specifies the text in the text box. Read/write **Variant**. ## Syntax - _expression_. `Value` +_expression_. `Value` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.VerticalAnchor.md b/api/Access.NavigationControl.VerticalAnchor.md index 2033dfc9eb2..05b188263aa 100644 --- a/api/Access.NavigationControl.VerticalAnchor.md +++ b/api/Access.NavigationControl.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.VerticalAnchor Property (Access) +title: NavigationControl.VerticalAnchor property (Access) keywords: vbaac10.chm11166 f1_keywords: - vbaac10.chm11166 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.VerticalAnchor Property (Access) +# NavigationControl.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified text box is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Visible.md b/api/Access.NavigationControl.Visible.md index e768500038a..9a93b7496b4 100644 --- a/api/Access.NavigationControl.Visible.md +++ b/api/Access.NavigationControl.Visible.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Visible Property (Access) +title: NavigationControl.Visible property (Access) keywords: vbaac10.chm11056 f1_keywords: - vbaac10.chm11056 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Visible Property (Access) +# NavigationControl.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.Width.md b/api/Access.NavigationControl.Width.md index c364224dbfb..94120f6632b 100644 --- a/api/Access.NavigationControl.Width.md +++ b/api/Access.NavigationControl.Width.md @@ -1,5 +1,5 @@ --- -title: NavigationControl.Width Property (Access) +title: NavigationControl.Width property (Access) keywords: vbaac10.chm11073 f1_keywords: - vbaac10.chm11073 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# NavigationControl.Width Property (Access) +# NavigationControl.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. +_expression_ A variable that represents a [NavigationControl](Access.NavigationControl.md) object. ## Remarks diff --git a/api/Access.NavigationControl.md b/api/Access.NavigationControl.md index 87893a43e93..35f1e2e432b 100644 --- a/api/Access.NavigationControl.md +++ b/api/Access.NavigationControl.md @@ -1,5 +1,5 @@ --- -title: NavigationControl Object (Access) +title: NavigationControl object (Access) keywords: vbaac10.chm11201 f1_keywords: - vbaac10.chm11201 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# NavigationControl Object (Access) +# NavigationControl object (Access) This object represents a navigation control on a form. diff --git a/api/Access.ObjectFrame.Action.md b/api/Access.ObjectFrame.Action.md index 7e41b117be6..7469e210027 100644 --- a/api/Access.ObjectFrame.Action.md +++ b/api/Access.ObjectFrame.Action.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Action Property (Access) +title: ObjectFrame.Action property (Access) keywords: vbaac10.chm11610 f1_keywords: - vbaac10.chm11610 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Action Property (Access) +# ObjectFrame.Action property (Access) You can use the **Action** property in Visual Basic to specify the operation to perform on an OLE object. Read/write **Integer**. ## Syntax - _expression_. `Action` +_expression_. `Action` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Application.md b/api/Access.ObjectFrame.Application.md index 3fca4c08dc4..a35cc101abf 100644 --- a/api/Access.ObjectFrame.Application.md +++ b/api/Access.ObjectFrame.Application.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Application Property (Access) +title: ObjectFrame.Application property (Access) keywords: vbaac10.chm11547 f1_keywords: - vbaac10.chm11547 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Application Property (Access) +# ObjectFrame.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.AutoActivate.md b/api/Access.ObjectFrame.AutoActivate.md index 56102b02d87..787244922c3 100644 --- a/api/Access.ObjectFrame.AutoActivate.md +++ b/api/Access.ObjectFrame.AutoActivate.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.AutoActivate Property (Access) +title: ObjectFrame.AutoActivate property (Access) keywords: vbaac10.chm11567 f1_keywords: - vbaac10.chm11567 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.AutoActivate Property (Access) +# ObjectFrame.AutoActivate property (Access) You can use the **AutoActivate** property to specify how the user can activate an OLE object. Read/write **Integer**. ## Syntax - _expression_. `AutoActivate` +_expression_. `AutoActivate` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.BackColor.md b/api/Access.ObjectFrame.BackColor.md index 45f59c8a652..0230848c2d5 100644 --- a/api/Access.ObjectFrame.BackColor.md +++ b/api/Access.ObjectFrame.BackColor.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.BackColor Property (Access) +title: ObjectFrame.BackColor property (Access) keywords: vbaac10.chm11593 f1_keywords: - vbaac10.chm11593 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.BackColor Property (Access) +# ObjectFrame.BackColor property (Access) Gets or sets the interior color of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackColor` +_expression_. `BackColor` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.BackShade.md b/api/Access.ObjectFrame.BackShade.md index 40fcf1360ed..5f665b7c4c4 100644 --- a/api/Access.ObjectFrame.BackShade.md +++ b/api/Access.ObjectFrame.BackShade.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.BackShade Property (Access) +title: ObjectFrame.BackShade property (Access) keywords: vbaac10.chm14633 f1_keywords: - vbaac10.chm14633 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.BackShade Property (Access) +# ObjectFrame.BackShade property (Access) Gets or sets the shade applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackShade` +_expression_. `BackShade` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.BackStyle.md b/api/Access.ObjectFrame.BackStyle.md index 43d5c427842..b8267538e92 100644 --- a/api/Access.ObjectFrame.BackStyle.md +++ b/api/Access.ObjectFrame.BackStyle.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.BackStyle Property (Access) +title: ObjectFrame.BackStyle property (Access) keywords: vbaac10.chm11592 f1_keywords: - vbaac10.chm11592 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.BackStyle Property (Access) +# ObjectFrame.BackStyle property (Access) You can use the **BackStyle** property to specify whether a control will be transparent. Read/write **Byte**. ## Syntax - _expression_. `BackStyle` +_expression_. `BackStyle` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.BackThemeColorIndex.md b/api/Access.ObjectFrame.BackThemeColorIndex.md index ff39b049c13..55a43645839 100644 --- a/api/Access.ObjectFrame.BackThemeColorIndex.md +++ b/api/Access.ObjectFrame.BackThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.BackThemeColorIndex Property (Access) +title: ObjectFrame.BackThemeColorIndex property (Access) keywords: vbaac10.chm14631 f1_keywords: - vbaac10.chm14631 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.BackThemeColorIndex Property (Access) +# ObjectFrame.BackThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BackColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackThemeColorIndex` +_expression_. `BackThemeColorIndex` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.BackTint.md b/api/Access.ObjectFrame.BackTint.md index 4f90feebd0d..99363b94cd2 100644 --- a/api/Access.ObjectFrame.BackTint.md +++ b/api/Access.ObjectFrame.BackTint.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.BackTint Property (Access) +title: ObjectFrame.BackTint property (Access) keywords: vbaac10.chm14632 f1_keywords: - vbaac10.chm14632 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.BackTint Property (Access) +# ObjectFrame.BackTint property (Access) Gets or sets the tint that is applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackTint` +_expression_. `BackTint` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.BorderColor.md b/api/Access.ObjectFrame.BorderColor.md index a5809181556..2c8360d0165 100644 --- a/api/Access.ObjectFrame.BorderColor.md +++ b/api/Access.ObjectFrame.BorderColor.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.BorderColor Property (Access) +title: ObjectFrame.BorderColor property (Access) keywords: vbaac10.chm11597 f1_keywords: - vbaac10.chm11597 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.BorderColor Property (Access) +# ObjectFrame.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.BorderShade.md b/api/Access.ObjectFrame.BorderShade.md index dc4307dd660..e7b293b174f 100644 --- a/api/Access.ObjectFrame.BorderShade.md +++ b/api/Access.ObjectFrame.BorderShade.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.BorderShade Property (Access) +title: ObjectFrame.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.BorderShade Property (Access) +# ObjectFrame.BorderShade property (Access) Gets or sets the shade that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.BorderStyle.md b/api/Access.ObjectFrame.BorderStyle.md index 4de9a5eb1d7..775f89d15ca 100644 --- a/api/Access.ObjectFrame.BorderStyle.md +++ b/api/Access.ObjectFrame.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.BorderStyle Property (Access) +title: ObjectFrame.BorderStyle property (Access) keywords: vbaac10.chm11595 f1_keywords: - vbaac10.chm11595 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.BorderStyle Property (Access) +# ObjectFrame.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.BorderThemeColorIndex.md b/api/Access.ObjectFrame.BorderThemeColorIndex.md index 9b76f525181..51864d2333d 100644 --- a/api/Access.ObjectFrame.BorderThemeColorIndex.md +++ b/api/Access.ObjectFrame.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.BorderThemeColorIndex Property (Access) +title: ObjectFrame.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.BorderThemeColorIndex Property (Access) +# ObjectFrame.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.BorderTint.md b/api/Access.ObjectFrame.BorderTint.md index c37a279646d..f929124836b 100644 --- a/api/Access.ObjectFrame.BorderTint.md +++ b/api/Access.ObjectFrame.BorderTint.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.BorderTint Property (Access) +title: ObjectFrame.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.BorderTint Property (Access) +# ObjectFrame.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.BorderWidth.md b/api/Access.ObjectFrame.BorderWidth.md index 63024cab49e..d5696c22a4e 100644 --- a/api/Access.ObjectFrame.BorderWidth.md +++ b/api/Access.ObjectFrame.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.BorderWidth Property (Access) +title: ObjectFrame.BorderWidth property (Access) keywords: vbaac10.chm11598 f1_keywords: - vbaac10.chm11598 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.BorderWidth Property (Access) +# ObjectFrame.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.BottomPadding.md b/api/Access.ObjectFrame.BottomPadding.md index 5794b904f72..c088611452e 100644 --- a/api/Access.ObjectFrame.BottomPadding.md +++ b/api/Access.ObjectFrame.BottomPadding.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.BottomPadding Property (Access) +title: ObjectFrame.BottomPadding property (Access) keywords: vbaac10.chm11642 f1_keywords: - vbaac10.chm11642 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.BottomPadding Property (Access) +# ObjectFrame.BottomPadding property (Access) Gets or sets the amount of space (in inches) between the object frame and its bottom gridline. Read/write **Integer**. ## Syntax - _expression_. `BottomPadding` +_expression_. `BottomPadding` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## See also diff --git a/api/Access.ObjectFrame.Class.md b/api/Access.ObjectFrame.Class.md index 27364d6381c..b8ee76a06e3 100644 --- a/api/Access.ObjectFrame.Class.md +++ b/api/Access.ObjectFrame.Class.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Class Property (Access) +title: ObjectFrame.Class property (Access) keywords: vbaac10.chm11574 f1_keywords: - vbaac10.chm11574 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Class Property (Access) +# ObjectFrame.Class property (Access) You can use the **Class** property to specify or determine the class name of an embeddedOLE object. Read/write **String**. ## Syntax - _expression_. `Class` +_expression_. `Class` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Click.md b/api/Access.ObjectFrame.Click.md index 95ce0560026..730fe2802ef 100644 --- a/api/Access.ObjectFrame.Click.md +++ b/api/Access.ObjectFrame.Click.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Click Event (Access) +title: ObjectFrame.Click event (Access) keywords: vbaac10.chm14109 f1_keywords: - vbaac10.chm14109 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Click Event (Access) +# ObjectFrame.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.ColumnCount.md b/api/Access.ObjectFrame.ColumnCount.md index a07c3370f7b..ad888f6955e 100644 --- a/api/Access.ObjectFrame.ColumnCount.md +++ b/api/Access.ObjectFrame.ColumnCount.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.ColumnCount Property (Access) +title: ObjectFrame.ColumnCount property (Access) keywords: vbaac10.chm11577 f1_keywords: - vbaac10.chm11577 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.ColumnCount Property (Access) +# ObjectFrame.ColumnCount property (Access) You can use the **ColumnCount** property to specify the number of columns displayed in a list box or in the list box portion of a combo box, or sent to OLE objects in a chart control or unbound object frame . Read/write **Integer**. ## Syntax - _expression_. `ColumnCount` +_expression_. `ColumnCount` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.ColumnHeads.md b/api/Access.ObjectFrame.ColumnHeads.md index 13e6ebb6d4a..3f9df509154 100644 --- a/api/Access.ObjectFrame.ColumnHeads.md +++ b/api/Access.ObjectFrame.ColumnHeads.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.ColumnHeads Property (Access) +title: ObjectFrame.ColumnHeads property (Access) keywords: vbaac10.chm11578 f1_keywords: - vbaac10.chm11578 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.ColumnHeads Property (Access) +# ObjectFrame.ColumnHeads property (Access) You can use the **ColumnHeads** property to display a single row of column headings for list boxes, combo boxes, and OLE objects that accept column headings. You can also use this property to create a label for each entry in a chart control . What is actually displayed as the first-row column heading depends on the object's **RowSourceType** property setting. Read/write **Boolean**. ## Syntax - _expression_. `ColumnHeads` +_expression_. `ColumnHeads` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.ControlTipText.md b/api/Access.ObjectFrame.ControlTipText.md index 024907e9808..a81cdda4379 100644 --- a/api/Access.ObjectFrame.ControlTipText.md +++ b/api/Access.ObjectFrame.ControlTipText.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.ControlTipText Property (Access) +title: ObjectFrame.ControlTipText property (Access) keywords: vbaac10.chm11601 f1_keywords: - vbaac10.chm11601 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.ControlTipText Property (Access) +# ObjectFrame.ControlTipText property (Access) You can use the **ControlTipText** property to specify the text that appears in a ScreenTip when you hold the mouse pointer over a control. Read/write **String**. ## Syntax - _expression_. `ControlTipText` +_expression_. `ControlTipText` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.ControlType.md b/api/Access.ObjectFrame.ControlType.md index acfda45d52d..c3e81158320 100644 --- a/api/Access.ObjectFrame.ControlType.md +++ b/api/Access.ObjectFrame.ControlType.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.ControlType Property (Access) +title: ObjectFrame.ControlType property (Access) keywords: vbaac10.chm11559 f1_keywords: - vbaac10.chm11559 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.ControlType Property (Access) +# ObjectFrame.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Controls.md b/api/Access.ObjectFrame.Controls.md index 8b028a5aa24..dfafe515e98 100644 --- a/api/Access.ObjectFrame.Controls.md +++ b/api/Access.ObjectFrame.Controls.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Controls Property (Access) +title: ObjectFrame.Controls property (Access) keywords: vbaac10.chm11556 f1_keywords: - vbaac10.chm11556 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Controls Property (Access) +# ObjectFrame.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.DblClick.md b/api/Access.ObjectFrame.DblClick.md index 2969485ed19..808433fb084 100644 --- a/api/Access.ObjectFrame.DblClick.md +++ b/api/Access.ObjectFrame.DblClick.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.DblClick Event (Access) +title: ObjectFrame.DblClick event (Access) keywords: vbaac10.chm14110 f1_keywords: - vbaac10.chm14110 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ObjectFrame.DblClick Event (Access) +# ObjectFrame.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_` ) +_expression_. `DblClick`( ` _Cancel_` ) - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **DblClick** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **DblClick** event.| diff --git a/api/Access.ObjectFrame.DisplayType.md b/api/Access.ObjectFrame.DisplayType.md index 36bab6251e0..18df2fd3b04 100644 --- a/api/Access.ObjectFrame.DisplayType.md +++ b/api/Access.ObjectFrame.DisplayType.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.DisplayType Property (Access) +title: ObjectFrame.DisplayType property (Access) keywords: vbaac10.chm11568 f1_keywords: - vbaac10.chm11568 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.DisplayType Property (Access) +# ObjectFrame.DisplayType property (Access) You can use the **DisplayType** property to specify whether Microsoft Access displays an OLE object's content or an icon. Read/write **Boolean**. ## Syntax - _expression_. `DisplayType` +_expression_. `DisplayType` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.DisplayWhen.md b/api/Access.ObjectFrame.DisplayWhen.md index 7138f8a8109..6576dd7952e 100644 --- a/api/Access.ObjectFrame.DisplayWhen.md +++ b/api/Access.ObjectFrame.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.DisplayWhen Property (Access) +title: ObjectFrame.DisplayWhen property (Access) keywords: vbaac10.chm11580 f1_keywords: - vbaac10.chm11580 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.DisplayWhen Property (Access) +# ObjectFrame.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Enabled.md b/api/Access.ObjectFrame.Enabled.md index abd34077279..0a564128d26 100644 --- a/api/Access.ObjectFrame.Enabled.md +++ b/api/Access.ObjectFrame.Enabled.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Enabled Property (Access) +title: ObjectFrame.Enabled property (Access) keywords: vbaac10.chm11583 f1_keywords: - vbaac10.chm11583 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Enabled Property (Access) +# ObjectFrame.Enabled property (Access) You can use the **Enabled** property to set or return the status of the conditional format in the **[FormatCondition](Access.FormatCondition.md)** object. Read/write **Boolean**. ## Syntax - _expression_. `Enabled` +_expression_. `Enabled` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Enter.md b/api/Access.ObjectFrame.Enter.md index 475da93c3e9..0026671f6a1 100644 --- a/api/Access.ObjectFrame.Enter.md +++ b/api/Access.ObjectFrame.Enter.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Enter Event (Access) +title: ObjectFrame.Enter event (Access) keywords: vbaac10.chm14105 f1_keywords: - vbaac10.chm14105 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Enter Event (Access) +# ObjectFrame.Enter event (Access) The **Enter** event occurs before a control actually receives the focus from a control on the same form or report. ## Syntax - _expression_. `Enter` +_expression_. `Enter` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.EventProcPrefix.md b/api/Access.ObjectFrame.EventProcPrefix.md index b2613ff52f7..2732e114342 100644 --- a/api/Access.ObjectFrame.EventProcPrefix.md +++ b/api/Access.ObjectFrame.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.EventProcPrefix Property (Access) +title: ObjectFrame.EventProcPrefix property (Access) keywords: vbaac10.chm11557 f1_keywords: - vbaac10.chm11557 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.EventProcPrefix Property (Access) +# ObjectFrame.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Exit.md b/api/Access.ObjectFrame.Exit.md index f99ad162599..92c8586a20f 100644 --- a/api/Access.ObjectFrame.Exit.md +++ b/api/Access.ObjectFrame.Exit.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Exit Event (Access) +title: ObjectFrame.Exit event (Access) keywords: vbaac10.chm14106 f1_keywords: - vbaac10.chm14106 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Exit Event (Access) +# ObjectFrame.Exit event (Access) The **Exit** event occurs just before a control loses the focus to another control on the same form or report. ## Syntax - _expression_. `Exit`( ` _Cancel_` ) +_expression_. `Exit`( ` _Cancel_` ) - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|Set to **True** to cancel the event.| diff --git a/api/Access.ObjectFrame.GotFocus.md b/api/Access.ObjectFrame.GotFocus.md index d11d6e3c5a3..ef76b3008f2 100644 --- a/api/Access.ObjectFrame.GotFocus.md +++ b/api/Access.ObjectFrame.GotFocus.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.GotFocus Event (Access) +title: ObjectFrame.GotFocus event (Access) keywords: vbaac10.chm14107 f1_keywords: - vbaac10.chm14107 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.GotFocus Event (Access) +# ObjectFrame.GotFocus event (Access) The **GotFocus** event occurs when the specified object receives the focus. ## Syntax - _expression_. `GotFocus` +_expression_. `GotFocus` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.GridlineColor.md b/api/Access.ObjectFrame.GridlineColor.md index f8834f09488..fb36b802db1 100644 --- a/api/Access.ObjectFrame.GridlineColor.md +++ b/api/Access.ObjectFrame.GridlineColor.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.GridlineColor Property (Access) +title: ObjectFrame.GridlineColor property (Access) keywords: vbaac10.chm11651 f1_keywords: - vbaac10.chm11651 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.GridlineColor Property (Access) +# ObjectFrame.GridlineColor property (Access) Gets or sets the color of the gridline for the specified object frame. Read/write **Long**. ## Syntax - _expression_. `GridlineColor` +_expression_. `GridlineColor` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.GridlineShade.md b/api/Access.ObjectFrame.GridlineShade.md index c17d00a1cb2..a66c4d2ea52 100644 --- a/api/Access.ObjectFrame.GridlineShade.md +++ b/api/Access.ObjectFrame.GridlineShade.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.GridlineShade Property (Access) +title: ObjectFrame.GridlineShade property (Access) keywords: vbaac10.chm14637 f1_keywords: - vbaac10.chm14637 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.GridlineShade Property (Access) +# ObjectFrame.GridlineShade property (Access) Gets or sets the shade applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineShade` +_expression_. `GridlineShade` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.GridlineStyleBottom.md b/api/Access.ObjectFrame.GridlineStyleBottom.md index c1863367df9..0dc8fdac114 100644 --- a/api/Access.ObjectFrame.GridlineStyleBottom.md +++ b/api/Access.ObjectFrame.GridlineStyleBottom.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.GridlineStyleBottom Property (Access) +title: ObjectFrame.GridlineStyleBottom property (Access) keywords: vbaac10.chm11646 f1_keywords: - vbaac10.chm11646 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.GridlineStyleBottom Property (Access) +# ObjectFrame.GridlineStyleBottom property (Access) Gets or sets the bottom gridline style of the specified frame. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleBottom` +_expression_. `GridlineStyleBottom` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.GridlineStyleLeft.md b/api/Access.ObjectFrame.GridlineStyleLeft.md index d65044323c8..93b88067ef9 100644 --- a/api/Access.ObjectFrame.GridlineStyleLeft.md +++ b/api/Access.ObjectFrame.GridlineStyleLeft.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.GridlineStyleLeft Property (Access) +title: ObjectFrame.GridlineStyleLeft property (Access) keywords: vbaac10.chm11643 f1_keywords: - vbaac10.chm11643 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.GridlineStyleLeft Property (Access) +# ObjectFrame.GridlineStyleLeft property (Access) Gets or sets the width of the bottom gridline for the specified frame. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleLeft` +_expression_. `GridlineStyleLeft` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.GridlineStyleRight.md b/api/Access.ObjectFrame.GridlineStyleRight.md index 28564c705ec..6c646252b66 100644 --- a/api/Access.ObjectFrame.GridlineStyleRight.md +++ b/api/Access.ObjectFrame.GridlineStyleRight.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.GridlineStyleRight Property (Access) +title: ObjectFrame.GridlineStyleRight property (Access) keywords: vbaac10.chm11645 f1_keywords: - vbaac10.chm11645 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.GridlineStyleRight Property (Access) +# ObjectFrame.GridlineStyleRight property (Access) Gets or sets the right gridline style of the specified frame. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleRight` +_expression_. `GridlineStyleRight` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.GridlineStyleTop.md b/api/Access.ObjectFrame.GridlineStyleTop.md index 7bd42034b7c..69898c8cc61 100644 --- a/api/Access.ObjectFrame.GridlineStyleTop.md +++ b/api/Access.ObjectFrame.GridlineStyleTop.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.GridlineStyleTop Property (Access) +title: ObjectFrame.GridlineStyleTop property (Access) keywords: vbaac10.chm11644 f1_keywords: - vbaac10.chm11644 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.GridlineStyleTop Property (Access) +# ObjectFrame.GridlineStyleTop property (Access) Gets or sets the top gridline style of the specified frame. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleTop` +_expression_. `GridlineStyleTop` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.GridlineThemeColorIndex.md b/api/Access.ObjectFrame.GridlineThemeColorIndex.md index 80f7ddb373b..06e5956790e 100644 --- a/api/Access.ObjectFrame.GridlineThemeColorIndex.md +++ b/api/Access.ObjectFrame.GridlineThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.GridlineThemeColorIndex Property (Access) +title: ObjectFrame.GridlineThemeColorIndex property (Access) keywords: vbaac10.chm14635 f1_keywords: - vbaac10.chm14635 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.GridlineThemeColorIndex Property (Access) +# ObjectFrame.GridlineThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **GridlineColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `GridlineThemeColorIndex` +_expression_. `GridlineThemeColorIndex` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.GridlineTint.md b/api/Access.ObjectFrame.GridlineTint.md index f4a5e06d780..f579c191e6c 100644 --- a/api/Access.ObjectFrame.GridlineTint.md +++ b/api/Access.ObjectFrame.GridlineTint.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.GridlineTint Property (Access) +title: ObjectFrame.GridlineTint property (Access) keywords: vbaac10.chm14636 f1_keywords: - vbaac10.chm14636 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.GridlineTint Property (Access) +# ObjectFrame.GridlineTint property (Access) Gets or sets the tint applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineTint` +_expression_. `GridlineTint` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.GridlineWidthBottom.md b/api/Access.ObjectFrame.GridlineWidthBottom.md index 2af08f69627..899c907df65 100644 --- a/api/Access.ObjectFrame.GridlineWidthBottom.md +++ b/api/Access.ObjectFrame.GridlineWidthBottom.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.GridlineWidthBottom Property (Access) +title: ObjectFrame.GridlineWidthBottom property (Access) keywords: vbaac10.chm11650 f1_keywords: - vbaac10.chm11650 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.GridlineWidthBottom Property (Access) +# ObjectFrame.GridlineWidthBottom property (Access) Gets or sets the width of the bottom gridline for the specified frame. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthBottom` +_expression_. `GridlineWidthBottom` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.GridlineWidthLeft.md b/api/Access.ObjectFrame.GridlineWidthLeft.md index c03d280c395..a047e7a1658 100644 --- a/api/Access.ObjectFrame.GridlineWidthLeft.md +++ b/api/Access.ObjectFrame.GridlineWidthLeft.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.GridlineWidthLeft Property (Access) +title: ObjectFrame.GridlineWidthLeft property (Access) keywords: vbaac10.chm11647 f1_keywords: - vbaac10.chm11647 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.GridlineWidthLeft Property (Access) +# ObjectFrame.GridlineWidthLeft property (Access) Gets or sets the width of the left gridline for the specified frame. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthLeft` +_expression_. `GridlineWidthLeft` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.GridlineWidthRight.md b/api/Access.ObjectFrame.GridlineWidthRight.md index cab12c9942c..a7b91edbab3 100644 --- a/api/Access.ObjectFrame.GridlineWidthRight.md +++ b/api/Access.ObjectFrame.GridlineWidthRight.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.GridlineWidthRight Property (Access) +title: ObjectFrame.GridlineWidthRight property (Access) keywords: vbaac10.chm11649 f1_keywords: - vbaac10.chm11649 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.GridlineWidthRight Property (Access) +# ObjectFrame.GridlineWidthRight property (Access) Gets or sets the width of the right gridline for the specified frame. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthRight` +_expression_. `GridlineWidthRight` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.GridlineWidthTop.md b/api/Access.ObjectFrame.GridlineWidthTop.md index 0282e1533ac..fbe6f491458 100644 --- a/api/Access.ObjectFrame.GridlineWidthTop.md +++ b/api/Access.ObjectFrame.GridlineWidthTop.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.GridlineWidthTop Property (Access) +title: ObjectFrame.GridlineWidthTop property (Access) keywords: vbaac10.chm11648 f1_keywords: - vbaac10.chm11648 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.GridlineWidthTop Property (Access) +# ObjectFrame.GridlineWidthTop property (Access) Gets or sets the width of the top gridline for the specified frame. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthTop` +_expression_. `GridlineWidthTop` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Height.md b/api/Access.ObjectFrame.Height.md index 2c2512740bc..d1760a2fcd5 100644 --- a/api/Access.ObjectFrame.Height.md +++ b/api/Access.ObjectFrame.Height.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Height Property (Access) +title: ObjectFrame.Height property (Access) keywords: vbaac10.chm11591 f1_keywords: - vbaac10.chm11591 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Height Property (Access) +# ObjectFrame.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.HelpContextId.md b/api/Access.ObjectFrame.HelpContextId.md index 2f406f436eb..512d90d69fb 100644 --- a/api/Access.ObjectFrame.HelpContextId.md +++ b/api/Access.ObjectFrame.HelpContextId.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.HelpContextId Property (Access) +title: ObjectFrame.HelpContextId property (Access) keywords: vbaac10.chm11602 f1_keywords: - vbaac10.chm11602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.HelpContextId Property (Access) +# ObjectFrame.HelpContextId property (Access) The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**. ## Syntax - _expression_. `HelpContextId` +_expression_. `HelpContextId` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.HorizontalAnchor.md b/api/Access.ObjectFrame.HorizontalAnchor.md index fe38a9e794c..237390ed7a3 100644 --- a/api/Access.ObjectFrame.HorizontalAnchor.md +++ b/api/Access.ObjectFrame.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.HorizontalAnchor Property (Access) +title: ObjectFrame.HorizontalAnchor property (Access) keywords: vbaac10.chm11652 f1_keywords: - vbaac10.chm11652 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.HorizontalAnchor Property (Access) +# ObjectFrame.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the object frame is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.InSelection.md b/api/Access.ObjectFrame.InSelection.md index 7b760fb96c1..a42574bb331 100644 --- a/api/Access.ObjectFrame.InSelection.md +++ b/api/Access.ObjectFrame.InSelection.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.InSelection Property (Access) +title: ObjectFrame.InSelection property (Access) keywords: vbaac10.chm11613 f1_keywords: - vbaac10.chm11613 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.InSelection Property (Access) +# ObjectFrame.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.IsVisible.md b/api/Access.ObjectFrame.IsVisible.md index 5a7c4b0846b..c34f11fdaff 100644 --- a/api/Access.ObjectFrame.IsVisible.md +++ b/api/Access.ObjectFrame.IsVisible.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.IsVisible Property (Access) +title: ObjectFrame.IsVisible property (Access) keywords: vbaac10.chm11612 f1_keywords: - vbaac10.chm11612 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.IsVisible Property (Access) +# ObjectFrame.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Item.md b/api/Access.ObjectFrame.Item.md index 79f2ff3a273..65ae92e6090 100644 --- a/api/Access.ObjectFrame.Item.md +++ b/api/Access.ObjectFrame.Item.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Item Property (Access) +title: ObjectFrame.Item property (Access) keywords: vbaac10.chm11562 f1_keywords: - vbaac10.chm11562 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Item Property (Access) +# ObjectFrame.Item property (Access) The **Item** property returns or sets a specific member of a collection. Read/write **String**. ## Syntax - _expression_. `Item` +_expression_. `Item` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## See also diff --git a/api/Access.ObjectFrame.Layout.md b/api/Access.ObjectFrame.Layout.md index 8548a7ec88f..083de12e5d6 100644 --- a/api/Access.ObjectFrame.Layout.md +++ b/api/Access.ObjectFrame.Layout.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Layout Property (Access) +title: ObjectFrame.Layout property (Access) keywords: vbaac10.chm11638 f1_keywords: - vbaac10.chm11638 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Layout Property (Access) +# ObjectFrame.Layout property (Access) Returns the type of layout for the specified object frame. Read-only **[AcLayoutType](Access.AcLayoutType.md)**. ## Syntax - _expression_. `Layout` +_expression_. `Layout` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## See also diff --git a/api/Access.ObjectFrame.LayoutID.md b/api/Access.ObjectFrame.LayoutID.md index 322476c80e5..33bf9384890 100644 --- a/api/Access.ObjectFrame.LayoutID.md +++ b/api/Access.ObjectFrame.LayoutID.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.LayoutID Property (Access) +title: ObjectFrame.LayoutID property (Access) keywords: vbaac10.chm11654 f1_keywords: - vbaac10.chm11654 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.LayoutID Property (Access) +# ObjectFrame.LayoutID property (Access) Returns the unique identifier for the layout that contains the specified object frame. Read-only **Long**. ## Syntax - _expression_. `LayoutID` +_expression_. `LayoutID` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Left.md b/api/Access.ObjectFrame.Left.md index 0f9eb1b2337..1bf71106d5d 100644 --- a/api/Access.ObjectFrame.Left.md +++ b/api/Access.ObjectFrame.Left.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Left Property (Access) +title: ObjectFrame.Left property (Access) keywords: vbaac10.chm11588 f1_keywords: - vbaac10.chm11588 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Left Property (Access) +# ObjectFrame.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.LeftPadding.md b/api/Access.ObjectFrame.LeftPadding.md index 12d4c7e69c8..f93b8095118 100644 --- a/api/Access.ObjectFrame.LeftPadding.md +++ b/api/Access.ObjectFrame.LeftPadding.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.LeftPadding Property (Access) +title: ObjectFrame.LeftPadding property (Access) keywords: vbaac10.chm11639 f1_keywords: - vbaac10.chm11639 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.LeftPadding Property (Access) +# ObjectFrame.LeftPadding property (Access) Gets or sets the amount of space (in inches) between the object frame and its left gridline. Read/write **Integer**. ## Syntax - _expression_. `LeftPadding` +_expression_. `LeftPadding` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## See also diff --git a/api/Access.ObjectFrame.LinkChildFields.md b/api/Access.ObjectFrame.LinkChildFields.md index 3fd131971be..958615db267 100644 --- a/api/Access.ObjectFrame.LinkChildFields.md +++ b/api/Access.ObjectFrame.LinkChildFields.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.LinkChildFields Property (Access) +title: ObjectFrame.LinkChildFields property (Access) keywords: vbaac10.chm11565 f1_keywords: - vbaac10.chm11565 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.LinkChildFields Property (Access) +# ObjectFrame.LinkChildFields property (Access) You can use the **LinkChildFields** property (along with the **LinkMasterFields** property) together to specify how Microsoft Access links records in a form or report to records in a subform, subreport, or embedded object, such as a chart. If these properties are set, Microsoft Access automatically updates the related record in the subform when you change to a new record in a main form. Read/write **String**. ## Syntax - _expression_. `LinkChildFields` +_expression_. `LinkChildFields` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.LinkMasterFields.md b/api/Access.ObjectFrame.LinkMasterFields.md index 0a4ee7a562c..40b673dde71 100644 --- a/api/Access.ObjectFrame.LinkMasterFields.md +++ b/api/Access.ObjectFrame.LinkMasterFields.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.LinkMasterFields Property (Access) +title: ObjectFrame.LinkMasterFields property (Access) keywords: vbaac10.chm11566 f1_keywords: - vbaac10.chm11566 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.LinkMasterFields Property (Access) +# ObjectFrame.LinkMasterFields property (Access) You can use the **LinkMasterFields** property (along with the **LinkChildFields** property) together to specify how Microsoft Access links records in a form or report to records in a subform, subreport, or embedded object, such as a chart. If these properties are set, Microsoft Access automatically updates the related record in the subform when you change to a new record in a main form. Read/write **String**. ## Syntax - _expression_. `LinkMasterFields` +_expression_. `LinkMasterFields` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Locked.md b/api/Access.ObjectFrame.Locked.md index a98f57ce59b..f1a59a1c810 100644 --- a/api/Access.ObjectFrame.Locked.md +++ b/api/Access.ObjectFrame.Locked.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Locked Property (Access) +title: ObjectFrame.Locked property (Access) keywords: vbaac10.chm11584 f1_keywords: - vbaac10.chm11584 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Locked Property (Access) +# ObjectFrame.Locked property (Access) The **Locked** property specifies whether you can edit data in a control in Form view. Read/write **Boolean**. ## Syntax - _expression_. `Locked` +_expression_. `Locked` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.LostFocus.md b/api/Access.ObjectFrame.LostFocus.md index abceaac6d9d..ea806e3f13a 100644 --- a/api/Access.ObjectFrame.LostFocus.md +++ b/api/Access.ObjectFrame.LostFocus.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.LostFocus Event (Access) +title: ObjectFrame.LostFocus event (Access) keywords: vbaac10.chm14108 f1_keywords: - vbaac10.chm14108 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.LostFocus Event (Access) +# ObjectFrame.LostFocus event (Access) The **LostFocus** event occurs when the specified object loses the focus. ## Syntax - _expression_. `LostFocus` +_expression_. `LostFocus` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.MouseDown.md b/api/Access.ObjectFrame.MouseDown.md index ed612d99a76..7fb0c18eef7 100644 --- a/api/Access.ObjectFrame.MouseDown.md +++ b/api/Access.ObjectFrame.MouseDown.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.MouseDown Event (Access) +title: ObjectFrame.MouseDown event (Access) keywords: vbaac10.chm14111 f1_keywords: - vbaac10.chm14111 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ObjectFrame.MouseDown Event (Access) +# ObjectFrame.MouseDown event (Access) The **MouseDown** event occurs when the user presses a mouse button. ## Syntax - _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.ObjectFrame.MouseMove.md b/api/Access.ObjectFrame.MouseMove.md index ff775f19416..1d442326377 100644 --- a/api/Access.ObjectFrame.MouseMove.md +++ b/api/Access.ObjectFrame.MouseMove.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.MouseMove Event (Access) +title: ObjectFrame.MouseMove event (Access) keywords: vbaac10.chm14112 f1_keywords: - vbaac10.chm14112 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ObjectFrame.MouseMove Event (Access) +# ObjectFrame.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.ObjectFrame.MouseUp.md b/api/Access.ObjectFrame.MouseUp.md index fd6adf5083e..5849774dffe 100644 --- a/api/Access.ObjectFrame.MouseUp.md +++ b/api/Access.ObjectFrame.MouseUp.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.MouseUp Event (Access) +title: ObjectFrame.MouseUp event (Access) keywords: vbaac10.chm14113 f1_keywords: - vbaac10.chm14113 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ObjectFrame.MouseUp Event (Access) +# ObjectFrame.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.ObjectFrame.Move.md b/api/Access.ObjectFrame.Move.md index a1f9472d1f8..693a166ffbd 100644 --- a/api/Access.ObjectFrame.Move.md +++ b/api/Access.ObjectFrame.Move.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Move Method (Access) +title: ObjectFrame.Move method (Access) keywords: vbaac10.chm11625 f1_keywords: - vbaac10.chm11625 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Move Method (Access) +# ObjectFrame.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.ObjectFrame.Name.md b/api/Access.ObjectFrame.Name.md index c4959d50e9f..f5215cd44b3 100644 --- a/api/Access.ObjectFrame.Name.md +++ b/api/Access.ObjectFrame.Name.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Name Property (Access) +title: ObjectFrame.Name property (Access) keywords: vbaac10.chm11624 f1_keywords: - vbaac10.chm11624 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Name Property (Access) +# ObjectFrame.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.OLEClass.md b/api/Access.ObjectFrame.OLEClass.md index f96837c1bec..075b48d2caa 100644 --- a/api/Access.ObjectFrame.OLEClass.md +++ b/api/Access.ObjectFrame.OLEClass.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.OLEClass Property (Access) +title: ObjectFrame.OLEClass property (Access) keywords: vbaac10.chm11561 f1_keywords: - vbaac10.chm11561 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.OLEClass Property (Access) +# ObjectFrame.OLEClass property (Access) You can use the **OLEClass** property to obtain a description of the kind of OLE object contained in a chart control or an unbound object frame. Read-only **String**. ## Syntax - _expression_. `OLEClass` +_expression_. `OLEClass` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.OLEType.md b/api/Access.ObjectFrame.OLEType.md index f0197867990..d46b1f6f8e9 100644 --- a/api/Access.ObjectFrame.OLEType.md +++ b/api/Access.ObjectFrame.OLEType.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.OLEType Property (Access) +title: ObjectFrame.OLEType property (Access) keywords: vbaac10.chm11571 f1_keywords: - vbaac10.chm11571 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.OLEType Property (Access) +# ObjectFrame.OLEType property (Access) You can use the **OLEType** property to determine if a control contains an OLE object, and, if so, whether the object is linked or embedded. Read/write **Byte**. ## Syntax - _expression_. `OLEType` +_expression_. `OLEType` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.OLETypeAllowed.md b/api/Access.ObjectFrame.OLETypeAllowed.md index 35709a4fa03..86f2de11231 100644 --- a/api/Access.ObjectFrame.OLETypeAllowed.md +++ b/api/Access.ObjectFrame.OLETypeAllowed.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.OLETypeAllowed Property (Access) +title: ObjectFrame.OLETypeAllowed property (Access) keywords: vbaac10.chm11572 f1_keywords: - vbaac10.chm11572 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.OLETypeAllowed Property (Access) +# ObjectFrame.OLETypeAllowed property (Access) You can use the **OLETypeAllowed** property to specify the type of OLE object a control can contain. Read/write **Byte**. ## Syntax - _expression_. `OLETypeAllowed` +_expression_. `OLETypeAllowed` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Object.md b/api/Access.ObjectFrame.Object.md index 4ef527510df..c6ef2206c6f 100644 --- a/api/Access.ObjectFrame.Object.md +++ b/api/Access.ObjectFrame.Object.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Object Property (Access) +title: ObjectFrame.Object property (Access) keywords: vbaac10.chm11550 f1_keywords: - vbaac10.chm11550 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Object Property (Access) +# ObjectFrame.Object property (Access) You can use the **Object** property in Visual Basic to return a reference to the ActiveX object that is associated with a linked or embedded OLE object in a control. By using this reference, you can access the properties or invoke the methods of the OLE object. Read-only **Object**. ## Syntax - _expression_. `Object` +_expression_. `Object` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.ObjectPalette.md b/api/Access.ObjectFrame.ObjectPalette.md index 3c0a7778e06..a166db10de4 100644 --- a/api/Access.ObjectFrame.ObjectPalette.md +++ b/api/Access.ObjectFrame.ObjectPalette.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.ObjectPalette Property (Access) +title: ObjectFrame.ObjectPalette property (Access) keywords: vbaac10.chm11607 f1_keywords: - vbaac10.chm11607 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.ObjectPalette Property (Access) +# ObjectFrame.ObjectPalette property (Access) The **ObjectPalette** property specifies the palette in the application used to create an OLE object. Read/write **Variant**. ## Syntax - _expression_. `ObjectPalette` +_expression_. `ObjectPalette` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.ObjectVerbs.md b/api/Access.ObjectFrame.ObjectVerbs.md index 1d1a17b9912..1ca7ced0c8b 100644 --- a/api/Access.ObjectFrame.ObjectVerbs.md +++ b/api/Access.ObjectFrame.ObjectVerbs.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.ObjectVerbs Property (Access) +title: ObjectFrame.ObjectVerbs property (Access) keywords: vbaac10.chm11551 f1_keywords: - vbaac10.chm11551 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ObjectFrame.ObjectVerbs Property (Access) +# ObjectFrame.ObjectVerbs property (Access) You can use the **ObjectVerbs** property in Visual Basic to determine the list of verbs an OLE object supports. Read-only **String**. ## Syntax - _expression_. `ObjectVerbs`( ` _Index_` ) +_expression_. `ObjectVerbs`( ` _Index_` ) - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required|**Long**|An element in the array of supported verbs. This is a zero-based index, meaning zero (0) represents the first verb in the array, one (1) represents the second verb in the array, and so on.| diff --git a/api/Access.ObjectFrame.ObjectVerbsCount.md b/api/Access.ObjectFrame.ObjectVerbsCount.md index cd7256b0386..a3f8eed7cec 100644 --- a/api/Access.ObjectFrame.ObjectVerbsCount.md +++ b/api/Access.ObjectFrame.ObjectVerbsCount.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.ObjectVerbsCount Property (Access) +title: ObjectFrame.ObjectVerbsCount property (Access) keywords: vbaac10.chm11609 f1_keywords: - vbaac10.chm11609 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.ObjectVerbsCount Property (Access) +# ObjectFrame.ObjectVerbsCount property (Access) You can use the **ObjectVerbsCount** property in Visual Basic to determine the number of verbs supported by an OLE object. Read-only **Long**. ## Syntax - _expression_. `ObjectVerbsCount` +_expression_. `ObjectVerbsCount` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.OldBorderStyle.md b/api/Access.ObjectFrame.OldBorderStyle.md index a36cfe7c8c5..b85840cc3b6 100644 --- a/api/Access.ObjectFrame.OldBorderStyle.md +++ b/api/Access.ObjectFrame.OldBorderStyle.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.OldBorderStyle Property (Access) +title: ObjectFrame.OldBorderStyle property (Access) keywords: vbaac10.chm11596 f1_keywords: - vbaac10.chm11596 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.OldBorderStyle Property (Access) +# ObjectFrame.OldBorderStyle property (Access) You can use this property to set or returns the unedited value of the **BorderStyle** property for a form or control. This property is useful if you need to revert to an unedited or preferred border style. Read/write **Byte**. ## Syntax - _expression_. `OldBorderStyle` +_expression_. `OldBorderStyle` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.OldValue.md b/api/Access.ObjectFrame.OldValue.md index d9475ded51e..96ca88c3d21 100644 --- a/api/Access.ObjectFrame.OldValue.md +++ b/api/Access.ObjectFrame.OldValue.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.OldValue Property (Access) +title: ObjectFrame.OldValue property (Access) keywords: vbaac10.chm11549 f1_keywords: - vbaac10.chm11549 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.OldValue Property (Access) +# ObjectFrame.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.OnClick.md b/api/Access.ObjectFrame.OnClick.md index 07e2470d4df..bbf4a1d78f6 100644 --- a/api/Access.ObjectFrame.OnClick.md +++ b/api/Access.ObjectFrame.OnClick.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.OnClick Property (Access) +title: ObjectFrame.OnClick property (Access) keywords: vbaac10.chm11619 f1_keywords: - vbaac10.chm11619 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.OnClick Property (Access) +# ObjectFrame.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ObjectFrame.OnDblClick.md b/api/Access.ObjectFrame.OnDblClick.md index 4240fff3431..0a6c7f17800 100644 --- a/api/Access.ObjectFrame.OnDblClick.md +++ b/api/Access.ObjectFrame.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.OnDblClick Property (Access) +title: ObjectFrame.OnDblClick property (Access) keywords: vbaac10.chm11620 f1_keywords: - vbaac10.chm11620 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.OnDblClick Property (Access) +# ObjectFrame.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ObjectFrame.OnEnter.md b/api/Access.ObjectFrame.OnEnter.md index e06401223d9..9d14eed969e 100644 --- a/api/Access.ObjectFrame.OnEnter.md +++ b/api/Access.ObjectFrame.OnEnter.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.OnEnter Property (Access) +title: ObjectFrame.OnEnter property (Access) keywords: vbaac10.chm11615 f1_keywords: - vbaac10.chm11615 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.OnEnter Property (Access) +# ObjectFrame.OnEnter property (Access) Sets or returns the value of the **On Enter** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnEnter` +_expression_. `OnEnter` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Enter** event occurs before a control actually receives the focus from a The **OnEnter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Enter** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ObjectFrame.OnExit.md b/api/Access.ObjectFrame.OnExit.md index acb97479b8d..c7f30b13da3 100644 --- a/api/Access.ObjectFrame.OnExit.md +++ b/api/Access.ObjectFrame.OnExit.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.OnExit Property (Access) +title: ObjectFrame.OnExit property (Access) keywords: vbaac10.chm11616 f1_keywords: - vbaac10.chm11616 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.OnExit Property (Access) +# ObjectFrame.OnExit property (Access) Sets or returns the value of the **On Exit** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnExit` +_expression_. `OnExit` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Exit** event occurs just before a control loses the focus to another cont The **OnExit** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Exit** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ObjectFrame.OnGotFocus.md b/api/Access.ObjectFrame.OnGotFocus.md index 3bc5dd781f2..81373315aa1 100644 --- a/api/Access.ObjectFrame.OnGotFocus.md +++ b/api/Access.ObjectFrame.OnGotFocus.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.OnGotFocus Property (Access) +title: ObjectFrame.OnGotFocus property (Access) keywords: vbaac10.chm11617 f1_keywords: - vbaac10.chm11617 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.OnGotFocus Property (Access) +# ObjectFrame.OnGotFocus property (Access) Sets or returns the value of the **On Got Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnGotFocus` +_expression_. `OnGotFocus` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **GotFocus** event occurs when the object receives the focus. The **OnGotFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Got Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ObjectFrame.OnLostFocus.md b/api/Access.ObjectFrame.OnLostFocus.md index 809967a84d4..85ef105d78b 100644 --- a/api/Access.ObjectFrame.OnLostFocus.md +++ b/api/Access.ObjectFrame.OnLostFocus.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.OnLostFocus Property (Access) +title: ObjectFrame.OnLostFocus property (Access) keywords: vbaac10.chm11618 f1_keywords: - vbaac10.chm11618 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.OnLostFocus Property (Access) +# ObjectFrame.OnLostFocus property (Access) Sets or returns the value of the **On Lost Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnLostFocus` +_expression_. `OnLostFocus` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **LostFocus** event occurs when the object loses the focus. The **OnLostFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Lost Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ObjectFrame.OnMouseDown.md b/api/Access.ObjectFrame.OnMouseDown.md index fcb6422a630..b1fd06db42e 100644 --- a/api/Access.ObjectFrame.OnMouseDown.md +++ b/api/Access.ObjectFrame.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.OnMouseDown Property (Access) +title: ObjectFrame.OnMouseDown property (Access) keywords: vbaac10.chm11621 f1_keywords: - vbaac10.chm11621 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.OnMouseDown Property (Access) +# ObjectFrame.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ObjectFrame.OnMouseMove.md b/api/Access.ObjectFrame.OnMouseMove.md index 5f70644db90..295362d0198 100644 --- a/api/Access.ObjectFrame.OnMouseMove.md +++ b/api/Access.ObjectFrame.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.OnMouseMove Property (Access) +title: ObjectFrame.OnMouseMove property (Access) keywords: vbaac10.chm11622 f1_keywords: - vbaac10.chm11622 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.OnMouseMove Property (Access) +# ObjectFrame.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ObjectFrame.OnMouseUp.md b/api/Access.ObjectFrame.OnMouseUp.md index f556b7fce2f..823a604dfd4 100644 --- a/api/Access.ObjectFrame.OnMouseUp.md +++ b/api/Access.ObjectFrame.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.OnMouseUp Property (Access) +title: ObjectFrame.OnMouseUp property (Access) keywords: vbaac10.chm11623 f1_keywords: - vbaac10.chm11623 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.OnMouseUp Property (Access) +# ObjectFrame.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ObjectFrame.OnUpdated.md b/api/Access.ObjectFrame.OnUpdated.md index 273cb96afaa..486ca5efcff 100644 --- a/api/Access.ObjectFrame.OnUpdated.md +++ b/api/Access.ObjectFrame.OnUpdated.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.OnUpdated Property (Access) +title: ObjectFrame.OnUpdated property (Access) keywords: vbaac10.chm11614 f1_keywords: - vbaac10.chm11614 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.OnUpdated Property (Access) +# ObjectFrame.OnUpdated property (Access) Sets or returns the value of the **On Updated** box in the **Properties** window of a form or report. Read/write **String**. ## Syntax - _expression_. `OnUpdated` +_expression_. `OnUpdated` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks @@ -30,7 +30,7 @@ This property is helpful for programmatically changing the action Microsoft Acce The **OnUpdated** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Updated** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ObjectFrame.Parent.md b/api/Access.ObjectFrame.Parent.md index 3e1515d4642..15be5013755 100644 --- a/api/Access.ObjectFrame.Parent.md +++ b/api/Access.ObjectFrame.Parent.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Parent Property (Access) +title: ObjectFrame.Parent property (Access) keywords: vbaac10.chm11548 f1_keywords: - vbaac10.chm11548 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Parent Property (Access) +# ObjectFrame.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## See also diff --git a/api/Access.ObjectFrame.Properties.md b/api/Access.ObjectFrame.Properties.md index 9497f5b34d7..afd946dadc8 100644 --- a/api/Access.ObjectFrame.Properties.md +++ b/api/Access.ObjectFrame.Properties.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Properties Property (Access) +title: ObjectFrame.Properties property (Access) keywords: vbaac10.chm11552 f1_keywords: - vbaac10.chm11552 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Properties Property (Access) +# ObjectFrame.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Requery.md b/api/Access.ObjectFrame.Requery.md index 10ad19622be..ee6a883c892 100644 --- a/api/Access.ObjectFrame.Requery.md +++ b/api/Access.ObjectFrame.Requery.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Requery Method (Access) +title: ObjectFrame.Requery method (Access) keywords: vbaac10.chm11554 f1_keywords: - vbaac10.chm11554 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Requery Method (Access) +# ObjectFrame.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.RightPadding.md b/api/Access.ObjectFrame.RightPadding.md index 25e55b3f7c2..4aa509124a1 100644 --- a/api/Access.ObjectFrame.RightPadding.md +++ b/api/Access.ObjectFrame.RightPadding.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.RightPadding Property (Access) +title: ObjectFrame.RightPadding property (Access) keywords: vbaac10.chm11641 f1_keywords: - vbaac10.chm11641 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.RightPadding Property (Access) +# ObjectFrame.RightPadding property (Access) Gets or sets the amount of space (in inches) between the object frame and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## See also diff --git a/api/Access.ObjectFrame.RowSource.md b/api/Access.ObjectFrame.RowSource.md index db2406ed492..9a784fe98f4 100644 --- a/api/Access.ObjectFrame.RowSource.md +++ b/api/Access.ObjectFrame.RowSource.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.RowSource Property (Access) +title: ObjectFrame.RowSource property (Access) keywords: vbaac10.chm11564 f1_keywords: - vbaac10.chm11564 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.RowSource Property (Access) +# ObjectFrame.RowSource property (Access) You can use the **RowSource** property (along with the **RowSourceType** property) to tell Microsoft Access how to provide data tothe specified object. Read/write **String**. ## Syntax - _expression_. `RowSource` +_expression_. `RowSource` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.RowSourceType.md b/api/Access.ObjectFrame.RowSourceType.md index 422dc2dd5c5..2293003bd50 100644 --- a/api/Access.ObjectFrame.RowSourceType.md +++ b/api/Access.ObjectFrame.RowSourceType.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.RowSourceType Property (Access) +title: ObjectFrame.RowSourceType property (Access) keywords: vbaac10.chm11563 f1_keywords: - vbaac10.chm11563 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.RowSourceType Property (Access) +# ObjectFrame.RowSourceType property (Access) You can use the **RowSourceType** property (along with the **RowSource** property) to tell Microsoft Access how to provide data tothe specified object. Read/write **String**. ## Syntax - _expression_. `RowSourceType` +_expression_. `RowSourceType` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Scaling.md b/api/Access.ObjectFrame.Scaling.md index 442f73c9089..e2bece6a651 100644 --- a/api/Access.ObjectFrame.Scaling.md +++ b/api/Access.ObjectFrame.Scaling.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Scaling Property (Access) +title: ObjectFrame.Scaling property (Access) keywords: vbaac10.chm11611 f1_keywords: - vbaac10.chm11611 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Scaling Property (Access) +# ObjectFrame.Scaling property (Access) Controls how the contents of an object frame control are displayed. Read/write **Byte**. ## Syntax - _expression_. `Scaling` +_expression_. `Scaling` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Section.md b/api/Access.ObjectFrame.Section.md index 1391ec0aed7..26ae8568f43 100644 --- a/api/Access.ObjectFrame.Section.md +++ b/api/Access.ObjectFrame.Section.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Section Property (Access) +title: ObjectFrame.Section property (Access) keywords: vbaac10.chm11604 f1_keywords: - vbaac10.chm11604 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Section Property (Access) +# ObjectFrame.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.SetFocus.md b/api/Access.ObjectFrame.SetFocus.md index a520778482c..df211bb2b55 100644 --- a/api/Access.ObjectFrame.SetFocus.md +++ b/api/Access.ObjectFrame.SetFocus.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.SetFocus Method (Access) +title: ObjectFrame.SetFocus method (Access) keywords: vbaac10.chm11555 f1_keywords: - vbaac10.chm11555 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# ObjectFrame.SetFocus Method (Access) +# ObjectFrame.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.ObjectFrame.ShortcutMenuBar.md b/api/Access.ObjectFrame.ShortcutMenuBar.md index f339b108027..12c88cbdbd3 100644 --- a/api/Access.ObjectFrame.ShortcutMenuBar.md +++ b/api/Access.ObjectFrame.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.ShortcutMenuBar Property (Access) +title: ObjectFrame.ShortcutMenuBar property (Access) keywords: vbaac10.chm11600 f1_keywords: - vbaac10.chm11600 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.ShortcutMenuBar Property (Access) +# ObjectFrame.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.SizeMode.md b/api/Access.ObjectFrame.SizeMode.md index 97139315f90..b84cb98655e 100644 --- a/api/Access.ObjectFrame.SizeMode.md +++ b/api/Access.ObjectFrame.SizeMode.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.SizeMode Property (Access) +title: ObjectFrame.SizeMode property (Access) keywords: vbaac10.chm11560 f1_keywords: - vbaac10.chm11560 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.SizeMode Property (Access) +# ObjectFrame.SizeMode property (Access) You can use the **SizeMode** property to specify how to size a picture or other object in a bound object frame, an unbound object frame, or an image control. ## Syntax - _expression_. `SizeMode` +_expression_. `SizeMode` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.SizeToFit.md b/api/Access.ObjectFrame.SizeToFit.md index 6709bdb94b7..0ae45887fd3 100644 --- a/api/Access.ObjectFrame.SizeToFit.md +++ b/api/Access.ObjectFrame.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.SizeToFit Method (Access) +title: ObjectFrame.SizeToFit method (Access) keywords: vbaac10.chm11553 f1_keywords: - vbaac10.chm11553 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.SizeToFit Method (Access) +# ObjectFrame.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.SourceDoc.md b/api/Access.ObjectFrame.SourceDoc.md index f6b4a1f4770..31d2c446353 100644 --- a/api/Access.ObjectFrame.SourceDoc.md +++ b/api/Access.ObjectFrame.SourceDoc.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.SourceDoc Property (Access) +title: ObjectFrame.SourceDoc property (Access) keywords: vbaac10.chm11575 f1_keywords: - vbaac10.chm11575 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.SourceDoc Property (Access) +# ObjectFrame.SourceDoc property (Access) You can use the **SourceDoc** property to specify the file to create a link to or to embed when you create a linked object or embedded object by using the **Action** property in Visual Basic. Read/write **String**. ## Syntax - _expression_. `SourceDoc` +_expression_. `SourceDoc` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.SourceItem.md b/api/Access.ObjectFrame.SourceItem.md index 4f6de2dd93c..ef9d7a372fd 100644 --- a/api/Access.ObjectFrame.SourceItem.md +++ b/api/Access.ObjectFrame.SourceItem.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.SourceItem Property (Access) +title: ObjectFrame.SourceItem property (Access) keywords: vbaac10.chm11576 f1_keywords: - vbaac10.chm11576 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.SourceItem Property (Access) +# ObjectFrame.SourceItem property (Access) You can use the **SourceItem** property to specify the data within a file to be linked when you create a linked OLE object. Read/write **String**. ## Syntax - _expression_. `SourceItem` +_expression_. `SourceItem` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.SourceObject.md b/api/Access.ObjectFrame.SourceObject.md index c7f470fbdf8..1a9dbddc62f 100644 --- a/api/Access.ObjectFrame.SourceObject.md +++ b/api/Access.ObjectFrame.SourceObject.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.SourceObject Property (Access) +title: ObjectFrame.SourceObject property (Access) keywords: vbaac10.chm11573 f1_keywords: - vbaac10.chm11573 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.SourceObject Property (Access) +# ObjectFrame.SourceObject property (Access) You can use this property for linked unbound object frames to determine the complete path and file name of the file that contains the data linked to the object frame. Read-only **String**. ## Syntax - _expression_. `SourceObject` +_expression_. `SourceObject` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.SpecialEffect.md b/api/Access.ObjectFrame.SpecialEffect.md index 5c1fdb45673..1a2f132086d 100644 --- a/api/Access.ObjectFrame.SpecialEffect.md +++ b/api/Access.ObjectFrame.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.SpecialEffect Property (Access) +title: ObjectFrame.SpecialEffect property (Access) keywords: vbaac10.chm11594 f1_keywords: - vbaac10.chm11594 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.SpecialEffect Property (Access) +# ObjectFrame.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.StatusBarText.md b/api/Access.ObjectFrame.StatusBarText.md index ce47665700b..bd1b71b1267 100644 --- a/api/Access.ObjectFrame.StatusBarText.md +++ b/api/Access.ObjectFrame.StatusBarText.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.StatusBarText Property (Access) +title: ObjectFrame.StatusBarText property (Access) keywords: vbaac10.chm11585 f1_keywords: - vbaac10.chm11585 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.StatusBarText Property (Access) +# ObjectFrame.StatusBarText property (Access) You can use the **StatusBarText** property to specify the text that is displayed in the status bar when a control is selected. Read/write **String**. ## Syntax - _expression_. `StatusBarText` +_expression_. `StatusBarText` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.TabIndex.md b/api/Access.ObjectFrame.TabIndex.md index a138fddf4ee..cdd6addac4c 100644 --- a/api/Access.ObjectFrame.TabIndex.md +++ b/api/Access.ObjectFrame.TabIndex.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.TabIndex Property (Access) +title: ObjectFrame.TabIndex property (Access) keywords: vbaac10.chm11587 f1_keywords: - vbaac10.chm11587 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.TabIndex Property (Access) +# ObjectFrame.TabIndex property (Access) You can use the **TabIndex** property to specify a control's place in the tab order on a form or report. Read/write **Integer**. ## Syntax - _expression_. `TabIndex` +_expression_. `TabIndex` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.TabStop.md b/api/Access.ObjectFrame.TabStop.md index 140955d7d00..9ffc5efcb36 100644 --- a/api/Access.ObjectFrame.TabStop.md +++ b/api/Access.ObjectFrame.TabStop.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.TabStop Property (Access) +title: ObjectFrame.TabStop property (Access) keywords: vbaac10.chm11586 f1_keywords: - vbaac10.chm11586 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.TabStop Property (Access) +# ObjectFrame.TabStop property (Access) You can use the **TabStop** property to specify whether you can use the TAB key to move the focus to a control. Read/write **Boolean**. ## Syntax - _expression_. `TabStop` +_expression_. `TabStop` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Tag.md b/api/Access.ObjectFrame.Tag.md index a8a1674751a..1ff152d40e6 100644 --- a/api/Access.ObjectFrame.Tag.md +++ b/api/Access.ObjectFrame.Tag.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Tag Property (Access) +title: ObjectFrame.Tag property (Access) keywords: vbaac10.chm11606 f1_keywords: - vbaac10.chm11606 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Tag Property (Access) +# ObjectFrame.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Top.md b/api/Access.ObjectFrame.Top.md index 1a50b0133c9..a5945521e10 100644 --- a/api/Access.ObjectFrame.Top.md +++ b/api/Access.ObjectFrame.Top.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Top Property (Access) +title: ObjectFrame.Top property (Access) keywords: vbaac10.chm11589 f1_keywords: - vbaac10.chm11589 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Top Property (Access) +# ObjectFrame.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.TopPadding.md b/api/Access.ObjectFrame.TopPadding.md index 35e72db29a1..73e86498179 100644 --- a/api/Access.ObjectFrame.TopPadding.md +++ b/api/Access.ObjectFrame.TopPadding.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.TopPadding Property (Access) +title: ObjectFrame.TopPadding property (Access) keywords: vbaac10.chm11640 f1_keywords: - vbaac10.chm11640 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.TopPadding Property (Access) +# ObjectFrame.TopPadding property (Access) Gets or sets the amount of space (in inches) between the object frame and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## See also diff --git a/api/Access.ObjectFrame.UpdateMethod.md b/api/Access.ObjectFrame.UpdateMethod.md index 20a09e32aac..e1953c8108b 100644 --- a/api/Access.ObjectFrame.UpdateMethod.md +++ b/api/Access.ObjectFrame.UpdateMethod.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.UpdateMethod Property (Access) +title: ObjectFrame.UpdateMethod property (Access) keywords: vbaac10.chm11582 f1_keywords: - vbaac10.chm11582 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.UpdateMethod Property (Access) +# ObjectFrame.UpdateMethod property (Access) This property has been deprecated. Use the **[UpdateOptions](Access.ObjectFrame.UpdateOptions.md)** property to specify how a linkedOLE object is updated. ## Syntax - _expression_. `UpdateMethod` +_expression_. `UpdateMethod` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## See also diff --git a/api/Access.ObjectFrame.UpdateOptions.md b/api/Access.ObjectFrame.UpdateOptions.md index a2c0a020d0a..5748d2b6f0a 100644 --- a/api/Access.ObjectFrame.UpdateOptions.md +++ b/api/Access.ObjectFrame.UpdateOptions.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.UpdateOptions Property (Access) +title: ObjectFrame.UpdateOptions property (Access) keywords: vbaac10.chm11569 f1_keywords: - vbaac10.chm11569 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.UpdateOptions Property (Access) +# ObjectFrame.UpdateOptions property (Access) You can use the **UpdateOptions** property to specify how a linkedOLE object is updated. Read/write **Integer**. ## Syntax - _expression_. `UpdateOptions` +_expression_. `UpdateOptions` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Updated.md b/api/Access.ObjectFrame.Updated.md index 924b771e930..9216884a0e9 100644 --- a/api/Access.ObjectFrame.Updated.md +++ b/api/Access.ObjectFrame.Updated.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Updated Event (Access) +title: ObjectFrame.Updated event (Access) keywords: vbaac10.chm14104 f1_keywords: - vbaac10.chm14104 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Updated Event (Access) +# ObjectFrame.Updated event (Access) The **Updated** event occurs when an OLE object's data has been modified. ## Syntax - _expression_. `Updated`( ` _Code_` ) +_expression_. `Updated`( ` _Code_` ) - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.VarOleObject.md b/api/Access.ObjectFrame.VarOleObject.md index dd2e16e662d..50e6a5ae41c 100644 --- a/api/Access.ObjectFrame.VarOleObject.md +++ b/api/Access.ObjectFrame.VarOleObject.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.VarOleObject Property (Access) +title: ObjectFrame.VarOleObject property (Access) keywords: vbaac10.chm10954 f1_keywords: - vbaac10.chm10954 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.VarOleObject Property (Access) +# ObjectFrame.VarOleObject property (Access) Gets a pointer to an **IOLEObject** that represents the memory address of an OLE object. Read-only **Variant**. ## Syntax - _expression_. `VarOleObject` +_expression_. `VarOleObject` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Verb.md b/api/Access.ObjectFrame.Verb.md index 4b6417227e3..a86d2071f1d 100644 --- a/api/Access.ObjectFrame.Verb.md +++ b/api/Access.ObjectFrame.Verb.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Verb Property (Access) +title: ObjectFrame.Verb property (Access) keywords: vbaac10.chm11570 f1_keywords: - vbaac10.chm11570 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Verb Property (Access) +# ObjectFrame.Verb property (Access) You can use the **Verb** property to specify the operation to perform when an OLE object is activated, which is permitted when the control's **Action** property is set to **acOLEActivate**. Read/write **Long**. ## Syntax - _expression_. `Verb` +_expression_. `Verb` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.VerticalAnchor.md b/api/Access.ObjectFrame.VerticalAnchor.md index dd083f3d4ba..079139812f4 100644 --- a/api/Access.ObjectFrame.VerticalAnchor.md +++ b/api/Access.ObjectFrame.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.VerticalAnchor Property (Access) +title: ObjectFrame.VerticalAnchor property (Access) keywords: vbaac10.chm11653 f1_keywords: - vbaac10.chm11653 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.VerticalAnchor Property (Access) +# ObjectFrame.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified object frame is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Visible.md b/api/Access.ObjectFrame.Visible.md index 0068368d5bf..63e78a6dbd3 100644 --- a/api/Access.ObjectFrame.Visible.md +++ b/api/Access.ObjectFrame.Visible.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Visible Property (Access) +title: ObjectFrame.Visible property (Access) keywords: vbaac10.chm11579 f1_keywords: - vbaac10.chm11579 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Visible Property (Access) +# ObjectFrame.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.Width.md b/api/Access.ObjectFrame.Width.md index cfaa9c40007..7b3b1fc053e 100644 --- a/api/Access.ObjectFrame.Width.md +++ b/api/Access.ObjectFrame.Width.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame.Width Property (Access) +title: ObjectFrame.Width property (Access) keywords: vbaac10.chm11590 f1_keywords: - vbaac10.chm11590 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ObjectFrame.Width Property (Access) +# ObjectFrame.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. +_expression_ A variable that represents an [ObjectFrame](Access.ObjectFrame.md) object. ## Remarks diff --git a/api/Access.ObjectFrame.md b/api/Access.ObjectFrame.md index 5bcb58cf851..cfde6dbc915 100644 --- a/api/Access.ObjectFrame.md +++ b/api/Access.ObjectFrame.md @@ -1,5 +1,5 @@ --- -title: ObjectFrame Object (Access) +title: ObjectFrame object (Access) keywords: vbaac10.chm11665 f1_keywords: - vbaac10.chm11665 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ObjectFrame Object (Access) +# ObjectFrame object (Access) This object corresponds to an unbound object frame. The unbound object frame control displays a picture, chart, or any OLE object not stored in a table. diff --git a/api/Access.Operation.Execute.md b/api/Access.Operation.Execute.md index 0e24cab3ff1..9e7084b5efe 100644 --- a/api/Access.Operation.Execute.md +++ b/api/Access.Operation.Execute.md @@ -1,5 +1,5 @@ --- -title: Operation.Execute Method (Access) +title: Operation.Execute method (Access) keywords: vbaac10.chm14585 f1_keywords: - vbaac10.chm14585 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# Operation.Execute Method (Access) +# Operation.Execute method (Access) Executes the specified operation. ## Syntax - _expression_. `Execute`( ` _bstrParameters_` ) +_expression_. `Execute`( ` _bstrParameters_` ) - _expression_ A variable that represents an [Operation](Access.Operation.md) object. +_expression_ A variable that represents an [Operation](Access.Operation.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _bstrParameters_|Optional|**String**|Specifies values for the parameters of the operation.| -### Return Value +### Return value Variant diff --git a/api/Access.Operation.Name.md b/api/Access.Operation.Name.md index 56a1138627d..5c02cfa7f01 100644 --- a/api/Access.Operation.Name.md +++ b/api/Access.Operation.Name.md @@ -1,5 +1,5 @@ --- -title: Operation.Name Property (Access) +title: Operation.Name property (Access) keywords: vbaac10.chm14576 f1_keywords: - vbaac10.chm14576 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Operation.Name Property (Access) +# Operation.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents an [Operation](Access.Operation.md) object. +_expression_ A variable that represents an [Operation](Access.Operation.md) object. ## Remarks diff --git a/api/Access.Operation.Parent.md b/api/Access.Operation.Parent.md index 2594cf4074f..cdb29a4841e 100644 --- a/api/Access.Operation.Parent.md +++ b/api/Access.Operation.Parent.md @@ -1,5 +1,5 @@ --- -title: Operation.Parent Property (Access) +title: Operation.Parent property (Access) keywords: vbaac10.chm14575 f1_keywords: - vbaac10.chm14575 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Operation.Parent Property (Access) +# Operation.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents an [Operation](Access.Operation.md) object. +_expression_ A variable that represents an [Operation](Access.Operation.md) object. ## See also diff --git a/api/Access.Operation.WSParameters.md b/api/Access.Operation.WSParameters.md index 268239098fc..d21e5493ee5 100644 --- a/api/Access.Operation.WSParameters.md +++ b/api/Access.Operation.WSParameters.md @@ -1,5 +1,5 @@ --- -title: Operation.WSParameters Property (Access) +title: Operation.WSParameters property (Access) keywords: vbaac10.chm14577 f1_keywords: - vbaac10.chm14577 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Operation.WSParameters Property (Access) +# Operation.WSParameters property (Access) Gets the collection of parameters defined for the specified operation. Read-only [WSParameters](Access.WSParameters.md). ## Syntax - _expression_. `WSParameters` +_expression_. `WSParameters` - _expression_ A variable that represents an [Operation](Access.Operation.md) object. +_expression_ A variable that represents an [Operation](Access.Operation.md) object. ## See also diff --git a/api/Access.Operation.md b/api/Access.Operation.md index 06e9224954c..d98a1b7d32c 100644 --- a/api/Access.Operation.md +++ b/api/Access.Operation.md @@ -1,5 +1,5 @@ --- -title: Operation Object (Access) +title: Operation object (Access) keywords: vbaac10.chm14574 f1_keywords: - vbaac10.chm14574 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Operation Object (Access) +# Operation object (Access) Represents an operation defined for an [Entity](Access.Entity.md). diff --git a/api/Access.Operations.Count.md b/api/Access.Operations.Count.md index 21ce6d3b547..1ce7c677650 100644 --- a/api/Access.Operations.Count.md +++ b/api/Access.Operations.Count.md @@ -1,5 +1,5 @@ --- -title: Operations.Count Property (Access) +title: Operations.Count property (Access) keywords: vbaac10.chm14572 f1_keywords: - vbaac10.chm14572 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Operations.Count Property (Access) +# Operations.Count property (Access) You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents an [Operations](Access.Operations.md) object. +_expression_ A variable that represents an [Operations](Access.Operations.md) object. ## See also diff --git a/api/Access.Operations.Item.md b/api/Access.Operations.Item.md index 24c760eb73e..2a1b171caf0 100644 --- a/api/Access.Operations.Item.md +++ b/api/Access.Operations.Item.md @@ -1,5 +1,5 @@ --- -title: Operations.Item Property (Access) +title: Operations.Item property (Access) keywords: vbaac10.chm14571 f1_keywords: - vbaac10.chm14571 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Operations.Item Property (Access) +# Operations.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **Object**. ## Syntax - _expression_. `Item`( ` _Index_` ) +_expression_. `Item`( ` _Index_` ) - _expression_ A variable that represents an [Operations](Access.Operations.md) object. +_expression_ A variable that represents an [Operations](Access.Operations.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required|**Variant**|| diff --git a/api/Access.Operations.Parent.md b/api/Access.Operations.Parent.md index d1b85c50d59..4c06f4796be 100644 --- a/api/Access.Operations.Parent.md +++ b/api/Access.Operations.Parent.md @@ -1,5 +1,5 @@ --- -title: Operations.Parent Property (Access) +title: Operations.Parent property (Access) keywords: vbaac10.chm14570 f1_keywords: - vbaac10.chm14570 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Operations.Parent Property (Access) +# Operations.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents an [Operations](Access.Operations.md) object. +_expression_ A variable that represents an [Operations](Access.Operations.md) object. ## See also diff --git a/api/Access.Operations.md b/api/Access.Operations.md index 1f7d8256e89..49fa77b8944 100644 --- a/api/Access.Operations.md +++ b/api/Access.Operations.md @@ -1,5 +1,5 @@ --- -title: Operations Object (Access) +title: Operations object (Access) keywords: vbaac10.chm14569 f1_keywords: - vbaac10.chm14569 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Operations Object (Access) +# Operations object (Access) Represents the collection of operations defined for an **[Entity](Access.Entity.md)**. diff --git a/api/Access.OptionButton.AddColon.md b/api/Access.OptionButton.AddColon.md index 5dcd423f9af..5c7b6195db1 100644 --- a/api/Access.OptionButton.AddColon.md +++ b/api/Access.OptionButton.AddColon.md @@ -1,5 +1,5 @@ --- -title: OptionButton.AddColon Property (Access) +title: OptionButton.AddColon property (Access) keywords: vbaac10.chm10599 f1_keywords: - vbaac10.chm10599 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.AddColon Property (Access) +# OptionButton.AddColon property (Access) Specifies whether a colon follows the text in labels for new controls. Read/write **Boolean**. ## Syntax - _expression_. `AddColon` +_expression_. `AddColon` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## See also diff --git a/api/Access.OptionButton.AfterUpdate(even).md b/api/Access.OptionButton.AfterUpdate(even).md index 7c9e90e3831..a0c12b939d4 100644 --- a/api/Access.OptionButton.AfterUpdate(even).md +++ b/api/Access.OptionButton.AfterUpdate(even).md @@ -1,5 +1,5 @@ --- -title: OptionButton.AfterUpdate Event (Access) +title: OptionButton.AfterUpdate event (Access) keywords: vbaac10.chm14135 f1_keywords: - vbaac10.chm14135 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.AfterUpdate Event (Access) +# OptionButton.AfterUpdate event (Access) The **AfterUpdate** event occurs after changed data in a control or record is updated. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.AfterUpdate(property).md b/api/Access.OptionButton.AfterUpdate(property).md index b5fd5ff7435..7c37a87bf6b 100644 --- a/api/Access.OptionButton.AfterUpdate(property).md +++ b/api/Access.OptionButton.AfterUpdate(property).md @@ -1,5 +1,5 @@ --- -title: OptionButton.AfterUpdate Property (Access) +title: OptionButton.AfterUpdate property (Access) keywords: vbaac10.chm10609 f1_keywords: - vbaac10.chm10609 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.AfterUpdate Property (Access) +# OptionButton.AfterUpdate property (Access) Returns or sets which macro, event procedure, or user-defined function runs when the **AfterUpdate** event occurs. Read/write **String**. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.Application.md b/api/Access.OptionButton.Application.md index 705056e598a..b3a24632944 100644 --- a/api/Access.OptionButton.Application.md +++ b/api/Access.OptionButton.Application.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Application Property (Access) +title: OptionButton.Application property (Access) keywords: vbaac10.chm10556 f1_keywords: - vbaac10.chm10556 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Application Property (Access) +# OptionButton.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.AutoLabel.md b/api/Access.OptionButton.AutoLabel.md index f505024cebf..150b3867db5 100644 --- a/api/Access.OptionButton.AutoLabel.md +++ b/api/Access.OptionButton.AutoLabel.md @@ -1,5 +1,5 @@ --- -title: OptionButton.AutoLabel Property (Access) +title: OptionButton.AutoLabel property (Access) keywords: vbaac10.chm10598 f1_keywords: - vbaac10.chm10598 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.AutoLabel Property (Access) +# OptionButton.AutoLabel property (Access) Specifies whether labels are automatically created and attached to new controls. Read/write **Boolean**. ## Syntax - _expression_. `AutoLabel` +_expression_. `AutoLabel` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## See also diff --git a/api/Access.OptionButton.BeforeUpdate(even).md b/api/Access.OptionButton.BeforeUpdate(even).md index 8265e08df5c..a83c396af76 100644 --- a/api/Access.OptionButton.BeforeUpdate(even).md +++ b/api/Access.OptionButton.BeforeUpdate(even).md @@ -1,5 +1,5 @@ --- -title: OptionButton.BeforeUpdate Event (Access) +title: OptionButton.BeforeUpdate event (Access) keywords: vbaac10.chm14134 f1_keywords: - vbaac10.chm14134 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionButton.BeforeUpdate Event (Access) +# OptionButton.BeforeUpdate event (Access) The **BeforeUpdate** event occurs before changed data in a control or record is updated. ## Syntax - _expression_. `BeforeUpdate`( ` _Cancel_` ) +_expression_. `BeforeUpdate`( ` _Cancel_` ) - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **BeforeUpdate** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **BeforeUpdate** event.| diff --git a/api/Access.OptionButton.BeforeUpdate(property).md b/api/Access.OptionButton.BeforeUpdate(property).md index cb605aa85f2..d5b25227cf4 100644 --- a/api/Access.OptionButton.BeforeUpdate(property).md +++ b/api/Access.OptionButton.BeforeUpdate(property).md @@ -1,5 +1,5 @@ --- -title: OptionButton.BeforeUpdate Property (Access) +title: OptionButton.BeforeUpdate property (Access) keywords: vbaac10.chm10608 f1_keywords: - vbaac10.chm10608 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.BeforeUpdate Property (Access) +# OptionButton.BeforeUpdate property (Access) Returns or sets which macro, event procedure, or user-defined function runs when the **BeforeUpdate** event occurs. Read/write **String**. ## Syntax - _expression_. `BeforeUpdate` +_expression_. `BeforeUpdate` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.BorderColor.md b/api/Access.OptionButton.BorderColor.md index a1f66c4bda9..346dd2f9ccc 100644 --- a/api/Access.OptionButton.BorderColor.md +++ b/api/Access.OptionButton.BorderColor.md @@ -1,5 +1,5 @@ --- -title: OptionButton.BorderColor Property (Access) +title: OptionButton.BorderColor property (Access) keywords: vbaac10.chm10591 f1_keywords: - vbaac10.chm10591 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.BorderColor Property (Access) +# OptionButton.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.BorderShade.md b/api/Access.OptionButton.BorderShade.md index 87b19bffe9c..c59d0a78469 100644 --- a/api/Access.OptionButton.BorderShade.md +++ b/api/Access.OptionButton.BorderShade.md @@ -1,5 +1,5 @@ --- -title: OptionButton.BorderShade Property (Access) +title: OptionButton.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.BorderShade Property (Access) +# OptionButton.BorderShade property (Access) Gets or sets the shade that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.BorderStyle.md b/api/Access.OptionButton.BorderStyle.md index 00da1abd755..76a771c6984 100644 --- a/api/Access.OptionButton.BorderStyle.md +++ b/api/Access.OptionButton.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: OptionButton.BorderStyle Property (Access) +title: OptionButton.BorderStyle property (Access) keywords: vbaac10.chm10587 f1_keywords: - vbaac10.chm10587 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.BorderStyle Property (Access) +# OptionButton.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.BorderThemeColorIndex.md b/api/Access.OptionButton.BorderThemeColorIndex.md index 00030eaf72d..ee2f0402b14 100644 --- a/api/Access.OptionButton.BorderThemeColorIndex.md +++ b/api/Access.OptionButton.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: OptionButton.BorderThemeColorIndex Property (Access) +title: OptionButton.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.BorderThemeColorIndex Property (Access) +# OptionButton.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.BorderTint.md b/api/Access.OptionButton.BorderTint.md index afb7d1153ac..166ea213ce6 100644 --- a/api/Access.OptionButton.BorderTint.md +++ b/api/Access.OptionButton.BorderTint.md @@ -1,5 +1,5 @@ --- -title: OptionButton.BorderTint Property (Access) +title: OptionButton.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.BorderTint Property (Access) +# OptionButton.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.BorderWidth.md b/api/Access.OptionButton.BorderWidth.md index 7148d0b1003..faf385b8996 100644 --- a/api/Access.OptionButton.BorderWidth.md +++ b/api/Access.OptionButton.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: OptionButton.BorderWidth Property (Access) +title: OptionButton.BorderWidth property (Access) keywords: vbaac10.chm10589 f1_keywords: - vbaac10.chm10589 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.BorderWidth Property (Access) +# OptionButton.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.BottomPadding.md b/api/Access.OptionButton.BottomPadding.md index 136a5dc39b5..307ff0733ff 100644 --- a/api/Access.OptionButton.BottomPadding.md +++ b/api/Access.OptionButton.BottomPadding.md @@ -1,5 +1,5 @@ --- -title: OptionButton.BottomPadding Property (Access) +title: OptionButton.BottomPadding property (Access) keywords: vbaac10.chm10644 f1_keywords: - vbaac10.chm10644 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.BottomPadding Property (Access) +# OptionButton.BottomPadding property (Access) Gets or sets the amount of space (in inches) between the option button and its bottom gridline. Read/write **Integer**. ## Syntax - _expression_. `BottomPadding` +_expression_. `BottomPadding` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## See also diff --git a/api/Access.OptionButton.Click.md b/api/Access.OptionButton.Click.md index deabfc36b71..99c34282c33 100644 --- a/api/Access.OptionButton.Click.md +++ b/api/Access.OptionButton.Click.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Click Event (Access) +title: OptionButton.Click event (Access) keywords: vbaac10.chm14133 f1_keywords: - vbaac10.chm14133 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Click Event (Access) +# OptionButton.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.ColumnHidden.md b/api/Access.OptionButton.ColumnHidden.md index 721aa8fd60d..3af8c10d490 100644 --- a/api/Access.OptionButton.ColumnHidden.md +++ b/api/Access.OptionButton.ColumnHidden.md @@ -1,5 +1,5 @@ --- -title: OptionButton.ColumnHidden Property (Access) +title: OptionButton.ColumnHidden property (Access) keywords: vbaac10.chm10597 f1_keywords: - vbaac10.chm10597 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.ColumnHidden Property (Access) +# OptionButton.ColumnHidden property (Access) You can use the **ColumnHidden** property to show or hide a specified column in Datasheet view. Read/write **Boolean**. ## Syntax - _expression_. `ColumnHidden` +_expression_. `ColumnHidden` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.ColumnOrder.md b/api/Access.OptionButton.ColumnOrder.md index d5842847180..9ac1d116920 100644 --- a/api/Access.OptionButton.ColumnOrder.md +++ b/api/Access.OptionButton.ColumnOrder.md @@ -1,5 +1,5 @@ --- -title: OptionButton.ColumnOrder Property (Access) +title: OptionButton.ColumnOrder property (Access) keywords: vbaac10.chm10596 f1_keywords: - vbaac10.chm10596 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.ColumnOrder Property (Access) +# OptionButton.ColumnOrder property (Access) You can use the **ColumnOrder** property to specify the order of the columns in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `ColumnOrder` +_expression_. `ColumnOrder` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.ColumnWidth.md b/api/Access.OptionButton.ColumnWidth.md index 15f40e7c4a3..fec2c80d534 100644 --- a/api/Access.OptionButton.ColumnWidth.md +++ b/api/Access.OptionButton.ColumnWidth.md @@ -1,5 +1,5 @@ --- -title: OptionButton.ColumnWidth Property (Access) +title: OptionButton.ColumnWidth property (Access) keywords: vbaac10.chm10595 f1_keywords: - vbaac10.chm10595 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.ColumnWidth Property (Access) +# OptionButton.ColumnWidth property (Access) You can use the **ColumnWidth** property to specify the width of a column in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `ColumnWidth` +_expression_. `ColumnWidth` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.ControlSource.md b/api/Access.OptionButton.ControlSource.md index bad4c152c4d..9d197d7c6a8 100644 --- a/api/Access.OptionButton.ControlSource.md +++ b/api/Access.OptionButton.ControlSource.md @@ -1,5 +1,5 @@ --- -title: OptionButton.ControlSource Property (Access) +title: OptionButton.ControlSource property (Access) keywords: vbaac10.chm10569 f1_keywords: - vbaac10.chm10569 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.ControlSource Property (Access) +# OptionButton.ControlSource property (Access) You can use the **ControlSource** property to specify what data appears in a control. You can display and edit data bound to a field in a table, query, or SQL statement. You can also display the result of an expression. Read/write **String**. ## Syntax - _expression_. `ControlSource` +_expression_. `ControlSource` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.ControlTipText.md b/api/Access.OptionButton.ControlTipText.md index 7934d1fb5a1..9a173d50c06 100644 --- a/api/Access.OptionButton.ControlTipText.md +++ b/api/Access.OptionButton.ControlTipText.md @@ -1,5 +1,5 @@ --- -title: OptionButton.ControlTipText Property (Access) +title: OptionButton.ControlTipText property (Access) keywords: vbaac10.chm10593 f1_keywords: - vbaac10.chm10593 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.ControlTipText Property (Access) +# OptionButton.ControlTipText property (Access) You can use the **ControlTipText** property to specify the text that appears in a ScreenTip when you hold the mouse pointer over a control. Read/write **String**. ## Syntax - _expression_. `ControlTipText` +_expression_. `ControlTipText` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.ControlType.md b/api/Access.OptionButton.ControlType.md index 6788de6cb5c..870e26e11e7 100644 --- a/api/Access.OptionButton.ControlType.md +++ b/api/Access.OptionButton.ControlType.md @@ -1,5 +1,5 @@ --- -title: OptionButton.ControlType Property (Access) +title: OptionButton.ControlType property (Access) keywords: vbaac10.chm10567 f1_keywords: - vbaac10.chm10567 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.ControlType Property (Access) +# OptionButton.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.Controls.md b/api/Access.OptionButton.Controls.md index 88a4c8a463b..bf37cc4af82 100644 --- a/api/Access.OptionButton.Controls.md +++ b/api/Access.OptionButton.Controls.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Controls Property (Access) +title: OptionButton.Controls property (Access) keywords: vbaac10.chm10563 f1_keywords: - vbaac10.chm10563 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Controls Property (Access) +# OptionButton.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.DblClick.md b/api/Access.OptionButton.DblClick.md index f736a8a4c22..a7b14a160fa 100644 --- a/api/Access.OptionButton.DblClick.md +++ b/api/Access.OptionButton.DblClick.md @@ -1,5 +1,5 @@ --- -title: OptionButton.DblClick Event (Access) +title: OptionButton.DblClick event (Access) keywords: vbaac10.chm14140 f1_keywords: - vbaac10.chm14140 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionButton.DblClick Event (Access) +# OptionButton.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_` ) +_expression_. `DblClick`( ` _Cancel_` ) - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **DblClick** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **DblClick** event.| diff --git a/api/Access.OptionButton.DefaultValue.md b/api/Access.OptionButton.DefaultValue.md index d72ea13ce1e..cfa1dfb98fe 100644 --- a/api/Access.OptionButton.DefaultValue.md +++ b/api/Access.OptionButton.DefaultValue.md @@ -1,5 +1,5 @@ --- -title: OptionButton.DefaultValue Property (Access) +title: OptionButton.DefaultValue property (Access) keywords: vbaac10.chm10570 f1_keywords: - vbaac10.chm10570 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.DefaultValue Property (Access) +# OptionButton.DefaultValue property (Access) Specifies a value that is automatically entered in a field when a new record is created. For example, in an Addresses table you can set the default value for the City field to New York. When users add a record to the table, they can either accept this value or enter the name of a different city. Read/write **String**. ## Syntax - _expression_. `DefaultValue` +_expression_. `DefaultValue` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.DisplayWhen.md b/api/Access.OptionButton.DisplayWhen.md index fa7ece2af19..b42aa8be190 100644 --- a/api/Access.OptionButton.DisplayWhen.md +++ b/api/Access.OptionButton.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: OptionButton.DisplayWhen Property (Access) +title: OptionButton.DisplayWhen property (Access) keywords: vbaac10.chm10575 f1_keywords: - vbaac10.chm10575 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.DisplayWhen Property (Access) +# OptionButton.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.Enabled.md b/api/Access.OptionButton.Enabled.md index 0717842f01d..89b55ca1438 100644 --- a/api/Access.OptionButton.Enabled.md +++ b/api/Access.OptionButton.Enabled.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Enabled Property (Access) +title: OptionButton.Enabled property (Access) keywords: vbaac10.chm10576 f1_keywords: - vbaac10.chm10576 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Enabled Property (Access) +# OptionButton.Enabled property (Access) You can use the **Enabled** property to set or return the status of the conditional format in the **[FormatCondition](Access.FormatCondition.md)** object. Read/write **Boolean**. ## Syntax - _expression_. `Enabled` +_expression_. `Enabled` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.Enter.md b/api/Access.OptionButton.Enter.md index 59c11632758..80717243e12 100644 --- a/api/Access.OptionButton.Enter.md +++ b/api/Access.OptionButton.Enter.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Enter Event (Access) +title: OptionButton.Enter event (Access) keywords: vbaac10.chm14136 f1_keywords: - vbaac10.chm14136 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Enter Event (Access) +# OptionButton.Enter event (Access) The **Enter** event occurs before a control actually receives the focus from a control on the same form or report. ## Syntax - _expression_. `Enter` +_expression_. `Enter` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.EventProcPrefix.md b/api/Access.OptionButton.EventProcPrefix.md index c57a4d5f905..f1badfa1435 100644 --- a/api/Access.OptionButton.EventProcPrefix.md +++ b/api/Access.OptionButton.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: OptionButton.EventProcPrefix Property (Access) +title: OptionButton.EventProcPrefix property (Access) keywords: vbaac10.chm10565 f1_keywords: - vbaac10.chm10565 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.EventProcPrefix Property (Access) +# OptionButton.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.Exit.md b/api/Access.OptionButton.Exit.md index a8dad723f97..87bded01adc 100644 --- a/api/Access.OptionButton.Exit.md +++ b/api/Access.OptionButton.Exit.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Exit Event (Access) +title: OptionButton.Exit event (Access) keywords: vbaac10.chm14137 f1_keywords: - vbaac10.chm14137 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionButton.Exit Event (Access) +# OptionButton.Exit event (Access) The **Exit** event occurs just before a control loses the focus to another control on the same form or report. ## Syntax - _expression_. `Exit`( ` _Cancel_` ) +_expression_. `Exit`( ` _Cancel_` ) - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|Set to **True** to cancel the event.| diff --git a/api/Access.OptionButton.GotFocus.md b/api/Access.OptionButton.GotFocus.md index 6fbca309bf5..430f88737e4 100644 --- a/api/Access.OptionButton.GotFocus.md +++ b/api/Access.OptionButton.GotFocus.md @@ -1,5 +1,5 @@ --- -title: OptionButton.GotFocus Event (Access) +title: OptionButton.GotFocus event (Access) keywords: vbaac10.chm14138 f1_keywords: - vbaac10.chm14138 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.GotFocus Event (Access) +# OptionButton.GotFocus event (Access) The **GotFocus** event occurs when the specified object receives the focus. ## Syntax - _expression_. `GotFocus` +_expression_. `GotFocus` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.GridlineColor.md b/api/Access.OptionButton.GridlineColor.md index 05af2b79991..3c505471e6e 100644 --- a/api/Access.OptionButton.GridlineColor.md +++ b/api/Access.OptionButton.GridlineColor.md @@ -1,5 +1,5 @@ --- -title: OptionButton.GridlineColor Property (Access) +title: OptionButton.GridlineColor property (Access) keywords: vbaac10.chm10653 f1_keywords: - vbaac10.chm10653 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.GridlineColor Property (Access) +# OptionButton.GridlineColor property (Access) Gets or sets the color of the gridline for the specified option button. Read/write **Long**. ## Syntax - _expression_. `GridlineColor` +_expression_. `GridlineColor` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.GridlineShade.md b/api/Access.OptionButton.GridlineShade.md index f60433d9e95..c4431f5684e 100644 --- a/api/Access.OptionButton.GridlineShade.md +++ b/api/Access.OptionButton.GridlineShade.md @@ -1,5 +1,5 @@ --- -title: OptionButton.GridlineShade Property (Access) +title: OptionButton.GridlineShade property (Access) keywords: vbaac10.chm14637 f1_keywords: - vbaac10.chm14637 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.GridlineShade Property (Access) +# OptionButton.GridlineShade property (Access) Gets or sets the shade applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineShade` +_expression_. `GridlineShade` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.GridlineStyleBottom.md b/api/Access.OptionButton.GridlineStyleBottom.md index f4002de9a47..2aec34cd1a4 100644 --- a/api/Access.OptionButton.GridlineStyleBottom.md +++ b/api/Access.OptionButton.GridlineStyleBottom.md @@ -1,5 +1,5 @@ --- -title: OptionButton.GridlineStyleBottom Property (Access) +title: OptionButton.GridlineStyleBottom property (Access) keywords: vbaac10.chm10648 f1_keywords: - vbaac10.chm10648 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.GridlineStyleBottom Property (Access) +# OptionButton.GridlineStyleBottom property (Access) Gets or sets the bottom gridline style of the specified option button. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleBottom` +_expression_. `GridlineStyleBottom` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.GridlineStyleLeft.md b/api/Access.OptionButton.GridlineStyleLeft.md index a40a7ef153f..adf14ae5835 100644 --- a/api/Access.OptionButton.GridlineStyleLeft.md +++ b/api/Access.OptionButton.GridlineStyleLeft.md @@ -1,5 +1,5 @@ --- -title: OptionButton.GridlineStyleLeft Property (Access) +title: OptionButton.GridlineStyleLeft property (Access) keywords: vbaac10.chm10645 f1_keywords: - vbaac10.chm10645 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.GridlineStyleLeft Property (Access) +# OptionButton.GridlineStyleLeft property (Access) Gets or sets the width of the bottom gridline for the specified option button. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleLeft` +_expression_. `GridlineStyleLeft` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.GridlineStyleRight.md b/api/Access.OptionButton.GridlineStyleRight.md index 8c56468b9e6..3d5988312d2 100644 --- a/api/Access.OptionButton.GridlineStyleRight.md +++ b/api/Access.OptionButton.GridlineStyleRight.md @@ -1,5 +1,5 @@ --- -title: OptionButton.GridlineStyleRight Property (Access) +title: OptionButton.GridlineStyleRight property (Access) keywords: vbaac10.chm10647 f1_keywords: - vbaac10.chm10647 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.GridlineStyleRight Property (Access) +# OptionButton.GridlineStyleRight property (Access) Gets or sets the right gridline style of the specified option button. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleRight` +_expression_. `GridlineStyleRight` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.GridlineStyleTop.md b/api/Access.OptionButton.GridlineStyleTop.md index 9c64e8eec5a..d5e2307c167 100644 --- a/api/Access.OptionButton.GridlineStyleTop.md +++ b/api/Access.OptionButton.GridlineStyleTop.md @@ -1,5 +1,5 @@ --- -title: OptionButton.GridlineStyleTop Property (Access) +title: OptionButton.GridlineStyleTop property (Access) keywords: vbaac10.chm10646 f1_keywords: - vbaac10.chm10646 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.GridlineStyleTop Property (Access) +# OptionButton.GridlineStyleTop property (Access) Gets or sets the top gridline style of the specified option button. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleTop` +_expression_. `GridlineStyleTop` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.GridlineThemeColorIndex.md b/api/Access.OptionButton.GridlineThemeColorIndex.md index 926c7eb61c2..d0065358f81 100644 --- a/api/Access.OptionButton.GridlineThemeColorIndex.md +++ b/api/Access.OptionButton.GridlineThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: OptionButton.GridlineThemeColorIndex Property (Access) +title: OptionButton.GridlineThemeColorIndex property (Access) keywords: vbaac10.chm14635 f1_keywords: - vbaac10.chm14635 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.GridlineThemeColorIndex Property (Access) +# OptionButton.GridlineThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **GridlineColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `GridlineThemeColorIndex` +_expression_. `GridlineThemeColorIndex` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.GridlineTint.md b/api/Access.OptionButton.GridlineTint.md index 7965c4127bd..b8e322a3cf2 100644 --- a/api/Access.OptionButton.GridlineTint.md +++ b/api/Access.OptionButton.GridlineTint.md @@ -1,5 +1,5 @@ --- -title: OptionButton.GridlineTint Property (Access) +title: OptionButton.GridlineTint property (Access) keywords: vbaac10.chm14636 f1_keywords: - vbaac10.chm14636 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.GridlineTint Property (Access) +# OptionButton.GridlineTint property (Access) Gets or sets the tint applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineTint` +_expression_. `GridlineTint` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.GridlineWidthBottom.md b/api/Access.OptionButton.GridlineWidthBottom.md index 9e57e6b7346..f6815d889cc 100644 --- a/api/Access.OptionButton.GridlineWidthBottom.md +++ b/api/Access.OptionButton.GridlineWidthBottom.md @@ -1,5 +1,5 @@ --- -title: OptionButton.GridlineWidthBottom Property (Access) +title: OptionButton.GridlineWidthBottom property (Access) keywords: vbaac10.chm10652 f1_keywords: - vbaac10.chm10652 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.GridlineWidthBottom Property (Access) +# OptionButton.GridlineWidthBottom property (Access) Gets or sets the width of the bottom gridline for the specified option button. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthBottom` +_expression_. `GridlineWidthBottom` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.GridlineWidthLeft.md b/api/Access.OptionButton.GridlineWidthLeft.md index df30e985276..2832c83a3c7 100644 --- a/api/Access.OptionButton.GridlineWidthLeft.md +++ b/api/Access.OptionButton.GridlineWidthLeft.md @@ -1,5 +1,5 @@ --- -title: OptionButton.GridlineWidthLeft Property (Access) +title: OptionButton.GridlineWidthLeft property (Access) keywords: vbaac10.chm10649 f1_keywords: - vbaac10.chm10649 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.GridlineWidthLeft Property (Access) +# OptionButton.GridlineWidthLeft property (Access) Gets or sets the width of the left gridline for the specified option button. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthLeft` +_expression_. `GridlineWidthLeft` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.GridlineWidthRight.md b/api/Access.OptionButton.GridlineWidthRight.md index 7ba2694d8af..adb68b3e071 100644 --- a/api/Access.OptionButton.GridlineWidthRight.md +++ b/api/Access.OptionButton.GridlineWidthRight.md @@ -1,5 +1,5 @@ --- -title: OptionButton.GridlineWidthRight Property (Access) +title: OptionButton.GridlineWidthRight property (Access) keywords: vbaac10.chm10651 f1_keywords: - vbaac10.chm10651 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.GridlineWidthRight Property (Access) +# OptionButton.GridlineWidthRight property (Access) Gets or sets the width of the right gridline for the specified option button. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthRight` +_expression_. `GridlineWidthRight` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.GridlineWidthTop.md b/api/Access.OptionButton.GridlineWidthTop.md index 05a88adf4fa..23d6489b6e8 100644 --- a/api/Access.OptionButton.GridlineWidthTop.md +++ b/api/Access.OptionButton.GridlineWidthTop.md @@ -1,5 +1,5 @@ --- -title: OptionButton.GridlineWidthTop Property (Access) +title: OptionButton.GridlineWidthTop property (Access) keywords: vbaac10.chm10650 f1_keywords: - vbaac10.chm10650 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.GridlineWidthTop Property (Access) +# OptionButton.GridlineWidthTop property (Access) Gets or sets the width of the top gridline for the specified option button. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthTop` +_expression_. `GridlineWidthTop` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.Height.md b/api/Access.OptionButton.Height.md index cbc3a0c81a4..037e72f2141 100644 --- a/api/Access.OptionButton.Height.md +++ b/api/Access.OptionButton.Height.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Height Property (Access) +title: OptionButton.Height property (Access) keywords: vbaac10.chm10585 f1_keywords: - vbaac10.chm10585 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Height Property (Access) +# OptionButton.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.HelpContextId.md b/api/Access.OptionButton.HelpContextId.md index 794a2e6ac6a..6f5d99c253d 100644 --- a/api/Access.OptionButton.HelpContextId.md +++ b/api/Access.OptionButton.HelpContextId.md @@ -1,5 +1,5 @@ --- -title: OptionButton.HelpContextId Property (Access) +title: OptionButton.HelpContextId property (Access) keywords: vbaac10.chm10594 f1_keywords: - vbaac10.chm10594 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.HelpContextId Property (Access) +# OptionButton.HelpContextId property (Access) The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**. ## Syntax - _expression_. `HelpContextId` +_expression_. `HelpContextId` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.HideDuplicates.md b/api/Access.OptionButton.HideDuplicates.md index 74030296a88..10133faf822 100644 --- a/api/Access.OptionButton.HideDuplicates.md +++ b/api/Access.OptionButton.HideDuplicates.md @@ -1,5 +1,5 @@ --- -title: OptionButton.HideDuplicates Property (Access) +title: OptionButton.HideDuplicates property (Access) keywords: vbaac10.chm10581 f1_keywords: - vbaac10.chm10581 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.HideDuplicates Property (Access) +# OptionButton.HideDuplicates property (Access) You can use the **HideDuplicates** property to hide a control on a report when its value is the same as in the preceding record. Read/write **Boolean**. ## Syntax - _expression_. `HideDuplicates` +_expression_. `HideDuplicates` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.HorizontalAnchor.md b/api/Access.OptionButton.HorizontalAnchor.md index b3b0466cf2e..92ef40e5c9c 100644 --- a/api/Access.OptionButton.HorizontalAnchor.md +++ b/api/Access.OptionButton.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: OptionButton.HorizontalAnchor Property (Access) +title: OptionButton.HorizontalAnchor property (Access) keywords: vbaac10.chm10654 f1_keywords: - vbaac10.chm10654 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.HorizontalAnchor Property (Access) +# OptionButton.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the option button is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.InSelection.md b/api/Access.OptionButton.InSelection.md index 9c8afcec344..a8743f80717 100644 --- a/api/Access.OptionButton.InSelection.md +++ b/api/Access.OptionButton.InSelection.md @@ -1,5 +1,5 @@ --- -title: OptionButton.InSelection Property (Access) +title: OptionButton.InSelection property (Access) keywords: vbaac10.chm10607 f1_keywords: - vbaac10.chm10607 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.InSelection Property (Access) +# OptionButton.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.IsVisible.md b/api/Access.OptionButton.IsVisible.md index f1fde9cf244..11527d881c8 100644 --- a/api/Access.OptionButton.IsVisible.md +++ b/api/Access.OptionButton.IsVisible.md @@ -1,5 +1,5 @@ --- -title: OptionButton.IsVisible Property (Access) +title: OptionButton.IsVisible property (Access) keywords: vbaac10.chm10606 f1_keywords: - vbaac10.chm10606 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.IsVisible Property (Access) +# OptionButton.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.KeyDown.md b/api/Access.OptionButton.KeyDown.md index 16873630970..13ac7353fa4 100644 --- a/api/Access.OptionButton.KeyDown.md +++ b/api/Access.OptionButton.KeyDown.md @@ -1,5 +1,5 @@ --- -title: OptionButton.KeyDown Event (Access) +title: OptionButton.KeyDown event (Access) keywords: vbaac10.chm14144 f1_keywords: - vbaac10.chm14144 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionButton.KeyDown Event (Access) +# OptionButton.KeyDown event (Access) The **KeyDown** event occurs when the user presses a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|A key code, such as **vbKeyF1** (the F1 key) or **vbKeyHome** (the HOME key). To specify key codes, use the intrinsic constants shown in the Object Browser. You can prevent an object from receiving a keystroke by setting KeyCode to 0.| | _Shift_|Required|**Integer**|The state of the SHIFT, CTRL, and ALT keys at the time of the event. If you need to test for the Shift argument, you can use one of the following intrinsic constants as bit masks: diff --git a/api/Access.OptionButton.KeyPress.md b/api/Access.OptionButton.KeyPress.md index e51321c6c1b..68f4138ea55 100644 --- a/api/Access.OptionButton.KeyPress.md +++ b/api/Access.OptionButton.KeyPress.md @@ -1,5 +1,5 @@ --- -title: OptionButton.KeyPress Event (Access) +title: OptionButton.KeyPress event (Access) keywords: vbaac10.chm14145 f1_keywords: - vbaac10.chm14145 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionButton.KeyPress Event (Access) +# OptionButton.KeyPress event (Access) The **KeyPress** event occurs when the user presses and releases a key or key combination that corresponds to an ANSI code while a form or control has the focus. This event also occurs if you send an ANSI keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyPress`( ` _KeyAscii_` ) +_expression_. `KeyPress`( ` _KeyAscii_` ) - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyAscii_|Required|**Integer**| Returns a numeric ANSI key code. The _KeyAscii_ argument is passed by reference; changing it sends a different character to the object. Setting the _KeyAscii_ argument to 0 cancels the keystroke so that the object doesn't recognize that a key was pressed.| diff --git a/api/Access.OptionButton.KeyUp.md b/api/Access.OptionButton.KeyUp.md index 6f94cbe0f74..0d05bd26dfa 100644 --- a/api/Access.OptionButton.KeyUp.md +++ b/api/Access.OptionButton.KeyUp.md @@ -1,5 +1,5 @@ --- -title: OptionButton.KeyUp Event (Access) +title: OptionButton.KeyUp event (Access) keywords: vbaac10.chm14146 f1_keywords: - vbaac10.chm14146 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionButton.KeyUp Event (Access) +# OptionButton.KeyUp event (Access) The **KeyUp** event occurs when the user releases a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|A key code, such as **vbKeyF1** (the F1 key) or **vbKeyHome** (the HOME key). To specify key codes, use the intrinsic constants shown in the Object Browser. You can prevent an object from receiving a keystroke by setting KeyCode to 0.| | _Shift_|Required|**Integer**|The state of the SHIFT, CTRL, and ALT keys at the time of the event. If you need to test for the Shift argument, you can use one of the following intrinsic constants as bit masks: diff --git a/api/Access.OptionButton.LabelAlign.md b/api/Access.OptionButton.LabelAlign.md index 82d204b3bee..5ff9c3fd40e 100644 --- a/api/Access.OptionButton.LabelAlign.md +++ b/api/Access.OptionButton.LabelAlign.md @@ -1,5 +1,5 @@ --- -title: OptionButton.LabelAlign Property (Access) +title: OptionButton.LabelAlign property (Access) keywords: vbaac10.chm10602 f1_keywords: - vbaac10.chm10602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.LabelAlign Property (Access) +# OptionButton.LabelAlign property (Access) The property specifies the text alignment within attached labels on new controls. Read/write **Byte**. ## Syntax - _expression_. `LabelAlign` +_expression_. `LabelAlign` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.LabelX.md b/api/Access.OptionButton.LabelX.md index 7849f2b17c9..c7a3a593cb5 100644 --- a/api/Access.OptionButton.LabelX.md +++ b/api/Access.OptionButton.LabelX.md @@ -1,5 +1,5 @@ --- -title: OptionButton.LabelX Property (Access) +title: OptionButton.LabelX property (Access) keywords: vbaac10.chm10600 f1_keywords: - vbaac10.chm10600 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.LabelX Property (Access) +# OptionButton.LabelX property (Access) The **LabelX** property (along with the **LabelY** property) specifies the placement of the label for a new control. Read/write **Integer**. ## Syntax - _expression_. `LabelX` +_expression_. `LabelX` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.LabelY.md b/api/Access.OptionButton.LabelY.md index 5f10c60a93b..97f66d24204 100644 --- a/api/Access.OptionButton.LabelY.md +++ b/api/Access.OptionButton.LabelY.md @@ -1,5 +1,5 @@ --- -title: OptionButton.LabelY Property (Access) +title: OptionButton.LabelY property (Access) keywords: vbaac10.chm10601 f1_keywords: - vbaac10.chm10601 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.LabelY Property (Access) +# OptionButton.LabelY property (Access) The **LabelY** property (along with the **LabelX** property) specifies the placement of the label for a new control. Read/write **Integer**. ## Syntax - _expression_. `LabelY` +_expression_. `LabelY` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.Layout.md b/api/Access.OptionButton.Layout.md index b1d0c218463..07a906fff06 100644 --- a/api/Access.OptionButton.Layout.md +++ b/api/Access.OptionButton.Layout.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Layout Property (Access) +title: OptionButton.Layout property (Access) keywords: vbaac10.chm10640 f1_keywords: - vbaac10.chm10640 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Layout Property (Access) +# OptionButton.Layout property (Access) Returns the type of layout for the specified option button. Read-only **[AcLayoutType](Access.AcLayoutType.md)**. ## Syntax - _expression_. `Layout` +_expression_. `Layout` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## See also diff --git a/api/Access.OptionButton.LayoutID.md b/api/Access.OptionButton.LayoutID.md index 5d0388aadaf..8c8cff9cce3 100644 --- a/api/Access.OptionButton.LayoutID.md +++ b/api/Access.OptionButton.LayoutID.md @@ -1,5 +1,5 @@ --- -title: OptionButton.LayoutID Property (Access) +title: OptionButton.LayoutID property (Access) keywords: vbaac10.chm10656 f1_keywords: - vbaac10.chm10656 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.LayoutID Property (Access) +# OptionButton.LayoutID property (Access) Returns the unique identifier for the layout that contains the specified option button. Read-only **Long**. ## Syntax - _expression_. `LayoutID` +_expression_. `LayoutID` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.Left.md b/api/Access.OptionButton.Left.md index 3c47e20a959..70523fe8c72 100644 --- a/api/Access.OptionButton.Left.md +++ b/api/Access.OptionButton.Left.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Left Property (Access) +title: OptionButton.Left property (Access) keywords: vbaac10.chm10582 f1_keywords: - vbaac10.chm10582 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Left Property (Access) +# OptionButton.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.LeftPadding.md b/api/Access.OptionButton.LeftPadding.md index 005f81b4bcf..c4a62a07c2f 100644 --- a/api/Access.OptionButton.LeftPadding.md +++ b/api/Access.OptionButton.LeftPadding.md @@ -1,5 +1,5 @@ --- -title: OptionButton.LeftPadding Property (Access) +title: OptionButton.LeftPadding property (Access) keywords: vbaac10.chm10641 f1_keywords: - vbaac10.chm10641 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.LeftPadding Property (Access) +# OptionButton.LeftPadding property (Access) Gets or sets the amount of space (in inches) between the option button and its left gridline. Read/write **Integer**. ## Syntax - _expression_. `LeftPadding` +_expression_. `LeftPadding` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## See also diff --git a/api/Access.OptionButton.Locked.md b/api/Access.OptionButton.Locked.md index 7885df0e40e..664e84a60dd 100644 --- a/api/Access.OptionButton.Locked.md +++ b/api/Access.OptionButton.Locked.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Locked Property (Access) +title: OptionButton.Locked property (Access) keywords: vbaac10.chm10577 f1_keywords: - vbaac10.chm10577 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Locked Property (Access) +# OptionButton.Locked property (Access) The **Locked** property specifies whether you can edit data in a control in Form view. Read/write **Boolean**. ## Syntax - _expression_. `Locked` +_expression_. `Locked` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.LostFocus.md b/api/Access.OptionButton.LostFocus.md index 32b21fd7a7c..ff107a66e3d 100644 --- a/api/Access.OptionButton.LostFocus.md +++ b/api/Access.OptionButton.LostFocus.md @@ -1,5 +1,5 @@ --- -title: OptionButton.LostFocus Event (Access) +title: OptionButton.LostFocus event (Access) keywords: vbaac10.chm14139 f1_keywords: - vbaac10.chm14139 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.LostFocus Event (Access) +# OptionButton.LostFocus event (Access) The **LostFocus** event occurs when the specified object loses the focus. ## Syntax - _expression_. `LostFocus` +_expression_. `LostFocus` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.MouseDown.md b/api/Access.OptionButton.MouseDown.md index faf1b3e352b..f0b6e9e8be5 100644 --- a/api/Access.OptionButton.MouseDown.md +++ b/api/Access.OptionButton.MouseDown.md @@ -1,5 +1,5 @@ --- -title: OptionButton.MouseDown Event (Access) +title: OptionButton.MouseDown event (Access) keywords: vbaac10.chm14141 f1_keywords: - vbaac10.chm14141 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionButton.MouseDown Event (Access) +# OptionButton.MouseDown event (Access) The **MouseDown** event occurs when the user presses a mouse button. ## Syntax - _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.OptionButton.MouseMove.md b/api/Access.OptionButton.MouseMove.md index b3629b6f773..3557125c3f7 100644 --- a/api/Access.OptionButton.MouseMove.md +++ b/api/Access.OptionButton.MouseMove.md @@ -1,5 +1,5 @@ --- -title: OptionButton.MouseMove Event (Access) +title: OptionButton.MouseMove event (Access) keywords: vbaac10.chm14142 f1_keywords: - vbaac10.chm14142 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionButton.MouseMove Event (Access) +# OptionButton.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.OptionButton.MouseUp.md b/api/Access.OptionButton.MouseUp.md index 71edcccbccc..d97919dfd2f 100644 --- a/api/Access.OptionButton.MouseUp.md +++ b/api/Access.OptionButton.MouseUp.md @@ -1,5 +1,5 @@ --- -title: OptionButton.MouseUp Event (Access) +title: OptionButton.MouseUp event (Access) keywords: vbaac10.chm14143 f1_keywords: - vbaac10.chm14143 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionButton.MouseUp Event (Access) +# OptionButton.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.OptionButton.Move.md b/api/Access.OptionButton.Move.md index 0280f65de86..a35c886f441 100644 --- a/api/Access.OptionButton.Move.md +++ b/api/Access.OptionButton.Move.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Move Method (Access) +title: OptionButton.Move method (Access) keywords: vbaac10.chm10624 f1_keywords: - vbaac10.chm10624 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionButton.Move Method (Access) +# OptionButton.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.OptionButton.Name.md b/api/Access.OptionButton.Name.md index b52157b9368..2568d2fdb8e 100644 --- a/api/Access.OptionButton.Name.md +++ b/api/Access.OptionButton.Name.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Name Property (Access) +title: OptionButton.Name property (Access) keywords: vbaac10.chm10623 f1_keywords: - vbaac10.chm10623 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Name Property (Access) +# OptionButton.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.OldBorderStyle.md b/api/Access.OptionButton.OldBorderStyle.md index 8155de8996f..5342d563393 100644 --- a/api/Access.OptionButton.OldBorderStyle.md +++ b/api/Access.OptionButton.OldBorderStyle.md @@ -1,5 +1,5 @@ --- -title: OptionButton.OldBorderStyle Property (Access) +title: OptionButton.OldBorderStyle property (Access) keywords: vbaac10.chm10588 f1_keywords: - vbaac10.chm10588 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.OldBorderStyle Property (Access) +# OptionButton.OldBorderStyle property (Access) You can use this property to set or returns the unedited value of the **BorderStyle** property for a form or control. This property is useful if you need to revert to an unedited or preferred border style. Read/write **Byte**. ## Syntax - _expression_. `OldBorderStyle` +_expression_. `OldBorderStyle` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.OldValue.md b/api/Access.OptionButton.OldValue.md index 5834788f63c..a77011579d3 100644 --- a/api/Access.OptionButton.OldValue.md +++ b/api/Access.OptionButton.OldValue.md @@ -1,5 +1,5 @@ --- -title: OptionButton.OldValue Property (Access) +title: OptionButton.OldValue property (Access) keywords: vbaac10.chm10558 f1_keywords: - vbaac10.chm10558 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.OldValue Property (Access) +# OptionButton.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.OnClick.md b/api/Access.OptionButton.OnClick.md index 1384d26a069..b16163b0064 100644 --- a/api/Access.OptionButton.OnClick.md +++ b/api/Access.OptionButton.OnClick.md @@ -1,5 +1,5 @@ --- -title: OptionButton.OnClick Property (Access) +title: OptionButton.OnClick property (Access) keywords: vbaac10.chm10614 f1_keywords: - vbaac10.chm10614 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.OnClick Property (Access) +# OptionButton.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionButton.OnDblClick.md b/api/Access.OptionButton.OnDblClick.md index d6517546e39..0be7cc42d36 100644 --- a/api/Access.OptionButton.OnDblClick.md +++ b/api/Access.OptionButton.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: OptionButton.OnDblClick Property (Access) +title: OptionButton.OnDblClick property (Access) keywords: vbaac10.chm10615 f1_keywords: - vbaac10.chm10615 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.OnDblClick Property (Access) +# OptionButton.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionButton.OnEnter.md b/api/Access.OptionButton.OnEnter.md index 60104081861..eb5ce71a90b 100644 --- a/api/Access.OptionButton.OnEnter.md +++ b/api/Access.OptionButton.OnEnter.md @@ -1,5 +1,5 @@ --- -title: OptionButton.OnEnter Property (Access) +title: OptionButton.OnEnter property (Access) keywords: vbaac10.chm10610 f1_keywords: - vbaac10.chm10610 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.OnEnter Property (Access) +# OptionButton.OnEnter property (Access) Sets or returns the value of the **On Enter** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnEnter` +_expression_. `OnEnter` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Enter** event occurs before a control actually receives the focus from a The **OnEnter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Enter** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionButton.OnExit.md b/api/Access.OptionButton.OnExit.md index 9f8594a8126..9210424cb2e 100644 --- a/api/Access.OptionButton.OnExit.md +++ b/api/Access.OptionButton.OnExit.md @@ -1,5 +1,5 @@ --- -title: OptionButton.OnExit Property (Access) +title: OptionButton.OnExit property (Access) keywords: vbaac10.chm10611 f1_keywords: - vbaac10.chm10611 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.OnExit Property (Access) +# OptionButton.OnExit property (Access) Sets or returns the value of the **On Exit** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnExit` +_expression_. `OnExit` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Exit** event occurs just before a control loses the focus to another cont The **OnExit** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Exit** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionButton.OnGotFocus.md b/api/Access.OptionButton.OnGotFocus.md index 952b9992ec6..24c85d4fc94 100644 --- a/api/Access.OptionButton.OnGotFocus.md +++ b/api/Access.OptionButton.OnGotFocus.md @@ -1,5 +1,5 @@ --- -title: OptionButton.OnGotFocus Property (Access) +title: OptionButton.OnGotFocus property (Access) keywords: vbaac10.chm10612 f1_keywords: - vbaac10.chm10612 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.OnGotFocus Property (Access) +# OptionButton.OnGotFocus property (Access) Sets or returns the value of the **On Got Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnGotFocus` +_expression_. `OnGotFocus` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **GotFocus** event occurs when the object receives the focus. The **OnGotFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Got Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionButton.OnKeyDown.md b/api/Access.OptionButton.OnKeyDown.md index 2e068c3c14c..627b94103fb 100644 --- a/api/Access.OptionButton.OnKeyDown.md +++ b/api/Access.OptionButton.OnKeyDown.md @@ -1,5 +1,5 @@ --- -title: OptionButton.OnKeyDown Property (Access) +title: OptionButton.OnKeyDown property (Access) keywords: vbaac10.chm10619 f1_keywords: - vbaac10.chm10619 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.OnKeyDown Property (Access) +# OptionButton.OnKeyDown property (Access) Sets or returns the value of the **On Key Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyDown` +_expression_. `OnKeyDown` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyDown** event occurs when a user presses a key while a form or control The **OnKeyDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionButton.OnKeyPress.md b/api/Access.OptionButton.OnKeyPress.md index 808dfe6c5a2..3efbc27314d 100644 --- a/api/Access.OptionButton.OnKeyPress.md +++ b/api/Access.OptionButton.OnKeyPress.md @@ -1,5 +1,5 @@ --- -title: OptionButton.OnKeyPress Property (Access) +title: OptionButton.OnKeyPress property (Access) keywords: vbaac10.chm10621 f1_keywords: - vbaac10.chm10621 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.OnKeyPress Property (Access) +# OptionButton.OnKeyPress property (Access) Sets or returns the value of the **On Key Press** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyPress` +_expression_. `OnKeyPress` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyPress** event occurs when a user presses a key while a form or control The **OnKeyPress** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Press** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionButton.OnKeyUp.md b/api/Access.OptionButton.OnKeyUp.md index 8dafb28a72a..b3e0f1ba643 100644 --- a/api/Access.OptionButton.OnKeyUp.md +++ b/api/Access.OptionButton.OnKeyUp.md @@ -1,5 +1,5 @@ --- -title: OptionButton.OnKeyUp Property (Access) +title: OptionButton.OnKeyUp property (Access) keywords: vbaac10.chm10620 f1_keywords: - vbaac10.chm10620 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.OnKeyUp Property (Access) +# OptionButton.OnKeyUp property (Access) Sets or returns the value of the **On Key Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyUp` +_expression_. `OnKeyUp` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyUp** event occurs when a user presses a key while a form or control ha The **OnKeyUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionButton.OnLostFocus.md b/api/Access.OptionButton.OnLostFocus.md index aded580150a..f3c20de9448 100644 --- a/api/Access.OptionButton.OnLostFocus.md +++ b/api/Access.OptionButton.OnLostFocus.md @@ -1,5 +1,5 @@ --- -title: OptionButton.OnLostFocus Property (Access) +title: OptionButton.OnLostFocus property (Access) keywords: vbaac10.chm10613 f1_keywords: - vbaac10.chm10613 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.OnLostFocus Property (Access) +# OptionButton.OnLostFocus property (Access) Sets or returns the value of the **On Lost Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnLostFocus` +_expression_. `OnLostFocus` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **LostFocus** event occurs when the object loses the focus. The **OnLostFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Lost Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionButton.OnMouseDown.md b/api/Access.OptionButton.OnMouseDown.md index 74c5dbb564f..b1d3f073a5a 100644 --- a/api/Access.OptionButton.OnMouseDown.md +++ b/api/Access.OptionButton.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: OptionButton.OnMouseDown Property (Access) +title: OptionButton.OnMouseDown property (Access) keywords: vbaac10.chm10616 f1_keywords: - vbaac10.chm10616 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.OnMouseDown Property (Access) +# OptionButton.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionButton.OnMouseMove.md b/api/Access.OptionButton.OnMouseMove.md index 3fcdeba5c43..fbcb25a1dc1 100644 --- a/api/Access.OptionButton.OnMouseMove.md +++ b/api/Access.OptionButton.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: OptionButton.OnMouseMove Property (Access) +title: OptionButton.OnMouseMove property (Access) keywords: vbaac10.chm10617 f1_keywords: - vbaac10.chm10617 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.OnMouseMove Property (Access) +# OptionButton.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionButton.OnMouseUp.md b/api/Access.OptionButton.OnMouseUp.md index cde85d5d238..9e4fe562909 100644 --- a/api/Access.OptionButton.OnMouseUp.md +++ b/api/Access.OptionButton.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: OptionButton.OnMouseUp Property (Access) +title: OptionButton.OnMouseUp property (Access) keywords: vbaac10.chm10618 f1_keywords: - vbaac10.chm10618 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.OnMouseUp Property (Access) +# OptionButton.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionButton.OptionValue.md b/api/Access.OptionButton.OptionValue.md index 41918175459..063ca44d8c1 100644 --- a/api/Access.OptionButton.OptionValue.md +++ b/api/Access.OptionButton.OptionValue.md @@ -1,5 +1,5 @@ --- -title: OptionButton.OptionValue Property (Access) +title: OptionButton.OptionValue property (Access) keywords: vbaac10.chm10568 f1_keywords: - vbaac10.chm10568 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.OptionValue Property (Access) +# OptionButton.OptionValue property (Access) Each control in an option group has a numeric value that you can set with the **OptionValue** property. Read/write **Long**. ## Syntax - _expression_. `OptionValue` +_expression_. `OptionValue` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.Parent.md b/api/Access.OptionButton.Parent.md index 0e026bf754d..9a3f92404bf 100644 --- a/api/Access.OptionButton.Parent.md +++ b/api/Access.OptionButton.Parent.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Parent Property (Access) +title: OptionButton.Parent property (Access) keywords: vbaac10.chm10557 f1_keywords: - vbaac10.chm10557 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Parent Property (Access) +# OptionButton.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.Properties.md b/api/Access.OptionButton.Properties.md index d2e66c2f866..215bb7f1c77 100644 --- a/api/Access.OptionButton.Properties.md +++ b/api/Access.OptionButton.Properties.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Properties Property (Access) +title: OptionButton.Properties property (Access) keywords: vbaac10.chm10559 f1_keywords: - vbaac10.chm10559 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Properties Property (Access) +# OptionButton.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.ReadingOrder.md b/api/Access.OptionButton.ReadingOrder.md index f2e0b7d9e88..00e2fd7183e 100644 --- a/api/Access.OptionButton.ReadingOrder.md +++ b/api/Access.OptionButton.ReadingOrder.md @@ -1,5 +1,5 @@ --- -title: OptionButton.ReadingOrder Property (Access) +title: OptionButton.ReadingOrder property (Access) keywords: vbaac10.chm10622 f1_keywords: - vbaac10.chm10622 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.ReadingOrder Property (Access) +# OptionButton.ReadingOrder property (Access) You can use the **ReadingOrder** property to specify or determine the reading order of words in text. Read/write **Byte**. ## Syntax - _expression_. `ReadingOrder` +_expression_. `ReadingOrder` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.Requery.md b/api/Access.OptionButton.Requery.md index 8d0fb3e14f9..ebe2695a4f0 100644 --- a/api/Access.OptionButton.Requery.md +++ b/api/Access.OptionButton.Requery.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Requery Method (Access) +title: OptionButton.Requery method (Access) keywords: vbaac10.chm10561 f1_keywords: - vbaac10.chm10561 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Requery Method (Access) +# OptionButton.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.RightPadding.md b/api/Access.OptionButton.RightPadding.md index dbc0ba98b7f..42944c21e75 100644 --- a/api/Access.OptionButton.RightPadding.md +++ b/api/Access.OptionButton.RightPadding.md @@ -1,5 +1,5 @@ --- -title: OptionButton.RightPadding Property (Access) +title: OptionButton.RightPadding property (Access) keywords: vbaac10.chm10643 f1_keywords: - vbaac10.chm10643 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.RightPadding Property (Access) +# OptionButton.RightPadding property (Access) Gets or sets the amount of space (in inches) between the option button and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## See also diff --git a/api/Access.OptionButton.Section.md b/api/Access.OptionButton.Section.md index 9f1ee392b55..7e186f06bb0 100644 --- a/api/Access.OptionButton.Section.md +++ b/api/Access.OptionButton.Section.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Section Property (Access) +title: OptionButton.Section property (Access) keywords: vbaac10.chm10603 f1_keywords: - vbaac10.chm10603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Section Property (Access) +# OptionButton.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.SetFocus.md b/api/Access.OptionButton.SetFocus.md index f02d56f5453..e1b045c2350 100644 --- a/api/Access.OptionButton.SetFocus.md +++ b/api/Access.OptionButton.SetFocus.md @@ -1,5 +1,5 @@ --- -title: OptionButton.SetFocus Method (Access) +title: OptionButton.SetFocus method (Access) keywords: vbaac10.chm10562 f1_keywords: - vbaac10.chm10562 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# OptionButton.SetFocus Method (Access) +# OptionButton.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.OptionButton.ShortcutMenuBar.md b/api/Access.OptionButton.ShortcutMenuBar.md index 69d2e3832af..2bfddd0c0f4 100644 --- a/api/Access.OptionButton.ShortcutMenuBar.md +++ b/api/Access.OptionButton.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: OptionButton.ShortcutMenuBar Property (Access) +title: OptionButton.ShortcutMenuBar property (Access) keywords: vbaac10.chm10592 f1_keywords: - vbaac10.chm10592 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.ShortcutMenuBar Property (Access) +# OptionButton.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.SizeToFit.md b/api/Access.OptionButton.SizeToFit.md index 0075014659c..23bcec1c52b 100644 --- a/api/Access.OptionButton.SizeToFit.md +++ b/api/Access.OptionButton.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: OptionButton.SizeToFit Method (Access) +title: OptionButton.SizeToFit method (Access) keywords: vbaac10.chm10560 f1_keywords: - vbaac10.chm10560 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.SizeToFit Method (Access) +# OptionButton.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.SpecialEffect.md b/api/Access.OptionButton.SpecialEffect.md index c3f9b4a4ae4..4993519d8ef 100644 --- a/api/Access.OptionButton.SpecialEffect.md +++ b/api/Access.OptionButton.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: OptionButton.SpecialEffect Property (Access) +title: OptionButton.SpecialEffect property (Access) keywords: vbaac10.chm10586 f1_keywords: - vbaac10.chm10586 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.SpecialEffect Property (Access) +# OptionButton.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.StatusBarText.md b/api/Access.OptionButton.StatusBarText.md index f61a59f7d7a..b5847b23d4a 100644 --- a/api/Access.OptionButton.StatusBarText.md +++ b/api/Access.OptionButton.StatusBarText.md @@ -1,5 +1,5 @@ --- -title: OptionButton.StatusBarText Property (Access) +title: OptionButton.StatusBarText property (Access) keywords: vbaac10.chm10573 f1_keywords: - vbaac10.chm10573 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.StatusBarText Property (Access) +# OptionButton.StatusBarText property (Access) You can use the **StatusBarText** property to specify the text that is displayed in the status bar when a control is selected. Read/write **String**. ## Syntax - _expression_. `StatusBarText` +_expression_. `StatusBarText` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.TabIndex.md b/api/Access.OptionButton.TabIndex.md index 8098a4d63f2..776269adffc 100644 --- a/api/Access.OptionButton.TabIndex.md +++ b/api/Access.OptionButton.TabIndex.md @@ -1,5 +1,5 @@ --- -title: OptionButton.TabIndex Property (Access) +title: OptionButton.TabIndex property (Access) keywords: vbaac10.chm10580 f1_keywords: - vbaac10.chm10580 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.TabIndex Property (Access) +# OptionButton.TabIndex property (Access) You can use the **TabIndex** property to specify a control's place in the tab order on a form or report. Read/write **Integer**. ## Syntax - _expression_. `TabIndex` +_expression_. `TabIndex` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.TabStop.md b/api/Access.OptionButton.TabStop.md index 29435de98bf..f53e1b308b1 100644 --- a/api/Access.OptionButton.TabStop.md +++ b/api/Access.OptionButton.TabStop.md @@ -1,5 +1,5 @@ --- -title: OptionButton.TabStop Property (Access) +title: OptionButton.TabStop property (Access) keywords: vbaac10.chm10579 f1_keywords: - vbaac10.chm10579 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.TabStop Property (Access) +# OptionButton.TabStop property (Access) You can use the **TabStop** property to specify whether you can use the TAB key to move the focus to a control. Read/write **Boolean**. ## Syntax - _expression_. `TabStop` +_expression_. `TabStop` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.Tag.md b/api/Access.OptionButton.Tag.md index de50badc61e..be18987d3aa 100644 --- a/api/Access.OptionButton.Tag.md +++ b/api/Access.OptionButton.Tag.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Tag Property (Access) +title: OptionButton.Tag property (Access) keywords: vbaac10.chm10605 f1_keywords: - vbaac10.chm10605 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Tag Property (Access) +# OptionButton.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.Top.md b/api/Access.OptionButton.Top.md index 2f693238477..790c46b8f90 100644 --- a/api/Access.OptionButton.Top.md +++ b/api/Access.OptionButton.Top.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Top Property (Access) +title: OptionButton.Top property (Access) keywords: vbaac10.chm10583 f1_keywords: - vbaac10.chm10583 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Top Property (Access) +# OptionButton.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.TopPadding.md b/api/Access.OptionButton.TopPadding.md index 24b16d1b3e2..6832f77e57c 100644 --- a/api/Access.OptionButton.TopPadding.md +++ b/api/Access.OptionButton.TopPadding.md @@ -1,5 +1,5 @@ --- -title: OptionButton.TopPadding Property (Access) +title: OptionButton.TopPadding property (Access) keywords: vbaac10.chm10642 f1_keywords: - vbaac10.chm10642 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.TopPadding Property (Access) +# OptionButton.TopPadding property (Access) Gets or sets the amount of space (in inches) between the option button and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## See also diff --git a/api/Access.OptionButton.TripleState.md b/api/Access.OptionButton.TripleState.md index 903f3d4e208..0c16e58f2f3 100644 --- a/api/Access.OptionButton.TripleState.md +++ b/api/Access.OptionButton.TripleState.md @@ -1,5 +1,5 @@ --- -title: OptionButton.TripleState Property (Access) +title: OptionButton.TripleState property (Access) keywords: vbaac10.chm10578 f1_keywords: - vbaac10.chm10578 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.TripleState Property (Access) +# OptionButton.TripleState property (Access) You can use the **TripleState** property to specify how the specified control will display Null values. Read/write **Boolean**. ## Syntax - _expression_. `TripleState` +_expression_. `TripleState` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.ValidationRule.md b/api/Access.OptionButton.ValidationRule.md index b8514ba3e67..7ce3fa46d4a 100644 --- a/api/Access.OptionButton.ValidationRule.md +++ b/api/Access.OptionButton.ValidationRule.md @@ -1,5 +1,5 @@ --- -title: OptionButton.ValidationRule Property (Access) +title: OptionButton.ValidationRule property (Access) keywords: vbaac10.chm10571 f1_keywords: - vbaac10.chm10571 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.ValidationRule Property (Access) +# OptionButton.ValidationRule property (Access) You can use the **ValidationRule** property to specify requirements for data entered into a record, field, or control. When data is entered that violates the **ValidationRule** setting, you can use the **ValidationText** property to specify the message to be displayed to the user. Read/write **String**. ## Syntax - _expression_. `ValidationRule` +_expression_. `ValidationRule` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.ValidationText.md b/api/Access.OptionButton.ValidationText.md index c0786620edc..fff2a74aa10 100644 --- a/api/Access.OptionButton.ValidationText.md +++ b/api/Access.OptionButton.ValidationText.md @@ -1,5 +1,5 @@ --- -title: OptionButton.ValidationText Property (Access) +title: OptionButton.ValidationText property (Access) keywords: vbaac10.chm10572 f1_keywords: - vbaac10.chm10572 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.ValidationText Property (Access) +# OptionButton.ValidationText property (Access) Use the **ValidationText** property to specify a message to be displayed to the user when data is entered that violates a **ValidationRule** setting for a record, field, or control. Read/write **String**. ## Syntax - _expression_. `ValidationText` +_expression_. `ValidationText` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.Value.md b/api/Access.OptionButton.Value.md index 91935f04523..8f4353f8f36 100644 --- a/api/Access.OptionButton.Value.md +++ b/api/Access.OptionButton.Value.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Value Property (Access) +title: OptionButton.Value property (Access) keywords: vbaac10.chm10564 f1_keywords: - vbaac10.chm10564 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Value Property (Access) +# OptionButton.Value property (Access) Determines or specifies whether or not the specified option button is selected. Read/write **Variant**. ## Syntax - _expression_. `Value` +_expression_. `Value` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.VerticalAnchor.md b/api/Access.OptionButton.VerticalAnchor.md index e3913162fc4..338e9e634c7 100644 --- a/api/Access.OptionButton.VerticalAnchor.md +++ b/api/Access.OptionButton.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: OptionButton.VerticalAnchor Property (Access) +title: OptionButton.VerticalAnchor property (Access) keywords: vbaac10.chm10655 f1_keywords: - vbaac10.chm10655 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.VerticalAnchor Property (Access) +# OptionButton.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified option button is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.Visible.md b/api/Access.OptionButton.Visible.md index 465d737c9f4..33cee2f03f0 100644 --- a/api/Access.OptionButton.Visible.md +++ b/api/Access.OptionButton.Visible.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Visible Property (Access) +title: OptionButton.Visible property (Access) keywords: vbaac10.chm10574 f1_keywords: - vbaac10.chm10574 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Visible Property (Access) +# OptionButton.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.Width.md b/api/Access.OptionButton.Width.md index 4356e44746c..33652e2d215 100644 --- a/api/Access.OptionButton.Width.md +++ b/api/Access.OptionButton.Width.md @@ -1,5 +1,5 @@ --- -title: OptionButton.Width Property (Access) +title: OptionButton.Width property (Access) keywords: vbaac10.chm10584 f1_keywords: - vbaac10.chm10584 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionButton.Width Property (Access) +# OptionButton.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. +_expression_ A variable that represents an [OptionButton](Access.OptionButton.md) object. ## Remarks diff --git a/api/Access.OptionButton.md b/api/Access.OptionButton.md index 3809654e7a0..49e22b190d4 100644 --- a/api/Access.OptionButton.md +++ b/api/Access.OptionButton.md @@ -1,5 +1,5 @@ --- -title: OptionButton Object (Access) +title: OptionButton object (Access) keywords: vbaac10.chm10671 f1_keywords: - vbaac10.chm10671 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# OptionButton Object (Access) +# OptionButton object (Access) An option button on a form or report is a stand-alone control used to display a Yes/No value from an underlying record source. diff --git a/api/Access.OptionGroup.AddColon.md b/api/Access.OptionGroup.AddColon.md index b5f65ada6fe..b765a78f593 100644 --- a/api/Access.OptionGroup.AddColon.md +++ b/api/Access.OptionGroup.AddColon.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.AddColon Property (Access) +title: OptionGroup.AddColon property (Access) keywords: vbaac10.chm10853 f1_keywords: - vbaac10.chm10853 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.AddColon Property (Access) +# OptionGroup.AddColon property (Access) Specifies whether a colon follows the text in labels for new controls. Read/write **Boolean**. ## Syntax - _expression_. `AddColon` +_expression_. `AddColon` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## See also diff --git a/api/Access.OptionGroup.AfterUpdate(even).md b/api/Access.OptionGroup.AfterUpdate(even).md index 448768c95e2..be91b1b8856 100644 --- a/api/Access.OptionGroup.AfterUpdate(even).md +++ b/api/Access.OptionGroup.AfterUpdate(even).md @@ -1,5 +1,5 @@ --- -title: OptionGroup.AfterUpdate Event (Access) +title: OptionGroup.AfterUpdate event (Access) keywords: vbaac10.chm14186 f1_keywords: - vbaac10.chm14186 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.AfterUpdate Event (Access) +# OptionGroup.AfterUpdate event (Access) The **AfterUpdate** event occurs after changed data in a control or record is updated. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.AfterUpdate(property).md b/api/Access.OptionGroup.AfterUpdate(property).md index ba23a13161d..17565634f46 100644 --- a/api/Access.OptionGroup.AfterUpdate(property).md +++ b/api/Access.OptionGroup.AfterUpdate(property).md @@ -1,5 +1,5 @@ --- -title: OptionGroup.AfterUpdate Property (Access) +title: OptionGroup.AfterUpdate property (Access) keywords: vbaac10.chm10863 f1_keywords: - vbaac10.chm10863 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.AfterUpdate Property (Access) +# OptionGroup.AfterUpdate property (Access) Returns or sets which macro, event procedure, or user-defined function runs when the **AfterUpdate** event occurs. Read/write **String**. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Application.md b/api/Access.OptionGroup.Application.md index ec34e833b87..b00f384b338 100644 --- a/api/Access.OptionGroup.Application.md +++ b/api/Access.OptionGroup.Application.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Application Property (Access) +title: OptionGroup.Application property (Access) keywords: vbaac10.chm10809 f1_keywords: - vbaac10.chm10809 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Application Property (Access) +# OptionGroup.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.AutoLabel.md b/api/Access.OptionGroup.AutoLabel.md index 6b489c7c94f..0095ef4a398 100644 --- a/api/Access.OptionGroup.AutoLabel.md +++ b/api/Access.OptionGroup.AutoLabel.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.AutoLabel Property (Access) +title: OptionGroup.AutoLabel property (Access) keywords: vbaac10.chm10852 f1_keywords: - vbaac10.chm10852 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.AutoLabel Property (Access) +# OptionGroup.AutoLabel property (Access) Specifies whether labels are automatically created and attached to new controls. Read/write **Boolean**. ## Syntax - _expression_. `AutoLabel` +_expression_. `AutoLabel` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## See also diff --git a/api/Access.OptionGroup.BackColor.md b/api/Access.OptionGroup.BackColor.md index c728c82673d..a468fd2f53f 100644 --- a/api/Access.OptionGroup.BackColor.md +++ b/api/Access.OptionGroup.BackColor.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.BackColor Property (Access) +title: OptionGroup.BackColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.BackColor Property (Access) +# OptionGroup.BackColor property (Access) Gets or sets the interior color of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackColor` +_expression_. `BackColor` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.BackShade.md b/api/Access.OptionGroup.BackShade.md index 018ab1263ea..af95f0ac831 100644 --- a/api/Access.OptionGroup.BackShade.md +++ b/api/Access.OptionGroup.BackShade.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.BackShade Property (Access) +title: OptionGroup.BackShade property (Access) keywords: vbaac10.chm14633 f1_keywords: - vbaac10.chm14633 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.BackShade Property (Access) +# OptionGroup.BackShade property (Access) Gets or sets the shade applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackShade` +_expression_. `BackShade` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.BackStyle.md b/api/Access.OptionGroup.BackStyle.md index 43153bbdfac..f42042f5da5 100644 --- a/api/Access.OptionGroup.BackStyle.md +++ b/api/Access.OptionGroup.BackStyle.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.BackStyle Property (Access) +title: OptionGroup.BackStyle property (Access) keywords: vbaac10.chm10838 f1_keywords: - vbaac10.chm10838 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.BackStyle Property (Access) +# OptionGroup.BackStyle property (Access) You can use the **BackStyle** property to specify whether a control will be transparent. Read/write **Byte**. ## Syntax - _expression_. `BackStyle` +_expression_. `BackStyle` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.BackThemeColorIndex.md b/api/Access.OptionGroup.BackThemeColorIndex.md index 89a9e524f78..655ffab2809 100644 --- a/api/Access.OptionGroup.BackThemeColorIndex.md +++ b/api/Access.OptionGroup.BackThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.BackThemeColorIndex Property (Access) +title: OptionGroup.BackThemeColorIndex property (Access) keywords: vbaac10.chm14631 f1_keywords: - vbaac10.chm14631 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.BackThemeColorIndex Property (Access) +# OptionGroup.BackThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BackColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackThemeColorIndex` +_expression_. `BackThemeColorIndex` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.BackTint.md b/api/Access.OptionGroup.BackTint.md index 1d84d14399a..6e323f38f46 100644 --- a/api/Access.OptionGroup.BackTint.md +++ b/api/Access.OptionGroup.BackTint.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.BackTint Property (Access) +title: OptionGroup.BackTint property (Access) keywords: vbaac10.chm14632 f1_keywords: - vbaac10.chm14632 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.BackTint Property (Access) +# OptionGroup.BackTint property (Access) Gets or sets the tint that is applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackTint` +_expression_. `BackTint` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.BeforeUpdate(even).md b/api/Access.OptionGroup.BeforeUpdate(even).md index 701c9aa0d68..ae0b5732b67 100644 --- a/api/Access.OptionGroup.BeforeUpdate(even).md +++ b/api/Access.OptionGroup.BeforeUpdate(even).md @@ -1,5 +1,5 @@ --- -title: OptionGroup.BeforeUpdate Event (Access) +title: OptionGroup.BeforeUpdate event (Access) keywords: vbaac10.chm14185 f1_keywords: - vbaac10.chm14185 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionGroup.BeforeUpdate Event (Access) +# OptionGroup.BeforeUpdate event (Access) The **BeforeUpdate** event occurs before changed data in a control or record is updated. ## Syntax - _expression_. `BeforeUpdate`( ` _Cancel_` ) +_expression_. `BeforeUpdate`( ` _Cancel_` ) - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **BeforeUpdate** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **BeforeUpdate** event.| diff --git a/api/Access.OptionGroup.BeforeUpdate(property).md b/api/Access.OptionGroup.BeforeUpdate(property).md index 640f083b7e8..fc815988c8e 100644 --- a/api/Access.OptionGroup.BeforeUpdate(property).md +++ b/api/Access.OptionGroup.BeforeUpdate(property).md @@ -1,5 +1,5 @@ --- -title: OptionGroup.BeforeUpdate Property (Access) +title: OptionGroup.BeforeUpdate property (Access) keywords: vbaac10.chm10862 f1_keywords: - vbaac10.chm10862 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.BeforeUpdate Property (Access) +# OptionGroup.BeforeUpdate property (Access) Returns or sets which macro, event procedure, or user-defined function runs when the **BeforeUpdate** event occurs. Read/write **String**. ## Syntax - _expression_. `BeforeUpdate` +_expression_. `BeforeUpdate` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.BorderColor.md b/api/Access.OptionGroup.BorderColor.md index 122212ecec4..0fe7fdb7d84 100644 --- a/api/Access.OptionGroup.BorderColor.md +++ b/api/Access.OptionGroup.BorderColor.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.BorderColor Property (Access) +title: OptionGroup.BorderColor property (Access) keywords: vbaac10.chm10843 f1_keywords: - vbaac10.chm10843 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.BorderColor Property (Access) +# OptionGroup.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.BorderShade.md b/api/Access.OptionGroup.BorderShade.md index da86a649b1c..560a17f55f0 100644 --- a/api/Access.OptionGroup.BorderShade.md +++ b/api/Access.OptionGroup.BorderShade.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.BorderShade Property (Access) +title: OptionGroup.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.BorderShade Property (Access) +# OptionGroup.BorderShade property (Access) Gets or sets the shade that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.BorderStyle.md b/api/Access.OptionGroup.BorderStyle.md index 288d601ad1d..9a5c49d258b 100644 --- a/api/Access.OptionGroup.BorderStyle.md +++ b/api/Access.OptionGroup.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.BorderStyle Property (Access) +title: OptionGroup.BorderStyle property (Access) keywords: vbaac10.chm10841 f1_keywords: - vbaac10.chm10841 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.BorderStyle Property (Access) +# OptionGroup.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.BorderThemeColorIndex.md b/api/Access.OptionGroup.BorderThemeColorIndex.md index 03e49aee6e7..3854745e9a7 100644 --- a/api/Access.OptionGroup.BorderThemeColorIndex.md +++ b/api/Access.OptionGroup.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.BorderThemeColorIndex Property (Access) +title: OptionGroup.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.BorderThemeColorIndex Property (Access) +# OptionGroup.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.BorderTint.md b/api/Access.OptionGroup.BorderTint.md index 54e40b484bd..204a11159f6 100644 --- a/api/Access.OptionGroup.BorderTint.md +++ b/api/Access.OptionGroup.BorderTint.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.BorderTint Property (Access) +title: OptionGroup.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.BorderTint Property (Access) +# OptionGroup.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.BorderWidth.md b/api/Access.OptionGroup.BorderWidth.md index 593feb45e46..59debd9149a 100644 --- a/api/Access.OptionGroup.BorderWidth.md +++ b/api/Access.OptionGroup.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.BorderWidth Property (Access) +title: OptionGroup.BorderWidth property (Access) keywords: vbaac10.chm10844 f1_keywords: - vbaac10.chm10844 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.BorderWidth Property (Access) +# OptionGroup.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Click.md b/api/Access.OptionGroup.Click.md index 87671a2b041..143617ab8c0 100644 --- a/api/Access.OptionGroup.Click.md +++ b/api/Access.OptionGroup.Click.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Click Event (Access) +title: OptionGroup.Click event (Access) keywords: vbaac10.chm14189 f1_keywords: - vbaac10.chm14189 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Click Event (Access) +# OptionGroup.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.ColumnHidden.md b/api/Access.OptionGroup.ColumnHidden.md index a48af3c441c..ecc98e5bdbd 100644 --- a/api/Access.OptionGroup.ColumnHidden.md +++ b/api/Access.OptionGroup.ColumnHidden.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.ColumnHidden Property (Access) +title: OptionGroup.ColumnHidden property (Access) keywords: vbaac10.chm10851 f1_keywords: - vbaac10.chm10851 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.ColumnHidden Property (Access) +# OptionGroup.ColumnHidden property (Access) You can use the **ColumnHidden** property to show or hide a specified column in Datasheet view. Read/write **Boolean**. ## Syntax - _expression_. `ColumnHidden` +_expression_. `ColumnHidden` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.ColumnOrder.md b/api/Access.OptionGroup.ColumnOrder.md index 84b9e496dcb..9344c1ddb7d 100644 --- a/api/Access.OptionGroup.ColumnOrder.md +++ b/api/Access.OptionGroup.ColumnOrder.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.ColumnOrder Property (Access) +title: OptionGroup.ColumnOrder property (Access) keywords: vbaac10.chm10850 f1_keywords: - vbaac10.chm10850 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.ColumnOrder Property (Access) +# OptionGroup.ColumnOrder property (Access) You can use the **ColumnOrder** property to specify the order of the columns in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `ColumnOrder` +_expression_. `ColumnOrder` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.ColumnWidth.md b/api/Access.OptionGroup.ColumnWidth.md index eaf99bbcccc..ae9715a6cea 100644 --- a/api/Access.OptionGroup.ColumnWidth.md +++ b/api/Access.OptionGroup.ColumnWidth.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.ColumnWidth Property (Access) +title: OptionGroup.ColumnWidth property (Access) keywords: vbaac10.chm10849 f1_keywords: - vbaac10.chm10849 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.ColumnWidth Property (Access) +# OptionGroup.ColumnWidth property (Access) You can use the **ColumnWidth** property to specify the width of a column in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `ColumnWidth` +_expression_. `ColumnWidth` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.ControlSource.md b/api/Access.OptionGroup.ControlSource.md index c039cb8ea9a..8515f70cf46 100644 --- a/api/Access.OptionGroup.ControlSource.md +++ b/api/Access.OptionGroup.ControlSource.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.ControlSource Property (Access) +title: OptionGroup.ControlSource property (Access) keywords: vbaac10.chm10822 f1_keywords: - vbaac10.chm10822 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.ControlSource Property (Access) +# OptionGroup.ControlSource property (Access) You can use the **ControlSource** property to specify what data appears in a control. You can display and edit data bound to a field in a table, query, or SQL statement. You can also display the result of an expression. Read/write **String**. ## Syntax - _expression_. `ControlSource` +_expression_. `ControlSource` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.ControlTipText.md b/api/Access.OptionGroup.ControlTipText.md index bc6bd769064..15c90d8a4aa 100644 --- a/api/Access.OptionGroup.ControlTipText.md +++ b/api/Access.OptionGroup.ControlTipText.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.ControlTipText Property (Access) +title: OptionGroup.ControlTipText property (Access) keywords: vbaac10.chm10847 f1_keywords: - vbaac10.chm10847 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.ControlTipText Property (Access) +# OptionGroup.ControlTipText property (Access) You can use the **ControlTipText** property to specify the text that appears in a ScreenTip when you hold the mouse pointer over a control. Read/write **String**. ## Syntax - _expression_. `ControlTipText` +_expression_. `ControlTipText` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.ControlType.md b/api/Access.OptionGroup.ControlType.md index 9de2be50f0f..3382df86495 100644 --- a/api/Access.OptionGroup.ControlType.md +++ b/api/Access.OptionGroup.ControlType.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.ControlType Property (Access) +title: OptionGroup.ControlType property (Access) keywords: vbaac10.chm10821 f1_keywords: - vbaac10.chm10821 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.ControlType Property (Access) +# OptionGroup.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Controls.md b/api/Access.OptionGroup.Controls.md index 094e92ecaa2..ff4337a922f 100644 --- a/api/Access.OptionGroup.Controls.md +++ b/api/Access.OptionGroup.Controls.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Controls Property (Access) +title: OptionGroup.Controls property (Access) keywords: vbaac10.chm10817 f1_keywords: - vbaac10.chm10817 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Controls Property (Access) +# OptionGroup.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.DblClick.md b/api/Access.OptionGroup.DblClick.md index 79ce1789216..085f9807d0a 100644 --- a/api/Access.OptionGroup.DblClick.md +++ b/api/Access.OptionGroup.DblClick.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.DblClick Event (Access) +title: OptionGroup.DblClick event (Access) keywords: vbaac10.chm14190 f1_keywords: - vbaac10.chm14190 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionGroup.DblClick Event (Access) +# OptionGroup.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_` ) +_expression_. `DblClick`( ` _Cancel_` ) - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **DblClick** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **DblClick** event.| diff --git a/api/Access.OptionGroup.DefaultValue.md b/api/Access.OptionGroup.DefaultValue.md index b69f2c5a666..ed92912d80c 100644 --- a/api/Access.OptionGroup.DefaultValue.md +++ b/api/Access.OptionGroup.DefaultValue.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.DefaultValue Property (Access) +title: OptionGroup.DefaultValue property (Access) keywords: vbaac10.chm10823 f1_keywords: - vbaac10.chm10823 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.DefaultValue Property (Access) +# OptionGroup.DefaultValue property (Access) Specifies a value that is automatically entered in a field when a new record is created. For example, in an Addresses table you can set the default value for the City field to New York. When users add a record to the table, they can either accept this value or enter the name of a different city. Read/write **String**. ## Syntax - _expression_. `DefaultValue` +_expression_. `DefaultValue` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.DisplayWhen.md b/api/Access.OptionGroup.DisplayWhen.md index 45706786c7b..729c0fb9472 100644 --- a/api/Access.OptionGroup.DisplayWhen.md +++ b/api/Access.OptionGroup.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.DisplayWhen Property (Access) +title: OptionGroup.DisplayWhen property (Access) keywords: vbaac10.chm10828 f1_keywords: - vbaac10.chm10828 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.DisplayWhen Property (Access) +# OptionGroup.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Enabled.md b/api/Access.OptionGroup.Enabled.md index ab9674f2b44..d579b328d52 100644 --- a/api/Access.OptionGroup.Enabled.md +++ b/api/Access.OptionGroup.Enabled.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Enabled Property (Access) +title: OptionGroup.Enabled property (Access) keywords: vbaac10.chm10829 f1_keywords: - vbaac10.chm10829 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Enabled Property (Access) +# OptionGroup.Enabled property (Access) You can use the **Enabled** property to set or return the status of the conditional format in the **[FormatCondition](Access.FormatCondition.md)** object. Read/write **Boolean**. ## Syntax - _expression_. `Enabled` +_expression_. `Enabled` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Enter.md b/api/Access.OptionGroup.Enter.md index cc96e4d15b8..8454d851876 100644 --- a/api/Access.OptionGroup.Enter.md +++ b/api/Access.OptionGroup.Enter.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Enter Event (Access) +title: OptionGroup.Enter event (Access) keywords: vbaac10.chm14187 f1_keywords: - vbaac10.chm14187 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Enter Event (Access) +# OptionGroup.Enter event (Access) The **Enter** event occurs before a control actually receives the focus from a control on the same form or report. ## Syntax - _expression_. `Enter` +_expression_. `Enter` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.EventProcPrefix.md b/api/Access.OptionGroup.EventProcPrefix.md index f530b44f470..a750b7039be 100644 --- a/api/Access.OptionGroup.EventProcPrefix.md +++ b/api/Access.OptionGroup.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.EventProcPrefix Property (Access) +title: OptionGroup.EventProcPrefix property (Access) keywords: vbaac10.chm10819 f1_keywords: - vbaac10.chm10819 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.EventProcPrefix Property (Access) +# OptionGroup.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Exit.md b/api/Access.OptionGroup.Exit.md index 5d29c93785b..e957f8d9020 100644 --- a/api/Access.OptionGroup.Exit.md +++ b/api/Access.OptionGroup.Exit.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Exit Event (Access) +title: OptionGroup.Exit event (Access) keywords: vbaac10.chm14188 f1_keywords: - vbaac10.chm14188 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionGroup.Exit Event (Access) +# OptionGroup.Exit event (Access) The **Exit** event occurs just before a control loses the focus to another control on the same form or report. ## Syntax - _expression_. `Exit`( ` _Cancel_` ) +_expression_. `Exit`( ` _Cancel_` ) - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|Set to **True** to cancel the event.| diff --git a/api/Access.OptionGroup.Height.md b/api/Access.OptionGroup.Height.md index 3ac118b62e8..79b8c4273cd 100644 --- a/api/Access.OptionGroup.Height.md +++ b/api/Access.OptionGroup.Height.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Height Property (Access) +title: OptionGroup.Height property (Access) keywords: vbaac10.chm10837 f1_keywords: - vbaac10.chm10837 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Height Property (Access) +# OptionGroup.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.HelpContextId.md b/api/Access.OptionGroup.HelpContextId.md index 1295885d2d9..269a2a8c7e2 100644 --- a/api/Access.OptionGroup.HelpContextId.md +++ b/api/Access.OptionGroup.HelpContextId.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.HelpContextId Property (Access) +title: OptionGroup.HelpContextId property (Access) keywords: vbaac10.chm10848 f1_keywords: - vbaac10.chm10848 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.HelpContextId Property (Access) +# OptionGroup.HelpContextId property (Access) The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**. ## Syntax - _expression_. `HelpContextId` +_expression_. `HelpContextId` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.HideDuplicates.md b/api/Access.OptionGroup.HideDuplicates.md index 4b4864c356d..6a939fb60e7 100644 --- a/api/Access.OptionGroup.HideDuplicates.md +++ b/api/Access.OptionGroup.HideDuplicates.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.HideDuplicates Property (Access) +title: OptionGroup.HideDuplicates property (Access) keywords: vbaac10.chm10833 f1_keywords: - vbaac10.chm10833 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.HideDuplicates Property (Access) +# OptionGroup.HideDuplicates property (Access) You can use the **HideDuplicates** property to hide a control on a report when its value is the same as in the preceding record. Read/write **Boolean**. ## Syntax - _expression_. `HideDuplicates` +_expression_. `HideDuplicates` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.HorizontalAnchor.md b/api/Access.OptionGroup.HorizontalAnchor.md index c71ffedb483..549a0fb9a70 100644 --- a/api/Access.OptionGroup.HorizontalAnchor.md +++ b/api/Access.OptionGroup.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.HorizontalAnchor Property (Access) +title: OptionGroup.HorizontalAnchor property (Access) keywords: vbaac10.chm10883 f1_keywords: - vbaac10.chm10883 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.HorizontalAnchor Property (Access) +# OptionGroup.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the option group is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.InSelection.md b/api/Access.OptionGroup.InSelection.md index 02e989c1e2b..0d07de01d9e 100644 --- a/api/Access.OptionGroup.InSelection.md +++ b/api/Access.OptionGroup.InSelection.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.InSelection Property (Access) +title: OptionGroup.InSelection property (Access) keywords: vbaac10.chm10861 f1_keywords: - vbaac10.chm10861 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.InSelection Property (Access) +# OptionGroup.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.IsVisible.md b/api/Access.OptionGroup.IsVisible.md index ff55d7aabf7..dab003f33e2 100644 --- a/api/Access.OptionGroup.IsVisible.md +++ b/api/Access.OptionGroup.IsVisible.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.IsVisible Property (Access) +title: OptionGroup.IsVisible property (Access) keywords: vbaac10.chm10860 f1_keywords: - vbaac10.chm10860 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.IsVisible Property (Access) +# OptionGroup.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.LabelAlign.md b/api/Access.OptionGroup.LabelAlign.md index da4fda20d1e..52ef8b7c5e4 100644 --- a/api/Access.OptionGroup.LabelAlign.md +++ b/api/Access.OptionGroup.LabelAlign.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.LabelAlign Property (Access) +title: OptionGroup.LabelAlign property (Access) keywords: vbaac10.chm10856 f1_keywords: - vbaac10.chm10856 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.LabelAlign Property (Access) +# OptionGroup.LabelAlign property (Access) The property specifies the text alignment within attached labels on new controls. Read/write **Byte**. ## Syntax - _expression_. `LabelAlign` +_expression_. `LabelAlign` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.LabelX.md b/api/Access.OptionGroup.LabelX.md index d61ce667204..76ba88d105f 100644 --- a/api/Access.OptionGroup.LabelX.md +++ b/api/Access.OptionGroup.LabelX.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.LabelX Property (Access) +title: OptionGroup.LabelX property (Access) keywords: vbaac10.chm10854 f1_keywords: - vbaac10.chm10854 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# OptionGroup.LabelX Property (Access) +# OptionGroup.LabelX property (Access) The **LabelX** property (along with the **LabelY** property) specifies the placement of the label for a new control. Read/write **Integer**. @@ -19,9 +19,9 @@ The **LabelX** property (along with the **LabelY** property) specifies the plac ## Syntax - _expression_. `LabelX` +_expression_. `LabelX` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.LabelY.md b/api/Access.OptionGroup.LabelY.md index b0b927e56fa..65549e7e8ed 100644 --- a/api/Access.OptionGroup.LabelY.md +++ b/api/Access.OptionGroup.LabelY.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.LabelY Property (Access) +title: OptionGroup.LabelY property (Access) keywords: vbaac10.chm10855 f1_keywords: - vbaac10.chm10855 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# OptionGroup.LabelY Property (Access) +# OptionGroup.LabelY property (Access) The **LabelY** property (along with the **LabelX** property) specifies the placement of the label for a new control. Read/write **Integer**. @@ -19,9 +19,9 @@ The **LabelY** property (along with the **LabelX** property) specifies the plac ## Syntax - _expression_. `LabelY` +_expression_. `LabelY` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Left.md b/api/Access.OptionGroup.Left.md index df03f66883a..e058a3aef97 100644 --- a/api/Access.OptionGroup.Left.md +++ b/api/Access.OptionGroup.Left.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Left Property (Access) +title: OptionGroup.Left property (Access) keywords: vbaac10.chm10834 f1_keywords: - vbaac10.chm10834 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Left Property (Access) +# OptionGroup.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Locked.md b/api/Access.OptionGroup.Locked.md index 182a1926b42..7af4637ef2d 100644 --- a/api/Access.OptionGroup.Locked.md +++ b/api/Access.OptionGroup.Locked.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Locked Property (Access) +title: OptionGroup.Locked property (Access) keywords: vbaac10.chm10830 f1_keywords: - vbaac10.chm10830 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Locked Property (Access) +# OptionGroup.Locked property (Access) The **Locked** property specifies whether you can edit data in a control in Form view. Read/write **Boolean**. ## Syntax - _expression_. `Locked` +_expression_. `Locked` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.MouseDown.md b/api/Access.OptionGroup.MouseDown.md index b7428da1b53..c5edf8b9401 100644 --- a/api/Access.OptionGroup.MouseDown.md +++ b/api/Access.OptionGroup.MouseDown.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.MouseDown Event (Access) +title: OptionGroup.MouseDown event (Access) keywords: vbaac10.chm14191 f1_keywords: - vbaac10.chm14191 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionGroup.MouseDown Event (Access) +# OptionGroup.MouseDown event (Access) The **MouseDown** event occurs when the user presses a mouse button. ## Syntax - _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.OptionGroup.MouseMove.md b/api/Access.OptionGroup.MouseMove.md index 4f1168b880b..f30b3560df7 100644 --- a/api/Access.OptionGroup.MouseMove.md +++ b/api/Access.OptionGroup.MouseMove.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.MouseMove Event (Access) +title: OptionGroup.MouseMove event (Access) keywords: vbaac10.chm14192 f1_keywords: - vbaac10.chm14192 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionGroup.MouseMove Event (Access) +# OptionGroup.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.OptionGroup.MouseUp.md b/api/Access.OptionGroup.MouseUp.md index e8010180ff8..41385c0befe 100644 --- a/api/Access.OptionGroup.MouseUp.md +++ b/api/Access.OptionGroup.MouseUp.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.MouseUp Event (Access) +title: OptionGroup.MouseUp event (Access) keywords: vbaac10.chm14193 f1_keywords: - vbaac10.chm14193 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionGroup.MouseUp Event (Access) +# OptionGroup.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.OptionGroup.Move.md b/api/Access.OptionGroup.Move.md index cd0ff2c93c7..3cdcd3845df 100644 --- a/api/Access.OptionGroup.Move.md +++ b/api/Access.OptionGroup.Move.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Move Method (Access) +title: OptionGroup.Move method (Access) keywords: vbaac10.chm10872 f1_keywords: - vbaac10.chm10872 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# OptionGroup.Move Method (Access) +# OptionGroup.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.OptionGroup.Name.md b/api/Access.OptionGroup.Name.md index d9dbd45780a..0f012c0a75e 100644 --- a/api/Access.OptionGroup.Name.md +++ b/api/Access.OptionGroup.Name.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Name Property (Access) +title: OptionGroup.Name property (Access) keywords: vbaac10.chm10871 f1_keywords: - vbaac10.chm10871 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Name Property (Access) +# OptionGroup.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.OldBorderStyle.md b/api/Access.OptionGroup.OldBorderStyle.md index e318d832fdf..70979df9c2e 100644 --- a/api/Access.OptionGroup.OldBorderStyle.md +++ b/api/Access.OptionGroup.OldBorderStyle.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.OldBorderStyle Property (Access) +title: OptionGroup.OldBorderStyle property (Access) keywords: vbaac10.chm10842 f1_keywords: - vbaac10.chm10842 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.OldBorderStyle Property (Access) +# OptionGroup.OldBorderStyle property (Access) You can use this property to set or returns the unedited value of the **BorderStyle** property for a form or control. This property is useful if you need to revert to an unedited or preferred border style. Read/write **Byte**. ## Syntax - _expression_. `OldBorderStyle` +_expression_. `OldBorderStyle` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.OldValue.md b/api/Access.OptionGroup.OldValue.md index 89a9bddc17c..d8df3c92451 100644 --- a/api/Access.OptionGroup.OldValue.md +++ b/api/Access.OptionGroup.OldValue.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.OldValue Property (Access) +title: OptionGroup.OldValue property (Access) keywords: vbaac10.chm10812 f1_keywords: - vbaac10.chm10812 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.OldValue Property (Access) +# OptionGroup.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.OnClick.md b/api/Access.OptionGroup.OnClick.md index 53f72d51210..6b70e21ae3a 100644 --- a/api/Access.OptionGroup.OnClick.md +++ b/api/Access.OptionGroup.OnClick.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.OnClick Property (Access) +title: OptionGroup.OnClick property (Access) keywords: vbaac10.chm10866 f1_keywords: - vbaac10.chm10866 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.OnClick Property (Access) +# OptionGroup.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionGroup.OnDblClick.md b/api/Access.OptionGroup.OnDblClick.md index b9021c18e70..0de47804332 100644 --- a/api/Access.OptionGroup.OnDblClick.md +++ b/api/Access.OptionGroup.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.OnDblClick Property (Access) +title: OptionGroup.OnDblClick property (Access) keywords: vbaac10.chm10867 f1_keywords: - vbaac10.chm10867 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.OnDblClick Property (Access) +# OptionGroup.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionGroup.OnEnter.md b/api/Access.OptionGroup.OnEnter.md index cccbebd08ce..6a275397c95 100644 --- a/api/Access.OptionGroup.OnEnter.md +++ b/api/Access.OptionGroup.OnEnter.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.OnEnter Property (Access) +title: OptionGroup.OnEnter property (Access) keywords: vbaac10.chm10864 f1_keywords: - vbaac10.chm10864 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.OnEnter Property (Access) +# OptionGroup.OnEnter property (Access) Sets or returns the value of the **On Enter** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnEnter` +_expression_. `OnEnter` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Enter** event occurs before a control actually receives the focus from a The **OnEnter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Enter** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionGroup.OnExit.md b/api/Access.OptionGroup.OnExit.md index 3c72ef6940b..57b2fb2bb13 100644 --- a/api/Access.OptionGroup.OnExit.md +++ b/api/Access.OptionGroup.OnExit.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.OnExit Property (Access) +title: OptionGroup.OnExit property (Access) keywords: vbaac10.chm10865 f1_keywords: - vbaac10.chm10865 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.OnExit Property (Access) +# OptionGroup.OnExit property (Access) Sets or returns the value of the **On Exit** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnExit` +_expression_. `OnExit` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Exit** event occurs just before a control loses the focus to another cont The **OnExit** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Exit** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionGroup.OnMouseDown.md b/api/Access.OptionGroup.OnMouseDown.md index 02dc336e0d0..36857ab1408 100644 --- a/api/Access.OptionGroup.OnMouseDown.md +++ b/api/Access.OptionGroup.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.OnMouseDown Property (Access) +title: OptionGroup.OnMouseDown property (Access) keywords: vbaac10.chm10868 f1_keywords: - vbaac10.chm10868 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.OnMouseDown Property (Access) +# OptionGroup.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionGroup.OnMouseMove.md b/api/Access.OptionGroup.OnMouseMove.md index f0d8f19a002..c23a4bed6c4 100644 --- a/api/Access.OptionGroup.OnMouseMove.md +++ b/api/Access.OptionGroup.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.OnMouseMove Property (Access) +title: OptionGroup.OnMouseMove property (Access) keywords: vbaac10.chm10869 f1_keywords: - vbaac10.chm10869 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.OnMouseMove Property (Access) +# OptionGroup.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionGroup.OnMouseUp.md b/api/Access.OptionGroup.OnMouseUp.md index 817669d6c1e..f214a655add 100644 --- a/api/Access.OptionGroup.OnMouseUp.md +++ b/api/Access.OptionGroup.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.OnMouseUp Property (Access) +title: OptionGroup.OnMouseUp property (Access) keywords: vbaac10.chm10870 f1_keywords: - vbaac10.chm10870 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.OnMouseUp Property (Access) +# OptionGroup.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.OptionGroup.Parent.md b/api/Access.OptionGroup.Parent.md index 5ff4cbe2b44..66c13a250da 100644 --- a/api/Access.OptionGroup.Parent.md +++ b/api/Access.OptionGroup.Parent.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Parent Property (Access) +title: OptionGroup.Parent property (Access) keywords: vbaac10.chm10810 f1_keywords: - vbaac10.chm10810 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Parent Property (Access) +# OptionGroup.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Properties.md b/api/Access.OptionGroup.Properties.md index cc4db9c38d0..cbea284a930 100644 --- a/api/Access.OptionGroup.Properties.md +++ b/api/Access.OptionGroup.Properties.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Properties Property (Access) +title: OptionGroup.Properties property (Access) keywords: vbaac10.chm10813 f1_keywords: - vbaac10.chm10813 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Properties Property (Access) +# OptionGroup.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Requery.md b/api/Access.OptionGroup.Requery.md index e2b93655408..dbc282e40c1 100644 --- a/api/Access.OptionGroup.Requery.md +++ b/api/Access.OptionGroup.Requery.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Requery Method (Access) +title: OptionGroup.Requery method (Access) keywords: vbaac10.chm10815 f1_keywords: - vbaac10.chm10815 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Requery Method (Access) +# OptionGroup.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Section.md b/api/Access.OptionGroup.Section.md index 526fae9c7e7..8257b47dd54 100644 --- a/api/Access.OptionGroup.Section.md +++ b/api/Access.OptionGroup.Section.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Section Property (Access) +title: OptionGroup.Section property (Access) keywords: vbaac10.chm10857 f1_keywords: - vbaac10.chm10857 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Section Property (Access) +# OptionGroup.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.SetFocus.md b/api/Access.OptionGroup.SetFocus.md index f430e00f44c..3c930ca67f3 100644 --- a/api/Access.OptionGroup.SetFocus.md +++ b/api/Access.OptionGroup.SetFocus.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.SetFocus Method (Access) +title: OptionGroup.SetFocus method (Access) keywords: vbaac10.chm10816 f1_keywords: - vbaac10.chm10816 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# OptionGroup.SetFocus Method (Access) +# OptionGroup.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.OptionGroup.ShortcutMenuBar.md b/api/Access.OptionGroup.ShortcutMenuBar.md index 2bd33cb1350..d8005c24c71 100644 --- a/api/Access.OptionGroup.ShortcutMenuBar.md +++ b/api/Access.OptionGroup.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.ShortcutMenuBar Property (Access) +title: OptionGroup.ShortcutMenuBar property (Access) keywords: vbaac10.chm10846 f1_keywords: - vbaac10.chm10846 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.ShortcutMenuBar Property (Access) +# OptionGroup.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.SizeToFit.md b/api/Access.OptionGroup.SizeToFit.md index 2623ebf6757..96751a42ea3 100644 --- a/api/Access.OptionGroup.SizeToFit.md +++ b/api/Access.OptionGroup.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.SizeToFit Method (Access) +title: OptionGroup.SizeToFit method (Access) keywords: vbaac10.chm10814 f1_keywords: - vbaac10.chm10814 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.SizeToFit Method (Access) +# OptionGroup.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.SpecialEffect.md b/api/Access.OptionGroup.SpecialEffect.md index 86e2942f87b..7fcf5b20f6f 100644 --- a/api/Access.OptionGroup.SpecialEffect.md +++ b/api/Access.OptionGroup.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.SpecialEffect Property (Access) +title: OptionGroup.SpecialEffect property (Access) keywords: vbaac10.chm10840 f1_keywords: - vbaac10.chm10840 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.SpecialEffect Property (Access) +# OptionGroup.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.StatusBarText.md b/api/Access.OptionGroup.StatusBarText.md index f1db631d261..514f2897831 100644 --- a/api/Access.OptionGroup.StatusBarText.md +++ b/api/Access.OptionGroup.StatusBarText.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.StatusBarText Property (Access) +title: OptionGroup.StatusBarText property (Access) keywords: vbaac10.chm10826 f1_keywords: - vbaac10.chm10826 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.StatusBarText Property (Access) +# OptionGroup.StatusBarText property (Access) You can use the **StatusBarText** property to specify the text that is displayed in the status bar when a control is selected. Read/write **String**. ## Syntax - _expression_. `StatusBarText` +_expression_. `StatusBarText` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.TabIndex.md b/api/Access.OptionGroup.TabIndex.md index f55a5c62439..61b7eaff6a1 100644 --- a/api/Access.OptionGroup.TabIndex.md +++ b/api/Access.OptionGroup.TabIndex.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.TabIndex Property (Access) +title: OptionGroup.TabIndex property (Access) keywords: vbaac10.chm10832 f1_keywords: - vbaac10.chm10832 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.TabIndex Property (Access) +# OptionGroup.TabIndex property (Access) You can use the **TabIndex** property to specify a control's place in the tab order on a form or report. Read/write **Integer**. ## Syntax - _expression_. `TabIndex` +_expression_. `TabIndex` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.TabStop.md b/api/Access.OptionGroup.TabStop.md index f227ce827a9..cb73be99a35 100644 --- a/api/Access.OptionGroup.TabStop.md +++ b/api/Access.OptionGroup.TabStop.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.TabStop Property (Access) +title: OptionGroup.TabStop property (Access) keywords: vbaac10.chm10831 f1_keywords: - vbaac10.chm10831 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.TabStop Property (Access) +# OptionGroup.TabStop property (Access) You can use the **TabStop** property to specify whether you can use the TAB key to move the focus to a control. Read/write **Boolean**. ## Syntax - _expression_. `TabStop` +_expression_. `TabStop` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Tag.md b/api/Access.OptionGroup.Tag.md index 662c9ef85de..37c5abb3f24 100644 --- a/api/Access.OptionGroup.Tag.md +++ b/api/Access.OptionGroup.Tag.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Tag Property (Access) +title: OptionGroup.Tag property (Access) keywords: vbaac10.chm10859 f1_keywords: - vbaac10.chm10859 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Tag Property (Access) +# OptionGroup.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Top.md b/api/Access.OptionGroup.Top.md index 3c392b4da9b..58486333956 100644 --- a/api/Access.OptionGroup.Top.md +++ b/api/Access.OptionGroup.Top.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Top Property (Access) +title: OptionGroup.Top property (Access) keywords: vbaac10.chm10835 f1_keywords: - vbaac10.chm10835 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Top Property (Access) +# OptionGroup.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Undo.md b/api/Access.OptionGroup.Undo.md index 167eae0fddc..f30dac38a88 100644 --- a/api/Access.OptionGroup.Undo.md +++ b/api/Access.OptionGroup.Undo.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Undo Method (Access) +title: OptionGroup.Undo method (Access) keywords: vbaac10.chm10811 f1_keywords: - vbaac10.chm10811 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Undo Method (Access) +# OptionGroup.Undo method (Access) You can use the **Undo** method to reset a control or form when its value has been changed. ## Syntax - _expression_. `Undo` +_expression_. `Undo` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.ValidationRule.md b/api/Access.OptionGroup.ValidationRule.md index fbc870124eb..d768ce1aaa1 100644 --- a/api/Access.OptionGroup.ValidationRule.md +++ b/api/Access.OptionGroup.ValidationRule.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.ValidationRule Property (Access) +title: OptionGroup.ValidationRule property (Access) keywords: vbaac10.chm10824 f1_keywords: - vbaac10.chm10824 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.ValidationRule Property (Access) +# OptionGroup.ValidationRule property (Access) You can use the **ValidationRule** property to specify requirements for data entered into a record, field, or control. When data is entered that violates the **ValidationRule** setting, you can use the **ValidationText** property to specify the message to be displayed to the user. Read/write **String**. ## Syntax - _expression_. `ValidationRule` +_expression_. `ValidationRule` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.ValidationText.md b/api/Access.OptionGroup.ValidationText.md index 82a7699082f..7180ad8a555 100644 --- a/api/Access.OptionGroup.ValidationText.md +++ b/api/Access.OptionGroup.ValidationText.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.ValidationText Property (Access) +title: OptionGroup.ValidationText property (Access) keywords: vbaac10.chm10825 f1_keywords: - vbaac10.chm10825 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.ValidationText Property (Access) +# OptionGroup.ValidationText property (Access) Use the **ValidationText** property to specify a message to be displayed to the user when data is entered that violates a **ValidationRule** setting for a record, field, or control. Read/write **String**. ## Syntax - _expression_. `ValidationText` +_expression_. `ValidationText` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Value.md b/api/Access.OptionGroup.Value.md index ea4f6ec7683..9ff136e2046 100644 --- a/api/Access.OptionGroup.Value.md +++ b/api/Access.OptionGroup.Value.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Value Property (Access) +title: OptionGroup.Value property (Access) keywords: vbaac10.chm10818 f1_keywords: - vbaac10.chm10818 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Value Property (Access) +# OptionGroup.Value property (Access) Gets or sets whether or not the specified option button is selected. Read/write **Variant**. ## Syntax - _expression_. `Value` +_expression_. `Value` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.VerticalAnchor.md b/api/Access.OptionGroup.VerticalAnchor.md index c54b1b72af9..cdc4c1d979c 100644 --- a/api/Access.OptionGroup.VerticalAnchor.md +++ b/api/Access.OptionGroup.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.VerticalAnchor Property (Access) +title: OptionGroup.VerticalAnchor property (Access) keywords: vbaac10.chm10884 f1_keywords: - vbaac10.chm10884 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.VerticalAnchor Property (Access) +# OptionGroup.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified option group is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Visible.md b/api/Access.OptionGroup.Visible.md index fd93859d135..4feec446f80 100644 --- a/api/Access.OptionGroup.Visible.md +++ b/api/Access.OptionGroup.Visible.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Visible Property (Access) +title: OptionGroup.Visible property (Access) keywords: vbaac10.chm10827 f1_keywords: - vbaac10.chm10827 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Visible Property (Access) +# OptionGroup.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.Width.md b/api/Access.OptionGroup.Width.md index 2a663a2c106..b5aff8cea61 100644 --- a/api/Access.OptionGroup.Width.md +++ b/api/Access.OptionGroup.Width.md @@ -1,5 +1,5 @@ --- -title: OptionGroup.Width Property (Access) +title: OptionGroup.Width property (Access) keywords: vbaac10.chm10836 f1_keywords: - vbaac10.chm10836 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# OptionGroup.Width Property (Access) +# OptionGroup.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. +_expression_ A variable that represents an [OptionGroup](Access.OptionGroup.md) object. ## Remarks diff --git a/api/Access.OptionGroup.md b/api/Access.OptionGroup.md index ae47bcd2529..d4e14f5316e 100644 --- a/api/Access.OptionGroup.md +++ b/api/Access.OptionGroup.md @@ -1,5 +1,5 @@ --- -title: OptionGroup Object (Access) +title: OptionGroup object (Access) keywords: vbaac10.chm10894 f1_keywords: - vbaac10.chm10894 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# OptionGroup Object (Access) +# OptionGroup object (Access) An option group on a form or report displays a limited set of alternatives. An option group makes selecting a value easy since you can just click the value you want. Only one option in an option group can be selected at a time. diff --git a/api/Access.Page.Application.md b/api/Access.Page.Application.md index 5fc59333efa..12d1aaf1e76 100644 --- a/api/Access.Page.Application.md +++ b/api/Access.Page.Application.md @@ -1,5 +1,5 @@ --- -title: Page.Application Property (Access) +title: Page.Application property (Access) keywords: vbaac10.chm12138 f1_keywords: - vbaac10.chm12138 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Application Property (Access) +# Page.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.Caption.md b/api/Access.Page.Caption.md index e35b925cb75..ebd00b7c874 100644 --- a/api/Access.Page.Caption.md +++ b/api/Access.Page.Caption.md @@ -1,5 +1,5 @@ --- -title: Page.Caption Property (Access) +title: Page.Caption property (Access) keywords: vbaac10.chm12148 f1_keywords: - vbaac10.chm12148 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Caption Property (Access) +# Page.Caption property (Access) Gets or sets the text that appears at the top of the page. Read/write **String**. ## Syntax - _expression_. `Caption` +_expression_. `Caption` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.Click.md b/api/Access.Page.Click.md index 7b4f6153373..95f19e6ca48 100644 --- a/api/Access.Page.Click.md +++ b/api/Access.Page.Click.md @@ -1,5 +1,5 @@ --- -title: Page.Click Event (Access) +title: Page.Click event (Access) keywords: vbaac10.chm14279 f1_keywords: - vbaac10.chm14279 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Click Event (Access) +# Page.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.ControlTipText.md b/api/Access.Page.ControlTipText.md index c747b214f58..734597067c0 100644 --- a/api/Access.Page.ControlTipText.md +++ b/api/Access.Page.ControlTipText.md @@ -1,5 +1,5 @@ --- -title: Page.ControlTipText Property (Access) +title: Page.ControlTipText property (Access) keywords: vbaac10.chm12160 f1_keywords: - vbaac10.chm12160 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.ControlTipText Property (Access) +# Page.ControlTipText property (Access) You can use the **ControlTipText** property to specify the text that appears in a ScreenTip when you hold the mouse pointer over a control. Read/write **String**. ## Syntax - _expression_. `ControlTipText` +_expression_. `ControlTipText` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.ControlType.md b/api/Access.Page.ControlType.md index 98d47035071..82706985177 100644 --- a/api/Access.Page.ControlType.md +++ b/api/Access.Page.ControlType.md @@ -1,5 +1,5 @@ --- -title: Page.ControlType Property (Access) +title: Page.ControlType property (Access) keywords: vbaac10.chm12147 f1_keywords: - vbaac10.chm12147 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.ControlType Property (Access) +# Page.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.Controls.md b/api/Access.Page.Controls.md index ec64670138a..35e5731fd71 100644 --- a/api/Access.Page.Controls.md +++ b/api/Access.Page.Controls.md @@ -1,5 +1,5 @@ --- -title: Page.Controls Property (Access) +title: Page.Controls property (Access) keywords: vbaac10.chm12144 f1_keywords: - vbaac10.chm12144 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Controls Property (Access) +# Page.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.DblClick.md b/api/Access.Page.DblClick.md index c1796910d86..ab2df453207 100644 --- a/api/Access.Page.DblClick.md +++ b/api/Access.Page.DblClick.md @@ -1,5 +1,5 @@ --- -title: Page.DblClick Event (Access) +title: Page.DblClick event (Access) keywords: vbaac10.chm14280 f1_keywords: - vbaac10.chm14280 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Page.DblClick Event (Access) +# Page.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_` ) +_expression_. `DblClick`( ` _Cancel_` ) - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **DblClick** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **DblClick** event.| diff --git a/api/Access.Page.Enabled.md b/api/Access.Page.Enabled.md index 52586f4f8a7..f0f377ac4ff 100644 --- a/api/Access.Page.Enabled.md +++ b/api/Access.Page.Enabled.md @@ -1,5 +1,5 @@ --- -title: Page.Enabled Property (Access) +title: Page.Enabled property (Access) keywords: vbaac10.chm12154 f1_keywords: - vbaac10.chm12154 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Enabled Property (Access) +# Page.Enabled property (Access) You can use the **Enabled** property to set or return the status of the conditional format in the **[FormatCondition](Access.FormatCondition.md)** object. Read/write **Boolean**. ## Syntax - _expression_. `Enabled` +_expression_. `Enabled` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.EventProcPrefix.md b/api/Access.Page.EventProcPrefix.md index 52cb09489e3..ccbbc8bc652 100644 --- a/api/Access.Page.EventProcPrefix.md +++ b/api/Access.Page.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: Page.EventProcPrefix Property (Access) +title: Page.EventProcPrefix property (Access) keywords: vbaac10.chm12145 f1_keywords: - vbaac10.chm12145 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.EventProcPrefix Property (Access) +# Page.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.Height.md b/api/Access.Page.Height.md index 0eed612a92f..0e4263271a2 100644 --- a/api/Access.Page.Height.md +++ b/api/Access.Page.Height.md @@ -1,5 +1,5 @@ --- -title: Page.Height Property (Access) +title: Page.Height property (Access) keywords: vbaac10.chm12158 f1_keywords: - vbaac10.chm12158 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Height Property (Access) +# Page.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.HelpContextId.md b/api/Access.Page.HelpContextId.md index 92257e69ec8..45ef68933b7 100644 --- a/api/Access.Page.HelpContextId.md +++ b/api/Access.Page.HelpContextId.md @@ -1,5 +1,5 @@ --- -title: Page.HelpContextId Property (Access) +title: Page.HelpContextId property (Access) keywords: vbaac10.chm12161 f1_keywords: - vbaac10.chm12161 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.HelpContextId Property (Access) +# Page.HelpContextId property (Access) The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**. ## Syntax - _expression_. `HelpContextId` +_expression_. `HelpContextId` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.InSelection.md b/api/Access.Page.InSelection.md index 48eec4dd81c..293103be73f 100644 --- a/api/Access.Page.InSelection.md +++ b/api/Access.Page.InSelection.md @@ -1,5 +1,5 @@ --- -title: Page.InSelection Property (Access) +title: Page.InSelection property (Access) keywords: vbaac10.chm12166 f1_keywords: - vbaac10.chm12166 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.InSelection Property (Access) +# Page.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.IsVisible.md b/api/Access.Page.IsVisible.md index 90f3b61b409..e25586267de 100644 --- a/api/Access.Page.IsVisible.md +++ b/api/Access.Page.IsVisible.md @@ -1,5 +1,5 @@ --- -title: Page.IsVisible Property (Access) +title: Page.IsVisible property (Access) keywords: vbaac10.chm12165 f1_keywords: - vbaac10.chm12165 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.IsVisible Property (Access) +# Page.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.Left.md b/api/Access.Page.Left.md index d86d172b79d..6b0981e3ef6 100644 --- a/api/Access.Page.Left.md +++ b/api/Access.Page.Left.md @@ -1,5 +1,5 @@ --- -title: Page.Left Property (Access) +title: Page.Left property (Access) keywords: vbaac10.chm12155 f1_keywords: - vbaac10.chm12155 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Left Property (Access) +# Page.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.MouseDown.md b/api/Access.Page.MouseDown.md index a5846024520..b5a1042b417 100644 --- a/api/Access.Page.MouseDown.md +++ b/api/Access.Page.MouseDown.md @@ -1,5 +1,5 @@ --- -title: Page.MouseDown Event (Access) +title: Page.MouseDown event (Access) keywords: vbaac10.chm14281 f1_keywords: - vbaac10.chm14281 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Page.MouseDown Event (Access) +# Page.MouseDown event (Access) The **MouseDown** event occurs when the user presses a mouse button. ## Syntax - _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Page.MouseMove.md b/api/Access.Page.MouseMove.md index af47df9dc31..68980d14c7d 100644 --- a/api/Access.Page.MouseMove.md +++ b/api/Access.Page.MouseMove.md @@ -1,5 +1,5 @@ --- -title: Page.MouseMove Event (Access) +title: Page.MouseMove event (Access) keywords: vbaac10.chm14282 f1_keywords: - vbaac10.chm14282 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Page.MouseMove Event (Access) +# Page.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Page.MouseUp.md b/api/Access.Page.MouseUp.md index 8547fe283b6..ae21f836c95 100644 --- a/api/Access.Page.MouseUp.md +++ b/api/Access.Page.MouseUp.md @@ -1,5 +1,5 @@ --- -title: Page.MouseUp Event (Access) +title: Page.MouseUp event (Access) keywords: vbaac10.chm14283 f1_keywords: - vbaac10.chm14283 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Page.MouseUp Event (Access) +# Page.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Page.Move.md b/api/Access.Page.Move.md index 389b6c0ca61..fa1b4feab95 100644 --- a/api/Access.Page.Move.md +++ b/api/Access.Page.Move.md @@ -1,5 +1,5 @@ --- -title: Page.Move Method (Access) +title: Page.Move method (Access) keywords: vbaac10.chm12174 f1_keywords: - vbaac10.chm12174 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Page.Move Method (Access) +# Page.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.Page.Name.md b/api/Access.Page.Name.md index f704febf3d4..4bf482fa92e 100644 --- a/api/Access.Page.Name.md +++ b/api/Access.Page.Name.md @@ -1,5 +1,5 @@ --- -title: Page.Name Property (Access) +title: Page.Name property (Access) keywords: vbaac10.chm12173 f1_keywords: - vbaac10.chm12173 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Name Property (Access) +# Page.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.OnClick.md b/api/Access.Page.OnClick.md index 804ee9b21df..84c6197a07e 100644 --- a/api/Access.Page.OnClick.md +++ b/api/Access.Page.OnClick.md @@ -1,5 +1,5 @@ --- -title: Page.OnClick Property (Access) +title: Page.OnClick property (Access) keywords: vbaac10.chm12167 f1_keywords: - vbaac10.chm12167 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.OnClick Property (Access) +# Page.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Page.OnDblClick.md b/api/Access.Page.OnDblClick.md index f45a10f4967..56b06a7b6e5 100644 --- a/api/Access.Page.OnDblClick.md +++ b/api/Access.Page.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: Page.OnDblClick Property (Access) +title: Page.OnDblClick property (Access) keywords: vbaac10.chm12168 f1_keywords: - vbaac10.chm12168 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.OnDblClick Property (Access) +# Page.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Page.OnMouseDown.md b/api/Access.Page.OnMouseDown.md index 3c407120450..5714c2b8c4c 100644 --- a/api/Access.Page.OnMouseDown.md +++ b/api/Access.Page.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: Page.OnMouseDown Property (Access) +title: Page.OnMouseDown property (Access) keywords: vbaac10.chm12169 f1_keywords: - vbaac10.chm12169 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.OnMouseDown Property (Access) +# Page.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Page.OnMouseMove.md b/api/Access.Page.OnMouseMove.md index b992e5f49b6..4bf23171abd 100644 --- a/api/Access.Page.OnMouseMove.md +++ b/api/Access.Page.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: Page.OnMouseMove Property (Access) +title: Page.OnMouseMove property (Access) keywords: vbaac10.chm12170 f1_keywords: - vbaac10.chm12170 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.OnMouseMove Property (Access) +# Page.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Page.OnMouseUp.md b/api/Access.Page.OnMouseUp.md index 193e6dcd595..246fd94102a 100644 --- a/api/Access.Page.OnMouseUp.md +++ b/api/Access.Page.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: Page.OnMouseUp Property (Access) +title: Page.OnMouseUp property (Access) keywords: vbaac10.chm12171 f1_keywords: - vbaac10.chm12171 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.OnMouseUp Property (Access) +# Page.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Page.PageIndex.md b/api/Access.Page.PageIndex.md index c3e59238432..cac52a0aedf 100644 --- a/api/Access.Page.PageIndex.md +++ b/api/Access.Page.PageIndex.md @@ -1,5 +1,5 @@ --- -title: Page.PageIndex Property (Access) +title: Page.PageIndex property (Access) keywords: vbaac10.chm12151,vbaac10.chm4455 f1_keywords: - vbaac10.chm12151,vbaac10.chm4455 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.PageIndex Property (Access) +# Page.PageIndex property (Access) You can use the **PageIndex** property to specify or determine the position of a **[Page](Access.Page.md)** object within a **[Pages](Access.Pages.md)** collection. The **PageIndex** property specifies the order in which the pages on a tab control appear. Read/write **Integer**. ## Syntax - _expression_. `PageIndex` +_expression_. `PageIndex` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.Parent.md b/api/Access.Page.Parent.md index 7be9cde11ed..e61acc20b77 100644 --- a/api/Access.Page.Parent.md +++ b/api/Access.Page.Parent.md @@ -1,5 +1,5 @@ --- -title: Page.Parent Property (Access) +title: Page.Parent property (Access) keywords: vbaac10.chm12139 f1_keywords: - vbaac10.chm12139 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Parent Property (Access) +# Page.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## See also diff --git a/api/Access.Page.Picture.md b/api/Access.Page.Picture.md index 33e5c7670c5..4f061132663 100644 --- a/api/Access.Page.Picture.md +++ b/api/Access.Page.Picture.md @@ -1,5 +1,5 @@ --- -title: Page.Picture Property (Access) +title: Page.Picture property (Access) keywords: vbaac10.chm12149 f1_keywords: - vbaac10.chm12149 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Picture Property (Access) +# Page.Picture property (Access) You can use the **Picture** property to specify a bitmap or other type of graphic to be displayed on the specified control. Read/write **String**. ## Syntax - _expression_. `Picture` +_expression_. `Picture` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.PictureData.md b/api/Access.Page.PictureData.md index 6f1c1f09869..81c0ba8e338 100644 --- a/api/Access.Page.PictureData.md +++ b/api/Access.Page.PictureData.md @@ -1,5 +1,5 @@ --- -title: Page.PictureData Property (Access) +title: Page.PictureData property (Access) keywords: vbaac10.chm12172 f1_keywords: - vbaac10.chm12172 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.PictureData Property (Access) +# Page.PictureData property (Access) You can use the **PictureData** property to copy the picture to another object that supports the **Picture** property. Read/write **Variant**. ## Syntax - _expression_. `PictureData` +_expression_. `PictureData` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.PictureType.md b/api/Access.Page.PictureType.md index be52515d67e..bb7c4a681e1 100644 --- a/api/Access.Page.PictureType.md +++ b/api/Access.Page.PictureType.md @@ -1,5 +1,5 @@ --- -title: Page.PictureType Property (Access) +title: Page.PictureType property (Access) keywords: vbaac10.chm12150 f1_keywords: - vbaac10.chm12150 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.PictureType Property (Access) +# Page.PictureType property (Access) You can use the **PictureType** property to specify whether Microsoft Access stores an object's picture as a linked or an embedded object. Read/write **Byte**. ## Syntax - _expression_. `PictureType` +_expression_. `PictureType` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.Properties.md b/api/Access.Page.Properties.md index 46a25b0338d..a2ba2ff76f9 100644 --- a/api/Access.Page.Properties.md +++ b/api/Access.Page.Properties.md @@ -1,5 +1,5 @@ --- -title: Page.Properties Property (Access) +title: Page.Properties property (Access) keywords: vbaac10.chm12140 f1_keywords: - vbaac10.chm12140 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Properties Property (Access) +# Page.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.Requery.md b/api/Access.Page.Requery.md index f21a3fc7827..d73d7676ee3 100644 --- a/api/Access.Page.Requery.md +++ b/api/Access.Page.Requery.md @@ -1,5 +1,5 @@ --- -title: Page.Requery Method (Access) +title: Page.Requery method (Access) keywords: vbaac10.chm12142 f1_keywords: - vbaac10.chm12142 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Requery Method (Access) +# Page.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.Section.md b/api/Access.Page.Section.md index abba0e89add..7cf50168b3c 100644 --- a/api/Access.Page.Section.md +++ b/api/Access.Page.Section.md @@ -1,5 +1,5 @@ --- -title: Page.Section Property (Access) +title: Page.Section property (Access) keywords: vbaac10.chm12162 f1_keywords: - vbaac10.chm12162 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Section Property (Access) +# Page.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.SetFocus.md b/api/Access.Page.SetFocus.md index c34001bf864..e205d399501 100644 --- a/api/Access.Page.SetFocus.md +++ b/api/Access.Page.SetFocus.md @@ -1,5 +1,5 @@ --- -title: Page.SetFocus Method (Access) +title: Page.SetFocus method (Access) keywords: vbaac10.chm12143 f1_keywords: - vbaac10.chm12143 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# Page.SetFocus Method (Access) +# Page.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.Page.SetTabOrder.md b/api/Access.Page.SetTabOrder.md index 66f53e35d6e..60ebe0752a8 100644 --- a/api/Access.Page.SetTabOrder.md +++ b/api/Access.Page.SetTabOrder.md @@ -1,5 +1,5 @@ --- -title: Page.SetTabOrder Method (Access) +title: Page.SetTabOrder method (Access) keywords: vbaac10.chm14294 f1_keywords: - vbaac10.chm14294 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.SetTabOrder Method (Access) +# Page.SetTabOrder method (Access) Resets the tab order of the controls in the specified **Page** to their default values. ## Syntax - _expression_. `SetTabOrder` +_expression_. `SetTabOrder` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## See also diff --git a/api/Access.Page.ShortcutMenuBar.md b/api/Access.Page.ShortcutMenuBar.md index 077e4be1480..d96829ab418 100644 --- a/api/Access.Page.ShortcutMenuBar.md +++ b/api/Access.Page.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: Page.ShortcutMenuBar Property (Access) +title: Page.ShortcutMenuBar property (Access) keywords: vbaac10.chm12159 f1_keywords: - vbaac10.chm12159 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.ShortcutMenuBar Property (Access) +# Page.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.SizeToFit.md b/api/Access.Page.SizeToFit.md index 5bf4236b6bd..00a565960d9 100644 --- a/api/Access.Page.SizeToFit.md +++ b/api/Access.Page.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: Page.SizeToFit Method (Access) +title: Page.SizeToFit method (Access) keywords: vbaac10.chm12141 f1_keywords: - vbaac10.chm12141 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.SizeToFit Method (Access) +# Page.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.StatusBarText.md b/api/Access.Page.StatusBarText.md index dd3426e9be2..ffad10cf243 100644 --- a/api/Access.Page.StatusBarText.md +++ b/api/Access.Page.StatusBarText.md @@ -1,5 +1,5 @@ --- -title: Page.StatusBarText Property (Access) +title: Page.StatusBarText property (Access) keywords: vbaac10.chm12152 f1_keywords: - vbaac10.chm12152 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.StatusBarText Property (Access) +# Page.StatusBarText property (Access) You can use the **StatusBarText** property to specify the text that is displayed in the status bar when a control is selected. Read/write **String**. ## Syntax - _expression_. `StatusBarText` +_expression_. `StatusBarText` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.Tag.md b/api/Access.Page.Tag.md index 9f3ca3e547d..794a5d990f9 100644 --- a/api/Access.Page.Tag.md +++ b/api/Access.Page.Tag.md @@ -1,5 +1,5 @@ --- -title: Page.Tag Property (Access) +title: Page.Tag property (Access) keywords: vbaac10.chm12164 f1_keywords: - vbaac10.chm12164 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Tag Property (Access) +# Page.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.Top.md b/api/Access.Page.Top.md index 1fdae11d74f..61320386c09 100644 --- a/api/Access.Page.Top.md +++ b/api/Access.Page.Top.md @@ -1,5 +1,5 @@ --- -title: Page.Top Property (Access) +title: Page.Top property (Access) keywords: vbaac10.chm12156 f1_keywords: - vbaac10.chm12156 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Top Property (Access) +# Page.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.Visible.md b/api/Access.Page.Visible.md index 651702f5d2c..f8da124ea9b 100644 --- a/api/Access.Page.Visible.md +++ b/api/Access.Page.Visible.md @@ -1,5 +1,5 @@ --- -title: Page.Visible Property (Access) +title: Page.Visible property (Access) keywords: vbaac10.chm12153 f1_keywords: - vbaac10.chm12153 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Visible Property (Access) +# Page.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.Width.md b/api/Access.Page.Width.md index c5e620b5d68..0b145778c8d 100644 --- a/api/Access.Page.Width.md +++ b/api/Access.Page.Width.md @@ -1,5 +1,5 @@ --- -title: Page.Width Property (Access) +title: Page.Width property (Access) keywords: vbaac10.chm12157 f1_keywords: - vbaac10.chm12157 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Page.Width Property (Access) +# Page.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [Page](Access.Page.md) object. +_expression_ A variable that represents a [Page](Access.Page.md) object. ## Remarks diff --git a/api/Access.Page.md b/api/Access.Page.md index ba894a6d215..bdaface2a81 100644 --- a/api/Access.Page.md +++ b/api/Access.Page.md @@ -1,5 +1,5 @@ --- -title: Page Object (Access) +title: Page object (Access) keywords: vbaac10.chm10124 f1_keywords: - vbaac10.chm10124 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Page Object (Access) +# Page object (Access) A **Page** object corresponds to an individual page on a tab control. diff --git a/api/Access.PageBreak.Application.md b/api/Access.PageBreak.Application.md index 1c8c4ebdf3e..d323a56a7af 100644 --- a/api/Access.PageBreak.Application.md +++ b/api/Access.PageBreak.Application.md @@ -1,5 +1,5 @@ --- -title: PageBreak.Application Property (Access) +title: PageBreak.Application property (Access) keywords: vbaac10.chm11667 f1_keywords: - vbaac10.chm11667 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# PageBreak.Application Property (Access) +# PageBreak.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. +_expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. ## Remarks diff --git a/api/Access.PageBreak.ControlType.md b/api/Access.PageBreak.ControlType.md index 3a08439b3fe..676b5b61f92 100644 --- a/api/Access.PageBreak.ControlType.md +++ b/api/Access.PageBreak.ControlType.md @@ -1,5 +1,5 @@ --- -title: PageBreak.ControlType Property (Access) +title: PageBreak.ControlType property (Access) keywords: vbaac10.chm11673 f1_keywords: - vbaac10.chm11673 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# PageBreak.ControlType Property (Access) +# PageBreak.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. +_expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. ## Remarks diff --git a/api/Access.PageBreak.EventProcPrefix.md b/api/Access.PageBreak.EventProcPrefix.md index 0d6c85e919b..021f3dfc3aa 100644 --- a/api/Access.PageBreak.EventProcPrefix.md +++ b/api/Access.PageBreak.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: PageBreak.EventProcPrefix Property (Access) +title: PageBreak.EventProcPrefix property (Access) keywords: vbaac10.chm11671 f1_keywords: - vbaac10.chm11671 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# PageBreak.EventProcPrefix Property (Access) +# PageBreak.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. +_expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. ## Remarks diff --git a/api/Access.PageBreak.InSelection.md b/api/Access.PageBreak.InSelection.md index 75fbd2060d4..5c8aeeec3f0 100644 --- a/api/Access.PageBreak.InSelection.md +++ b/api/Access.PageBreak.InSelection.md @@ -1,5 +1,5 @@ --- -title: PageBreak.InSelection Property (Access) +title: PageBreak.InSelection property (Access) keywords: vbaac10.chm11680 f1_keywords: - vbaac10.chm11680 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# PageBreak.InSelection Property (Access) +# PageBreak.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. +_expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. ## Remarks diff --git a/api/Access.PageBreak.IsVisible.md b/api/Access.PageBreak.IsVisible.md index 8590aa39368..ea16478584f 100644 --- a/api/Access.PageBreak.IsVisible.md +++ b/api/Access.PageBreak.IsVisible.md @@ -1,5 +1,5 @@ --- -title: PageBreak.IsVisible Property (Access) +title: PageBreak.IsVisible property (Access) keywords: vbaac10.chm11679 f1_keywords: - vbaac10.chm11679 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# PageBreak.IsVisible Property (Access) +# PageBreak.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. +_expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. ## Remarks diff --git a/api/Access.PageBreak.Left.md b/api/Access.PageBreak.Left.md index f03fb002e6b..042f032b282 100644 --- a/api/Access.PageBreak.Left.md +++ b/api/Access.PageBreak.Left.md @@ -1,5 +1,5 @@ --- -title: PageBreak.Left Property (Access) +title: PageBreak.Left property (Access) keywords: vbaac10.chm11674 f1_keywords: - vbaac10.chm11674 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# PageBreak.Left Property (Access) +# PageBreak.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. +_expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. ## Remarks diff --git a/api/Access.PageBreak.Move.md b/api/Access.PageBreak.Move.md index 38704f28939..cccac86b81c 100644 --- a/api/Access.PageBreak.Move.md +++ b/api/Access.PageBreak.Move.md @@ -1,5 +1,5 @@ --- -title: PageBreak.Move Method (Access) +title: PageBreak.Move method (Access) keywords: vbaac10.chm11683 f1_keywords: - vbaac10.chm11683 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# PageBreak.Move Method (Access) +# PageBreak.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. +_expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.PageBreak.Name.md b/api/Access.PageBreak.Name.md index 5ed71df093f..6cd650f4487 100644 --- a/api/Access.PageBreak.Name.md +++ b/api/Access.PageBreak.Name.md @@ -1,5 +1,5 @@ --- -title: PageBreak.Name Property (Access) +title: PageBreak.Name property (Access) keywords: vbaac10.chm11682 f1_keywords: - vbaac10.chm11682 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# PageBreak.Name Property (Access) +# PageBreak.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. +_expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. ## Remarks diff --git a/api/Access.PageBreak.Parent.md b/api/Access.PageBreak.Parent.md index 31236db3c79..b0c4e32dfe3 100644 --- a/api/Access.PageBreak.Parent.md +++ b/api/Access.PageBreak.Parent.md @@ -1,5 +1,5 @@ --- -title: PageBreak.Parent Property (Access) +title: PageBreak.Parent property (Access) keywords: vbaac10.chm11668 f1_keywords: - vbaac10.chm11668 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# PageBreak.Parent Property (Access) +# PageBreak.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. +_expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. ## See also diff --git a/api/Access.PageBreak.Properties.md b/api/Access.PageBreak.Properties.md index 0b1e7e14f2c..e5640466874 100644 --- a/api/Access.PageBreak.Properties.md +++ b/api/Access.PageBreak.Properties.md @@ -1,5 +1,5 @@ --- -title: PageBreak.Properties Property (Access) +title: PageBreak.Properties property (Access) keywords: vbaac10.chm11669 f1_keywords: - vbaac10.chm11669 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# PageBreak.Properties Property (Access) +# PageBreak.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. +_expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. ## Remarks diff --git a/api/Access.PageBreak.Section.md b/api/Access.PageBreak.Section.md index 90d4a1ec856..c58deca3fca 100644 --- a/api/Access.PageBreak.Section.md +++ b/api/Access.PageBreak.Section.md @@ -1,5 +1,5 @@ --- -title: PageBreak.Section Property (Access) +title: PageBreak.Section property (Access) keywords: vbaac10.chm11677 f1_keywords: - vbaac10.chm11677 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# PageBreak.Section Property (Access) +# PageBreak.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. +_expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. ## Remarks diff --git a/api/Access.PageBreak.SizeToFit.md b/api/Access.PageBreak.SizeToFit.md index 7236dcd85fb..2b51cdaa897 100644 --- a/api/Access.PageBreak.SizeToFit.md +++ b/api/Access.PageBreak.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: PageBreak.SizeToFit Method (Access) +title: PageBreak.SizeToFit method (Access) keywords: vbaac10.chm11670 f1_keywords: - vbaac10.chm11670 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# PageBreak.SizeToFit Method (Access) +# PageBreak.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. +_expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. ## Remarks diff --git a/api/Access.PageBreak.Tag.md b/api/Access.PageBreak.Tag.md index 8d8e8d55d5b..0d7618ec612 100644 --- a/api/Access.PageBreak.Tag.md +++ b/api/Access.PageBreak.Tag.md @@ -1,5 +1,5 @@ --- -title: PageBreak.Tag Property (Access) +title: PageBreak.Tag property (Access) keywords: vbaac10.chm11676 f1_keywords: - vbaac10.chm11676 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# PageBreak.Tag Property (Access) +# PageBreak.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. +_expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. ## Remarks diff --git a/api/Access.PageBreak.Top.md b/api/Access.PageBreak.Top.md index e7288a9d365..a9fcaa64a76 100644 --- a/api/Access.PageBreak.Top.md +++ b/api/Access.PageBreak.Top.md @@ -1,5 +1,5 @@ --- -title: PageBreak.Top Property (Access) +title: PageBreak.Top property (Access) keywords: vbaac10.chm11675 f1_keywords: - vbaac10.chm11675 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# PageBreak.Top Property (Access) +# PageBreak.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. +_expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. ## Remarks diff --git a/api/Access.PageBreak.Visible.md b/api/Access.PageBreak.Visible.md index 683c393ff24..61ec8239872 100644 --- a/api/Access.PageBreak.Visible.md +++ b/api/Access.PageBreak.Visible.md @@ -1,5 +1,5 @@ --- -title: PageBreak.Visible Property (Access) +title: PageBreak.Visible property (Access) keywords: vbaac10.chm11678 f1_keywords: - vbaac10.chm11678 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# PageBreak.Visible Property (Access) +# PageBreak.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. +_expression_ A variable that represents a [PageBreak](Access.PageBreak.md) object. ## Remarks diff --git a/api/Access.PageBreak.md b/api/Access.PageBreak.md index b95067428ad..4d86fe47dce 100644 --- a/api/Access.PageBreak.md +++ b/api/Access.PageBreak.md @@ -1,5 +1,5 @@ --- -title: PageBreak Object (Access) +title: PageBreak object (Access) keywords: vbaac10.chm11685 f1_keywords: - vbaac10.chm11685 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# PageBreak Object (Access) +# PageBreak object (Access) This object corresponds to a page break control. The page break control marks the start of a new screen or printed page on a form or report. diff --git a/api/Access.Pages.Add.md b/api/Access.Pages.Add.md index 07eb8d261af..26fda6ab578 100644 --- a/api/Access.Pages.Add.md +++ b/api/Access.Pages.Add.md @@ -1,5 +1,5 @@ --- -title: Pages.Add Method (Access) +title: Pages.Add method (Access) keywords: vbaac10.chm10128 f1_keywords: - vbaac10.chm10128 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# Pages.Add Method (Access) +# Pages.Add method (Access) The **Add** method adds a new **[Page](Access.Page.md)** object to the **[Pages](Access.Pages.md)** collection of a tab control. ## Syntax - _expression_. `Add`( ` _Before_` ) +_expression_. `Add`( ` _Before_` ) - _expression_ A variable that represents a [Pages](Access.Pages.md) object. +_expression_ A variable that represents a [Pages](Access.Pages.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Before_|Optional|**Variant**|An **Integer** that specifies the index of the **Page** object before which the new **Page** object should be added. The index of the **Page** object corresponds to the value of the **PageIndex** property for that **Page** object. If you omit this argument, the new **Page** object is added to the end of the collection.| -### Return Value +### Return value Page diff --git a/api/Access.Pages.Count.md b/api/Access.Pages.Count.md index e7ce1fff99f..e818ee20f8c 100644 --- a/api/Access.Pages.Count.md +++ b/api/Access.Pages.Count.md @@ -1,5 +1,5 @@ --- -title: Pages.Count Property (Access) +title: Pages.Count property (Access) keywords: vbaac10.chm10127 f1_keywords: - vbaac10.chm10127 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Pages.Count Property (Access) +# Pages.Count property (Access) You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [Pages](Access.Pages.md) object. +_expression_ A variable that represents a [Pages](Access.Pages.md) object. ## See also diff --git a/api/Access.Pages.Item.md b/api/Access.Pages.Item.md index d42cda73c4d..75244ef889a 100644 --- a/api/Access.Pages.Item.md +++ b/api/Access.Pages.Item.md @@ -1,5 +1,5 @@ --- -title: Pages.Item Property (Access) +title: Pages.Item property (Access) keywords: vbaac10.chm10126 f1_keywords: - vbaac10.chm10126 @@ -11,25 +11,25 @@ ms.date: 06/08/2017 --- -# Pages.Item Property (Access) +# Pages.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **Page**. ## Syntax - _expression_. `Item`( ` _Index_` ) +_expression_. `Item`( ` _Index_` ) - _expression_ A variable that represents a [Pages](Access.Pages.md) object. +_expression_ A variable that represents a [Pages](Access.Pages.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| -| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| +| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| ## Remarks diff --git a/api/Access.Pages.Remove.md b/api/Access.Pages.Remove.md index f6feca30e77..8a153ace08b 100644 --- a/api/Access.Pages.Remove.md +++ b/api/Access.Pages.Remove.md @@ -1,5 +1,5 @@ --- -title: Pages.Remove Method (Access) +title: Pages.Remove method (Access) keywords: vbaac10.chm10129 f1_keywords: - vbaac10.chm10129 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Pages.Remove Method (Access) +# Pages.Remove method (Access) The **Remove** method removes a **[Page](Access.Page.md)** object from the **[Pages](Access.Pages.md)** collection of a tab control. ## Syntax - _expression_. `Remove`( ` _Item_` ) +_expression_. `Remove`( ` _Item_` ) - _expression_ A variable that represents a [Pages](Access.Pages.md) object. +_expression_ A variable that represents a [Pages](Access.Pages.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Item_|Optional|**Variant**|An integer that specifies the index of the **Page** object to be removed. The index of the **Page** object corresponds to the value of the **PageIndex** property for that **Page** object. If you omit this argument, the last **Page** object in the collection is removed.| diff --git a/api/Access.Pages.md b/api/Access.Pages.md index ce446d4a845..7dc12f79836 100644 --- a/api/Access.Pages.md +++ b/api/Access.Pages.md @@ -1,5 +1,5 @@ --- -title: Pages Object (Access) +title: Pages object (Access) keywords: vbaac10.chm10125 f1_keywords: - vbaac10.chm10125 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Pages Object (Access) +# Pages object (Access) The **Pages** collection contains all **[Page](Access.Page.md)** objects in a tab control. diff --git a/api/Access.Printer.BottomMargin.md b/api/Access.Printer.BottomMargin.md index 6006df979ca..04657741f5d 100644 --- a/api/Access.Printer.BottomMargin.md +++ b/api/Access.Printer.BottomMargin.md @@ -1,5 +1,5 @@ --- -title: Printer.BottomMargin Property (Access) +title: Printer.BottomMargin property (Access) keywords: vbaac10.chm12870 f1_keywords: - vbaac10.chm12870 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.BottomMargin Property (Access) +# Printer.BottomMargin property (Access) Along with the **TopMargin**, **RightMargin**, and **LeftMargin** properties, specifies the margins for a printed page. Read/write **Long**. ## Syntax - _expression_. `BottomMargin` +_expression_. `BottomMargin` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## See also diff --git a/api/Access.Printer.ColorMode.md b/api/Access.Printer.ColorMode.md index 9c69ce473d1..4362e4c195e 100644 --- a/api/Access.Printer.ColorMode.md +++ b/api/Access.Printer.ColorMode.md @@ -1,5 +1,5 @@ --- -title: Printer.ColorMode Property (Access) +title: Printer.ColorMode property (Access) keywords: vbaac10.chm12857 f1_keywords: - vbaac10.chm12857 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.ColorMode Property (Access) +# Printer.ColorMode property (Access) Returns or sets an **[AcPrintColor](Access.AcPrintColor.md)** constant representing whether the specified printer should print output in color or monochrome. Read/write. ## Syntax - _expression_. `ColorMode` +_expression_. `ColorMode` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Example diff --git a/api/Access.Printer.ColumnSpacing.md b/api/Access.Printer.ColumnSpacing.md index 08b9c24421e..1b44a2af8ec 100644 --- a/api/Access.Printer.ColumnSpacing.md +++ b/api/Access.Printer.ColumnSpacing.md @@ -1,5 +1,5 @@ --- -title: Printer.ColumnSpacing Property (Access) +title: Printer.ColumnSpacing property (Access) keywords: vbaac10.chm12874 f1_keywords: - vbaac10.chm12874 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.ColumnSpacing Property (Access) +# Printer.ColumnSpacing property (Access) Returns or sets a **Long** representing the vertical space between detail sections in twips. Read/write. ## Syntax - _expression_. `ColumnSpacing` +_expression_. `ColumnSpacing` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Example diff --git a/api/Access.Printer.Copies.md b/api/Access.Printer.Copies.md index 0900ba50c11..108e1f2a5ba 100644 --- a/api/Access.Printer.Copies.md +++ b/api/Access.Printer.Copies.md @@ -1,5 +1,5 @@ --- -title: Printer.Copies Property (Access) +title: Printer.Copies property (Access) keywords: vbaac10.chm12858 f1_keywords: - vbaac10.chm12858 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.Copies Property (Access) +# Printer.Copies property (Access) Returns or sets a **Long** indicating the number of copies to be printed. Read/write. ## Syntax - _expression_. `Copies` +_expression_. `Copies` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Example diff --git a/api/Access.Printer.DataOnly.md b/api/Access.Printer.DataOnly.md index 74819eb1cda..7d36c70ee95 100644 --- a/api/Access.Printer.DataOnly.md +++ b/api/Access.Printer.DataOnly.md @@ -1,5 +1,5 @@ --- -title: Printer.DataOnly Property (Access) +title: Printer.DataOnly property (Access) keywords: vbaac10.chm12871 f1_keywords: - vbaac10.chm12871 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.DataOnly Property (Access) +# Printer.DataOnly property (Access) **True** if Microsoft Access prints only the data from a table or query in Datasheet View and not the labels, control borders, gridlines, and display graphics. Read/write **Boolean**. ## Syntax - _expression_. `DataOnly` +_expression_. `DataOnly` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Example diff --git a/api/Access.Printer.DefaultSize.md b/api/Access.Printer.DefaultSize.md index f6b2f7dd4a0..ea21f402e3f 100644 --- a/api/Access.Printer.DefaultSize.md +++ b/api/Access.Printer.DefaultSize.md @@ -1,5 +1,5 @@ --- -title: Printer.DefaultSize Property (Access) +title: Printer.DefaultSize property (Access) keywords: vbaac10.chm12875 f1_keywords: - vbaac10.chm12875 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.DefaultSize Property (Access) +# Printer.DefaultSize property (Access) **True** if the size of the detail section in Design View is used for printing; otherwise, the values of the **[ItemSizeHeight](Access.Printer.ItemSizeHeight.md)** and **[ItemSizeWidth](Access.Printer.ItemSizeWidth.md)** properties are used. Read/write **Boolean**. ## Syntax - _expression_. `DefaultSize` +_expression_. `DefaultSize` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Remarks diff --git a/api/Access.Printer.DeviceName.md b/api/Access.Printer.DeviceName.md index 1a0f7cd2afc..c29417f1a0f 100644 --- a/api/Access.Printer.DeviceName.md +++ b/api/Access.Printer.DeviceName.md @@ -1,5 +1,5 @@ --- -title: Printer.DeviceName Property (Access) +title: Printer.DeviceName property (Access) keywords: vbaac10.chm12859 f1_keywords: - vbaac10.chm12859 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.DeviceName Property (Access) +# Printer.DeviceName property (Access) Returns a **String** indicating name of the specified printer device. Read-only. ## Syntax - _expression_. `DeviceName` +_expression_. `DeviceName` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Example diff --git a/api/Access.Printer.DriverName.md b/api/Access.Printer.DriverName.md index 1e7986ed965..91d06266836 100644 --- a/api/Access.Printer.DriverName.md +++ b/api/Access.Printer.DriverName.md @@ -1,5 +1,5 @@ --- -title: Printer.DriverName Property (Access) +title: Printer.DriverName property (Access) keywords: vbaac10.chm12860 f1_keywords: - vbaac10.chm12860 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.DriverName Property (Access) +# Printer.DriverName property (Access) Returns a **String** indicating the name of the driver used by the specified printer. Read-only. ## Syntax - _expression_. `DriverName` +_expression_. `DriverName` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Example diff --git a/api/Access.Printer.Duplex.md b/api/Access.Printer.Duplex.md index 897991cc6da..0f6d1cef6a0 100644 --- a/api/Access.Printer.Duplex.md +++ b/api/Access.Printer.Duplex.md @@ -1,5 +1,5 @@ --- -title: Printer.Duplex Property (Access) +title: Printer.Duplex property (Access) keywords: vbaac10.chm12861 f1_keywords: - vbaac10.chm12861 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.Duplex Property (Access) +# Printer.Duplex property (Access) Returns or sets an **[AcPrintDuplex](Access.AcPrintDuplex.md)** constant indicating how the specified printer handles duplex printing. Read/write. ## Syntax - _expression_. `Duplex` +_expression_. `Duplex` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Example diff --git a/api/Access.Printer.ItemLayout.md b/api/Access.Printer.ItemLayout.md index b34391f4d6d..e70f41296b5 100644 --- a/api/Access.Printer.ItemLayout.md +++ b/api/Access.Printer.ItemLayout.md @@ -1,5 +1,5 @@ --- -title: Printer.ItemLayout Property (Access) +title: Printer.ItemLayout property (Access) keywords: vbaac10.chm12878 f1_keywords: - vbaac10.chm12878 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.ItemLayout Property (Access) +# Printer.ItemLayout property (Access) Returns or sets an **[AcPrintItemLayout](Access.AcPrintItemLayout.md)** constant indicating whether the printer lays columns across, then down, or down, then across. Read/write. ## Syntax - _expression_. `ItemLayout` +_expression_. `ItemLayout` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Example diff --git a/api/Access.Printer.ItemSizeHeight.md b/api/Access.Printer.ItemSizeHeight.md index a90a8b137c4..e1e6e5a8ce9 100644 --- a/api/Access.Printer.ItemSizeHeight.md +++ b/api/Access.Printer.ItemSizeHeight.md @@ -1,5 +1,5 @@ --- -title: Printer.ItemSizeHeight Property (Access) +title: Printer.ItemSizeHeight property (Access) keywords: vbaac10.chm12877 f1_keywords: - vbaac10.chm12877 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.ItemSizeHeight Property (Access) +# Printer.ItemSizeHeight property (Access) Returns or sets a **Long** indicating the height of the detail section of a form or report in twips. Read/write. ## Syntax - _expression_. `ItemSizeHeight` +_expression_. `ItemSizeHeight` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Example diff --git a/api/Access.Printer.ItemSizeWidth.md b/api/Access.Printer.ItemSizeWidth.md index bf9a30ab002..49373b66378 100644 --- a/api/Access.Printer.ItemSizeWidth.md +++ b/api/Access.Printer.ItemSizeWidth.md @@ -1,5 +1,5 @@ --- -title: Printer.ItemSizeWidth Property (Access) +title: Printer.ItemSizeWidth property (Access) keywords: vbaac10.chm12876 f1_keywords: - vbaac10.chm12876 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.ItemSizeWidth Property (Access) +# Printer.ItemSizeWidth property (Access) Returns or sets a **Long** indicating the height of the detail section of a form or report in twips. Read/write. ## Syntax - _expression_. `ItemSizeWidth` +_expression_. `ItemSizeWidth` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Remarks diff --git a/api/Access.Printer.ItemsAcross.md b/api/Access.Printer.ItemsAcross.md index f551f3344eb..2a87a92035e 100644 --- a/api/Access.Printer.ItemsAcross.md +++ b/api/Access.Printer.ItemsAcross.md @@ -1,5 +1,5 @@ --- -title: Printer.ItemsAcross Property (Access) +title: Printer.ItemsAcross property (Access) keywords: vbaac10.chm12872 f1_keywords: - vbaac10.chm12872 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.ItemsAcross Property (Access) +# Printer.ItemsAcross property (Access) Returns or sets a **Long** indicating the number of columns to print across a page for multiple-column reports or labels. Read/write. ## Syntax - _expression_. `ItemsAcross` +_expression_. `ItemsAcross` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Example diff --git a/api/Access.Printer.LeftMargin.md b/api/Access.Printer.LeftMargin.md index 75b38aa3e7e..1ee3db1b696 100644 --- a/api/Access.Printer.LeftMargin.md +++ b/api/Access.Printer.LeftMargin.md @@ -1,5 +1,5 @@ --- -title: Printer.LeftMargin Property (Access) +title: Printer.LeftMargin property (Access) keywords: vbaac10.chm12867 f1_keywords: - vbaac10.chm12867 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.LeftMargin Property (Access) +# Printer.LeftMargin property (Access) Along with the **TopMargin**, **RightMargin**, and **BottomMargin** properties, specifies the margins for a printed page. Read/write **Long**. ## Syntax - _expression_. `LeftMargin` +_expression_. `LeftMargin` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## See also diff --git a/api/Access.Printer.Orientation.md b/api/Access.Printer.Orientation.md index 08253ab5b7b..5278421331c 100644 --- a/api/Access.Printer.Orientation.md +++ b/api/Access.Printer.Orientation.md @@ -1,5 +1,5 @@ --- -title: Printer.Orientation Property (Access) +title: Printer.Orientation property (Access) keywords: vbaac10.chm12862 f1_keywords: - vbaac10.chm12862 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.Orientation Property (Access) +# Printer.Orientation property (Access) Gets or sets an **[AcPrintOrientation](Access.AcPrintOrientation.md)** constant that represents the print orientation. Read/write. ## Syntax - _expression_. `Orientation` +_expression_. `Orientation` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## See also diff --git a/api/Access.Printer.PaperBin.md b/api/Access.Printer.PaperBin.md index e5b377a16d7..8751aebc73d 100644 --- a/api/Access.Printer.PaperBin.md +++ b/api/Access.Printer.PaperBin.md @@ -1,5 +1,5 @@ --- -title: Printer.PaperBin Property (Access) +title: Printer.PaperBin property (Access) keywords: vbaac10.chm12863 f1_keywords: - vbaac10.chm12863 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.PaperBin Property (Access) +# Printer.PaperBin property (Access) Returns or sets an **[AcPrintPaperBin](Access.AcPrintPaperBin.md)** constant indicating which paper bin the specified printer should use. Read/write. ## Syntax - _expression_. `PaperBin` +_expression_. `PaperBin` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Example diff --git a/api/Access.Printer.PaperSize.md b/api/Access.Printer.PaperSize.md index e907d5aebfb..352fcbd2de2 100644 --- a/api/Access.Printer.PaperSize.md +++ b/api/Access.Printer.PaperSize.md @@ -1,5 +1,5 @@ --- -title: Printer.PaperSize Property (Access) +title: Printer.PaperSize property (Access) keywords: vbaac10.chm12864 f1_keywords: - vbaac10.chm12864 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.PaperSize Property (Access) +# Printer.PaperSize property (Access) Returns or sets an **[AcPrintPaperSize](Access.AcPrintPaperSize.md)** constant indicating the paper size to use when printing. Read/write. ## Syntax - _expression_. `PaperSize` +_expression_. `PaperSize` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Example diff --git a/api/Access.Printer.Port.md b/api/Access.Printer.Port.md index d7682411a86..d8766e3e34b 100644 --- a/api/Access.Printer.Port.md +++ b/api/Access.Printer.Port.md @@ -1,5 +1,5 @@ --- -title: Printer.Port Property (Access) +title: Printer.Port property (Access) keywords: vbaac10.chm12865 f1_keywords: - vbaac10.chm12865 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.Port Property (Access) +# Printer.Port property (Access) Returns a **String** indicating the port name of the specified printer. Read-only. ## Syntax - _expression_. `Port` +_expression_. `Port` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Example diff --git a/api/Access.Printer.PrintQuality.md b/api/Access.Printer.PrintQuality.md index 9a18949b3c6..49697524f6e 100644 --- a/api/Access.Printer.PrintQuality.md +++ b/api/Access.Printer.PrintQuality.md @@ -1,5 +1,5 @@ --- -title: Printer.PrintQuality Property (Access) +title: Printer.PrintQuality property (Access) keywords: vbaac10.chm12866 f1_keywords: - vbaac10.chm12866 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.PrintQuality Property (Access) +# Printer.PrintQuality property (Access) Returns or sets an **[AcPrintObjQuality](Access.AcPrintObjQuality.md)** constant indicating the resolution at which the specified printer should print jobs. Read/write. ## Syntax - _expression_. `PrintQuality` +_expression_. `PrintQuality` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Example diff --git a/api/Access.Printer.RightMargin.md b/api/Access.Printer.RightMargin.md index 6be5c9af131..5458a4f1dbd 100644 --- a/api/Access.Printer.RightMargin.md +++ b/api/Access.Printer.RightMargin.md @@ -1,5 +1,5 @@ --- -title: Printer.RightMargin Property (Access) +title: Printer.RightMargin property (Access) keywords: vbaac10.chm12868 f1_keywords: - vbaac10.chm12868 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.RightMargin Property (Access) +# Printer.RightMargin property (Access) Along with the **TopMargin**, **LeftMargin**, and **BottomMargin** properties, specifies the margins for a printed page. Read/write **Long**. ## Syntax - _expression_. `RightMargin` +_expression_. `RightMargin` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## See also diff --git a/api/Access.Printer.RowSpacing.md b/api/Access.Printer.RowSpacing.md index 3c197fe82e4..a42b9670e83 100644 --- a/api/Access.Printer.RowSpacing.md +++ b/api/Access.Printer.RowSpacing.md @@ -1,5 +1,5 @@ --- -title: Printer.RowSpacing Property (Access) +title: Printer.RowSpacing property (Access) keywords: vbaac10.chm12873 f1_keywords: - vbaac10.chm12873 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.RowSpacing Property (Access) +# Printer.RowSpacing property (Access) Returns or sets a **Long** indicating the horizontal space between detail sections in twips. Read/write. ## Syntax - _expression_. `RowSpacing` +_expression_. `RowSpacing` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## Example diff --git a/api/Access.Printer.TopMargin.md b/api/Access.Printer.TopMargin.md index 124d7bed741..0f05448563f 100644 --- a/api/Access.Printer.TopMargin.md +++ b/api/Access.Printer.TopMargin.md @@ -1,5 +1,5 @@ --- -title: Printer.TopMargin Property (Access) +title: Printer.TopMargin property (Access) keywords: vbaac10.chm12869 f1_keywords: - vbaac10.chm12869 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printer.TopMargin Property (Access) +# Printer.TopMargin property (Access) Along with the **LeftMargin**, **RightMargin**, and **BottomMargin** properties, specifies the margins for a printed page. Read/write **Long**. ## Syntax - _expression_. `TopMargin` +_expression_. `TopMargin` - _expression_ A variable that represents a [Printer](Access.Printer.md) object. +_expression_ A variable that represents a [Printer](Access.Printer.md) object. ## See also diff --git a/api/Access.Printer.md b/api/Access.Printer.md index 405e2f82e4c..fb1a5f33e2f 100644 --- a/api/Access.Printer.md +++ b/api/Access.Printer.md @@ -1,5 +1,5 @@ --- -title: Printer Object (Access) +title: Printer object (Access) keywords: vbaac10.chm12880 f1_keywords: - vbaac10.chm12880 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Printer Object (Access) +# Printer object (Access) A **Printer** object corresponds to a printer available on your system. diff --git a/api/Access.Printers.Application.md b/api/Access.Printers.Application.md index c5118e07474..229b010a278 100644 --- a/api/Access.Printers.Application.md +++ b/api/Access.Printers.Application.md @@ -1,5 +1,5 @@ --- -title: Printers.Application Property (Access) +title: Printers.Application property (Access) keywords: vbaac10.chm12882 f1_keywords: - vbaac10.chm12882 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printers.Application Property (Access) +# Printers.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [Printers](Access.Printers.md) object. +_expression_ A variable that represents a [Printers](Access.Printers.md) object. ## Remarks diff --git a/api/Access.Printers.Count.md b/api/Access.Printers.Count.md index 33fddb1df7a..0ac2428d8fd 100644 --- a/api/Access.Printers.Count.md +++ b/api/Access.Printers.Count.md @@ -1,5 +1,5 @@ --- -title: Printers.Count Property (Access) +title: Printers.Count property (Access) keywords: vbaac10.chm12885 f1_keywords: - vbaac10.chm12885 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printers.Count Property (Access) +# Printers.Count property (Access) You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [Printers](Access.Printers.md) object. +_expression_ A variable that represents a [Printers](Access.Printers.md) object. ## See also diff --git a/api/Access.Printers.Item.md b/api/Access.Printers.Item.md index 2ab65a579ed..eb07339978a 100644 --- a/api/Access.Printers.Item.md +++ b/api/Access.Printers.Item.md @@ -1,5 +1,5 @@ --- -title: Printers.Item Property (Access) +title: Printers.Item property (Access) keywords: vbaac10.chm12884 f1_keywords: - vbaac10.chm12884 @@ -11,25 +11,25 @@ ms.date: 06/08/2017 --- -# Printers.Item Property (Access) +# Printers.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **Printer**. ## Syntax - _expression_. `Item`( ` _Index_` ) +_expression_. `Item`( ` _Index_` ) - _expression_ A variable that represents a [Printers](Access.Printers.md) object. +_expression_ A variable that represents a [Printers](Access.Printers.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| -| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| +| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| ## Remarks diff --git a/api/Access.Printers.Parent.md b/api/Access.Printers.Parent.md index 7f89bddb522..ddb1d0843fe 100644 --- a/api/Access.Printers.Parent.md +++ b/api/Access.Printers.Parent.md @@ -1,5 +1,5 @@ --- -title: Printers.Parent Property (Access) +title: Printers.Parent property (Access) keywords: vbaac10.chm12883 f1_keywords: - vbaac10.chm12883 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Printers.Parent Property (Access) +# Printers.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [Printers](Access.Printers.md) object. +_expression_ A variable that represents a [Printers](Access.Printers.md) object. ## See also diff --git a/api/Access.Printers.md b/api/Access.Printers.md index 1387781cd75..9ec74adbca1 100644 --- a/api/Access.Printers.md +++ b/api/Access.Printers.md @@ -1,5 +1,5 @@ --- -title: Printers Object (Access) +title: Printers object (Access) keywords: vbaac10.chm12881 f1_keywords: - vbaac10.chm12881 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Printers Object (Access) +# Printers object (Access) The **Printers** collection contains **[Printer](Access.Printer.md)** objects representing all the printers available on the current system. diff --git a/api/Access.Properties.Application.md b/api/Access.Properties.Application.md index c3b11b5130b..7385bed66de 100644 --- a/api/Access.Properties.Application.md +++ b/api/Access.Properties.Application.md @@ -1,5 +1,5 @@ --- -title: Properties.Application Property (Access) +title: Properties.Application property (Access) keywords: vbaac10.chm10047 f1_keywords: - vbaac10.chm10047 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Properties.Application Property (Access) +# Properties.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [Properties](Access.Properties.md) object. +_expression_ A variable that represents a [Properties](Access.Properties.md) object. ## Remarks diff --git a/api/Access.Properties.Count.md b/api/Access.Properties.Count.md index cb27cb2926c..4414f19aefa 100644 --- a/api/Access.Properties.Count.md +++ b/api/Access.Properties.Count.md @@ -1,5 +1,5 @@ --- -title: Properties.Count Property (Access) +title: Properties.Count property (Access) keywords: vbaac10.chm10050 f1_keywords: - vbaac10.chm10050 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Properties.Count Property (Access) +# Properties.Count property (Access) Returns the number of objects in the specified collection. Read-only. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [Properties](Access.Properties.md) object. +_expression_ A variable that represents a [Properties](Access.Properties.md) object. ## Remarks diff --git a/api/Access.Properties.Item.md b/api/Access.Properties.Item.md index 3e9ac0fa38f..211348cd3a5 100644 --- a/api/Access.Properties.Item.md +++ b/api/Access.Properties.Item.md @@ -1,5 +1,5 @@ --- -title: Properties.Item Property (Access) +title: Properties.Item property (Access) keywords: vbaac10.chm10049 f1_keywords: - vbaac10.chm10049 @@ -11,25 +11,25 @@ ms.date: 06/08/2017 --- -# Properties.Item Property (Access) +# Properties.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **Object**. ## Syntax - _expression_. `Item`( ` _Index_` ) +_expression_. `Item`( ` _Index_` ) - _expression_ A variable that represents a [Properties](Access.Properties.md) object. +_expression_ A variable that represents a [Properties](Access.Properties.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| -| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| +| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| ## Remarks diff --git a/api/Access.Properties.Parent.md b/api/Access.Properties.Parent.md index f5b00906ec7..b10d7f5ce29 100644 --- a/api/Access.Properties.Parent.md +++ b/api/Access.Properties.Parent.md @@ -1,5 +1,5 @@ --- -title: Properties.Parent Property (Access) +title: Properties.Parent property (Access) keywords: vbaac10.chm10048 f1_keywords: - vbaac10.chm10048 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Properties.Parent Property (Access) +# Properties.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [Properties](Access.Properties.md) object. +_expression_ A variable that represents a [Properties](Access.Properties.md) object. ## See also diff --git a/api/Access.Properties.md b/api/Access.Properties.md index 2fc2023d403..e0486df457a 100644 --- a/api/Access.Properties.md +++ b/api/Access.Properties.md @@ -1,5 +1,5 @@ --- -title: Properties Object (Access) +title: Properties object (Access) keywords: vbaac10.chm10046 f1_keywords: - vbaac10.chm10046 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Properties Object (Access) +# Properties object (Access) The **Properties** collection contains all of the built-in properties in an instance of an open form, report, or control. These properties uniquely characterize that instance of the object. diff --git a/api/Access.Rectangle.Application.md b/api/Access.Rectangle.Application.md index 4d99f9184c6..14d33adfb3d 100644 --- a/api/Access.Rectangle.Application.md +++ b/api/Access.Rectangle.Application.md @@ -1,5 +1,5 @@ --- -title: Rectangle.Application Property (Access) +title: Rectangle.Application property (Access) keywords: vbaac10.chm10274 f1_keywords: - vbaac10.chm10274 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.Application Property (Access) +# Rectangle.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.BackColor.md b/api/Access.Rectangle.BackColor.md index e15f5f504e9..e9bcc459dca 100644 --- a/api/Access.Rectangle.BackColor.md +++ b/api/Access.Rectangle.BackColor.md @@ -1,5 +1,5 @@ --- -title: Rectangle.BackColor Property (Access) +title: Rectangle.BackColor property (Access) keywords: vbaac10.chm10288 f1_keywords: - vbaac10.chm10288 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.BackColor Property (Access) +# Rectangle.BackColor property (Access) Gets or sets the interior color of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackColor` +_expression_. `BackColor` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.BackShade.md b/api/Access.Rectangle.BackShade.md index b3734dc3e3a..2aed667ea67 100644 --- a/api/Access.Rectangle.BackShade.md +++ b/api/Access.Rectangle.BackShade.md @@ -1,5 +1,5 @@ --- -title: Rectangle.BackShade Property (Access) +title: Rectangle.BackShade property (Access) keywords: vbaac10.chm14633 f1_keywords: - vbaac10.chm14633 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.BackShade Property (Access) +# Rectangle.BackShade property (Access) Gets or sets the shade applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackShade` +_expression_. `BackShade` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.BackStyle.md b/api/Access.Rectangle.BackStyle.md index 9d2212f67e9..672953e6bf2 100644 --- a/api/Access.Rectangle.BackStyle.md +++ b/api/Access.Rectangle.BackStyle.md @@ -1,5 +1,5 @@ --- -title: Rectangle.BackStyle Property (Access) +title: Rectangle.BackStyle property (Access) keywords: vbaac10.chm10287 f1_keywords: - vbaac10.chm10287 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.BackStyle Property (Access) +# Rectangle.BackStyle property (Access) You can use the **BackStyle** property to specify whether a control will be transparent. Read/write **Byte**. ## Syntax - _expression_. `BackStyle` +_expression_. `BackStyle` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.BackThemeColorIndex.md b/api/Access.Rectangle.BackThemeColorIndex.md index 41bd2bab8a9..661c09f27ef 100644 --- a/api/Access.Rectangle.BackThemeColorIndex.md +++ b/api/Access.Rectangle.BackThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: Rectangle.BackThemeColorIndex Property (Access) +title: Rectangle.BackThemeColorIndex property (Access) keywords: vbaac10.chm14631 f1_keywords: - vbaac10.chm14631 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.BackThemeColorIndex Property (Access) +# Rectangle.BackThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BackColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackThemeColorIndex` +_expression_. `BackThemeColorIndex` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.BackTint.md b/api/Access.Rectangle.BackTint.md index 8bde30511f3..99dacd6d0c7 100644 --- a/api/Access.Rectangle.BackTint.md +++ b/api/Access.Rectangle.BackTint.md @@ -1,5 +1,5 @@ --- -title: Rectangle.BackTint Property (Access) +title: Rectangle.BackTint property (Access) keywords: vbaac10.chm14632 f1_keywords: - vbaac10.chm14632 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.BackTint Property (Access) +# Rectangle.BackTint property (Access) Gets or sets the tint that is applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackTint` +_expression_. `BackTint` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.BorderColor.md b/api/Access.Rectangle.BorderColor.md index dabd44b7672..e4c863fb164 100644 --- a/api/Access.Rectangle.BorderColor.md +++ b/api/Access.Rectangle.BorderColor.md @@ -1,5 +1,5 @@ --- -title: Rectangle.BorderColor Property (Access) +title: Rectangle.BorderColor property (Access) keywords: vbaac10.chm10292 f1_keywords: - vbaac10.chm10292 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.BorderColor Property (Access) +# Rectangle.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.BorderShade.md b/api/Access.Rectangle.BorderShade.md index f2535ba16e3..42e2a57c54d 100644 --- a/api/Access.Rectangle.BorderShade.md +++ b/api/Access.Rectangle.BorderShade.md @@ -1,5 +1,5 @@ --- -title: Rectangle.BorderShade Property (Access) +title: Rectangle.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.BorderShade Property (Access) +# Rectangle.BorderShade property (Access) Gets or sets the shade that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.BorderStyle.md b/api/Access.Rectangle.BorderStyle.md index 164855cec0c..2a0c9a689b6 100644 --- a/api/Access.Rectangle.BorderStyle.md +++ b/api/Access.Rectangle.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: Rectangle.BorderStyle Property (Access) +title: Rectangle.BorderStyle property (Access) keywords: vbaac10.chm10290 f1_keywords: - vbaac10.chm10290 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.BorderStyle Property (Access) +# Rectangle.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.BorderThemeColorIndex.md b/api/Access.Rectangle.BorderThemeColorIndex.md index 0cc3f8d105e..10a4b519991 100644 --- a/api/Access.Rectangle.BorderThemeColorIndex.md +++ b/api/Access.Rectangle.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: Rectangle.BorderThemeColorIndex Property (Access) +title: Rectangle.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.BorderThemeColorIndex Property (Access) +# Rectangle.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.BorderTint.md b/api/Access.Rectangle.BorderTint.md index ae73b68efaf..4f412be95c4 100644 --- a/api/Access.Rectangle.BorderTint.md +++ b/api/Access.Rectangle.BorderTint.md @@ -1,5 +1,5 @@ --- -title: Rectangle.BorderTint Property (Access) +title: Rectangle.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.BorderTint Property (Access) +# Rectangle.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.BorderWidth.md b/api/Access.Rectangle.BorderWidth.md index cf66398fbf9..104c1ee2663 100644 --- a/api/Access.Rectangle.BorderWidth.md +++ b/api/Access.Rectangle.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: Rectangle.BorderWidth Property (Access) +title: Rectangle.BorderWidth property (Access) keywords: vbaac10.chm10293 f1_keywords: - vbaac10.chm10293 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.BorderWidth Property (Access) +# Rectangle.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.Click.md b/api/Access.Rectangle.Click.md index b169e39d03c..4d41d4cab7d 100644 --- a/api/Access.Rectangle.Click.md +++ b/api/Access.Rectangle.Click.md @@ -1,5 +1,5 @@ --- -title: Rectangle.Click Event (Access) +title: Rectangle.Click event (Access) keywords: vbaac10.chm14161 f1_keywords: - vbaac10.chm14161 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.Click Event (Access) +# Rectangle.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.ControlType.md b/api/Access.Rectangle.ControlType.md index f978e8a65d6..4abbe77623d 100644 --- a/api/Access.Rectangle.ControlType.md +++ b/api/Access.Rectangle.ControlType.md @@ -1,5 +1,5 @@ --- -title: Rectangle.ControlType Property (Access) +title: Rectangle.ControlType property (Access) keywords: vbaac10.chm10280 f1_keywords: - vbaac10.chm10280 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.ControlType Property (Access) +# Rectangle.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.DblClick.md b/api/Access.Rectangle.DblClick.md index 5fb32fb4a23..5f4ddcd661b 100644 --- a/api/Access.Rectangle.DblClick.md +++ b/api/Access.Rectangle.DblClick.md @@ -1,5 +1,5 @@ --- -title: Rectangle.DblClick Event (Access) +title: Rectangle.DblClick event (Access) keywords: vbaac10.chm14162 f1_keywords: - vbaac10.chm14162 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Rectangle.DblClick Event (Access) +# Rectangle.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_` ) +_expression_. `DblClick`( ` _Cancel_` ) - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **DblClick** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **DblClick** event.| diff --git a/api/Access.Rectangle.DisplayWhen.md b/api/Access.Rectangle.DisplayWhen.md index 1dca6fc7f8c..f719c4534e1 100644 --- a/api/Access.Rectangle.DisplayWhen.md +++ b/api/Access.Rectangle.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: Rectangle.DisplayWhen Property (Access) +title: Rectangle.DisplayWhen property (Access) keywords: vbaac10.chm10282 f1_keywords: - vbaac10.chm10282 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.DisplayWhen Property (Access) +# Rectangle.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.EventProcPrefix.md b/api/Access.Rectangle.EventProcPrefix.md index e8101e506cb..e405429ea2f 100644 --- a/api/Access.Rectangle.EventProcPrefix.md +++ b/api/Access.Rectangle.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: Rectangle.EventProcPrefix Property (Access) +title: Rectangle.EventProcPrefix property (Access) keywords: vbaac10.chm10278 f1_keywords: - vbaac10.chm10278 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.EventProcPrefix Property (Access) +# Rectangle.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.Height.md b/api/Access.Rectangle.Height.md index e41350f1c63..7538b715caa 100644 --- a/api/Access.Rectangle.Height.md +++ b/api/Access.Rectangle.Height.md @@ -1,5 +1,5 @@ --- -title: Rectangle.Height Property (Access) +title: Rectangle.Height property (Access) keywords: vbaac10.chm10286 f1_keywords: - vbaac10.chm10286 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.Height Property (Access) +# Rectangle.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.HorizontalAnchor.md b/api/Access.Rectangle.HorizontalAnchor.md index cca3cad6757..2fad6c4adf1 100644 --- a/api/Access.Rectangle.HorizontalAnchor.md +++ b/api/Access.Rectangle.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: Rectangle.HorizontalAnchor Property (Access) +title: Rectangle.HorizontalAnchor property (Access) keywords: vbaac10.chm10313 f1_keywords: - vbaac10.chm10313 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.HorizontalAnchor Property (Access) +# Rectangle.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the rectangle is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.InSelection.md b/api/Access.Rectangle.InSelection.md index deac9be1194..3859964ded6 100644 --- a/api/Access.Rectangle.InSelection.md +++ b/api/Access.Rectangle.InSelection.md @@ -1,5 +1,5 @@ --- -title: Rectangle.InSelection Property (Access) +title: Rectangle.InSelection property (Access) keywords: vbaac10.chm10299 f1_keywords: - vbaac10.chm10299 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.InSelection Property (Access) +# Rectangle.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.IsVisible.md b/api/Access.Rectangle.IsVisible.md index f26e4c33c76..c24dbf07bef 100644 --- a/api/Access.Rectangle.IsVisible.md +++ b/api/Access.Rectangle.IsVisible.md @@ -1,5 +1,5 @@ --- -title: Rectangle.IsVisible Property (Access) +title: Rectangle.IsVisible property (Access) keywords: vbaac10.chm10298 f1_keywords: - vbaac10.chm10298 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.IsVisible Property (Access) +# Rectangle.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.Left.md b/api/Access.Rectangle.Left.md index 3f25809db99..b7f5c3c5c0d 100644 --- a/api/Access.Rectangle.Left.md +++ b/api/Access.Rectangle.Left.md @@ -1,5 +1,5 @@ --- -title: Rectangle.Left Property (Access) +title: Rectangle.Left property (Access) keywords: vbaac10.chm10283 f1_keywords: - vbaac10.chm10283 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.Left Property (Access) +# Rectangle.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.MouseDown.md b/api/Access.Rectangle.MouseDown.md index b8797e3ba06..ffbb5f5334e 100644 --- a/api/Access.Rectangle.MouseDown.md +++ b/api/Access.Rectangle.MouseDown.md @@ -1,5 +1,5 @@ --- -title: Rectangle.MouseDown Event (Access) +title: Rectangle.MouseDown event (Access) keywords: vbaac10.chm14163 f1_keywords: - vbaac10.chm14163 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Rectangle.MouseDown Event (Access) +# Rectangle.MouseDown event (Access) The **MouseDown** event occurs when the user presses a mouse button. ## Syntax - _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Rectangle.MouseMove.md b/api/Access.Rectangle.MouseMove.md index 75d4d86a7e8..2d2a691665d 100644 --- a/api/Access.Rectangle.MouseMove.md +++ b/api/Access.Rectangle.MouseMove.md @@ -1,5 +1,5 @@ --- -title: Rectangle.MouseMove Event (Access) +title: Rectangle.MouseMove event (Access) keywords: vbaac10.chm14164 f1_keywords: - vbaac10.chm14164 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Rectangle.MouseMove Event (Access) +# Rectangle.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Rectangle.MouseUp.md b/api/Access.Rectangle.MouseUp.md index 4792641ed98..54349a5000e 100644 --- a/api/Access.Rectangle.MouseUp.md +++ b/api/Access.Rectangle.MouseUp.md @@ -1,5 +1,5 @@ --- -title: Rectangle.MouseUp Event (Access) +title: Rectangle.MouseUp event (Access) keywords: vbaac10.chm14165 f1_keywords: - vbaac10.chm14165 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Rectangle.MouseUp Event (Access) +# Rectangle.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Rectangle.Move.md b/api/Access.Rectangle.Move.md index d1eda70b0e2..eccb0e8d809 100644 --- a/api/Access.Rectangle.Move.md +++ b/api/Access.Rectangle.Move.md @@ -1,5 +1,5 @@ --- -title: Rectangle.Move Method (Access) +title: Rectangle.Move method (Access) keywords: vbaac10.chm10306 f1_keywords: - vbaac10.chm10306 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Rectangle.Move Method (Access) +# Rectangle.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.Rectangle.Name.md b/api/Access.Rectangle.Name.md index 73c2352862c..a87aa46be10 100644 --- a/api/Access.Rectangle.Name.md +++ b/api/Access.Rectangle.Name.md @@ -1,5 +1,5 @@ --- -title: Rectangle.Name Property (Access) +title: Rectangle.Name property (Access) keywords: vbaac10.chm10305 f1_keywords: - vbaac10.chm10305 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.Name Property (Access) +# Rectangle.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.OldBorderStyle.md b/api/Access.Rectangle.OldBorderStyle.md index 1c8c8f4d73e..0fd99130181 100644 --- a/api/Access.Rectangle.OldBorderStyle.md +++ b/api/Access.Rectangle.OldBorderStyle.md @@ -1,5 +1,5 @@ --- -title: Rectangle.OldBorderStyle Property (Access) +title: Rectangle.OldBorderStyle property (Access) keywords: vbaac10.chm10291 f1_keywords: - vbaac10.chm10291 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.OldBorderStyle Property (Access) +# Rectangle.OldBorderStyle property (Access) You can use this property to set or returns the unedited value of the **BorderStyle** property for a form or control. This property is useful if you need to revert to an unedited or preferred border style. Read/write **Byte**. ## Syntax - _expression_. `OldBorderStyle` +_expression_. `OldBorderStyle` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.OnClick.md b/api/Access.Rectangle.OnClick.md index de77dd282e2..3408564b870 100644 --- a/api/Access.Rectangle.OnClick.md +++ b/api/Access.Rectangle.OnClick.md @@ -1,5 +1,5 @@ --- -title: Rectangle.OnClick Property (Access) +title: Rectangle.OnClick property (Access) keywords: vbaac10.chm10300 f1_keywords: - vbaac10.chm10300 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.OnClick Property (Access) +# Rectangle.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Rectangle.OnDblClick.md b/api/Access.Rectangle.OnDblClick.md index 399fe648f66..ecaf3f81257 100644 --- a/api/Access.Rectangle.OnDblClick.md +++ b/api/Access.Rectangle.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: Rectangle.OnDblClick Property (Access) +title: Rectangle.OnDblClick property (Access) keywords: vbaac10.chm10301 f1_keywords: - vbaac10.chm10301 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.OnDblClick Property (Access) +# Rectangle.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Rectangle.OnMouseDown.md b/api/Access.Rectangle.OnMouseDown.md index 10827928593..c5c741a7394 100644 --- a/api/Access.Rectangle.OnMouseDown.md +++ b/api/Access.Rectangle.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: Rectangle.OnMouseDown Property (Access) +title: Rectangle.OnMouseDown property (Access) keywords: vbaac10.chm10302 f1_keywords: - vbaac10.chm10302 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.OnMouseDown Property (Access) +# Rectangle.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Rectangle.OnMouseMove.md b/api/Access.Rectangle.OnMouseMove.md index c95c906a767..237f2a6e22e 100644 --- a/api/Access.Rectangle.OnMouseMove.md +++ b/api/Access.Rectangle.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: Rectangle.OnMouseMove Property (Access) +title: Rectangle.OnMouseMove property (Access) keywords: vbaac10.chm10303 f1_keywords: - vbaac10.chm10303 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.OnMouseMove Property (Access) +# Rectangle.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Rectangle.OnMouseUp.md b/api/Access.Rectangle.OnMouseUp.md index ea5ae979afb..31361c36a91 100644 --- a/api/Access.Rectangle.OnMouseUp.md +++ b/api/Access.Rectangle.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: Rectangle.OnMouseUp Property (Access) +title: Rectangle.OnMouseUp property (Access) keywords: vbaac10.chm10304 f1_keywords: - vbaac10.chm10304 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.OnMouseUp Property (Access) +# Rectangle.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Rectangle.Parent.md b/api/Access.Rectangle.Parent.md index 6ceb659bca5..9c7f5d90cad 100644 --- a/api/Access.Rectangle.Parent.md +++ b/api/Access.Rectangle.Parent.md @@ -1,5 +1,5 @@ --- -title: Rectangle.Parent Property (Access) +title: Rectangle.Parent property (Access) keywords: vbaac10.chm10275 f1_keywords: - vbaac10.chm10275 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.Parent Property (Access) +# Rectangle.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## See also diff --git a/api/Access.Rectangle.Properties.md b/api/Access.Rectangle.Properties.md index 915d47a8050..30c9050c669 100644 --- a/api/Access.Rectangle.Properties.md +++ b/api/Access.Rectangle.Properties.md @@ -1,5 +1,5 @@ --- -title: Rectangle.Properties Property (Access) +title: Rectangle.Properties property (Access) keywords: vbaac10.chm10276 f1_keywords: - vbaac10.chm10276 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.Properties Property (Access) +# Rectangle.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.Section.md b/api/Access.Rectangle.Section.md index 5ae128f25e1..a30d3b890c2 100644 --- a/api/Access.Rectangle.Section.md +++ b/api/Access.Rectangle.Section.md @@ -1,5 +1,5 @@ --- -title: Rectangle.Section Property (Access) +title: Rectangle.Section property (Access) keywords: vbaac10.chm10295 f1_keywords: - vbaac10.chm10295 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.Section Property (Access) +# Rectangle.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.SizeToFit.md b/api/Access.Rectangle.SizeToFit.md index cfb7ac69e18..2e7ea13afcb 100644 --- a/api/Access.Rectangle.SizeToFit.md +++ b/api/Access.Rectangle.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: Rectangle.SizeToFit Method (Access) +title: Rectangle.SizeToFit method (Access) keywords: vbaac10.chm10277 f1_keywords: - vbaac10.chm10277 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.SizeToFit Method (Access) +# Rectangle.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.SpecialEffect.md b/api/Access.Rectangle.SpecialEffect.md index f744c58aca4..4888622d81a 100644 --- a/api/Access.Rectangle.SpecialEffect.md +++ b/api/Access.Rectangle.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: Rectangle.SpecialEffect Property (Access) +title: Rectangle.SpecialEffect property (Access) keywords: vbaac10.chm10289 f1_keywords: - vbaac10.chm10289 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.SpecialEffect Property (Access) +# Rectangle.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.Tag.md b/api/Access.Rectangle.Tag.md index 6885bcd4f35..2a5d4453a45 100644 --- a/api/Access.Rectangle.Tag.md +++ b/api/Access.Rectangle.Tag.md @@ -1,5 +1,5 @@ --- -title: Rectangle.Tag Property (Access) +title: Rectangle.Tag property (Access) keywords: vbaac10.chm10297 f1_keywords: - vbaac10.chm10297 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.Tag Property (Access) +# Rectangle.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.Top.md b/api/Access.Rectangle.Top.md index 9220aa2c6f6..bf7ec9559dc 100644 --- a/api/Access.Rectangle.Top.md +++ b/api/Access.Rectangle.Top.md @@ -1,5 +1,5 @@ --- -title: Rectangle.Top Property (Access) +title: Rectangle.Top property (Access) keywords: vbaac10.chm10284 f1_keywords: - vbaac10.chm10284 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.Top Property (Access) +# Rectangle.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.VerticalAnchor.md b/api/Access.Rectangle.VerticalAnchor.md index f8b8e24e82a..a089d585a89 100644 --- a/api/Access.Rectangle.VerticalAnchor.md +++ b/api/Access.Rectangle.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: Rectangle.VerticalAnchor Property (Access) +title: Rectangle.VerticalAnchor property (Access) keywords: vbaac10.chm10314 f1_keywords: - vbaac10.chm10314 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.VerticalAnchor Property (Access) +# Rectangle.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified rectangle is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.Visible.md b/api/Access.Rectangle.Visible.md index 980c044969b..0870c6de2b3 100644 --- a/api/Access.Rectangle.Visible.md +++ b/api/Access.Rectangle.Visible.md @@ -1,5 +1,5 @@ --- -title: Rectangle.Visible Property (Access) +title: Rectangle.Visible property (Access) keywords: vbaac10.chm10281 f1_keywords: - vbaac10.chm10281 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.Visible Property (Access) +# Rectangle.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.Width.md b/api/Access.Rectangle.Width.md index ba43849a037..1707562a715 100644 --- a/api/Access.Rectangle.Width.md +++ b/api/Access.Rectangle.Width.md @@ -1,5 +1,5 @@ --- -title: Rectangle.Width Property (Access) +title: Rectangle.Width property (Access) keywords: vbaac10.chm10285 f1_keywords: - vbaac10.chm10285 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Rectangle.Width Property (Access) +# Rectangle.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. +_expression_ A variable that represents a [Rectangle](Access.Rectangle.md) object. ## Remarks diff --git a/api/Access.Rectangle.md b/api/Access.Rectangle.md index 042514840d6..dde7c4f5e7d 100644 --- a/api/Access.Rectangle.md +++ b/api/Access.Rectangle.md @@ -1,5 +1,5 @@ --- -title: Rectangle Object (Access) +title: Rectangle object (Access) keywords: vbaac10.chm10320 f1_keywords: - vbaac10.chm10320 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Rectangle Object (Access) +# Rectangle object (Access) This object corresponds to a rectangle control. The rectangle control displays a rectangle on a form or report. diff --git a/api/Access.Reference.BuiltIn.md b/api/Access.Reference.BuiltIn.md index ad148291911..dc0c1d66f94 100644 --- a/api/Access.Reference.BuiltIn.md +++ b/api/Access.Reference.BuiltIn.md @@ -1,5 +1,5 @@ --- -title: Reference.BuiltIn Property (Access) +title: Reference.BuiltIn property (Access) keywords: vbaac10.chm12635 f1_keywords: - vbaac10.chm12635 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Reference.BuiltIn Property (Access) +# Reference.BuiltIn property (Access) The **BuiltIn** property returns a **Boolean** value indicating whether a **[Reference](Access.Reference.md)** object points to a default reference that's necessary for Microsoft Access to function properly. Read-only **Boolean**. ## Syntax - _expression_. `BuiltIn` +_expression_. `BuiltIn` - _expression_ A variable that represents a [Reference](Access.Reference.md) object. +_expression_ A variable that represents a [Reference](Access.Reference.md) object. ## Remarks diff --git a/api/Access.Reference.Collection.md b/api/Access.Reference.Collection.md index 31c754b997b..b691a8d0822 100644 --- a/api/Access.Reference.Collection.md +++ b/api/Access.Reference.Collection.md @@ -1,5 +1,5 @@ --- -title: Reference.Collection Property (Access) +title: Reference.Collection property (Access) keywords: vbaac10.chm12629 f1_keywords: - vbaac10.chm12629 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Reference.Collection Property (Access) +# Reference.Collection property (Access) The **Collection** property returns a reference to the collection that contains an object. Read-only **References** object. ## Syntax - _expression_. `Collection` +_expression_. `Collection` - _expression_ A variable that represents a [Reference](Access.Reference.md) object. +_expression_ A variable that represents a [Reference](Access.Reference.md) object. ## Remarks diff --git a/api/Access.Reference.FullPath.md b/api/Access.Reference.FullPath.md index 1d57efcc732..8217c421ef2 100644 --- a/api/Access.Reference.FullPath.md +++ b/api/Access.Reference.FullPath.md @@ -1,5 +1,5 @@ --- -title: Reference.FullPath Property (Access) +title: Reference.FullPath property (Access) keywords: vbaac10.chm12634 f1_keywords: - vbaac10.chm12634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Reference.FullPath Property (Access) +# Reference.FullPath property (Access) The **FullPath** property returns a string containing the path and file name of the referenced type library. ## Syntax - _expression_. `FullPath` +_expression_. `FullPath` - _expression_ A variable that represents a [Reference](Access.Reference.md) object. +_expression_ A variable that represents a [Reference](Access.Reference.md) object. ## Remarks diff --git a/api/Access.Reference.Guid.md b/api/Access.Reference.Guid.md index 47e42ee9b79..ed26d1795a2 100644 --- a/api/Access.Reference.Guid.md +++ b/api/Access.Reference.Guid.md @@ -1,5 +1,5 @@ --- -title: Reference.Guid Property (Access) +title: Reference.Guid property (Access) keywords: vbaac10.chm12631 f1_keywords: - vbaac10.chm12631 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Reference.Guid Property (Access) +# Reference.Guid property (Access) The **GUID** property of a **[Reference](Access.Reference.md)** object returns a GUID that identifies a type library in the Windows Registry. Read-only **String**. ## Syntax - _expression_. `Guid` +_expression_. `Guid` - _expression_ A variable that represents a [Reference](Access.Reference.md) object. +_expression_ A variable that represents a [Reference](Access.Reference.md) object. ## Remarks diff --git a/api/Access.Reference.IsBroken.md b/api/Access.Reference.IsBroken.md index f3aa136ecdc..e46ca5a832f 100644 --- a/api/Access.Reference.IsBroken.md +++ b/api/Access.Reference.IsBroken.md @@ -1,5 +1,5 @@ --- -title: Reference.IsBroken Property (Access) +title: Reference.IsBroken property (Access) keywords: vbaac10.chm12636 f1_keywords: - vbaac10.chm12636 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Reference.IsBroken Property (Access) +# Reference.IsBroken property (Access) The **IsBroken** property returns a **Boolean** value indicating whether a **[Reference](Access.Reference.md)** object points to a valid reference in the Windows Registry. Read-only **Boolean**. ## Syntax - _expression_. `IsBroken` +_expression_. `IsBroken` - _expression_ A variable that represents a [Reference](Access.Reference.md) object. +_expression_ A variable that represents a [Reference](Access.Reference.md) object. ## Remarks diff --git a/api/Access.Reference.Kind.md b/api/Access.Reference.Kind.md index c719dd2d207..0f097f0b91c 100644 --- a/api/Access.Reference.Kind.md +++ b/api/Access.Reference.Kind.md @@ -1,5 +1,5 @@ --- -title: Reference.Kind Property (Access) +title: Reference.Kind property (Access) keywords: vbaac10.chm12637 f1_keywords: - vbaac10.chm12637 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Reference.Kind Property (Access) +# Reference.Kind property (Access) The **Kind** property indicates the type of reference that a **[Reference](Access.Reference.md)** object represents. Read-only **vbext_RefKind**. ## Syntax - _expression_. `Kind` +_expression_. `Kind` - _expression_ A variable that represents a [Reference](Access.Reference.md) object. +_expression_ A variable that represents a [Reference](Access.Reference.md) object. ## Remarks diff --git a/api/Access.Reference.Major.md b/api/Access.Reference.Major.md index bfbc61a0c05..e77f11d8592 100644 --- a/api/Access.Reference.Major.md +++ b/api/Access.Reference.Major.md @@ -1,5 +1,5 @@ --- -title: Reference.Major Property (Access) +title: Reference.Major property (Access) keywords: vbaac10.chm12632 f1_keywords: - vbaac10.chm12632 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Reference.Major Property (Access) +# Reference.Major property (Access) The **Major** property of a **[Reference](Access.Reference.md)** object returns a read-only **Long** value indicating the major version number of an application to which you have set a reference. ## Syntax - _expression_. `Major` +_expression_. `Major` - _expression_ A variable that represents a [Reference](Access.Reference.md) object. +_expression_ A variable that represents a [Reference](Access.Reference.md) object. ## Remarks diff --git a/api/Access.Reference.Minor.md b/api/Access.Reference.Minor.md index 0097c5056c3..fa69d4f07d4 100644 --- a/api/Access.Reference.Minor.md +++ b/api/Access.Reference.Minor.md @@ -1,5 +1,5 @@ --- -title: Reference.Minor Property (Access) +title: Reference.Minor property (Access) keywords: vbaac10.chm12633 f1_keywords: - vbaac10.chm12633 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Reference.Minor Property (Access) +# Reference.Minor property (Access) The **Minor** property of a **[Reference](Access.Reference.md)** object returns a **Long** value indicating the minor version number of the application to which you have set a reference. ## Syntax - _expression_. `Minor` +_expression_. `Minor` - _expression_ A variable that represents a [Reference](Access.Reference.md) object. +_expression_ A variable that represents a [Reference](Access.Reference.md) object. ## Remarks diff --git a/api/Access.Reference.Name.md b/api/Access.Reference.Name.md index 0a69b41f554..141af07e5f3 100644 --- a/api/Access.Reference.Name.md +++ b/api/Access.Reference.Name.md @@ -1,5 +1,5 @@ --- -title: Reference.Name Property (Access) +title: Reference.Name property (Access) keywords: vbaac10.chm12630 f1_keywords: - vbaac10.chm12630 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Reference.Name Property (Access) +# Reference.Name property (Access) You can use the **Name** property to determine the string expression that identifies the name of an object. Read-only **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [Reference](Access.Reference.md) object. +_expression_ A variable that represents a [Reference](Access.Reference.md) object. ## Remarks diff --git a/api/Access.Reference.md b/api/Access.Reference.md index 06f1c2fb704..1d5c1298aab 100644 --- a/api/Access.Reference.md +++ b/api/Access.Reference.md @@ -1,5 +1,5 @@ --- -title: Reference Object (Access) +title: Reference object (Access) keywords: vbaac10.chm12628 f1_keywords: - vbaac10.chm12628 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Reference Object (Access) +# Reference object (Access) The **Reference** object refers to a reference set to another application's or project's type library. diff --git a/api/Access.References.AddFromFile.md b/api/Access.References.AddFromFile.md index ae9da647661..298a0aa6369 100644 --- a/api/Access.References.AddFromFile.md +++ b/api/Access.References.AddFromFile.md @@ -1,5 +1,5 @@ --- -title: References.AddFromFile Method (Access) +title: References.AddFromFile method (Access) keywords: vbaac10.chm12643 f1_keywords: - vbaac10.chm12643 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# References.AddFromFile Method (Access) +# References.AddFromFile method (Access) The **AddFromFile** method creates a reference to a type library in a specified file. . ## Syntax - _expression_. `AddFromFile`( ` _FileName_` ) +_expression_. `AddFromFile`( ` _FileName_` ) - _expression_ A variable that represents a [References](Access.References.md) object. +_expression_ A variable that represents a [References](Access.References.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _FileName_|Required|**String**|A string expression that evaluates to the full path and file name of the file containing the type library to which you wish to set a reference.| -### Return Value +### Return value Reference diff --git a/api/Access.References.AddFromGuid.md b/api/Access.References.AddFromGuid.md index 832adbb9307..4ba180fc359 100644 --- a/api/Access.References.AddFromGuid.md +++ b/api/Access.References.AddFromGuid.md @@ -1,5 +1,5 @@ --- -title: References.AddFromGuid Method (Access) +title: References.AddFromGuid method (Access) keywords: vbaac10.chm12642 f1_keywords: - vbaac10.chm12642 @@ -11,29 +11,29 @@ ms.date: 06/08/2017 --- -# References.AddFromGuid Method (Access) +# References.AddFromGuid method (Access) The **AddFromGUID** method creates a **[Reference](Access.Reference.md)** object based on the GUID that identifies a type library. **Reference** object. ## Syntax - _expression_. `AddFromGuid`( ` _Guid_`, ` _Major_`, ` _Minor_` ) +_expression_. `AddFromGuid`( ` _Guid_`, ` _Major_`, ` _Minor_` ) - _expression_ A variable that represents a [References](Access.References.md) object. +_expression_ A variable that represents a [References](Access.References.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Guid_|Required|**String**|A GUID that identifies a type library.| | _Major_|Required|**Long**|The major version number of the reference.| | _Minor_|Required|**Long**|The minor version number of the reference.| -### Return Value +### Return value Reference diff --git a/api/Access.References.Count.md b/api/Access.References.Count.md index a34e3111381..d56991fcff8 100644 --- a/api/Access.References.Count.md +++ b/api/Access.References.Count.md @@ -1,5 +1,5 @@ --- -title: References.Count Property (Access) +title: References.Count property (Access) keywords: vbaac10.chm12641 f1_keywords: - vbaac10.chm12641 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# References.Count Property (Access) +# References.Count property (Access) You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [References](Access.References.md) object. +_expression_ A variable that represents a [References](Access.References.md) object. ## See also diff --git a/api/Access.References.Item.md b/api/Access.References.Item.md index 6b306142a6f..8b123b782cf 100644 --- a/api/Access.References.Item.md +++ b/api/Access.References.Item.md @@ -1,5 +1,5 @@ --- -title: References.Item Method (Access) +title: References.Item method (Access) keywords: vbaac10.chm12640 f1_keywords: - vbaac10.chm12640 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# References.Item Method (Access) +# References.Item method (Access) The **Item** method returns a specific member of a collection either by position or by key. **Reference** object. ## Syntax - _expression_. `Item`( ` _var_` ) +_expression_. `Item`( ` _var_` ) - _expression_ A variable that represents a [References](Access.References.md) object. +_expression_ A variable that represents a [References](Access.References.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _var_|Required|**Variant**|An expression that specifies the position of a member of the collection. If a numeric expression, the _var_ argument must be a number from 1 to the value of the collection's **Count** property. If a string expression, the _var_ argument must be the name of a member of the collection.| -### Return Value +### Return value Reference diff --git a/api/Access.References.ItemAdded.md b/api/Access.References.ItemAdded.md index 934c6778117..c7a38b33bd6 100644 --- a/api/Access.References.ItemAdded.md +++ b/api/Access.References.ItemAdded.md @@ -1,5 +1,5 @@ --- -title: References.ItemAdded Event (Access) +title: References.ItemAdded event (Access) keywords: vbaac10.chm12646 f1_keywords: - vbaac10.chm12646 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# References.ItemAdded Event (Access) +# References.ItemAdded event (Access) The **ItemAdded** event occurs when a reference is added to the project from Visual Basic. ## Syntax - _expression_. `ItemAdded`( ` _Reference_`, ) +_expression_. `ItemAdded`( ` _Reference_`, ) - _expression_ A variable that represents a [References](Access.References.md) object. +_expression_ A variable that represents a [References](Access.References.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Reference_|Required|**Reference**|The reference that was added to the project.| diff --git a/api/Access.References.ItemRemoved.md b/api/Access.References.ItemRemoved.md index 868fa5b4871..761347ce275 100644 --- a/api/Access.References.ItemRemoved.md +++ b/api/Access.References.ItemRemoved.md @@ -1,5 +1,5 @@ --- -title: References.ItemRemoved Event (Access) +title: References.ItemRemoved event (Access) keywords: vbaac10.chm12647 f1_keywords: - vbaac10.chm12647 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# References.ItemRemoved Event (Access) +# References.ItemRemoved event (Access) The **ItemRemoved** event occurs when a reference is removed from the project. ## Syntax - _expression_. `ItemRemoved`( ` _Reference_`, ) +_expression_. `ItemRemoved`( ` _Reference_`, ) - _expression_ A variable that represents a [References](Access.References.md) object. +_expression_ A variable that represents a [References](Access.References.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Reference_|Required|**Reference**|The reference that was removed from the project.| diff --git a/api/Access.References.Parent.md b/api/Access.References.Parent.md index 9ff9462326c..6eeae6f6dad 100644 --- a/api/Access.References.Parent.md +++ b/api/Access.References.Parent.md @@ -1,5 +1,5 @@ --- -title: References.Parent Property (Access) +title: References.Parent property (Access) keywords: vbaac10.chm12639 f1_keywords: - vbaac10.chm12639 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# References.Parent Property (Access) +# References.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [References](Access.References.md) object. +_expression_ A variable that represents a [References](Access.References.md) object. ## See also diff --git a/api/Access.References.Remove.md b/api/Access.References.Remove.md index 8c39cfec232..48cfd9ce5a4 100644 --- a/api/Access.References.Remove.md +++ b/api/Access.References.Remove.md @@ -1,5 +1,5 @@ --- -title: References.Remove Method (Access) +title: References.Remove method (Access) keywords: vbaac10.chm12644 f1_keywords: - vbaac10.chm12644 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# References.Remove Method (Access) +# References.Remove method (Access) The **Remove** method removes a **[Reference](Access.Reference.md)** object from the **[References](Access.References.md)** collection. ## Syntax - _expression_. `Remove`( ` _Reference_` ) +_expression_. `Remove`( ` _Reference_` ) - _expression_ A variable that represents a [References](Access.References.md) object. +_expression_ A variable that represents a [References](Access.References.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Reference_|Required|**Reference**|The **Reference** object that represents the reference you wish to remove.| diff --git a/api/Access.References.md b/api/Access.References.md index 21d4c43ca6b..c01ddfb7c33 100644 --- a/api/Access.References.md +++ b/api/Access.References.md @@ -1,5 +1,5 @@ --- -title: References Object (Access) +title: References object (Access) keywords: vbaac10.chm12648 f1_keywords: - vbaac10.chm12648 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# References Object (Access) +# References object (Access) The **References** collection contains **Reference** objects representing each reference that's currently set. diff --git a/api/Access.Report.Activate.md b/api/Access.Report.Activate.md index 14a01f8d2d8..acdab2e28b1 100644 --- a/api/Access.Report.Activate.md +++ b/api/Access.Report.Activate.md @@ -1,5 +1,5 @@ --- -title: Report.Activate Event (Access) +title: Report.Activate event (Access) keywords: vbaac10.chm13878 f1_keywords: - vbaac10.chm13878 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# Report.Activate Event (Access) +# Report.Activate event (Access) The Activate event occurs when a report receives the focus and becomes the active window. ## Syntax - _expression_. `Activate` +_expression_. `Activate` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. -### Return Value +### Return value nothing diff --git a/api/Access.Report.ActiveControl.md b/api/Access.Report.ActiveControl.md index d52dd7ebe08..9c65ede11a5 100644 --- a/api/Access.Report.ActiveControl.md +++ b/api/Access.Report.ActiveControl.md @@ -1,5 +1,5 @@ --- -title: Report.ActiveControl Property (Access) +title: Report.ActiveControl property (Access) keywords: vbaac10.chm13780 f1_keywords: - vbaac10.chm13780 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.ActiveControl Property (Access) +# Report.ActiveControl property (Access) You can use the **ActiveControl** property together with the **[Screen](Access.Screen.md)** object to identify or refer to the control that has the focus. Read-only **Control** object. ## Syntax - _expression_. `ActiveControl` +_expression_. `ActiveControl` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.AllowLayoutView.md b/api/Access.Report.AllowLayoutView.md index fbb1bcbdf4a..fe5819ba898 100644 --- a/api/Access.Report.AllowLayoutView.md +++ b/api/Access.Report.AllowLayoutView.md @@ -1,5 +1,5 @@ --- -title: Report.AllowLayoutView Property (Access) +title: Report.AllowLayoutView property (Access) keywords: vbaac10.chm13855 f1_keywords: - vbaac10.chm13855 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.AllowLayoutView Property (Access) +# Report.AllowLayoutView property (Access) Gets or sets whether the specified report can be used in Layout View. Read/write **Boolean**. ## Syntax - _expression_. `AllowLayoutView` +_expression_. `AllowLayoutView` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## See also diff --git a/api/Access.Report.AllowReportView.md b/api/Access.Report.AllowReportView.md index b120b8a7837..e53374cd895 100644 --- a/api/Access.Report.AllowReportView.md +++ b/api/Access.Report.AllowReportView.md @@ -1,5 +1,5 @@ --- -title: Report.AllowReportView Property (Access) +title: Report.AllowReportView property (Access) keywords: vbaac10.chm13819 f1_keywords: - vbaac10.chm13819 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.AllowReportView Property (Access) +# Report.AllowReportView property (Access) Gets or sets whether the user is allowed to enter Report view while using the specified report. Read/write **Boolean**. ## Syntax - _expression_. `AllowReportView` +_expression_. `AllowReportView` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## See also diff --git a/api/Access.Report.Application.md b/api/Access.Report.Application.md index fe895b26617..997bf3204e6 100644 --- a/api/Access.Report.Application.md +++ b/api/Access.Report.Application.md @@ -1,5 +1,5 @@ --- -title: Report.Application Property (Access) +title: Report.Application property (Access) keywords: vbaac10.chm13778 f1_keywords: - vbaac10.chm13778 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Application Property (Access) +# Report.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.ApplyFilter.md b/api/Access.Report.ApplyFilter.md index 648a0baccab..9762b566927 100644 --- a/api/Access.Report.ApplyFilter.md +++ b/api/Access.Report.ApplyFilter.md @@ -1,5 +1,5 @@ --- -title: Report.ApplyFilter Event (Access) +title: Report.ApplyFilter event (Access) keywords: vbaac10.chm13899 f1_keywords: - vbaac10.chm13899 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Report.ApplyFilter Event (Access) +# Report.ApplyFilter event (Access) Occurs when a filter is applied to a report. ## Syntax - _expression_. `ApplyFilter`( ` _Cancel_`, ` _ApplyType_` ) +_expression_. `ApplyFilter`( ` _Cancel_`, ` _ApplyType_` ) - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **ApplyFilter** event occurs. Setting the _Cancel_ argument to **True** cancels the **ApplyFilter** event and the filter is not applied to the report.| | _ApplyType_|Required|**Integer**|Returns the type of filter that was applied.| diff --git a/api/Access.Report.AutoCenter.md b/api/Access.Report.AutoCenter.md index eec0f5dd88c..2226d45d0d5 100644 --- a/api/Access.Report.AutoCenter.md +++ b/api/Access.Report.AutoCenter.md @@ -1,5 +1,5 @@ --- -title: Report.AutoCenter Property (Access) +title: Report.AutoCenter property (Access) keywords: vbaac10.chm13797 f1_keywords: - vbaac10.chm13797 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.AutoCenter Property (Access) +# Report.AutoCenter property (Access) Returns or sets a **Boolean** indicating whether a report will be centered automatically in the application window when the form is opened. Read/write. ## Syntax - _expression_. `AutoCenter` +_expression_. `AutoCenter` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.AutoResize.md b/api/Access.Report.AutoResize.md index d18a3f388f8..3526cf41131 100644 --- a/api/Access.Report.AutoResize.md +++ b/api/Access.Report.AutoResize.md @@ -1,5 +1,5 @@ --- -title: Report.AutoResize Property (Access) +title: Report.AutoResize property (Access) keywords: vbaac10.chm13796 f1_keywords: - vbaac10.chm13796 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.AutoResize Property (Access) +# Report.AutoResize property (Access) Returns or sets a **Boolean** indicating whether a Report window opens automatically sized to display complete records. Read/write. ## Syntax - _expression_. `AutoResize` +_expression_. `AutoResize` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.BorderStyle.md b/api/Access.Report.BorderStyle.md index 7eeac15af1b..d4ef964c7af 100644 --- a/api/Access.Report.BorderStyle.md +++ b/api/Access.Report.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: Report.BorderStyle Property (Access) +title: Report.BorderStyle property (Access) keywords: vbaac10.chm13800 f1_keywords: - vbaac10.chm13800 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.BorderStyle Property (Access) +# Report.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Caption.md b/api/Access.Report.Caption.md index 3ce30310412..8611fdeb179 100644 --- a/api/Access.Report.Caption.md +++ b/api/Access.Report.Caption.md @@ -1,5 +1,5 @@ --- -title: Report.Caption Property (Access) +title: Report.Caption property (Access) keywords: vbaac10.chm13695 f1_keywords: - vbaac10.chm13695 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Caption Property (Access) +# Report.Caption property (Access) Gets or sets the title of the report in Print Preview. Read/write **String**. ## Syntax - _expression_. `Caption` +_expression_. `Caption` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Circle.md b/api/Access.Report.Circle.md index ffa2396536c..b3b23d04486 100644 --- a/api/Access.Report.Circle.md +++ b/api/Access.Report.Circle.md @@ -1,5 +1,5 @@ --- -title: Report.Circle Method (Access) +title: Report.Circle method (Access) keywords: vbaac10.chm13782 f1_keywords: - vbaac10.chm13782 @@ -11,14 +11,14 @@ ms.date: 06/08/2017 --- -# Report.Circle Method (Access) +# Report.Circle method (Access) The **Circle** method draws a circle, an ellipse, or an arc on a **Report** object when the Print event occurs. ## Syntax - _expression_. **Circle** (** _Step_** (** _x, y_**), ** _radius_**, ** _color_**, ** _start_**, ** _end_**, ** _aspect_**) +_expression_. **Circle** (** _Step_** (** _x, y_**), ** _radius_**, ** _color_**, ** _start_**, ** _end_**, ** _aspect_**) ### Parameters diff --git a/api/Access.Report.Click.md b/api/Access.Report.Click.md index 983f7e03bbe..1eaaeaeacfd 100644 --- a/api/Access.Report.Click.md +++ b/api/Access.Report.Click.md @@ -1,5 +1,5 @@ --- -title: Report.Click Event (Access) +title: Report.Click event (Access) keywords: vbaac10.chm13889 f1_keywords: - vbaac10.chm13889 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Click Event (Access) +# Report.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over a report. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Close.md b/api/Access.Report.Close.md index b6ce7396756..039eb1f11d5 100644 --- a/api/Access.Report.Close.md +++ b/api/Access.Report.Close.md @@ -1,5 +1,5 @@ --- -title: Report.Close Event (Access) +title: Report.Close event (Access) keywords: vbaac10.chm13877 f1_keywords: - vbaac10.chm13877 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Close Event (Access) +# Report.Close event (Access) The **Close** event occurs when a report is closed and removed from the screen. ## Syntax - _expression_. `Close` +_expression_. `Close` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.CloseButton.md b/api/Access.Report.CloseButton.md index f1c1210b4d3..8fb019f5153 100644 --- a/api/Access.Report.CloseButton.md +++ b/api/Access.Report.CloseButton.md @@ -1,5 +1,5 @@ --- -title: Report.CloseButton Property (Access) +title: Report.CloseButton property (Access) keywords: vbaac10.chm13803 f1_keywords: - vbaac10.chm13803 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.CloseButton Property (Access) +# Report.CloseButton property (Access) Specifies whether the **Close** button on a form is enabled. Read/write **Boolean**. ## Syntax - _expression_. `CloseButton` +_expression_. `CloseButton` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.ControlBox.md b/api/Access.Report.ControlBox.md index 4ae321e95cb..b8ece894626 100644 --- a/api/Access.Report.ControlBox.md +++ b/api/Access.Report.ControlBox.md @@ -1,5 +1,5 @@ --- -title: Report.ControlBox Property (Access) +title: Report.ControlBox property (Access) keywords: vbaac10.chm13801 f1_keywords: - vbaac10.chm13801 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.ControlBox Property (Access) +# Report.ControlBox property (Access) Specifies whether a report has a **Control** menu in Report view. Read/write **Boolean**. ## Syntax - _expression_. `ControlBox` +_expression_. `ControlBox` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Controls.md b/api/Access.Report.Controls.md index a82c3029682..6a766d5017b 100644 --- a/api/Access.Report.Controls.md +++ b/api/Access.Report.Controls.md @@ -1,5 +1,5 @@ --- -title: Report.Controls Property (Access) +title: Report.Controls property (Access) keywords: vbaac10.chm13794 f1_keywords: - vbaac10.chm13794 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Controls Property (Access) +# Report.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Count.md b/api/Access.Report.Count.md index 76e0afcbc85..9d0603798bf 100644 --- a/api/Access.Report.Count.md +++ b/api/Access.Report.Count.md @@ -1,5 +1,5 @@ --- -title: Report.Count Property (Access) +title: Report.Count property (Access) keywords: vbaac10.chm13720 f1_keywords: - vbaac10.chm13720 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Count Property (Access) +# Report.Count property (Access) You can use the **Count** property to determine the number of items in a specified collection. Read-only **Integer**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## See also diff --git a/api/Access.Report.Current.md b/api/Access.Report.Current.md index 6891a0b5f00..5f782dd5457 100644 --- a/api/Access.Report.Current.md +++ b/api/Access.Report.Current.md @@ -1,5 +1,5 @@ --- -title: Report.Current Event (Access) +title: Report.Current event (Access) keywords: vbaac10.chm13883 f1_keywords: - vbaac10.chm13883 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Current Event (Access) +# Report.Current event (Access) Occurs when the focus moves to a record, making it the current record, or when the report is refreshed or requeried. ## Syntax - _expression_. `Current` +_expression_. `Current` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.CurrentRecord.md b/api/Access.Report.CurrentRecord.md index 9422135e825..d1749c893fa 100644 --- a/api/Access.Report.CurrentRecord.md +++ b/api/Access.Report.CurrentRecord.md @@ -1,5 +1,5 @@ --- -title: Report.CurrentRecord Property (Access) +title: Report.CurrentRecord property (Access) keywords: vbaac10.chm13771 f1_keywords: - vbaac10.chm13771 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.CurrentRecord Property (Access) +# Report.CurrentRecord property (Access) You can use the **CurrentRecord** property to identify the current record in the recordset being viewed. Read/write **Long**. ## Syntax - _expression_. `CurrentRecord` +_expression_. `CurrentRecord` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## See also diff --git a/api/Access.Report.CurrentView.md b/api/Access.Report.CurrentView.md index 3bfdef48d0d..e84605258ba 100644 --- a/api/Access.Report.CurrentView.md +++ b/api/Access.Report.CurrentView.md @@ -1,5 +1,5 @@ --- -title: Report.CurrentView Property (Access) +title: Report.CurrentView property (Access) keywords: vbaac10.chm13826 f1_keywords: - vbaac10.chm13826 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.CurrentView Property (Access) +# Report.CurrentView property (Access) You can use the **CurrentView** property to determine how a report is currently displayed. Read/write **Integer**. ## Syntax - _expression_. `CurrentView` +_expression_. `CurrentView` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.CurrentX.md b/api/Access.Report.CurrentX.md index 6c55b3263f7..9acf6f17ec6 100644 --- a/api/Access.Report.CurrentX.md +++ b/api/Access.Report.CurrentX.md @@ -1,5 +1,5 @@ --- -title: Report.CurrentX Property (Access) +title: Report.CurrentX property (Access) keywords: vbaac10.chm13741 f1_keywords: - vbaac10.chm13741 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.CurrentX Property (Access) +# Report.CurrentX property (Access) You can use the **CurrentX** property (along with the **CurrentY** property) to specify the horizontal and vertical coordinates for the starting position of the next printing and drawing method on a report. Read/write **Single**. ## Syntax - _expression_. `CurrentX` +_expression_. `CurrentX` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.CurrentY.md b/api/Access.Report.CurrentY.md index 247214a1236..0a080b5db20 100644 --- a/api/Access.Report.CurrentY.md +++ b/api/Access.Report.CurrentY.md @@ -1,5 +1,5 @@ --- -title: Report.CurrentY Property (Access) +title: Report.CurrentY property (Access) keywords: vbaac10.chm13742 f1_keywords: - vbaac10.chm13742 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.CurrentY Property (Access) +# Report.CurrentY property (Access) You can use the **CurrentY** property (along with the **CurrentX** property) to specify the horizontal and vertical coordinates for the starting position of the next printing and drawing method on a report. Read/write **Single**. ## Syntax - _expression_. `CurrentY` +_expression_. `CurrentY` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Cycle.md b/api/Access.Report.Cycle.md index 50336a2d3bb..d48863e389b 100644 --- a/api/Access.Report.Cycle.md +++ b/api/Access.Report.Cycle.md @@ -1,5 +1,5 @@ --- -title: Report.Cycle Property (Access) +title: Report.Cycle property (Access) keywords: vbaac10.chm13821 f1_keywords: - vbaac10.chm13821 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Cycle Property (Access) +# Report.Cycle property (Access) You can use the **Cycle** property to specify what happens when you press the TAB key and the focus is in the last control on a report. Read/write **Byte**. ## Syntax - _expression_. `Cycle` +_expression_. `Cycle` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.DateGrouping.md b/api/Access.Report.DateGrouping.md index cfd31ee3cca..fb6b03e63d0 100644 --- a/api/Access.Report.DateGrouping.md +++ b/api/Access.Report.DateGrouping.md @@ -1,5 +1,5 @@ --- -title: Report.DateGrouping Property (Access) +title: Report.DateGrouping property (Access) keywords: vbaac10.chm13699 f1_keywords: - vbaac10.chm13699 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.DateGrouping Property (Access) +# Report.DateGrouping property (Access) You can use the **DateGrouping** property to specify how you want to group dates in a report. Read/write **Byte**. ## Syntax - _expression_. `DateGrouping` +_expression_. `DateGrouping` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.DblClick.md b/api/Access.Report.DblClick.md index 3efb0205f6d..eb6e4d2e5ff 100644 --- a/api/Access.Report.DblClick.md +++ b/api/Access.Report.DblClick.md @@ -1,5 +1,5 @@ --- -title: Report.DblClick Event (Access) +title: Report.DblClick event (Access) keywords: vbaac10.chm13890 f1_keywords: - vbaac10.chm13890 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Report.DblClick Event (Access) +# Report.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an report within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_` ) +_expression_. `DblClick`( ` _Cancel_` ) - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **DblClick** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **DblClick** event.| diff --git a/api/Access.Report.Deactivate.md b/api/Access.Report.Deactivate.md index 5c54c9caf13..93403ba8b92 100644 --- a/api/Access.Report.Deactivate.md +++ b/api/Access.Report.Deactivate.md @@ -1,5 +1,5 @@ --- -title: Report.Deactivate Event (Access) +title: Report.Deactivate event (Access) keywords: vbaac10.chm13879 f1_keywords: - vbaac10.chm13879 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Deactivate Event (Access) +# Report.Deactivate event (Access) The **Deactivate** event occurs when a report loses the focus to a Table, Query, Form, Report, Macro, or Module window, or to the Database window. ## Syntax - _expression_. `Deactivate` +_expression_. `Deactivate` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## See also diff --git a/api/Access.Report.DefaultControl.md b/api/Access.Report.DefaultControl.md index 0cd66d39fec..2581667484d 100644 --- a/api/Access.Report.DefaultControl.md +++ b/api/Access.Report.DefaultControl.md @@ -1,5 +1,5 @@ --- -title: Report.DefaultControl Property (Access) +title: Report.DefaultControl property (Access) keywords: vbaac10.chm13781 f1_keywords: - vbaac10.chm13781 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Report.DefaultControl Property (Access) +# Report.DefaultControl property (Access) The **DefaultControl** property returns a **[Control](Access.Control.md)** object with which you can set the default properties for a particular type of control on a particular report. Read-only. ## Syntax - _expression_. `DefaultControl`( ` _ControlType_` ) +_expression_. `DefaultControl`( ` _ControlType_` ) - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ControlType_|Required|**Long**|An **[AcControlType](Access.AcControlType.md)** constant that indicates the type of control for which default property settings are to be set.| diff --git a/api/Access.Report.DefaultView.md b/api/Access.Report.DefaultView.md index 509da357c9f..294120348a0 100644 --- a/api/Access.Report.DefaultView.md +++ b/api/Access.Report.DefaultView.md @@ -1,5 +1,5 @@ --- -title: Report.DefaultView Property (Access) +title: Report.DefaultView property (Access) keywords: vbaac10.chm13818 f1_keywords: - vbaac10.chm13818 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.DefaultView Property (Access) +# Report.DefaultView property (Access) You can use the **DefaultView** property to specify the opening view of a report. Read/write **Byte**. ## Syntax - _expression_. `DefaultView` +_expression_. `DefaultView` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Dirty.md b/api/Access.Report.Dirty.md index a02faabe0c5..3b84e7f7ce7 100644 --- a/api/Access.Report.Dirty.md +++ b/api/Access.Report.Dirty.md @@ -1,5 +1,5 @@ --- -title: Report.Dirty Property (Access) +title: Report.Dirty property (Access) keywords: vbaac10.chm13770 f1_keywords: - vbaac10.chm13770 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Dirty Property (Access) +# Report.Dirty property (Access) You can use the **Dirty** property to determine whether the current record has been modified since it was last saved. Read/write **Boolean**. ## Syntax - _expression_. `Dirty` +_expression_. `Dirty` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.DisplayOnSharePointSite.md b/api/Access.Report.DisplayOnSharePointSite.md index 180b3070841..99d50349b8e 100644 --- a/api/Access.Report.DisplayOnSharePointSite.md +++ b/api/Access.Report.DisplayOnSharePointSite.md @@ -1,5 +1,5 @@ --- -title: Report.DisplayOnSharePointSite Property (Access) +title: Report.DisplayOnSharePointSite property (Access) keywords: vbaac10.chm13873 f1_keywords: - vbaac10.chm13873 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.DisplayOnSharePointSite Property (Access) +# Report.DisplayOnSharePointSite property (Access) Gets or sets whether the specified report can be made available as a view on a Microsoft SharePoint Foundation site. Read/write **Byte**. ## Syntax - _expression_. `DisplayOnSharePointSite` +_expression_. `DisplayOnSharePointSite` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.DrawMode.md b/api/Access.Report.DrawMode.md index 77d9e6a254c..b440713cd3c 100644 --- a/api/Access.Report.DrawMode.md +++ b/api/Access.Report.DrawMode.md @@ -1,5 +1,5 @@ --- -title: Report.DrawMode Property (Access) +title: Report.DrawMode property (Access) keywords: vbaac10.chm13753 f1_keywords: - vbaac10.chm13753 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.DrawMode Property (Access) +# Report.DrawMode property (Access) You can use the **DrawMode** property to specify how the pen (the color used in drawing) interacts with existing background colors on a report when the **[Line](Access.Report.Line.md)**, **[Circle](Access.Report.Circle.md)**, or **[Pset](Access.Report.PSet.md)** method is used to draw on a report when printing. Read/write **Integer**. ## Syntax - _expression_. `DrawMode` +_expression_. `DrawMode` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.DrawStyle.md b/api/Access.Report.DrawStyle.md index 1932d2e1b77..f0f5b541195 100644 --- a/api/Access.Report.DrawStyle.md +++ b/api/Access.Report.DrawStyle.md @@ -1,5 +1,5 @@ --- -title: Report.DrawStyle Property (Access) +title: Report.DrawStyle property (Access) keywords: vbaac10.chm13754 f1_keywords: - vbaac10.chm13754 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.DrawStyle Property (Access) +# Report.DrawStyle property (Access) You can use the **DrawStyle** property to specify the line style when using the **[Line](Access.Report.Line.md)** and **[Circle](Access.Report.Circle.md)** methods to print lines on reports. Read/write **Integer**. ## Syntax - _expression_. `DrawStyle` +_expression_. `DrawStyle` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.DrawWidth.md b/api/Access.Report.DrawWidth.md index f104ea4c592..4d7fb197ba3 100644 --- a/api/Access.Report.DrawWidth.md +++ b/api/Access.Report.DrawWidth.md @@ -1,5 +1,5 @@ --- -title: Report.DrawWidth Property (Access) +title: Report.DrawWidth property (Access) keywords: vbaac10.chm13755 f1_keywords: - vbaac10.chm13755 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.DrawWidth Property (Access) +# Report.DrawWidth property (Access) You can use the **DrawWidth** property to specify the line width for the **[Line](Access.Report.Line.md)**, **[Circle](Access.Report.Circle.md)**, and **[Pset](Access.Report.PSet.md)** methods to print lines on reports. Read/write **Integer**. ## Syntax - _expression_. `DrawWidth` +_expression_. `DrawWidth` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Error.md b/api/Access.Report.Error.md index a21e4976e07..0e1b5a753bf 100644 --- a/api/Access.Report.Error.md +++ b/api/Access.Report.Error.md @@ -1,5 +1,5 @@ --- -title: Report.Error Event (Access) +title: Report.Error event (Access) keywords: vbaac10.chm13880 f1_keywords: - vbaac10.chm13880 @@ -11,30 +11,30 @@ ms.date: 06/08/2017 --- -# Report.Error Event (Access) +# Report.Error event (Access) The Error event occurs when a run-time error is produced in Microsoft Access when a report has the focus. ## Syntax - _expression_. `Error`( ` _DataErr_`, ` _Response_` ) +_expression_. `Error`( ` _DataErr_`, ` _Response_` ) - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _DataErr_|Required|**Integer**|The error code returned by the Err object when an error occurs. You can use the DataErr argument with the Error function to map the number to the corresponding error message. | | _Response_|Required|**Integer**|The setting determines whether or not an error message is displayed. The Response argument can be one of the following intrinsic constants.
acDataErrContinue Ignore the error and continue without displaying the default Microsoft Access error message. You can supply a custom error message in place of the default error message.
acDataErrDisplay (Default) Display the default Microsoft Access error message.
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Report.MouseMove.md b/api/Access.Report.MouseMove.md index f9005baf0ac..53092ba9548 100644 --- a/api/Access.Report.MouseMove.md +++ b/api/Access.Report.MouseMove.md @@ -1,5 +1,5 @@ --- -title: Report.MouseMove Event (Access) +title: Report.MouseMove event (Access) keywords: vbaac10.chm13892 f1_keywords: - vbaac10.chm13892 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Report.MouseMove Event (Access) +# Report.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**| The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. @@ -41,7 +41,7 @@ The **MouseMove** event occurs when the user moves the mouse. | _X_|Required|**Single**|The x coordinate for the current location of the mouse pointer, in twips. | | _Y_|Required|**Single**|The y coordinate for the current location of the mouse pointer, in twips. | -### Return Value +### Return value nothing diff --git a/api/Access.Report.MouseUp.md b/api/Access.Report.MouseUp.md index 3c1fd82c668..37537ca8cad 100644 --- a/api/Access.Report.MouseUp.md +++ b/api/Access.Report.MouseUp.md @@ -1,5 +1,5 @@ --- -title: Report.MouseUp Event (Access) +title: Report.MouseUp event (Access) keywords: vbaac10.chm13893 f1_keywords: - vbaac10.chm13893 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Report.MouseUp Event (Access) +# Report.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Report.MouseWheel(even).md b/api/Access.Report.MouseWheel(even).md index a96a8c774ad..33d272783fb 100644 --- a/api/Access.Report.MouseWheel(even).md +++ b/api/Access.Report.MouseWheel(even).md @@ -1,5 +1,5 @@ --- -title: Report.MouseWheel Event (Access) +title: Report.MouseWheel event (Access) keywords: vbaac10.chm13900 f1_keywords: - vbaac10.chm13900 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Report.MouseWheel Event (Access) +# Report.MouseWheel event (Access) Occurs when the user rolls the mouse wheel in Report view or Layout view. ## Syntax - _expression_. `MouseWheel`( ` _Page_`, ` _Count_` ) +_expression_. `MouseWheel`( ` _Page_`, ` _Count_` ) - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Page_|Required|**Boolean**|**True** if the page was changed.| | _Count_|Required|**Long**|The number of lines by which the view was scrolled with the mouse wheel.| diff --git a/api/Access.Report.MouseWheel(property).md b/api/Access.Report.MouseWheel(property).md index 9f59713afae..834787b6ce2 100644 --- a/api/Access.Report.MouseWheel(property).md +++ b/api/Access.Report.MouseWheel(property).md @@ -1,5 +1,5 @@ --- -title: Report.MouseWheel Property (Access) +title: Report.MouseWheel property (Access) keywords: vbaac10.chm13872 f1_keywords: - vbaac10.chm13872 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.MouseWheel Property (Access) +# Report.MouseWheel property (Access) Returns or sets a **String** indicating which macro, event procedure, or user-defined function runs when the **MouseWheel** event occurs. Read/write. ## Syntax - _expression_. `MouseWheel` +_expression_. `MouseWheel` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Move.md b/api/Access.Report.Move.md index 269f78d86c4..abb17129717 100644 --- a/api/Access.Report.Move.md +++ b/api/Access.Report.Move.md @@ -1,5 +1,5 @@ --- -title: Report.Move Method (Access) +title: Report.Move method (Access) keywords: vbaac10.chm13808 f1_keywords: - vbaac10.chm13808 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Report.Move Method (Access) +# Report.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.Report.MoveLayout.md b/api/Access.Report.MoveLayout.md index 22829801a10..09f9dde6f55 100644 --- a/api/Access.Report.MoveLayout.md +++ b/api/Access.Report.MoveLayout.md @@ -1,5 +1,5 @@ --- -title: Report.MoveLayout Property (Access) +title: Report.MoveLayout property (Access) keywords: vbaac10.chm13732 f1_keywords: - vbaac10.chm13732 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.MoveLayout Property (Access) +# Report.MoveLayout property (Access) The **MoveLayout** property specifies whether Microsoft Access should move to the next printing location on the page. Read/write **Boolean**. ## Syntax - _expression_. `MoveLayout` +_expression_. `MoveLayout` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Moveable.md b/api/Access.Report.Moveable.md index d320e027aae..e37f56a6d30 100644 --- a/api/Access.Report.Moveable.md +++ b/api/Access.Report.Moveable.md @@ -1,5 +1,5 @@ --- -title: Report.Moveable Property (Access) +title: Report.Moveable property (Access) keywords: vbaac10.chm13811 f1_keywords: - vbaac10.chm13811 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Moveable Property (Access) +# Report.Moveable property (Access) Returns or sets a **Boolean** indicating whether the specified report can be moved by the user; **True** if it can be moved. Read/write. ## Syntax - _expression_. `Moveable` +_expression_. `Moveable` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Name.md b/api/Access.Report.Name.md index 6db1f6d8d26..c7348b8a8c4 100644 --- a/api/Access.Report.Name.md +++ b/api/Access.Report.Name.md @@ -1,5 +1,5 @@ --- -title: Report.Name Property (Access) +title: Report.Name property (Access) keywords: vbaac10.chm13795 f1_keywords: - vbaac10.chm13795 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Name Property (Access) +# Report.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.NextRecord.md b/api/Access.Report.NextRecord.md index 710fcdf36b0..48e54bd16b3 100644 --- a/api/Access.Report.NextRecord.md +++ b/api/Access.Report.NextRecord.md @@ -1,5 +1,5 @@ --- -title: Report.NextRecord Property (Access) +title: Report.NextRecord property (Access) keywords: vbaac10.chm13731 f1_keywords: - vbaac10.chm13731 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.NextRecord Property (Access) +# Report.NextRecord property (Access) The **NextRecord** property specifies whether a section should advance to the next record. Read/write **Boolean**. ## Syntax - _expression_. `NextRecord` +_expression_. `NextRecord` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.NoData.md b/api/Access.Report.NoData.md index addd735d00d..bbe182c6eb1 100644 --- a/api/Access.Report.NoData.md +++ b/api/Access.Report.NoData.md @@ -1,5 +1,5 @@ --- -title: Report.NoData Event (Access) +title: Report.NoData event (Access) keywords: vbaac10.chm13881 f1_keywords: - vbaac10.chm13881 @@ -11,7 +11,7 @@ ms.date: 11/30/2017 --- -# Report.NoData Event (Access) +# Report.NoData event (Access) The **NoData** event occurs after Microsoft Access formats a report for printing that has no data (the report is bound to an empty recordset), but before the report is printed. You can use this event to cancel printing of a blank report. @@ -24,7 +24,7 @@ _expression_ A variable that represents a **Report** object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines whether to print the report. Setting the _Cancel_ argument to **True** (?1) prevents the report from printing. You can also use the **CancelEvent** method of the **DoCmd** object to cancel printing the report.| diff --git a/api/Access.Report.OnActivate.md b/api/Access.Report.OnActivate.md index 5b9e75ee0fc..6771b22ff2c 100644 --- a/api/Access.Report.OnActivate.md +++ b/api/Access.Report.OnActivate.md @@ -1,5 +1,5 @@ --- -title: Report.OnActivate Property (Access) +title: Report.OnActivate property (Access) keywords: vbaac10.chm13765 f1_keywords: - vbaac10.chm13765 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnActivate Property (Access) +# Report.OnActivate property (Access) Sets or returns the value of the **On Activate** box in the **Properties** window of a form or report. Read/write **String**. ## Syntax - _expression_. `OnActivate` +_expression_. `OnActivate` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Activate** event occurs when the form or report receives the focus and be The **OnActivate** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Activate** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnApplyFilter.md b/api/Access.Report.OnApplyFilter.md index 08454bfda6e..3a03e4eba6a 100644 --- a/api/Access.Report.OnApplyFilter.md +++ b/api/Access.Report.OnApplyFilter.md @@ -1,5 +1,5 @@ --- -title: Report.OnApplyFilter Property (Access) +title: Report.OnApplyFilter property (Access) keywords: vbaac10.chm13870 f1_keywords: - vbaac10.chm13870 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnApplyFilter Property (Access) +# Report.OnApplyFilter property (Access) Sets or returns the value of the **On Apply Filter** box in the **Properties** window of a report. Read/write **String**. ## Syntax - _expression_. `OnApplyFilter` +_expression_. `OnApplyFilter` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **ApplyFilter** event occurs when a filter is applied or removed. The **OnApplyFilter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Apply Filter** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnClick.md b/api/Access.Report.OnClick.md index a7d1f3378c3..01f95157317 100644 --- a/api/Access.Report.OnClick.md +++ b/api/Access.Report.OnClick.md @@ -1,5 +1,5 @@ --- -title: Report.OnClick Property (Access) +title: Report.OnClick property (Access) keywords: vbaac10.chm13861 f1_keywords: - vbaac10.chm13861 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnClick Property (Access) +# Report.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnClose.md b/api/Access.Report.OnClose.md index 064f53c3f0e..ca7bb1e9caf 100644 --- a/api/Access.Report.OnClose.md +++ b/api/Access.Report.OnClose.md @@ -1,5 +1,5 @@ --- -title: Report.OnClose Property (Access) +title: Report.OnClose property (Access) keywords: vbaac10.chm13764 f1_keywords: - vbaac10.chm13764 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnClose Property (Access) +# Report.OnClose property (Access) Sets or returns the value of the **On Close** box in the **Properties** window of a form or report. Read/write **String**. ## Syntax - _expression_. `OnClose` +_expression_. `OnClose` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Close** event occurs when when a form or report is closed and removed fro The **OnClose** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Close** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnCurrent.md b/api/Access.Report.OnCurrent.md index a86ede9c409..db0a5e298d6 100644 --- a/api/Access.Report.OnCurrent.md +++ b/api/Access.Report.OnCurrent.md @@ -1,5 +1,5 @@ --- -title: Report.OnCurrent Property (Access) +title: Report.OnCurrent property (Access) keywords: vbaac10.chm13823 f1_keywords: - vbaac10.chm13823 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnCurrent Property (Access) +# Report.OnCurrent property (Access) Sets or returns the value of the **On Current** property on the Report. Read/write **String**. ## Syntax - _expression_. `OnCurrent` +_expression_. `OnCurrent` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -34,7 +34,7 @@ If you set the form's **On Current** property in the UI, it gets it value based - If you select **Code Builder**, then the value will be _[Event Procedure]_. -- If you select **Expression Builder**, then the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If you select **Expression Builder**, then the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If you select **Macro Builder**, then the value will be the name of the macro. @@ -96,6 +96,6 @@ End Sub ## See also -[Report.Current Event (Access)](Access.Report.Current.md) +[Report.Current event (Access)](Access.Report.Current.md) [Report Object](Access.Report.md) diff --git a/api/Access.Report.OnDblClick.md b/api/Access.Report.OnDblClick.md index 9847709b3af..eaba465ed57 100644 --- a/api/Access.Report.OnDblClick.md +++ b/api/Access.Report.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: Report.OnDblClick Property (Access) +title: Report.OnDblClick property (Access) keywords: vbaac10.chm13862 f1_keywords: - vbaac10.chm13862 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnDblClick Property (Access) +# Report.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnDeactivate.md b/api/Access.Report.OnDeactivate.md index 6c4d21e90a6..26a4139e8cb 100644 --- a/api/Access.Report.OnDeactivate.md +++ b/api/Access.Report.OnDeactivate.md @@ -1,5 +1,5 @@ --- -title: Report.OnDeactivate Property (Access) +title: Report.OnDeactivate property (Access) keywords: vbaac10.chm13766 f1_keywords: - vbaac10.chm13766 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnDeactivate Property (Access) +# Report.OnDeactivate property (Access) Sets or returns the value of the **On Deactivate** box in the **Properties** window of a form or report. Read/write **String**. ## Syntax - _expression_. `OnDeactivate` +_expression_. `OnDeactivate` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Deactivate** event occurs when the form or report loses the focus to a Ta The **OnDeactivate** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Deactivate** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnError.md b/api/Access.Report.OnError.md index ab23d9ee0bc..31705f91455 100644 --- a/api/Access.Report.OnError.md +++ b/api/Access.Report.OnError.md @@ -1,5 +1,5 @@ --- -title: Report.OnError Property (Access) +title: Report.OnError property (Access) keywords: vbaac10.chm13769 f1_keywords: - vbaac10.chm13769 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnError Property (Access) +# Report.OnError property (Access) Sets or returns the value of the **OnError** box in the **Properties** window of a form or report. Read/write **String**. ## Syntax - _expression_. `OnError` +_expression_. `OnError` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Error** event occurs when a run-time error is produced in Microsoft Acces The **OnError** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **OnError** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnFilter.md b/api/Access.Report.OnFilter.md index d5106044f84..efa9dcd712d 100644 --- a/api/Access.Report.OnFilter.md +++ b/api/Access.Report.OnFilter.md @@ -1,5 +1,5 @@ --- -title: Report.OnFilter Property (Access) +title: Report.OnFilter property (Access) keywords: vbaac10.chm13869 f1_keywords: - vbaac10.chm13869 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnFilter Property (Access) +# Report.OnFilter property (Access) Sets or returns the value of the **On Filter** box in the **Properties** window of a report. Read/write **String**. ## Syntax - _expression_. `OnFilter` +_expression_. `OnFilter` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Filter** event occurs when a report is opened and its records are display The **OnFilter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Filter** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnGotFocus.md b/api/Access.Report.OnGotFocus.md index 62808b97016..5fe191cae9e 100644 --- a/api/Access.Report.OnGotFocus.md +++ b/api/Access.Report.OnGotFocus.md @@ -1,5 +1,5 @@ --- -title: Report.OnGotFocus Property (Access) +title: Report.OnGotFocus property (Access) keywords: vbaac10.chm13859 f1_keywords: - vbaac10.chm13859 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnGotFocus Property (Access) +# Report.OnGotFocus property (Access) Sets or returns the value of the **On Got Focus** box in the **Properties** window of the specified report. Read/write **String**. ## Syntax - _expression_. `OnGotFocus` +_expression_. `OnGotFocus` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **GotFocus** event occurs when the report receives the focus. The **OnGotFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Got Focus** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnKeyDown.md b/api/Access.Report.OnKeyDown.md index 3f29af21789..df22fc16627 100644 --- a/api/Access.Report.OnKeyDown.md +++ b/api/Access.Report.OnKeyDown.md @@ -1,5 +1,5 @@ --- -title: Report.OnKeyDown Property (Access) +title: Report.OnKeyDown property (Access) keywords: vbaac10.chm13866 f1_keywords: - vbaac10.chm13866 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnKeyDown Property (Access) +# Report.OnKeyDown property (Access) Sets or returns the value of the **On Key Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyDown` +_expression_. `OnKeyDown` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyDown** event occurs when a user presses a key while a report or contro The **OnKeyDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Down** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnKeyPress.md b/api/Access.Report.OnKeyPress.md index eef92791b2a..1f04376c09c 100644 --- a/api/Access.Report.OnKeyPress.md +++ b/api/Access.Report.OnKeyPress.md @@ -1,5 +1,5 @@ --- -title: Report.OnKeyPress Property (Access) +title: Report.OnKeyPress property (Access) keywords: vbaac10.chm13868 f1_keywords: - vbaac10.chm13868 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnKeyPress Property (Access) +# Report.OnKeyPress property (Access) Sets or returns the value of the **On Key Press** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyPress` +_expression_. `OnKeyPress` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyPress** event occurs when a user presses a key while a report or contr The **OnKeyPress** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Press** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnKeyUp.md b/api/Access.Report.OnKeyUp.md index 327fafb540c..bb7a3847118 100644 --- a/api/Access.Report.OnKeyUp.md +++ b/api/Access.Report.OnKeyUp.md @@ -1,5 +1,5 @@ --- -title: Report.OnKeyUp Property (Access) +title: Report.OnKeyUp property (Access) keywords: vbaac10.chm13867 f1_keywords: - vbaac10.chm13867 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnKeyUp Property (Access) +# Report.OnKeyUp property (Access) Sets or returns the value of the **On Key Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyUp` +_expression_. `OnKeyUp` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyUp** event occurs when a user presses a key while a report or control The **OnKeyUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Up** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnLoad.md b/api/Access.Report.OnLoad.md index 801d3ac234c..d05028dff41 100644 --- a/api/Access.Report.OnLoad.md +++ b/api/Access.Report.OnLoad.md @@ -1,5 +1,5 @@ --- -title: Report.OnLoad Property (Access) +title: Report.OnLoad property (Access) keywords: vbaac10.chm13856 f1_keywords: - vbaac10.chm13856 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnLoad Property (Access) +# Report.OnLoad property (Access) Sets or returns the value of the **On Load** box in the **Properties** window of a report. Read/write **String**. ## Syntax - _expression_. `OnLoad` +_expression_. `OnLoad` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Load** event occurs when a report is opened and its records are displayed The **OnLoad** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Load** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnLostFocus.md b/api/Access.Report.OnLostFocus.md index 6413c63884e..33a25e32010 100644 --- a/api/Access.Report.OnLostFocus.md +++ b/api/Access.Report.OnLostFocus.md @@ -1,5 +1,5 @@ --- -title: Report.OnLostFocus Property (Access) +title: Report.OnLostFocus property (Access) keywords: vbaac10.chm13860 f1_keywords: - vbaac10.chm13860 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnLostFocus Property (Access) +# Report.OnLostFocus property (Access) Sets or returns the value of the **On Lost Focus** box in the **Properties** window of the specified report. Read/write **String**. ## Syntax - _expression_. `OnLostFocus` +_expression_. `OnLostFocus` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **LostFocus** event occurs when the report loses the focus. The **OnLostFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Lost Focus** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnMouseDown.md b/api/Access.Report.OnMouseDown.md index cdad01a100a..69472f3a748 100644 --- a/api/Access.Report.OnMouseDown.md +++ b/api/Access.Report.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: Report.OnMouseDown Property (Access) +title: Report.OnMouseDown property (Access) keywords: vbaac10.chm13863 f1_keywords: - vbaac10.chm13863 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnMouseDown Property (Access) +# Report.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnMouseMove.md b/api/Access.Report.OnMouseMove.md index 3ac0c81fe70..04e114d9aa1 100644 --- a/api/Access.Report.OnMouseMove.md +++ b/api/Access.Report.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: Report.OnMouseMove Property (Access) +title: Report.OnMouseMove property (Access) keywords: vbaac10.chm13864 f1_keywords: - vbaac10.chm13864 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnMouseMove Property (Access) +# Report.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the report. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnMouseUp.md b/api/Access.Report.OnMouseUp.md index 1d97f41fb78..b2eacf13595 100644 --- a/api/Access.Report.OnMouseUp.md +++ b/api/Access.Report.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: Report.OnMouseUp Property (Access) +title: Report.OnMouseUp property (Access) keywords: vbaac10.chm13865 f1_keywords: - vbaac10.chm13865 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnMouseUp Property (Access) +# Report.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnNoData.md b/api/Access.Report.OnNoData.md index 46bc30cc318..217533c8f2c 100644 --- a/api/Access.Report.OnNoData.md +++ b/api/Access.Report.OnNoData.md @@ -1,5 +1,5 @@ --- -title: Report.OnNoData Property (Access) +title: Report.OnNoData property (Access) keywords: vbaac10.chm13767,vbaac10.chm4135 f1_keywords: - vbaac10.chm13767,vbaac10.chm4135 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnNoData Property (Access) +# Report.OnNoData property (Access) Sets or returns the value of the **On No Data** box in the **Properties** window of a report. Read/write **String**. ## Syntax - _expression_. `OnNoData` +_expression_. `OnNoData` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **NoData** event occurs after Microsoft Access formats a report for printin The **OnNoData** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On No Data** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnOpen.md b/api/Access.Report.OnOpen.md index 1c70bbc46e6..a09b1fb9cc5 100644 --- a/api/Access.Report.OnOpen.md +++ b/api/Access.Report.OnOpen.md @@ -1,5 +1,5 @@ --- -title: Report.OnOpen Property (Access) +title: Report.OnOpen property (Access) keywords: vbaac10.chm13763 f1_keywords: - vbaac10.chm13763 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnOpen Property (Access) +# Report.OnOpen property (Access) Sets or returns the value of the **On Open** box in the **Properties** window of a form or report. Read/write **String**. ## Syntax - _expression_. `OnOpen` +_expression_. `OnOpen` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Open** event occurs when a form is opened, but before the first record is The **OnOpen** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Open** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnPage.md b/api/Access.Report.OnPage.md index d91f7e6082d..e49e538c252 100644 --- a/api/Access.Report.OnPage.md +++ b/api/Access.Report.OnPage.md @@ -1,5 +1,5 @@ --- -title: Report.OnPage Property (Access) +title: Report.OnPage property (Access) keywords: vbaac10.chm13768 f1_keywords: - vbaac10.chm13768 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnPage Property (Access) +# Report.OnPage property (Access) Sets or returns the value of the **On Page** box in the **Properties** window of a report. Read/write **String**. ## Syntax - _expression_. `OnPage` +_expression_. `OnPage` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Page** event occurs after Microsoft Access formats a page of a report for The **OnPage** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Page** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnResize.md b/api/Access.Report.OnResize.md index 5e6a009b6c6..b314c96393c 100644 --- a/api/Access.Report.OnResize.md +++ b/api/Access.Report.OnResize.md @@ -1,5 +1,5 @@ --- -title: Report.OnResize Property (Access) +title: Report.OnResize property (Access) keywords: vbaac10.chm13857 f1_keywords: - vbaac10.chm13857 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnResize Property (Access) +# Report.OnResize property (Access) Sets or returns the value of the **On Resize** box in the **Properties** window of a report. Read/write **String**. ## Syntax - _expression_. `OnResize` +_expression_. `OnResize` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Resize** event occurs when a report is opened and whenever the size of a The **OnResize** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Resize** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnTimer.md b/api/Access.Report.OnTimer.md index b2442d49474..d253e7a07e9 100644 --- a/api/Access.Report.OnTimer.md +++ b/api/Access.Report.OnTimer.md @@ -1,5 +1,5 @@ --- -title: Report.OnTimer Property (Access) +title: Report.OnTimer property (Access) keywords: vbaac10.chm13871 f1_keywords: - vbaac10.chm13871 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnTimer Property (Access) +# Report.OnTimer property (Access) Sets or returns the value of the **On Timer** box in the **Properties** window of a form. Read/write **String**. ## Syntax - _expression_. `OnTimer` +_expression_. `OnTimer` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Timer** event occurs for a report at regular intervals as specified by th The **OnTimer** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Timer** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.OnUnload.md b/api/Access.Report.OnUnload.md index c41cf180d6f..67e238ebd94 100644 --- a/api/Access.Report.OnUnload.md +++ b/api/Access.Report.OnUnload.md @@ -1,5 +1,5 @@ --- -title: Report.OnUnload Property (Access) +title: Report.OnUnload property (Access) keywords: vbaac10.chm13858 f1_keywords: - vbaac10.chm13858 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OnUnload Property (Access) +# Report.OnUnload property (Access) Sets or returns the value of the **On Unload** box in the **Properties** window of a form. Read/write **String**. ## Syntax - _expression_. `OnUnload` +_expression_. `OnUnload` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Unload** event occurs after a report is closed but before it's removed fr The **OnUnload** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Unload** box in the report's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Report.Open.md b/api/Access.Report.Open.md index 043e8ca3679..a641b316e43 100644 --- a/api/Access.Report.Open.md +++ b/api/Access.Report.Open.md @@ -1,5 +1,5 @@ --- -title: Report.Open Event (Access) +title: Report.Open event (Access) keywords: vbaac10.chm13876 f1_keywords: - vbaac10.chm13876 @@ -11,7 +11,7 @@ ms.date: 11/30/2017 --- -# Report.Open Event (Access) +# Report.Open event (Access) The **Open** occurs before a report is previewed or printed. @@ -25,7 +25,7 @@ _expression_ A variable that represents a **Report** object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**| diff --git a/api/Access.Report.OpenArgs.md b/api/Access.Report.OpenArgs.md index ad67c8a0bb3..4f906efe83b 100644 --- a/api/Access.Report.OpenArgs.md +++ b/api/Access.Report.OpenArgs.md @@ -1,5 +1,5 @@ --- -title: Report.OpenArgs Property (Access) +title: Report.OpenArgs property (Access) keywords: vbaac10.chm13809 f1_keywords: - vbaac10.chm13809 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OpenArgs Property (Access) +# Report.OpenArgs property (Access) Determines the string expression specified by the _OpenArgs_ argument of the **OpenReport** method that opened a Report. Read/write **Variant**. ## Syntax - _expression_. `OpenArgs` +_expression_. `OpenArgs` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.OrderBy.md b/api/Access.Report.OrderBy.md index ef5ef292267..8afc774eb92 100644 --- a/api/Access.Report.OrderBy.md +++ b/api/Access.Report.OrderBy.md @@ -1,5 +1,5 @@ --- -title: Report.OrderBy Property (Access) +title: Report.OrderBy property (Access) keywords: vbaac10.chm13692 f1_keywords: - vbaac10.chm13692 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OrderBy Property (Access) +# Report.OrderBy property (Access) You can use the **OrderBy** property to specify how you want to sort records in a report. Read/write **String**. ## Syntax - _expression_. `OrderBy` +_expression_. `OrderBy` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.OrderByOn.md b/api/Access.Report.OrderByOn.md index 87f0cdc5320..4ed9f2b9a99 100644 --- a/api/Access.Report.OrderByOn.md +++ b/api/Access.Report.OrderByOn.md @@ -1,5 +1,5 @@ --- -title: Report.OrderByOn Property (Access) +title: Report.OrderByOn property (Access) keywords: vbaac10.chm13693 f1_keywords: - vbaac10.chm13693 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OrderByOn Property (Access) +# Report.OrderByOn property (Access) You can use the **OrderByOn** property to specify whether an object's **OrderBy** property setting is applied. Read/write **Boolean**. ## Syntax - _expression_. `OrderByOn` +_expression_. `OrderByOn` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.OrderByOnLoad.md b/api/Access.Report.OrderByOnLoad.md index 5eeba110325..95690b30803 100644 --- a/api/Access.Report.OrderByOnLoad.md +++ b/api/Access.Report.OrderByOnLoad.md @@ -1,5 +1,5 @@ --- -title: Report.OrderByOnLoad Property (Access) +title: Report.OrderByOnLoad property (Access) keywords: vbaac10.chm13817 f1_keywords: - vbaac10.chm13817 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.OrderByOnLoad Property (Access) +# Report.OrderByOnLoad property (Access) Gets or sets whether the sorting specified by the **[OrderBy](Access.Report.OrderBy.md)** property is applied when the report is loaded. Read/write **Boolean**. ## Syntax - _expression_. `OrderByOnLoad` +_expression_. `OrderByOnLoad` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## See also diff --git a/api/Access.Report.Orientation.md b/api/Access.Report.Orientation.md index db7a537d152..877cf3f1b1f 100644 --- a/api/Access.Report.Orientation.md +++ b/api/Access.Report.Orientation.md @@ -1,5 +1,5 @@ --- -title: Report.Orientation Property (Access) +title: Report.Orientation property (Access) keywords: vbaac10.chm13776 f1_keywords: - vbaac10.chm13776 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Orientation Property (Access) +# Report.Orientation property (Access) You can use the **Orientation** property to specify or determine the view orientation. Read/write **Byte**. ## Syntax - _expression_. `Orientation` +_expression_. `Orientation` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.PSet.md b/api/Access.Report.PSet.md index 0b45a5f56da..a5284c85e1e 100644 --- a/api/Access.Report.PSet.md +++ b/api/Access.Report.PSet.md @@ -1,5 +1,5 @@ --- -title: Report.PSet Method (Access) +title: Report.PSet method (Access) keywords: vbaac10.chm13784 f1_keywords: - vbaac10.chm13784 @@ -11,30 +11,30 @@ ms.date: 06/08/2017 --- -# Report.PSet Method (Access) +# Report.PSet method (Access) The **PSet** method sets a point on a **[Report](Access.Report.md)** object to a specified color when the **Print** event occurs. ## Syntax - _expression_. `PSet`( ` _flags_`, ` _X_`, ` _Y_`, ` _color_` ) +_expression_. `PSet`( ` _flags_`, ` _X_`, ` _Y_`, ` _color_` ) - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _flags_|Required|**Integer**| A keyword that indicates the coordinates are relative to the current graphics position given by the settings for the **[CurrentX](Access.Report.CurrentX.md)** and **[CurrentY](Access.Report.CurrentY.md)** properties of the _object_ argument.| | _X_|Required|**Single**|The horizontal coordinate of the point to set.| | _Y_|Required|**Single**|The vertical coordinate of the point to set.| | _color_|Required|**Long**|the RGB (red-green-blue) color to set the point to. If this argument is omitted, the value of the **ForeColor** property is used. You can also use the **RGB** function or **QBColor** function to specify the color.| -### Return Value +### Return value Nothing diff --git a/api/Access.Report.Page(even).md b/api/Access.Report.Page(even).md index 6940d0a1c11..a42e64e5bff 100644 --- a/api/Access.Report.Page(even).md +++ b/api/Access.Report.Page(even).md @@ -1,5 +1,5 @@ --- -title: Report.Page Event (Access) +title: Report.Page event (Access) keywords: vbaac10.chm13882 f1_keywords: - vbaac10.chm13882 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# Report.Page Event (Access) +# Report.Page event (Access) The **Page** event occurs after Microsoft Access formats a page of a report for printing, but before the page is printed. You can use this event to draw a border around the page, or add other graphic elements to the page. ## Syntax - _expression_. `Page` +_expression_. `Page` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.Report.Page(property).md b/api/Access.Report.Page(property).md index 79a99cea504..45a3fd1c147 100644 --- a/api/Access.Report.Page(property).md +++ b/api/Access.Report.Page(property).md @@ -1,5 +1,5 @@ --- -title: Report.Page Property (Access) +title: Report.Page property (Access) keywords: vbaac10.chm13721 f1_keywords: - vbaac10.chm13721 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Page Property (Access) +# Report.Page property (Access) The **Page** property specifies the current page number when a report is being printed. Read/write **Long**. ## Syntax - _expression_. `Page` +_expression_. `Page` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.PageFooter.md b/api/Access.Report.PageFooter.md index 2eb9730d593..a272a5ecf7c 100644 --- a/api/Access.Report.PageFooter.md +++ b/api/Access.Report.PageFooter.md @@ -1,5 +1,5 @@ --- -title: Report.PageFooter Property (Access) +title: Report.PageFooter property (Access) keywords: vbaac10.chm13698 f1_keywords: - vbaac10.chm13698 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PageFooter Property (Access) +# Report.PageFooter property (Access) You can use the **PageFooter** property to specify whether a report's page footer is printed on the same page as a report footer. Read/write **Byte**. ## Syntax - _expression_. `PageFooter` +_expression_. `PageFooter` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.PageHeader.md b/api/Access.Report.PageHeader.md index ef5615f91b0..42f53f78cb3 100644 --- a/api/Access.Report.PageHeader.md +++ b/api/Access.Report.PageHeader.md @@ -1,5 +1,5 @@ --- -title: Report.PageHeader Property (Access) +title: Report.PageHeader property (Access) keywords: vbaac10.chm13697,vbaac10.chm5495 f1_keywords: - vbaac10.chm13697,vbaac10.chm5495 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PageHeader Property (Access) +# Report.PageHeader property (Access) You can use the **PageHeader** property to specify whether a report's page header is printed on the same page as a report header. Read/write **Byte**. ## Syntax - _expression_. `PageHeader` +_expression_. `PageHeader` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Pages.md b/api/Access.Report.Pages.md index 92ea596ecb4..8e8185fb6e4 100644 --- a/api/Access.Report.Pages.md +++ b/api/Access.Report.Pages.md @@ -1,5 +1,5 @@ --- -title: Report.Pages Property (Access) +title: Report.Pages property (Access) keywords: vbaac10.chm13722 f1_keywords: - vbaac10.chm13722 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Pages Property (Access) +# Report.Pages property (Access) You can use the **Pages** property to return information needed to print page numbers in a report. Read/write **Integer**. ## Syntax - _expression_. `Pages` +_expression_. `Pages` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.PaintPalette.md b/api/Access.Report.PaintPalette.md index 9158696ea7c..93e7521cf5b 100644 --- a/api/Access.Report.PaintPalette.md +++ b/api/Access.Report.PaintPalette.md @@ -1,5 +1,5 @@ --- -title: Report.PaintPalette Property (Access) +title: Report.PaintPalette property (Access) keywords: vbaac10.chm13761 f1_keywords: - vbaac10.chm13761 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PaintPalette Property (Access) +# Report.PaintPalette property (Access) You can use the **PaintPalette** property to specify a palette to be used by a report. Read/write **Variant**. ## Syntax - _expression_. `PaintPalette` +_expression_. `PaintPalette` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Painting.md b/api/Access.Report.Painting.md index 5c0d9c7a61f..a9b4e788edc 100644 --- a/api/Access.Report.Painting.md +++ b/api/Access.Report.Painting.md @@ -1,5 +1,5 @@ --- -title: Report.Painting Property (Access) +title: Report.Painting property (Access) keywords: vbaac10.chm13736 f1_keywords: - vbaac10.chm13736 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Painting Property (Access) +# Report.Painting property (Access) You can use the **Painting** property to specify whether a report is repainted. Read/write **Boolean**. ## Syntax - _expression_. `Painting` +_expression_. `Painting` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.PaletteSource.md b/api/Access.Report.PaletteSource.md index 017a76b5523..dec17f9ac00 100644 --- a/api/Access.Report.PaletteSource.md +++ b/api/Access.Report.PaletteSource.md @@ -1,5 +1,5 @@ --- -title: Report.PaletteSource Property (Access) +title: Report.PaletteSource property (Access) keywords: vbaac10.chm13759 f1_keywords: - vbaac10.chm13759 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PaletteSource Property (Access) +# Report.PaletteSource property (Access) You can use the **PaletteSource** property to specify the palette for a report. Read/write **String**. ## Syntax - _expression_. `PaletteSource` +_expression_. `PaletteSource` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Parent.md b/api/Access.Report.Parent.md index 8ecba5f6d81..01c59ea874c 100644 --- a/api/Access.Report.Parent.md +++ b/api/Access.Report.Parent.md @@ -1,5 +1,5 @@ --- -title: Report.Parent Property (Access) +title: Report.Parent property (Access) keywords: vbaac10.chm13779 f1_keywords: - vbaac10.chm13779 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Parent Property (Access) +# Report.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Picture.md b/api/Access.Report.Picture.md index 6fe0e73434e..f2a5368dedd 100644 --- a/api/Access.Report.Picture.md +++ b/api/Access.Report.Picture.md @@ -1,5 +1,5 @@ --- -title: Report.Picture Property (Access) +title: Report.Picture property (Access) keywords: vbaac10.chm13704 f1_keywords: - vbaac10.chm13704 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Picture Property (Access) +# Report.Picture property (Access) You can use the **Picture** property to specify a bitmap or other type of graphic to be used as a background picture on a report. Read/write **String**. ## Syntax - _expression_. `Picture` +_expression_. `Picture` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.PictureAlignment.md b/api/Access.Report.PictureAlignment.md index 5421a787d86..f3228df8fea 100644 --- a/api/Access.Report.PictureAlignment.md +++ b/api/Access.Report.PictureAlignment.md @@ -1,5 +1,5 @@ --- -title: Report.PictureAlignment Property (Access) +title: Report.PictureAlignment property (Access) keywords: vbaac10.chm13707 f1_keywords: - vbaac10.chm13707 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PictureAlignment Property (Access) +# Report.PictureAlignment property (Access) You can use the **PictureAlignment** property to specify where a background picture will appear in an image control or on a form or report. Read/write **Byte**.Read/write. ## Syntax - _expression_. `PictureAlignment` +_expression_. `PictureAlignment` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.PictureData.md b/api/Access.Report.PictureData.md index 7e78e71aa0f..5e31a4b7eda 100644 --- a/api/Access.Report.PictureData.md +++ b/api/Access.Report.PictureData.md @@ -1,5 +1,5 @@ --- -title: Report.PictureData Property (Access) +title: Report.PictureData property (Access) keywords: vbaac10.chm13772 f1_keywords: - vbaac10.chm13772 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PictureData Property (Access) +# Report.PictureData property (Access) You can use the **PictureData** property to copy the picture to another object that supports the **Picture** property. Read/write **Variant**. ## Syntax - _expression_. `PictureData` +_expression_. `PictureData` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.PicturePages.md b/api/Access.Report.PicturePages.md index bd555f68ce7..edd56b69f65 100644 --- a/api/Access.Report.PicturePages.md +++ b/api/Access.Report.PicturePages.md @@ -1,5 +1,5 @@ --- -title: Report.PicturePages Property (Access) +title: Report.PicturePages property (Access) keywords: vbaac10.chm13709,vbaac10.chm4464 f1_keywords: - vbaac10.chm13709,vbaac10.chm4464 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PicturePages Property (Access) +# Report.PicturePages property (Access) You can use the **PicturePages** property to specify on which page or pages of a report a picture will be displayed. Read/write **Byte**. ## Syntax - _expression_. `PicturePages` +_expression_. `PicturePages` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.PicturePalette.md b/api/Access.Report.PicturePalette.md index 4b7c9b5c5ac..e8f0ff08356 100644 --- a/api/Access.Report.PicturePalette.md +++ b/api/Access.Report.PicturePalette.md @@ -1,5 +1,5 @@ --- -title: Report.PicturePalette Property (Access) +title: Report.PicturePalette property (Access) keywords: vbaac10.chm13773 f1_keywords: - vbaac10.chm13773 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PicturePalette Property (Access) +# Report.PicturePalette property (Access) You can use the **PicturePalette** property to specify a palette to be used by a report. Read/write **Variant**. ## Syntax - _expression_. `PicturePalette` +_expression_. `PicturePalette` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## See also diff --git a/api/Access.Report.PictureSizeMode.md b/api/Access.Report.PictureSizeMode.md index bdff3da4235..a8a47470a8e 100644 --- a/api/Access.Report.PictureSizeMode.md +++ b/api/Access.Report.PictureSizeMode.md @@ -1,5 +1,5 @@ --- -title: Report.PictureSizeMode Property (Access) +title: Report.PictureSizeMode property (Access) keywords: vbaac10.chm13706 f1_keywords: - vbaac10.chm13706 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PictureSizeMode Property (Access) +# Report.PictureSizeMode property (Access) You can use the **PictureSizeMode** property to specify how a picture for a form or report is sized. Read/write **Byte**. ## Syntax - _expression_. `PictureSizeMode` +_expression_. `PictureSizeMode` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.PictureTiling.md b/api/Access.Report.PictureTiling.md index 86f415762b5..4344623e49e 100644 --- a/api/Access.Report.PictureTiling.md +++ b/api/Access.Report.PictureTiling.md @@ -1,5 +1,5 @@ --- -title: Report.PictureTiling Property (Access) +title: Report.PictureTiling property (Access) keywords: vbaac10.chm13708 f1_keywords: - vbaac10.chm13708 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PictureTiling Property (Access) +# Report.PictureTiling property (Access) You can use the **PictureTiling** property to specify whether a background picture is tiled across the entire image control, Form window, form, or page of a report. Read/write **Boolean**. ## Syntax - _expression_. `PictureTiling` +_expression_. `PictureTiling` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.PictureType.md b/api/Access.Report.PictureType.md index 5542da60620..635be4d2c9c 100644 --- a/api/Access.Report.PictureType.md +++ b/api/Access.Report.PictureType.md @@ -1,5 +1,5 @@ --- -title: Report.PictureType Property (Access) +title: Report.PictureType property (Access) keywords: vbaac10.chm13705 f1_keywords: - vbaac10.chm13705 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PictureType Property (Access) +# Report.PictureType property (Access) You can use the **PictureType** property to specify whether Microsoft Access stores an object's picture as a linked or an embedded object. Read/write **Byte**. ## Syntax - _expression_. `PictureType` +_expression_. `PictureType` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.PopUp.md b/api/Access.Report.PopUp.md index a40f84ca355..6803798a61d 100644 --- a/api/Access.Report.PopUp.md +++ b/api/Access.Report.PopUp.md @@ -1,5 +1,5 @@ --- -title: Report.PopUp Property (Access) +title: Report.PopUp property (Access) keywords: vbaac10.chm13798 f1_keywords: - vbaac10.chm13798 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PopUp Property (Access) +# Report.PopUp property (Access) Specifies whether a report opens as a pop-up window. Read/write **Boolean**. ## Syntax - _expression_. `PopUp` +_expression_. `PopUp` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Print.md b/api/Access.Report.Print.md index 1bb1a8749b3..9155696ac30 100644 --- a/api/Access.Report.Print.md +++ b/api/Access.Report.Print.md @@ -1,5 +1,5 @@ --- -title: Report.Print Method (Access) +title: Report.Print method (Access) keywords: vbaac10.chm13788 f1_keywords: - vbaac10.chm13788 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# Report.Print Method (Access) +# Report.Print method (Access) The **Print** method prints text on a **[Report](Access.Report.md)** object using the current color and font. ## Syntax - _expression_. `Print`( ` _Expr_` ) +_expression_. `Print`( ` _Expr_` ) - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Expr_|Required|**String**|The string expressions to print. If this argument is omitted, the **Print** method prints a blank line. Multiple expressions can be separated with a space, a semicolon (;), or a comma. A space has the same effect as a semicolon.| -### Return Value +### Return value Nothing diff --git a/api/Access.Report.PrintCount.md b/api/Access.Report.PrintCount.md index 6a2ec6b04fe..771040fda3f 100644 --- a/api/Access.Report.PrintCount.md +++ b/api/Access.Report.PrintCount.md @@ -1,5 +1,5 @@ --- -title: Report.PrintCount Property (Access) +title: Report.PrintCount property (Access) keywords: vbaac10.chm13734 f1_keywords: - vbaac10.chm13734 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PrintCount Property (Access) +# Report.PrintCount property (Access) You can use the **PrintCount** property to identify the number of times the **OnPrint** property has been evaluated for the current section of a report. Read/write **Integer**. ## Syntax - _expression_. `PrintCount` +_expression_. `PrintCount` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.PrintSection.md b/api/Access.Report.PrintSection.md index 446beb3e5fa..22927621460 100644 --- a/api/Access.Report.PrintSection.md +++ b/api/Access.Report.PrintSection.md @@ -1,5 +1,5 @@ --- -title: Report.PrintSection Property (Access) +title: Report.PrintSection property (Access) keywords: vbaac10.chm13730 f1_keywords: - vbaac10.chm13730 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PrintSection Property (Access) +# Report.PrintSection property (Access) The **PrintSection** property specifies whether a section should be printed. Read/write **Boolean**. ## Syntax - _expression_. `PrintSection` +_expression_. `PrintSection` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Printer.md b/api/Access.Report.Printer.md index 73514e9d4eb..9d956ddd999 100644 --- a/api/Access.Report.Printer.md +++ b/api/Access.Report.Printer.md @@ -1,5 +1,5 @@ --- -title: Report.Printer Property (Access) +title: Report.Printer property (Access) keywords: vbaac10.chm13810 f1_keywords: - vbaac10.chm13810 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Printer Property (Access) +# Report.Printer property (Access) Returns or sets a **[Printer](Access.Printer.md)** object representing the default printer on the current system. Read/write. ## Syntax - _expression_. `Printer` +_expression_. `Printer` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Example diff --git a/api/Access.Report.Properties.md b/api/Access.Report.Properties.md index 37ff980ea9d..756a8f444b9 100644 --- a/api/Access.Report.Properties.md +++ b/api/Access.Report.Properties.md @@ -1,5 +1,5 @@ --- -title: Report.Properties Property (Access) +title: Report.Properties property (Access) keywords: vbaac10.chm13793 f1_keywords: - vbaac10.chm13793 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Properties Property (Access) +# Report.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.PrtDevMode.md b/api/Access.Report.PrtDevMode.md index 28d7268a953..63d3dccf271 100644 --- a/api/Access.Report.PrtDevMode.md +++ b/api/Access.Report.PrtDevMode.md @@ -1,5 +1,5 @@ --- -title: Report.PrtDevMode Property (Access) +title: Report.PrtDevMode property (Access) keywords: vbaac10.chm13738 f1_keywords: - vbaac10.chm13738 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PrtDevMode Property (Access) +# Report.PrtDevMode property (Access) You can use the **PrtDevMode** property to set or return printing device mode information specified for a form or report in the **Print** dialog box. Read/write **Variant**. ## Syntax - _expression_. `PrtDevMode` +_expression_. `PrtDevMode` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.PrtDevNames.md b/api/Access.Report.PrtDevNames.md index 907fd252609..d561c1d3229 100644 --- a/api/Access.Report.PrtDevNames.md +++ b/api/Access.Report.PrtDevNames.md @@ -1,5 +1,5 @@ --- -title: Report.PrtDevNames Property (Access) +title: Report.PrtDevNames property (Access) keywords: vbaac10.chm13739 f1_keywords: - vbaac10.chm13739 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PrtDevNames Property (Access) +# Report.PrtDevNames property (Access) You can use the **PrtDevNames** property to set or return information about the printer selected in the **Print** dialog box for a form or report. Read/write **Variant**. ## Syntax - _expression_. `PrtDevNames` +_expression_. `PrtDevNames` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.PrtMip.md b/api/Access.Report.PrtMip.md index a24ec72575e..9524f6e0f38 100644 --- a/api/Access.Report.PrtMip.md +++ b/api/Access.Report.PrtMip.md @@ -1,5 +1,5 @@ --- -title: Report.PrtMip Property (Access) +title: Report.PrtMip property (Access) keywords: vbaac10.chm13737 f1_keywords: - vbaac10.chm13737 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.PrtMip Property (Access) +# Report.PrtMip property (Access) You can use the **PrtMip** property in Visual Basic to set or return the device mode information specified for a form or report in the **Print** dialog box. ## Syntax - _expression_. `PrtMip` +_expression_. `PrtMip` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.RecordLocks.md b/api/Access.Report.RecordLocks.md index 8c2d60daa76..1143219c19d 100644 --- a/api/Access.Report.RecordLocks.md +++ b/api/Access.Report.RecordLocks.md @@ -1,5 +1,5 @@ --- -title: Report.RecordLocks Property (Access) +title: Report.RecordLocks property (Access) keywords: vbaac10.chm13696 f1_keywords: - vbaac10.chm13696 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.RecordLocks Property (Access) +# Report.RecordLocks property (Access) You can use the **RecordLocks** property to determine how records are locked and what happens when two users try to edit the same record at the same time. Read/write. ## Syntax - _expression_. `RecordLocks` +_expression_. `RecordLocks` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.RecordSource.md b/api/Access.Report.RecordSource.md index 996b1d55bb2..857c853b3a2 100644 --- a/api/Access.Report.RecordSource.md +++ b/api/Access.Report.RecordSource.md @@ -1,5 +1,5 @@ --- -title: Report.RecordSource Property (Access) +title: Report.RecordSource property (Access) keywords: vbaac10.chm13689 f1_keywords: - vbaac10.chm13689 @@ -11,7 +11,7 @@ ms.date: 11/30/2017 --- -# Report.RecordSource Property (Access) +# Report.RecordSource property (Access) You can use the **RecordSource** property to specify the source of the data for a report. Read/write **String**. diff --git a/api/Access.Report.RecordSourceQualifier.md b/api/Access.Report.RecordSourceQualifier.md index 986e2d15da0..bb4e5168cfb 100644 --- a/api/Access.Report.RecordSourceQualifier.md +++ b/api/Access.Report.RecordSourceQualifier.md @@ -1,5 +1,5 @@ --- -title: Report.RecordSourceQualifier Property (Access) +title: Report.RecordSourceQualifier property (Access) keywords: vbaac10.chm13814 f1_keywords: - vbaac10.chm13814 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.RecordSourceQualifier Property (Access) +# Report.RecordSourceQualifier property (Access) Returns or sets a **String** indicating the SQL Server owner name of the record source for the specified report. Read/write. ## Syntax - _expression_. `RecordSourceQualifier` +_expression_. `RecordSourceQualifier` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## See also diff --git a/api/Access.Report.Recordset.md b/api/Access.Report.Recordset.md index cbfaa8ccbc4..f7d6a732c47 100644 --- a/api/Access.Report.Recordset.md +++ b/api/Access.Report.Recordset.md @@ -1,5 +1,5 @@ --- -title: Report.Recordset Property (Access) +title: Report.Recordset property (Access) keywords: vbaac10.chm13813 f1_keywords: - vbaac10.chm13813 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Recordset Property (Access) +# Report.Recordset property (Access) Returns or sets the ADO **Recordset** or DAO **[Recordset](overview/Access.md)** object representing the record source for the specified object. Read/write **Object**. ## Syntax - _expression_. `Recordset` +_expression_. `Recordset` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Report.md b/api/Access.Report.Report.md index 8d263bac1a8..5c55f70dd7b 100644 --- a/api/Access.Report.Report.md +++ b/api/Access.Report.Report.md @@ -1,5 +1,5 @@ --- -title: Report.Report Property (Access) +title: Report.Report property (Access) keywords: vbaac10.chm13791 f1_keywords: - vbaac10.chm13791 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Report Property (Access) +# Report.Report property (Access) You can use the **Report** property to refer to a report or to refer to the report associated with a subreport control. Read-only **Report**. ## Syntax - _expression_. `Report` +_expression_. `Report` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Requery.md b/api/Access.Report.Requery.md index 4a9d46a6941..f3d7f973215 100644 --- a/api/Access.Report.Requery.md +++ b/api/Access.Report.Requery.md @@ -1,5 +1,5 @@ --- -title: Report.Requery Method (Access) +title: Report.Requery method (Access) keywords: vbaac10.chm13827 f1_keywords: - vbaac10.chm13827 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Requery Method (Access) +# Report.Requery method (Access) The **Requery** method updates the data underlying the specified report by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Resize.md b/api/Access.Report.Resize.md index 5e1eb6a6171..1d2f6bf34bf 100644 --- a/api/Access.Report.Resize.md +++ b/api/Access.Report.Resize.md @@ -1,5 +1,5 @@ --- -title: Report.Resize Event (Access) +title: Report.Resize event (Access) keywords: vbaac10.chm13885 f1_keywords: - vbaac10.chm13885 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Resize Event (Access) +# Report.Resize event (Access) The **Resize** event occurs when a report is opened and whenever the size of a report changes. ## Syntax - _expression_. `Resize` +_expression_. `Resize` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.RibbonName.md b/api/Access.Report.RibbonName.md index 8af12809f46..95ef91206f1 100644 --- a/api/Access.Report.RibbonName.md +++ b/api/Access.Report.RibbonName.md @@ -1,5 +1,5 @@ --- -title: Report.RibbonName Property (Access) +title: Report.RibbonName property (Access) keywords: vbaac10.chm13875 f1_keywords: - vbaac10.chm13875 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.RibbonName Property (Access) +# Report.RibbonName property (Access) Gets or set the name of the customized ribbon to be displayed when the specified report is loaded. Read/write **String**. ## Syntax - _expression_. `RibbonName` +_expression_. `RibbonName` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Scale.md b/api/Access.Report.Scale.md index 7c61b782be2..e99a8ab1608 100644 --- a/api/Access.Report.Scale.md +++ b/api/Access.Report.Scale.md @@ -1,5 +1,5 @@ --- -title: Report.Scale Method (Access) +title: Report.Scale method (Access) keywords: vbaac10.chm13785 f1_keywords: - vbaac10.chm13785 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Report.Scale Method (Access) +# Report.Scale method (Access) The **Scale** method defines the coordinate system for a **[Report](Access.Report.md)** object. ## Syntax - _expression_. `Scale`( ` _flags_`, ` _x1_`, ` _y1_`, ` _x2_`, ` _y2_` ) +_expression_. `Scale`( ` _flags_`, ` _x1_`, ` _y1_`, ` _x2_`, ` _y2_` ) - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _flags_|Required|**Integer**|| | _x1_|Required|**Single**| A value for the horizontal coordinate that defines the position of the upper-left corner of the object.| @@ -35,7 +35,7 @@ The **Scale** method defines the coordinate system for a **[Report](Access.Repo | _x2_|Required|**Single**|A value for the horizontal coordinate that defines the position of the lower-right corner of the object.| | _y2_|Required|**Single**|A value for the vertical coordinate that defines the position of the lower-right corner of the object.| -### Return Value +### Return value Nothing diff --git a/api/Access.Report.ScaleHeight.md b/api/Access.Report.ScaleHeight.md index 4a85590ac70..40731a3e504 100644 --- a/api/Access.Report.ScaleHeight.md +++ b/api/Access.Report.ScaleHeight.md @@ -1,5 +1,5 @@ --- -title: Report.ScaleHeight Property (Access) +title: Report.ScaleHeight property (Access) keywords: vbaac10.chm13743 f1_keywords: - vbaac10.chm13743 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.ScaleHeight Property (Access) +# Report.ScaleHeight property (Access) You can use the **ScaleHeight** property to specify the number of units for the vertical measurement of the page when the **[Circle](Access.Report.Circle.md)**, **[Line](Access.Report.Line.md)**, **[Pset](Access.Report.PSet.md)**, or **[Print](Access.Report.Print.md)** method is used while a report is printed or previewed, or its output is saved to a file. Read/write **Single**. ## Syntax - _expression_. `ScaleHeight` +_expression_. `ScaleHeight` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.ScaleLeft.md b/api/Access.Report.ScaleLeft.md index 090d896e571..dbb0e06def4 100644 --- a/api/Access.Report.ScaleLeft.md +++ b/api/Access.Report.ScaleLeft.md @@ -1,5 +1,5 @@ --- -title: Report.ScaleLeft Property (Access) +title: Report.ScaleLeft property (Access) keywords: vbaac10.chm13744 f1_keywords: - vbaac10.chm13744 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.ScaleLeft Property (Access) +# Report.ScaleLeft property (Access) You can use the **ScaleLeft** property to specify the units for the horizontal coordinates that describe the location of the left edge of a page when the **[Circle](Access.Report.Circle.md)**, **[Line](Access.Report.Line.md)**, **[Pset](Access.Report.PSet.md)**, or **[Print](Access.Report.Print.md)** method is used while a report is previewed, printed, or its output is saved to a file. Read / write **Single**. ## Syntax - _expression_. `ScaleLeft` +_expression_. `ScaleLeft` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.ScaleMode.md b/api/Access.Report.ScaleMode.md index 4ea6e3d2647..14a565310f1 100644 --- a/api/Access.Report.ScaleMode.md +++ b/api/Access.Report.ScaleMode.md @@ -1,5 +1,5 @@ --- -title: Report.ScaleMode Property (Access) +title: Report.ScaleMode property (Access) keywords: vbaac10.chm13745 f1_keywords: - vbaac10.chm13745 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.ScaleMode Property (Access) +# Report.ScaleMode property (Access) You can use the **ScaleMode** property in Visual Basic to specify the unit of measurement for coordinates on a page when the **[Circle](Access.Report.Circle.md)**, **[Line](Access.Report.Line.md)**, **[Pset](Access.Report.PSet.md)**, or **[Print](Access.Report.Print.md)** method is used while a report is previewed or printed, or its output is saved to a file. Read/write **Integer**. ## Syntax - _expression_. `ScaleMode` +_expression_. `ScaleMode` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.ScaleTop.md b/api/Access.Report.ScaleTop.md index 956d756a5ce..f823712b187 100644 --- a/api/Access.Report.ScaleTop.md +++ b/api/Access.Report.ScaleTop.md @@ -1,5 +1,5 @@ --- -title: Report.ScaleTop Property (Access) +title: Report.ScaleTop property (Access) keywords: vbaac10.chm13746 f1_keywords: - vbaac10.chm13746 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.ScaleTop Property (Access) +# Report.ScaleTop property (Access) You can use the **ScaleTop** property to specify the units for the vertical coordinates that describe the location of the top edge of a page when the **[Circle](Access.Report.Circle.md)**, **[Line](Access.Report.Line.md)**, **[Pset](Access.Report.PSet.md)**, or **[Print](Access.Report.Print.md)** method is used while a report is previewed, printed, or its output is saved to a file. Read / write **Single**. ## Syntax - _expression_. `ScaleTop` +_expression_. `ScaleTop` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.ScaleWidth.md b/api/Access.Report.ScaleWidth.md index 1c7457d893f..65bdee8c40c 100644 --- a/api/Access.Report.ScaleWidth.md +++ b/api/Access.Report.ScaleWidth.md @@ -1,5 +1,5 @@ --- -title: Report.ScaleWidth Property (Access) +title: Report.ScaleWidth property (Access) keywords: vbaac10.chm13747 f1_keywords: - vbaac10.chm13747 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.ScaleWidth Property (Access) +# Report.ScaleWidth property (Access) You can use the **ScaleWidth** property to specify the number of units for the horizontal measurement of the page when the **[Circle](Access.Report.Circle.md)**, **[Line](Access.Report.Line.md)**, **[Pset](Access.Report.PSet.md)**, or **[Print](Access.Report.Print.md)** method is used while a report is printed or previewed, or its output is saved to a file. Read/write **Single**. ## Syntax - _expression_. `ScaleWidth` +_expression_. `ScaleWidth` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.ScrollBars.md b/api/Access.Report.ScrollBars.md index f97412eda61..1d530375212 100644 --- a/api/Access.Report.ScrollBars.md +++ b/api/Access.Report.ScrollBars.md @@ -1,5 +1,5 @@ --- -title: Report.ScrollBars Property (Access) +title: Report.ScrollBars property (Access) keywords: vbaac10.chm13820 f1_keywords: - vbaac10.chm13820 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.ScrollBars Property (Access) +# Report.ScrollBars property (Access) Gets or sets whether scroll bars appear on a report. Read/write **Byte**. ## Syntax - _expression_. `ScrollBars` +_expression_. `ScrollBars` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Section.md b/api/Access.Report.Section.md index f69a42ad67a..e78702e2d22 100644 --- a/api/Access.Report.Section.md +++ b/api/Access.Report.Section.md @@ -1,5 +1,5 @@ --- -title: Report.Section Property (Access) +title: Report.Section property (Access) keywords: vbaac10.chm13874 f1_keywords: - vbaac10.chm13874 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Report.Section Property (Access) +# Report.Section property (Access) You can use the **Section** property to identify a section of a report and provide access to the properties of that section. Read-only **Section** object. ## Syntax - _expression_. `Section`( ` _Index_` ) +_expression_. `Section`( ` _Index_` ) - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required|**Variant**|The section number or name.| diff --git a/api/Access.Report.ServerFilter.md b/api/Access.Report.ServerFilter.md index dc3be0179b3..d7b1d0c58e5 100644 --- a/api/Access.Report.ServerFilter.md +++ b/api/Access.Report.ServerFilter.md @@ -1,5 +1,5 @@ --- -title: Report.ServerFilter Property (Access) +title: Report.ServerFilter property (Access) keywords: vbaac10.chm13694 f1_keywords: - vbaac10.chm13694 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.ServerFilter Property (Access) +# Report.ServerFilter property (Access) You can use the **ServerFilter** property to specify a subset of records to be displayed when a server filter is applied to a report within a Microsoft Access project (.adp) or database. Read/write **String**. ## Syntax - _expression_. `ServerFilter` +_expression_. `ServerFilter` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.ShortcutMenuBar.md b/api/Access.Report.ShortcutMenuBar.md index 382c8d56323..ebf03a5894b 100644 --- a/api/Access.Report.ShortcutMenuBar.md +++ b/api/Access.Report.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: Report.ShortcutMenuBar Property (Access) +title: Report.ShortcutMenuBar property (Access) keywords: vbaac10.chm13712 f1_keywords: - vbaac10.chm13712 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.ShortcutMenuBar Property (Access) +# Report.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.ShowPageMargins.md b/api/Access.Report.ShowPageMargins.md index fca63052604..f4a16dbd822 100644 --- a/api/Access.Report.ShowPageMargins.md +++ b/api/Access.Report.ShowPageMargins.md @@ -1,5 +1,5 @@ --- -title: Report.ShowPageMargins Property (Access) +title: Report.ShowPageMargins property (Access) keywords: vbaac10.chm13853,vbaac10.chm5788 f1_keywords: - vbaac10.chm13853,vbaac10.chm5788 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.ShowPageMargins Property (Access) +# Report.ShowPageMargins property (Access) Gets or sets whether page margins are displayed when the specified report is in Layout view. Read/write **Boolean**. ## Syntax - _expression_. `ShowPageMargins` +_expression_. `ShowPageMargins` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## See also diff --git a/api/Access.Report.Tag.md b/api/Access.Report.Tag.md index c2090288d58..cb87373f3ed 100644 --- a/api/Access.Report.Tag.md +++ b/api/Access.Report.Tag.md @@ -1,5 +1,5 @@ --- -title: Report.Tag Property (Access) +title: Report.Tag property (Access) keywords: vbaac10.chm13760 f1_keywords: - vbaac10.chm13760 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Tag Property (Access) +# Report.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.TextHeight.md b/api/Access.Report.TextHeight.md index 2f032de90de..b6626002d7c 100644 --- a/api/Access.Report.TextHeight.md +++ b/api/Access.Report.TextHeight.md @@ -1,5 +1,5 @@ --- -title: Report.TextHeight Method (Access) +title: Report.TextHeight method (Access) keywords: vbaac10.chm13787 f1_keywords: - vbaac10.chm13787 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# Report.TextHeight Method (Access) +# Report.TextHeight method (Access) The **TextHeight** method returns the height of a text string as it would be printed in the current font of a **[Report](Access.Report.md)** object. ## Syntax - _expression_. `TextHeight`( ` _Expr_` ) +_expression_. `TextHeight`( ` _Expr_` ) - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Expr_|Required|**String**|The text string for which the text height will be determined.| -### Return Value +### Return value Single diff --git a/api/Access.Report.TextWidth.md b/api/Access.Report.TextWidth.md index 393fcc5fa2b..a76d58f56b6 100644 --- a/api/Access.Report.TextWidth.md +++ b/api/Access.Report.TextWidth.md @@ -1,5 +1,5 @@ --- -title: Report.TextWidth Method (Access) +title: Report.TextWidth method (Access) keywords: vbaac10.chm13786 f1_keywords: - vbaac10.chm13786 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# Report.TextWidth Method (Access) +# Report.TextWidth method (Access) The **TextWidth** method returns the width of a text string as it would be printed in the current font of a **[Report](Access.Report.md)** object. ## Syntax - _expression_. `TextWidth`( ` _Expr_` ) +_expression_. `TextWidth`( ` _Expr_` ) - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Expr_|Required|**String**|The text string for which the text width will be determined.| -### Return Value +### Return value Single diff --git a/api/Access.Report.Timer.md b/api/Access.Report.Timer.md index 1edc31f2f08..79e5988183f 100644 --- a/api/Access.Report.Timer.md +++ b/api/Access.Report.Timer.md @@ -1,5 +1,5 @@ --- -title: Report.Timer Event (Access) +title: Report.Timer event (Access) keywords: vbaac10.chm13897 f1_keywords: - vbaac10.chm13897 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Timer Event (Access) +# Report.Timer event (Access) The **Timer** event occurs for a report at regular intervals as specified by the report's **[TimerInterval](Access.Report.TimerInterval.md)** property. ## Syntax - _expression_. `Timer` +_expression_. `Timer` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.TimerInterval.md b/api/Access.Report.TimerInterval.md index 381b87cc0ec..bd538b87cb6 100644 --- a/api/Access.Report.TimerInterval.md +++ b/api/Access.Report.TimerInterval.md @@ -1,5 +1,5 @@ --- -title: Report.TimerInterval Property (Access) +title: Report.TimerInterval property (Access) keywords: vbaac10.chm13825 f1_keywords: - vbaac10.chm13825 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.TimerInterval Property (Access) +# Report.TimerInterval property (Access) You can use the **TimerInterval** property to specify the interval, in milliseconds, between **[Timer](Access.Report.Timer.md)** events on a report. Read/write **Long**. ## Syntax - _expression_. `TimerInterval` +_expression_. `TimerInterval` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Toolbar.md b/api/Access.Report.Toolbar.md index 9eeb4cc5948..31543432937 100644 --- a/api/Access.Report.Toolbar.md +++ b/api/Access.Report.Toolbar.md @@ -1,5 +1,5 @@ --- -title: Report.Toolbar Property (Access) +title: Report.Toolbar property (Access) keywords: vbaac10.chm13711 f1_keywords: - vbaac10.chm13711 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Toolbar Property (Access) +# Report.Toolbar property (Access) Specifies a custom toolbar to display for a report. Read/write **String**. ## Syntax - _expression_. `Toolbar` +_expression_. `Toolbar` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Top.md b/api/Access.Report.Top.md index c9650bacb3e..c2594dfeef8 100644 --- a/api/Access.Report.Top.md +++ b/api/Access.Report.Top.md @@ -1,5 +1,5 @@ --- -title: Report.Top Property (Access) +title: Report.Top property (Access) keywords: vbaac10.chm13728 f1_keywords: - vbaac10.chm13728 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Top Property (Access) +# Report.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Long**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Unload.md b/api/Access.Report.Unload.md index f4926353cbc..5d02084c44e 100644 --- a/api/Access.Report.Unload.md +++ b/api/Access.Report.Unload.md @@ -1,5 +1,5 @@ --- -title: Report.Unload Event (Access) +title: Report.Unload event (Access) keywords: vbaac10.chm13886 f1_keywords: - vbaac10.chm13886 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Report.Unload Event (Access) +# Report.Unload event (Access) The **Unload** event occurs after a report is closed but before it's removed from the screen. ## Syntax - _expression_. `Unload`( ` _Cancel_`, ) +_expression_. `Unload`( ` _Cancel_`, ) - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|| diff --git a/api/Access.Report.UseDefaultPrinter.md b/api/Access.Report.UseDefaultPrinter.md index 19ca1077d44..08223f0bfc7 100644 --- a/api/Access.Report.UseDefaultPrinter.md +++ b/api/Access.Report.UseDefaultPrinter.md @@ -1,5 +1,5 @@ --- -title: Report.UseDefaultPrinter Property (Access) +title: Report.UseDefaultPrinter property (Access) keywords: vbaac10.chm13812 f1_keywords: - vbaac10.chm13812 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.UseDefaultPrinter Property (Access) +# Report.UseDefaultPrinter property (Access) Returns or sets a **Boolean** indicating whether the specified report uses the default printer for the system; **True** if the form or report uses the default printer. Read/write. ## Syntax - _expression_. `UseDefaultPrinter` +_expression_. `UseDefaultPrinter` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Visible.md b/api/Access.Report.Visible.md index a026c5d4472..410afc2097a 100644 --- a/api/Access.Report.Visible.md +++ b/api/Access.Report.Visible.md @@ -1,5 +1,5 @@ --- -title: Report.Visible Property (Access) +title: Report.Visible property (Access) keywords: vbaac10.chm13735 f1_keywords: - vbaac10.chm13735 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Visible Property (Access) +# Report.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.Width.md b/api/Access.Report.Width.md index 13842224d74..504e1a9d6c4 100644 --- a/api/Access.Report.Width.md +++ b/api/Access.Report.Width.md @@ -1,5 +1,5 @@ --- -title: Report.Width Property (Access) +title: Report.Width property (Access) keywords: vbaac10.chm13703 f1_keywords: - vbaac10.chm13703 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.Width Property (Access) +# Report.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.WindowHeight.md b/api/Access.Report.WindowHeight.md index 59eb879acba..32964f1f0b4 100644 --- a/api/Access.Report.WindowHeight.md +++ b/api/Access.Report.WindowHeight.md @@ -1,5 +1,5 @@ --- -title: Report.WindowHeight Property (Access) +title: Report.WindowHeight property (Access) keywords: vbaac10.chm13805 f1_keywords: - vbaac10.chm13805 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.WindowHeight Property (Access) +# Report.WindowHeight property (Access) Returns the height of a report in twips. Read-only **Integer**. ## Syntax - _expression_. `WindowHeight` +_expression_. `WindowHeight` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.WindowLeft.md b/api/Access.Report.WindowLeft.md index 4aacd88eae4..367f4d21885 100644 --- a/api/Access.Report.WindowLeft.md +++ b/api/Access.Report.WindowLeft.md @@ -1,5 +1,5 @@ --- -title: Report.WindowLeft Property (Access) +title: Report.WindowLeft property (Access) keywords: vbaac10.chm13807 f1_keywords: - vbaac10.chm13807 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.WindowLeft Property (Access) +# Report.WindowLeft property (Access) Returns an **Integer** indicating the screen position in twips of the left edge of a report relative to the left edge of the Microsoft Access window. Read-only. ## Syntax - _expression_. `WindowLeft` +_expression_. `WindowLeft` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.WindowTop.md b/api/Access.Report.WindowTop.md index 3aea0382bc7..09214990573 100644 --- a/api/Access.Report.WindowTop.md +++ b/api/Access.Report.WindowTop.md @@ -1,5 +1,5 @@ --- -title: Report.WindowTop Property (Access) +title: Report.WindowTop property (Access) keywords: vbaac10.chm13806 f1_keywords: - vbaac10.chm13806 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.WindowTop Property (Access) +# Report.WindowTop property (Access) Returns an **Integer** indicating the screen position in twips of the top edge of a report relative to the top of the Microsoft Access window. Read-only. ## Syntax - _expression_. `WindowTop` +_expression_. `WindowTop` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.WindowWidth.md b/api/Access.Report.WindowWidth.md index 10c888170db..2ae8f34b9f4 100644 --- a/api/Access.Report.WindowWidth.md +++ b/api/Access.Report.WindowWidth.md @@ -1,5 +1,5 @@ --- -title: Report.WindowWidth Property (Access) +title: Report.WindowWidth property (Access) keywords: vbaac10.chm13804 f1_keywords: - vbaac10.chm13804 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Report.WindowWidth Property (Access) +# Report.WindowWidth property (Access) Returns the width of a report in twips. Read-only **Integer**. ## Syntax - _expression_. `WindowWidth` +_expression_. `WindowWidth` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.Report.md b/api/Access.Report.md index c8e037abe4d..5fd4fb7c5b8 100644 --- a/api/Access.Report.md +++ b/api/Access.Report.md @@ -1,5 +1,5 @@ --- -title: Report Object (Access) +title: Report object (Access) keywords: vbaac10.chm13901 f1_keywords: - vbaac10.chm13901 @@ -11,7 +11,7 @@ ms.date: 11/30/2017 --- -# Report Object (Access) +# Report object (Access) A **Report** object refers to a particular Microsoft Access report. diff --git a/api/Access.Reports.Application.md b/api/Access.Reports.Application.md index 7a11ae2ed35..2e9035a5030 100644 --- a/api/Access.Reports.Application.md +++ b/api/Access.Reports.Application.md @@ -1,5 +1,5 @@ --- -title: Reports.Application Property (Access) +title: Reports.Application property (Access) keywords: vbaac10.chm12479 f1_keywords: - vbaac10.chm12479 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Reports.Application Property (Access) +# Reports.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [Reports](Access.Reports.md) object. +_expression_ A variable that represents a [Reports](Access.Reports.md) object. ## Remarks diff --git a/api/Access.Reports.Count.md b/api/Access.Reports.Count.md index 5a76c1fe285..1beeba9520f 100644 --- a/api/Access.Reports.Count.md +++ b/api/Access.Reports.Count.md @@ -1,5 +1,5 @@ --- -title: Reports.Count Property (Access) +title: Reports.Count property (Access) keywords: vbaac10.chm12482 f1_keywords: - vbaac10.chm12482 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Reports.Count Property (Access) +# Reports.Count property (Access) You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [Reports](Access.Reports.md) object. +_expression_ A variable that represents a [Reports](Access.Reports.md) object. ## See also diff --git a/api/Access.Reports.Item.md b/api/Access.Reports.Item.md index 90690ab2f7d..27b1b93c776 100644 --- a/api/Access.Reports.Item.md +++ b/api/Access.Reports.Item.md @@ -1,5 +1,5 @@ --- -title: Reports.Item Property (Access) +title: Reports.Item property (Access) keywords: vbaac10.chm12481 f1_keywords: - vbaac10.chm12481 @@ -11,25 +11,25 @@ ms.date: 06/08/2017 --- -# Reports.Item Property (Access) +# Reports.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **Report**. ## Syntax - _expression_. `Item`( ` _Index_` ) +_expression_. `Item`( ` _Index_` ) - _expression_ A variable that represents a [Reports](Access.Reports.md) object. +_expression_ A variable that represents a [Reports](Access.Reports.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| -| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| +| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| ## Remarks diff --git a/api/Access.Reports.Parent.md b/api/Access.Reports.Parent.md index 983fc6c3ac2..e5189e9f99d 100644 --- a/api/Access.Reports.Parent.md +++ b/api/Access.Reports.Parent.md @@ -1,5 +1,5 @@ --- -title: Reports.Parent Property (Access) +title: Reports.Parent property (Access) keywords: vbaac10.chm12480 f1_keywords: - vbaac10.chm12480 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Reports.Parent Property (Access) +# Reports.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [Reports](Access.Reports.md) object. +_expression_ A variable that represents a [Reports](Access.Reports.md) object. ## See also diff --git a/api/Access.Reports.md b/api/Access.Reports.md index 1fc0ac9e4c8..9e554efd9ec 100644 --- a/api/Access.Reports.md +++ b/api/Access.Reports.md @@ -1,5 +1,5 @@ --- -title: Reports Object (Access) +title: Reports object (Access) keywords: vbaac10.chm12478 f1_keywords: - vbaac10.chm12478 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Reports Object (Access) +# Reports object (Access) The **Reports** collection contains all of the currently open reports in a Microsoft Access database. diff --git a/api/Access.ReturnVar.Name.md b/api/Access.ReturnVar.Name.md index 7a9d2c0f8ae..0df319a1c3d 100644 --- a/api/Access.ReturnVar.Name.md +++ b/api/Access.ReturnVar.Name.md @@ -1,5 +1,5 @@ --- -title: ReturnVar.Name Property (Access) +title: ReturnVar.Name property (Access) keywords: vbaac10.chm14691 f1_keywords: - vbaac10.chm14691 @@ -11,15 +11,15 @@ ms.date: 06/08/2017 --- -# ReturnVar.Name Property (Access) +# ReturnVar.Name property (Access) Gets the name of the specified **[ReturnVar](Access.ReturnVar.md)**. Read-only **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [ReturnVar](Access.ReturnVar.md) object. +_expression_ A variable that represents a [ReturnVar](Access.ReturnVar.md) object. diff --git a/api/Access.ReturnVar.Value.md b/api/Access.ReturnVar.Value.md index ebc734ffefa..8162754fc69 100644 --- a/api/Access.ReturnVar.Value.md +++ b/api/Access.ReturnVar.Value.md @@ -1,5 +1,5 @@ --- -title: ReturnVar.Value Property (Access) +title: ReturnVar.Value property (Access) keywords: vbaac10.chm14690 f1_keywords: - vbaac10.chm14690 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ReturnVar.Value Property (Access) +# ReturnVar.Value property (Access) Gets the value of the specified **[ReturnVar](Access.ReturnVar.md)**. Read-only **Variant**. ## Syntax - _expression_. `Value` +_expression_. `Value` - _expression_ A variable that represents a [ReturnVar](Access.ReturnVar.md) object. +_expression_ A variable that represents a [ReturnVar](Access.ReturnVar.md) object. ## Remarks diff --git a/api/Access.ReturnVar.md b/api/Access.ReturnVar.md index bb6d686d720..ea0c07fa7f5 100644 --- a/api/Access.ReturnVar.md +++ b/api/Access.ReturnVar.md @@ -1,5 +1,5 @@ --- -title: ReturnVar Object (Access) +title: ReturnVar object (Access) keywords: vbaac10.chm14689 f1_keywords: - vbaac10.chm14689 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ReturnVar Object (Access) +# ReturnVar object (Access) Represents a variable that was initialized by the **SetReturnVar** function in a Data Macro. diff --git a/api/Access.ReturnVars.Application.md b/api/Access.ReturnVars.Application.md index 00d770b0e72..4ccd048ebc6 100644 --- a/api/Access.ReturnVars.Application.md +++ b/api/Access.ReturnVars.Application.md @@ -1,5 +1,5 @@ --- -title: ReturnVars.Application Property (Access) +title: ReturnVars.Application property (Access) keywords: vbaac10.chm14693 f1_keywords: - vbaac10.chm14693 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ReturnVars.Application Property (Access) +# ReturnVars.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a 'RetunVars' object. +_expression_ A variable that represents a 'RetunVars' object. ## Remarks diff --git a/api/Access.ReturnVars.Count.md b/api/Access.ReturnVars.Count.md index 1c8580c6bd4..d6defb6249a 100644 --- a/api/Access.ReturnVars.Count.md +++ b/api/Access.ReturnVars.Count.md @@ -1,5 +1,5 @@ --- -title: ReturnVars.Count Property (Access) +title: ReturnVars.Count property (Access) keywords: vbaac10.chm14696 f1_keywords: - vbaac10.chm14696 @@ -11,15 +11,15 @@ ms.date: 06/08/2017 --- -# ReturnVars.Count Property (Access) +# ReturnVars.Count property (Access) Gets the number of **[ReturnVar](Access.ReturnVar.md)** objects in the **[ReturnVars](Access.ReturnVars.md)** collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [ReturnVars](Access.ReturnVars.md) object. +_expression_ A variable that represents a [ReturnVars](Access.ReturnVars.md) object. diff --git a/api/Access.ReturnVars.Item.md b/api/Access.ReturnVars.Item.md index 257f3365b39..54d1c6c620f 100644 --- a/api/Access.ReturnVars.Item.md +++ b/api/Access.ReturnVars.Item.md @@ -1,5 +1,5 @@ --- -title: ReturnVars.Item Property (Access) +title: ReturnVars.Item property (Access) keywords: vbaac10.chm14695 f1_keywords: - vbaac10.chm14695 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ReturnVars.Item Property (Access) +# ReturnVars.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **ReturnVar**. ## Syntax - _expression_. `Item`( ` _Index_` ) +_expression_. `Item`( ` _Index_` ) - _expression_ A variable that represents a [ReturnVars](Access.ReturnVars.md) object. +_expression_ A variable that represents a [ReturnVars](Access.ReturnVars.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| -| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection.| +| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection.| diff --git a/api/Access.ReturnVars.Parent.md b/api/Access.ReturnVars.Parent.md index 59e6620058d..2ac81c2ddcf 100644 --- a/api/Access.ReturnVars.Parent.md +++ b/api/Access.ReturnVars.Parent.md @@ -1,5 +1,5 @@ --- -title: ReturnVars.Parent Property (Access) +title: ReturnVars.Parent property (Access) keywords: vbaac10.chm14694 f1_keywords: - vbaac10.chm14694 @@ -11,15 +11,15 @@ ms.date: 06/08/2017 --- -# ReturnVars.Parent Property (Access) +# ReturnVars.Parent property (Access) Returns the parent object for the specified object. Read-only **Object**. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [ReturnVars](Access.ReturnVars.md) object. +_expression_ A variable that represents a [ReturnVars](Access.ReturnVars.md) object. diff --git a/api/Access.ReturnVars.md b/api/Access.ReturnVars.md index 5c5d225ec58..372fa851614 100644 --- a/api/Access.ReturnVars.md +++ b/api/Access.ReturnVars.md @@ -1,5 +1,5 @@ --- -title: ReturnVars Object (Access) +title: ReturnVars object (Access) keywords: vbaac10.chm14688 f1_keywords: - vbaac10.chm14688 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ReturnVars Object (Access) +# ReturnVars object (Access) Represents the collection of **[ReturnVar](Access.ReturnVar.md)** objects. diff --git a/api/Access.Screen.ActiveControl.md b/api/Access.Screen.ActiveControl.md index 018ae86a044..0749274d0cd 100644 --- a/api/Access.Screen.ActiveControl.md +++ b/api/Access.Screen.ActiveControl.md @@ -1,5 +1,5 @@ --- -title: Screen.ActiveControl Property (Access) +title: Screen.ActiveControl property (Access) keywords: vbaac10.chm12488 f1_keywords: - vbaac10.chm12488 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Screen.ActiveControl Property (Access) +# Screen.ActiveControl property (Access) You can use the **ActiveControl** property together with the **[Screen](Access.Screen.md)** object to identify or refer to the control that has the focus. Read-only **Control** object. ## Syntax - _expression_. `ActiveControl` +_expression_. `ActiveControl` - _expression_ A variable that represents a [Screen](Access.Screen.md) object. +_expression_ A variable that represents a [Screen](Access.Screen.md) object. ## Remarks diff --git a/api/Access.Screen.ActiveDatasheet.md b/api/Access.Screen.ActiveDatasheet.md index 01a1046df2b..6e9ace0541b 100644 --- a/api/Access.Screen.ActiveDatasheet.md +++ b/api/Access.Screen.ActiveDatasheet.md @@ -1,5 +1,5 @@ --- -title: Screen.ActiveDatasheet Property (Access) +title: Screen.ActiveDatasheet property (Access) keywords: vbaac10.chm12487 f1_keywords: - vbaac10.chm12487 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Screen.ActiveDatasheet Property (Access) +# Screen.ActiveDatasheet property (Access) You can use the **ActiveDatasheet** property together with the **[Screen](Access.Screen.md)** object to identify or refer to the datasheet that has the focus. Read-only **Form** object. ## Syntax - _expression_. `ActiveDatasheet` +_expression_. `ActiveDatasheet` - _expression_ A variable that represents a [Screen](Access.Screen.md) object. +_expression_ A variable that represents a [Screen](Access.Screen.md) object. ## Remarks diff --git a/api/Access.Screen.ActiveForm.md b/api/Access.Screen.ActiveForm.md index 8006013130e..d6b34fe7344 100644 --- a/api/Access.Screen.ActiveForm.md +++ b/api/Access.Screen.ActiveForm.md @@ -1,5 +1,5 @@ --- -title: Screen.ActiveForm Property (Access) +title: Screen.ActiveForm property (Access) keywords: vbaac10.chm12490 f1_keywords: - vbaac10.chm12490 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Screen.ActiveForm Property (Access) +# Screen.ActiveForm property (Access) You can use the **ActiveForm** property together with the **[Screen](Access.Screen.md)** object to identify or refer to the form that has the focus. Read-only **Form** object. ## Syntax - _expression_. `ActiveForm` +_expression_. `ActiveForm` - _expression_ A variable that represents a [Screen](Access.Screen.md) object. +_expression_ A variable that represents a [Screen](Access.Screen.md) object. ## Remarks diff --git a/api/Access.Screen.ActiveReport.md b/api/Access.Screen.ActiveReport.md index 18c493373ed..34a6c960eb5 100644 --- a/api/Access.Screen.ActiveReport.md +++ b/api/Access.Screen.ActiveReport.md @@ -1,5 +1,5 @@ --- -title: Screen.ActiveReport Property (Access) +title: Screen.ActiveReport property (Access) keywords: vbaac10.chm12491 f1_keywords: - vbaac10.chm12491 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Screen.ActiveReport Property (Access) +# Screen.ActiveReport property (Access) You can use the **ActiveReport** property together with the **[Screen](Access.Screen.md)** object to identify or refer to the report that has the focus. Read-only **Report** object. ## Syntax - _expression_. `ActiveReport` +_expression_. `ActiveReport` - _expression_ A variable that represents a [Screen](Access.Screen.md) object. +_expression_ A variable that represents a [Screen](Access.Screen.md) object. ## Remarks diff --git a/api/Access.Screen.Application.md b/api/Access.Screen.Application.md index 3d81b6b4788..2fa094063ac 100644 --- a/api/Access.Screen.Application.md +++ b/api/Access.Screen.Application.md @@ -1,5 +1,5 @@ --- -title: Screen.Application Property (Access) +title: Screen.Application property (Access) keywords: vbaac10.chm12485 f1_keywords: - vbaac10.chm12485 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Screen.Application Property (Access) +# Screen.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [Screen](Access.Screen.md) object. +_expression_ A variable that represents a [Screen](Access.Screen.md) object. ## Remarks diff --git a/api/Access.Screen.MousePointer.md b/api/Access.Screen.MousePointer.md index b2322ec67f1..b07d8c684d2 100644 --- a/api/Access.Screen.MousePointer.md +++ b/api/Access.Screen.MousePointer.md @@ -1,5 +1,5 @@ --- -title: Screen.MousePointer Property (Access) +title: Screen.MousePointer property (Access) keywords: vbaac10.chm12492 f1_keywords: - vbaac10.chm12492 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Screen.MousePointer Property (Access) +# Screen.MousePointer property (Access) You can use the **MousePointer** property together with the **[Screen](Access.Screen.md)** object to specify or determine the type of mouse pointer currently displayed. Read/write **Integer**. ## Syntax - _expression_. `MousePointer` +_expression_. `MousePointer` - _expression_ A variable that represents a [Screen](Access.Screen.md) object. +_expression_ A variable that represents a [Screen](Access.Screen.md) object. ## Remarks diff --git a/api/Access.Screen.Parent.md b/api/Access.Screen.Parent.md index 6841b00d06d..8247dc42680 100644 --- a/api/Access.Screen.Parent.md +++ b/api/Access.Screen.Parent.md @@ -1,5 +1,5 @@ --- -title: Screen.Parent Property (Access) +title: Screen.Parent property (Access) keywords: vbaac10.chm12486 f1_keywords: - vbaac10.chm12486 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Screen.Parent Property (Access) +# Screen.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [Screen](Access.Screen.md) object. +_expression_ A variable that represents a [Screen](Access.Screen.md) object. ## See also diff --git a/api/Access.Screen.PreviousControl.md b/api/Access.Screen.PreviousControl.md index 5d52bee4879..2c74b56c9cd 100644 --- a/api/Access.Screen.PreviousControl.md +++ b/api/Access.Screen.PreviousControl.md @@ -1,5 +1,5 @@ --- -title: Screen.PreviousControl Property (Access) +title: Screen.PreviousControl property (Access) keywords: vbaac10.chm12489 f1_keywords: - vbaac10.chm12489 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Screen.PreviousControl Property (Access) +# Screen.PreviousControl property (Access) You can use the **PreviousControl** property with the **[Screen](Access.Screen.md)** object to return a reference to the control that last received the focus. Read-only. ## Syntax - _expression_. `PreviousControl` +_expression_. `PreviousControl` - _expression_ A variable that represents a [Screen](Access.Screen.md) object. +_expression_ A variable that represents a [Screen](Access.Screen.md) object. ## Remarks diff --git a/api/Access.Screen.md b/api/Access.Screen.md index 19c5c64ba57..466bed0b26f 100644 --- a/api/Access.Screen.md +++ b/api/Access.Screen.md @@ -1,5 +1,5 @@ --- -title: Screen Object (Access) +title: Screen object (Access) keywords: vbaac10.chm12484 f1_keywords: - vbaac10.chm12484 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Screen Object (Access) +# Screen object (Access) The **Screen** object refers to the particular form, report, or control that currently has the focus. diff --git a/api/Access.Section.AlternateBackColor.md b/api/Access.Section.AlternateBackColor.md index d1c2b85a1ef..cf6d4551b84 100644 --- a/api/Access.Section.AlternateBackColor.md +++ b/api/Access.Section.AlternateBackColor.md @@ -1,5 +1,5 @@ --- -title: Section.AlternateBackColor Property (Access) +title: Section.AlternateBackColor property (Access) keywords: vbaac10.chm12226 f1_keywords: - vbaac10.chm12226 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.AlternateBackColor Property (Access) +# Section.AlternateBackColor property (Access) Gets or sets the background color to display on alternate rows of the specified section. Read/write **Long**. ## Syntax - _expression_. `AlternateBackColor` +_expression_. `AlternateBackColor` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.AlternateBackShade.md b/api/Access.Section.AlternateBackShade.md index c02cd70f080..674ab3923a7 100644 --- a/api/Access.Section.AlternateBackShade.md +++ b/api/Access.Section.AlternateBackShade.md @@ -1,5 +1,5 @@ --- -title: Section.AlternateBackShade Property (Access) +title: Section.AlternateBackShade property (Access) keywords: vbaac10.chm14609 f1_keywords: - vbaac10.chm14609 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.AlternateBackShade Property (Access) +# Section.AlternateBackShade property (Access) Gets or sets the shade applied to the theme color in the **AlternateBackColor** property of the section. Read/write **Single**. ## Syntax - _expression_. `AlternateBackShade` +_expression_. `AlternateBackShade` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.AlternateBackThemeColorIndex.md b/api/Access.Section.AlternateBackThemeColorIndex.md index 0c2f6107b98..94fe7c5007e 100644 --- a/api/Access.Section.AlternateBackThemeColorIndex.md +++ b/api/Access.Section.AlternateBackThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: Section.AlternateBackThemeColorIndex Property (Access) +title: Section.AlternateBackThemeColorIndex property (Access) keywords: vbaac10.chm14607 f1_keywords: - vbaac10.chm14607 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.AlternateBackThemeColorIndex Property (Access) +# Section.AlternateBackThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **AlternateBackColor** property of the section. Read/write **Long**. ## Syntax - _expression_. `AlternateBackThemeColorIndex` +_expression_. `AlternateBackThemeColorIndex` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.AlternateBackTint.md b/api/Access.Section.AlternateBackTint.md index 0361279fea6..8efca8a4d9e 100644 --- a/api/Access.Section.AlternateBackTint.md +++ b/api/Access.Section.AlternateBackTint.md @@ -1,5 +1,5 @@ --- -title: Section.AlternateBackTint Property (Access) +title: Section.AlternateBackTint property (Access) keywords: vbaac10.chm14608 f1_keywords: - vbaac10.chm14608 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.AlternateBackTint Property (Access) +# Section.AlternateBackTint property (Access) Gets or sets the tint applied to the theme color in the **AlternateBackColor** property of the section. Read/write **Single**. ## Syntax - _expression_. `AlternateBackTint` +_expression_. `AlternateBackTint` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.Application.md b/api/Access.Section.Application.md index 13669c69461..3bf617b76f5 100644 --- a/api/Access.Section.Application.md +++ b/api/Access.Section.Application.md @@ -1,5 +1,5 @@ --- -title: Section.Application Property (Access) +title: Section.Application property (Access) keywords: vbaac10.chm12186 f1_keywords: - vbaac10.chm12186 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.Application Property (Access) +# Section.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.AutoHeight.md b/api/Access.Section.AutoHeight.md index 55de17804f4..3386154f770 100644 --- a/api/Access.Section.AutoHeight.md +++ b/api/Access.Section.AutoHeight.md @@ -1,5 +1,5 @@ --- -title: Section.AutoHeight Property (Access) +title: Section.AutoHeight property (Access) keywords: vbaac10.chm12217,vbaac10.chm5655 f1_keywords: - vbaac10.chm12217,vbaac10.chm5655 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.AutoHeight Property (Access) +# Section.AutoHeight property (Access) Gets or sets whether a section's height is adjusted automatically when controls are resized. Read/write **Boolean**. ## Syntax - _expression_. `AutoHeight` +_expression_. `AutoHeight` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## See also diff --git a/api/Access.Section.BackColor.md b/api/Access.Section.BackColor.md index 470de84edd8..855aae3442a 100644 --- a/api/Access.Section.BackColor.md +++ b/api/Access.Section.BackColor.md @@ -1,5 +1,5 @@ --- -title: Section.BackColor Property (Access) +title: Section.BackColor property (Access) keywords: vbaac10.chm12201 f1_keywords: - vbaac10.chm12201 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.BackColor Property (Access) +# Section.BackColor property (Access) Gets or sets the interior color of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackColor` +_expression_. `BackColor` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.BackShade.md b/api/Access.Section.BackShade.md index 1fc3e116fba..9dbaa3c73bb 100644 --- a/api/Access.Section.BackShade.md +++ b/api/Access.Section.BackShade.md @@ -1,5 +1,5 @@ --- -title: Section.BackShade Property (Access) +title: Section.BackShade property (Access) keywords: vbaac10.chm14633 f1_keywords: - vbaac10.chm14633 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.BackShade Property (Access) +# Section.BackShade property (Access) Gets or sets the shade applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackShade` +_expression_. `BackShade` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.BackThemeColorIndex.md b/api/Access.Section.BackThemeColorIndex.md index d06375303fc..961a69e8b9a 100644 --- a/api/Access.Section.BackThemeColorIndex.md +++ b/api/Access.Section.BackThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: Section.BackThemeColorIndex Property (Access) +title: Section.BackThemeColorIndex property (Access) keywords: vbaac10.chm14631 f1_keywords: - vbaac10.chm14631 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.BackThemeColorIndex Property (Access) +# Section.BackThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BackColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackThemeColorIndex` +_expression_. `BackThemeColorIndex` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.BackTint.md b/api/Access.Section.BackTint.md index 71975a60381..6c9d03bd590 100644 --- a/api/Access.Section.BackTint.md +++ b/api/Access.Section.BackTint.md @@ -1,5 +1,5 @@ --- -title: Section.BackTint Property (Access) +title: Section.BackTint property (Access) keywords: vbaac10.chm14632 f1_keywords: - vbaac10.chm14632 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.BackTint Property (Access) +# Section.BackTint property (Access) Gets or sets the tint that is applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackTint` +_expression_. `BackTint` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.CanGrow.md b/api/Access.Section.CanGrow.md index ff1b2a719b7..8ef168b2909 100644 --- a/api/Access.Section.CanGrow.md +++ b/api/Access.Section.CanGrow.md @@ -1,5 +1,5 @@ --- -title: Section.CanGrow Property (Access) +title: Section.CanGrow property (Access) keywords: vbaac10.chm12197 f1_keywords: - vbaac10.chm12197 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.CanGrow Property (Access) +# Section.CanGrow property (Access) Gets or sets whether the specified control automatically adjusts vertically to print or preview all the data the control contains. Read/write **Boolean**. ## Syntax - _expression_. `CanGrow` +_expression_. `CanGrow` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.CanShrink.md b/api/Access.Section.CanShrink.md index 3ec6a6ce028..8bce4b947ca 100644 --- a/api/Access.Section.CanShrink.md +++ b/api/Access.Section.CanShrink.md @@ -1,5 +1,5 @@ --- -title: Section.CanShrink Property (Access) +title: Section.CanShrink property (Access) keywords: vbaac10.chm12198 f1_keywords: - vbaac10.chm12198 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.CanShrink Property (Access) +# Section.CanShrink property (Access) Gets or sets whether the specified control automatically adjusts vertically to print or preview all the data the section or control contains. Read/write **Boolean**. ## Syntax - _expression_. `CanShrink` +_expression_. `CanShrink` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.Click.md b/api/Access.Section.Click.md index 7759515d0c3..003f58d2ccd 100644 --- a/api/Access.Section.Click.md +++ b/api/Access.Section.Click.md @@ -1,5 +1,5 @@ --- -title: Section.Click Event (Access) +title: Section.Click event (Access) keywords: vbaac10.chm14233 f1_keywords: - vbaac10.chm14233 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.Click Event (Access) +# Section.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.Controls.md b/api/Access.Section.Controls.md index 63ea9511928..25688dc2745 100644 --- a/api/Access.Section.Controls.md +++ b/api/Access.Section.Controls.md @@ -1,5 +1,5 @@ --- -title: Section.Controls Property (Access) +title: Section.Controls property (Access) keywords: vbaac10.chm12189 f1_keywords: - vbaac10.chm12189 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.Controls Property (Access) +# Section.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.DblClick.md b/api/Access.Section.DblClick.md index 6ab16c4b8a8..602c9e4300e 100644 --- a/api/Access.Section.DblClick.md +++ b/api/Access.Section.DblClick.md @@ -1,5 +1,5 @@ --- -title: Section.DblClick Event (Access) +title: Section.DblClick event (Access) keywords: vbaac10.chm14234 f1_keywords: - vbaac10.chm14234 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Section.DblClick Event (Access) +# Section.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_` ) +_expression_. `DblClick`( ` _Cancel_` ) - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **DblClick** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **DblClick** event.| diff --git a/api/Access.Section.DisplayWhen.md b/api/Access.Section.DisplayWhen.md index 3b9f6bc672d..1451298166c 100644 --- a/api/Access.Section.DisplayWhen.md +++ b/api/Access.Section.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: Section.DisplayWhen Property (Access) +title: Section.DisplayWhen property (Access) keywords: vbaac10.chm12196 f1_keywords: - vbaac10.chm12196 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.DisplayWhen Property (Access) +# Section.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's sections you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.EventProcPrefix.md b/api/Access.Section.EventProcPrefix.md index 282d66d58b8..6cf2af48865 100644 --- a/api/Access.Section.EventProcPrefix.md +++ b/api/Access.Section.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: Section.EventProcPrefix Property (Access) +title: Section.EventProcPrefix property (Access) keywords: vbaac10.chm12190 f1_keywords: - vbaac10.chm12190 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.EventProcPrefix Property (Access) +# Section.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.ForceNewPage.md b/api/Access.Section.ForceNewPage.md index 33191beb8cf..dea0a686882 100644 --- a/api/Access.Section.ForceNewPage.md +++ b/api/Access.Section.ForceNewPage.md @@ -1,5 +1,5 @@ --- -title: Section.ForceNewPage Property (Access) +title: Section.ForceNewPage property (Access) keywords: vbaac10.chm12192 f1_keywords: - vbaac10.chm12192 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.ForceNewPage Property (Access) +# Section.ForceNewPage property (Access) You can use the **ForceNewPage** property to specify whether form sections detail, footer) or report sections (header, detail, footer) print on a separate page, rather than on the current page. Read/write **Byte**. ## Syntax - _expression_. `ForceNewPage` +_expression_. `ForceNewPage` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.HasContinued.md b/api/Access.Section.HasContinued.md index 5bc40ad1a63..f88e610510d 100644 --- a/api/Access.Section.HasContinued.md +++ b/api/Access.Section.HasContinued.md @@ -1,5 +1,5 @@ --- -title: Section.HasContinued Property (Access) +title: Section.HasContinued property (Access) keywords: vbaac10.chm12212 f1_keywords: - vbaac10.chm12212 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.HasContinued Property (Access) +# Section.HasContinued property (Access) You can use the **HasContinued** property to determine if part of the current section begins on the previous page. Read/write **Boolean**. ## Syntax - _expression_. `HasContinued` +_expression_. `HasContinued` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.Height.md b/api/Access.Section.Height.md index 05bf8bdb0ac..235803ad449 100644 --- a/api/Access.Section.Height.md +++ b/api/Access.Section.Height.md @@ -1,5 +1,5 @@ --- -title: Section.Height Property (Access) +title: Section.Height property (Access) keywords: vbaac10.chm12200 f1_keywords: - vbaac10.chm12200 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.Height Property (Access) +# Section.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.InSelection.md b/api/Access.Section.InSelection.md index e2fed5ca2f8..c084bf74b37 100644 --- a/api/Access.Section.InSelection.md +++ b/api/Access.Section.InSelection.md @@ -1,5 +1,5 @@ --- -title: Section.InSelection Property (Access) +title: Section.InSelection property (Access) keywords: vbaac10.chm12214 f1_keywords: - vbaac10.chm12214 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.InSelection Property (Access) +# Section.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.KeepTogether.md b/api/Access.Section.KeepTogether.md index 6519edf368f..e08e5edb53b 100644 --- a/api/Access.Section.KeepTogether.md +++ b/api/Access.Section.KeepTogether.md @@ -1,5 +1,5 @@ --- -title: Section.KeepTogether Property (Access) +title: Section.KeepTogether property (Access) keywords: vbaac10.chm12194 f1_keywords: - vbaac10.chm12194 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.KeepTogether Property (Access) +# Section.KeepTogether property (Access) You can use the **KeepTogether** property for a section to print a form or report section all on one page. For example, you might have a group of related information that you don't want printed across two pages. The **KeepTogether** property applies only to form and report sections (except page headers and page footers). Read/write **Boolean**. ## Syntax - _expression_. `KeepTogether` +_expression_. `KeepTogether` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.MouseDown.md b/api/Access.Section.MouseDown.md index 2032d23b991..83b0d8a5e95 100644 --- a/api/Access.Section.MouseDown.md +++ b/api/Access.Section.MouseDown.md @@ -1,5 +1,5 @@ --- -title: Section.MouseDown Event (Access) +title: Section.MouseDown event (Access) keywords: vbaac10.chm14235 f1_keywords: - vbaac10.chm14235 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Section.MouseDown Event (Access) +# Section.MouseDown event (Access) The **MouseDown** event occurs when the user presses a mouse button. ## Syntax - _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Section.MouseMove.md b/api/Access.Section.MouseMove.md index 63c2d62df59..9ed475fb738 100644 --- a/api/Access.Section.MouseMove.md +++ b/api/Access.Section.MouseMove.md @@ -1,5 +1,5 @@ --- -title: Section.MouseMove Event (Access) +title: Section.MouseMove event (Access) keywords: vbaac10.chm14236 f1_keywords: - vbaac10.chm14236 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Section.MouseMove Event (Access) +# Section.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Section.MouseUp.md b/api/Access.Section.MouseUp.md index aaf3457b561..362da2dbc4b 100644 --- a/api/Access.Section.MouseUp.md +++ b/api/Access.Section.MouseUp.md @@ -1,5 +1,5 @@ --- -title: Section.MouseUp Event (Access) +title: Section.MouseUp event (Access) keywords: vbaac10.chm14237 f1_keywords: - vbaac10.chm14237 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# Section.MouseUp Event (Access) +# Section.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.Section.Name.md b/api/Access.Section.Name.md index 2c2d5d7197e..f6a0fa12a19 100644 --- a/api/Access.Section.Name.md +++ b/api/Access.Section.Name.md @@ -1,5 +1,5 @@ --- -title: Section.Name Property (Access) +title: Section.Name property (Access) keywords: vbaac10.chm12215 f1_keywords: - vbaac10.chm12215 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.Name Property (Access) +# Section.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.NewRowOrCol.md b/api/Access.Section.NewRowOrCol.md index ae49c5410f5..44d7f2978ff 100644 --- a/api/Access.Section.NewRowOrCol.md +++ b/api/Access.Section.NewRowOrCol.md @@ -1,5 +1,5 @@ --- -title: Section.NewRowOrCol Property (Access) +title: Section.NewRowOrCol property (Access) keywords: vbaac10.chm12193,vbaac10.chm4436 f1_keywords: - vbaac10.chm12193,vbaac10.chm4436 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.NewRowOrCol Property (Access) +# Section.NewRowOrCol property (Access) You can use the **NewRowOrCol** property to specify whether a section and its associated data is printed in a new row or column within a multiple-column report or multiple-column form. Read/write **Byte**. ## Syntax - _expression_. `NewRowOrCol` +_expression_. `NewRowOrCol` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.OnClick.md b/api/Access.Section.OnClick.md index 11d5086e4af..f253ae9342d 100644 --- a/api/Access.Section.OnClick.md +++ b/api/Access.Section.OnClick.md @@ -1,5 +1,5 @@ --- -title: Section.OnClick Property (Access) +title: Section.OnClick property (Access) keywords: vbaac10.chm12207 f1_keywords: - vbaac10.chm12207 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.OnClick Property (Access) +# Section.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Section.OnDblClick.md b/api/Access.Section.OnDblClick.md index 7ce0336101a..0c9653e00f1 100644 --- a/api/Access.Section.OnDblClick.md +++ b/api/Access.Section.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: Section.OnDblClick Property (Access) +title: Section.OnDblClick property (Access) keywords: vbaac10.chm12208 f1_keywords: - vbaac10.chm12208 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.OnDblClick Property (Access) +# Section.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Section.OnFormat.md b/api/Access.Section.OnFormat.md index c3ba8e530da..020d8a8f4a7 100644 --- a/api/Access.Section.OnFormat.md +++ b/api/Access.Section.OnFormat.md @@ -1,5 +1,5 @@ --- -title: Section.OnFormat Property (Access) +title: Section.OnFormat property (Access) keywords: vbaac10.chm12204,vbaac10.chm4089 f1_keywords: - vbaac10.chm12204,vbaac10.chm4089 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.OnFormat Property (Access) +# Section.OnFormat property (Access) Sets or returns the value of the **On Format** box in the **Properties** window of a report section. Read/write **String**. ## Syntax - _expression_. `OnFormat` +_expression_. `OnFormat` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Format** event occurs when Microsoft Access determines which data belongs The **OnFormat** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Format** box in the report section's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Section.OnMouseDown.md b/api/Access.Section.OnMouseDown.md index 6bc4651275f..286285941f9 100644 --- a/api/Access.Section.OnMouseDown.md +++ b/api/Access.Section.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: Section.OnMouseDown Property (Access) +title: Section.OnMouseDown property (Access) keywords: vbaac10.chm12209 f1_keywords: - vbaac10.chm12209 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.OnMouseDown Property (Access) +# Section.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Section.OnMouseMove.md b/api/Access.Section.OnMouseMove.md index bad72c10f72..86c69551c1b 100644 --- a/api/Access.Section.OnMouseMove.md +++ b/api/Access.Section.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: Section.OnMouseMove Property (Access) +title: Section.OnMouseMove property (Access) keywords: vbaac10.chm12210 f1_keywords: - vbaac10.chm12210 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.OnMouseMove Property (Access) +# Section.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Section.OnMouseUp.md b/api/Access.Section.OnMouseUp.md index bf75568b30c..ca5390fd513 100644 --- a/api/Access.Section.OnMouseUp.md +++ b/api/Access.Section.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: Section.OnMouseUp Property (Access) +title: Section.OnMouseUp property (Access) keywords: vbaac10.chm12211 f1_keywords: - vbaac10.chm12211 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.OnMouseUp Property (Access) +# Section.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Section.OnPaint.md b/api/Access.Section.OnPaint.md index e27492f2361..3628955053a 100644 --- a/api/Access.Section.OnPaint.md +++ b/api/Access.Section.OnPaint.md @@ -1,5 +1,5 @@ --- -title: Section.OnPaint Property (Access) +title: Section.OnPaint property (Access) keywords: vbaac10.chm12227,vbaac10.chm5808 f1_keywords: - vbaac10.chm12227,vbaac10.chm5808 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.OnPaint Property (Access) +# Section.OnPaint property (Access) Sets or returns the value of the **On Paint** box in the **Properties** window of a form or report. Read/write **String**. ## Syntax - _expression_. `OnPaint` +_expression_. `OnPaint` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Paint** event occurs when the section is redrawn. The **OnPaint** value will be one of the following, depending on the selection in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Paint** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Section.OnPrint.md b/api/Access.Section.OnPrint.md index a7203e9e173..d7641b17b54 100644 --- a/api/Access.Section.OnPrint.md +++ b/api/Access.Section.OnPrint.md @@ -1,5 +1,5 @@ --- -title: Section.OnPrint Property (Access) +title: Section.OnPrint property (Access) keywords: vbaac10.chm12205 f1_keywords: - vbaac10.chm12205 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.OnPrint Property (Access) +# Section.OnPrint property (Access) Sets or returns the value of the **On Print** box in the **Properties** window of a report section. Read/write **String**. ## Syntax - _expression_. `OnPrint` +_expression_. `OnPrint` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Print** event occurs after data in a report section is formatted for prin The **OnPrint** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Print** box in the report section's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Section.OnRetreat.md b/api/Access.Section.OnRetreat.md index 35e78151e26..6ba2957f1e9 100644 --- a/api/Access.Section.OnRetreat.md +++ b/api/Access.Section.OnRetreat.md @@ -1,5 +1,5 @@ --- -title: Section.OnRetreat Property (Access) +title: Section.OnRetreat property (Access) keywords: vbaac10.chm12206,vbaac10.chm4105 f1_keywords: - vbaac10.chm12206,vbaac10.chm4105 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.OnRetreat Property (Access) +# Section.OnRetreat property (Access) Sets or returns the value of the **On Retreat** box in the **Properties** window of a report section. Read/write **String**. ## Syntax - _expression_. `OnRetreat` +_expression_. `OnRetreat` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Retreat** event occurs when Microsoft Access returns to a previous report The **OnRetreat** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Retreat** box in the report section's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.Section.Paint.md b/api/Access.Section.Paint.md index e32595d1df2..eb7f2703d6c 100644 --- a/api/Access.Section.Paint.md +++ b/api/Access.Section.Paint.md @@ -1,5 +1,5 @@ --- -title: Section.Paint Event (Access) +title: Section.Paint event (Access) keywords: vbaac10.chm14238 f1_keywords: - vbaac10.chm14238 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.Paint Event (Access) +# Section.Paint event (Access) Occurs when the specified section is redrawn. ## Syntax - _expression_. `Paint` +_expression_. `Paint` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Example diff --git a/api/Access.Section.Parent.md b/api/Access.Section.Parent.md index f12e266174c..1c7f61674ff 100644 --- a/api/Access.Section.Parent.md +++ b/api/Access.Section.Parent.md @@ -1,5 +1,5 @@ --- -title: Section.Parent Property (Access) +title: Section.Parent property (Access) keywords: vbaac10.chm12187 f1_keywords: - vbaac10.chm12187 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.Parent Property (Access) +# Section.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## See also diff --git a/api/Access.Section.Properties.md b/api/Access.Section.Properties.md index 67cb245d307..c1b769df791 100644 --- a/api/Access.Section.Properties.md +++ b/api/Access.Section.Properties.md @@ -1,5 +1,5 @@ --- -title: Section.Properties Property (Access) +title: Section.Properties property (Access) keywords: vbaac10.chm12188 f1_keywords: - vbaac10.chm12188 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.Properties Property (Access) +# Section.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.RepeatSection.md b/api/Access.Section.RepeatSection.md index a7665f0a6fd..d61bb1be489 100644 --- a/api/Access.Section.RepeatSection.md +++ b/api/Access.Section.RepeatSection.md @@ -1,5 +1,5 @@ --- -title: Section.RepeatSection Property (Access) +title: Section.RepeatSection property (Access) keywords: vbaac10.chm12199 f1_keywords: - vbaac10.chm12199 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.RepeatSection Property (Access) +# Section.RepeatSection property (Access) You can use the **RepeatSection** property to specify whether a group header is repeated on the next page or column when a group spans more than one page or column. Read/write **Boolean**. ## Syntax - _expression_. `RepeatSection` +_expression_. `RepeatSection` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.SetTabOrder.md b/api/Access.Section.SetTabOrder.md index 605c3a26511..5bbb9270d1a 100644 --- a/api/Access.Section.SetTabOrder.md +++ b/api/Access.Section.SetTabOrder.md @@ -1,5 +1,5 @@ --- -title: Section.SetTabOrder Method (Access) +title: Section.SetTabOrder method (Access) keywords: vbaac10.chm14294 f1_keywords: - vbaac10.chm14294 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.SetTabOrder Method (Access) +# Section.SetTabOrder method (Access) Resets the tab order of the controls in the specified **Section** to their default values. ## Syntax - _expression_. `SetTabOrder` +_expression_. `SetTabOrder` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## See also diff --git a/api/Access.Section.SpecialEffect.md b/api/Access.Section.SpecialEffect.md index d8b516db2f2..741e8adeb26 100644 --- a/api/Access.Section.SpecialEffect.md +++ b/api/Access.Section.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: Section.SpecialEffect Property (Access) +title: Section.SpecialEffect property (Access) keywords: vbaac10.chm12202 f1_keywords: - vbaac10.chm12202 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.SpecialEffect Property (Access) +# Section.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.Tag.md b/api/Access.Section.Tag.md index 9c2bf0623e1..af28ac64759 100644 --- a/api/Access.Section.Tag.md +++ b/api/Access.Section.Tag.md @@ -1,5 +1,5 @@ --- -title: Section.Tag Property (Access) +title: Section.Tag property (Access) keywords: vbaac10.chm12203 f1_keywords: - vbaac10.chm12203 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.Tag Property (Access) +# Section.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.Visible.md b/api/Access.Section.Visible.md index 2c94367c52c..7953952690b 100644 --- a/api/Access.Section.Visible.md +++ b/api/Access.Section.Visible.md @@ -1,5 +1,5 @@ --- -title: Section.Visible Property (Access) +title: Section.Visible property (Access) keywords: vbaac10.chm12195 f1_keywords: - vbaac10.chm12195 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.Visible Property (Access) +# Section.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.WillContinue.md b/api/Access.Section.WillContinue.md index 4497a2897d0..c74f6732a72 100644 --- a/api/Access.Section.WillContinue.md +++ b/api/Access.Section.WillContinue.md @@ -1,5 +1,5 @@ --- -title: Section.WillContinue Property (Access) +title: Section.WillContinue property (Access) keywords: vbaac10.chm12213 f1_keywords: - vbaac10.chm12213 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# Section.WillContinue Property (Access) +# Section.WillContinue property (Access) Determines if the current section will continue on the following page. Read/write **Boolean**. ## Syntax - _expression_. `WillContinue` +_expression_. `WillContinue` - _expression_ A variable that represents a [Section](Access.Section.md) object. +_expression_ A variable that represents a [Section](Access.Section.md) object. ## Remarks diff --git a/api/Access.Section.md b/api/Access.Section.md index c5b6dd96ea5..fe397c787ab 100644 --- a/api/Access.Section.md +++ b/api/Access.Section.md @@ -1,5 +1,5 @@ --- -title: Section Object (Access) +title: Section object (Access) keywords: vbaac10.chm12235 f1_keywords: - vbaac10.chm12235 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# Section Object (Access) +# Section object (Access) A form section is part of a form such as a header, footer, or detail section. diff --git a/api/Access.SharedResource.Delete.md b/api/Access.SharedResource.Delete.md index f38fd7cf678..7a181f6dd09 100644 --- a/api/Access.SharedResource.Delete.md +++ b/api/Access.SharedResource.Delete.md @@ -1,5 +1,5 @@ --- -title: SharedResource.Delete Method (Access) +title: SharedResource.Delete method (Access) keywords: vbaac10.chm14661 f1_keywords: - vbaac10.chm14661 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SharedResource.Delete Method (Access) +# SharedResource.Delete method (Access) Deletes the specified object. ## Syntax - _expression_. `Delete` +_expression_. `Delete` - _expression_ A variable that represents a [SharedResource](Access.SharedResource.md) object. +_expression_ A variable that represents a [SharedResource](Access.SharedResource.md) object. ## See also diff --git a/api/Access.SharedResource.Name.md b/api/Access.SharedResource.Name.md index e1ea14b3c8e..51d78f57e03 100644 --- a/api/Access.SharedResource.Name.md +++ b/api/Access.SharedResource.Name.md @@ -1,5 +1,5 @@ --- -title: SharedResource.Name Property (Access) +title: SharedResource.Name property (Access) keywords: vbaac10.chm14656 f1_keywords: - vbaac10.chm14656 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SharedResource.Name Property (Access) +# SharedResource.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [SharedResource](Access.SharedResource.md) object. +_expression_ A variable that represents a [SharedResource](Access.SharedResource.md) object. ## Remarks diff --git a/api/Access.SharedResource.Parent.md b/api/Access.SharedResource.Parent.md index 5f142ed4d1e..e5d12772826 100644 --- a/api/Access.SharedResource.Parent.md +++ b/api/Access.SharedResource.Parent.md @@ -1,5 +1,5 @@ --- -title: SharedResource.Parent Property (Access) +title: SharedResource.Parent property (Access) keywords: vbaac10.chm14655 f1_keywords: - vbaac10.chm14655 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SharedResource.Parent Property (Access) +# SharedResource.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [SharedResource](Access.SharedResource.md) object. +_expression_ A variable that represents a [SharedResource](Access.SharedResource.md) object. ## See also diff --git a/api/Access.SharedResource.Type.md b/api/Access.SharedResource.Type.md index 4fb1043b276..1c06a608eb1 100644 --- a/api/Access.SharedResource.Type.md +++ b/api/Access.SharedResource.Type.md @@ -1,5 +1,5 @@ --- -title: SharedResource.Type Property (Access) +title: SharedResource.Type property (Access) keywords: vbaac10.chm14657 f1_keywords: - vbaac10.chm14657 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SharedResource.Type Property (Access) +# SharedResource.Type property (Access) Gets the type of the **[SharedResource](Access.SharedResource.md)** object. Read-only **[AcResourceType](Access.AcResourceType.md)**. ## Syntax - _expression_. `Type` +_expression_. `Type` - _expression_ A variable that represents a [SharedResource](Access.SharedResource.md) object. +_expression_ A variable that represents a [SharedResource](Access.SharedResource.md) object. ## See also diff --git a/api/Access.SharedResource.md b/api/Access.SharedResource.md index 10e303533df..ce27c2382c8 100644 --- a/api/Access.SharedResource.md +++ b/api/Access.SharedResource.md @@ -1,5 +1,5 @@ --- -title: SharedResource Object (Access) +title: SharedResource object (Access) keywords: vbaac10.chm14654 f1_keywords: - vbaac10.chm14654 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# SharedResource Object (Access) +# SharedResource object (Access) Represents a Microsoft Office theme or image that is available as a shared resource in the database. diff --git a/api/Access.SharedResources.Application.md b/api/Access.SharedResources.Application.md index d2b3d37334a..96e709c89f2 100644 --- a/api/Access.SharedResources.Application.md +++ b/api/Access.SharedResources.Application.md @@ -1,5 +1,5 @@ --- -title: SharedResources.Application Property (Access) +title: SharedResources.Application property (Access) keywords: vbaac10.chm14649 f1_keywords: - vbaac10.chm14649 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SharedResources.Application Property (Access) +# SharedResources.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [SharedResources](Access.SharedResources.md) object. +_expression_ A variable that represents a [SharedResources](Access.SharedResources.md) object. ## Remarks diff --git a/api/Access.SharedResources.Count.md b/api/Access.SharedResources.Count.md index 88c82dbdff0..f5579268d7e 100644 --- a/api/Access.SharedResources.Count.md +++ b/api/Access.SharedResources.Count.md @@ -1,5 +1,5 @@ --- -title: SharedResources.Count Property (Access) +title: SharedResources.Count property (Access) keywords: vbaac10.chm14652 f1_keywords: - vbaac10.chm14652 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SharedResources.Count Property (Access) +# SharedResources.Count property (Access) You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [SharedResources](Access.SharedResources.md) object. +_expression_ A variable that represents a [SharedResources](Access.SharedResources.md) object. ## See also diff --git a/api/Access.SharedResources.Item.md b/api/Access.SharedResources.Item.md index 9fa68d2c590..3bd30ca31e3 100644 --- a/api/Access.SharedResources.Item.md +++ b/api/Access.SharedResources.Item.md @@ -1,5 +1,5 @@ --- -title: SharedResources.Item Property (Access) +title: SharedResources.Item property (Access) keywords: vbaac10.chm14651 f1_keywords: - vbaac10.chm14651 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# SharedResources.Item Property (Access) +# SharedResources.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **Object**. ## Syntax - _expression_. `Item`( ` _Index_` ) +_expression_. `Item`( ` _Index_` ) - _expression_ A variable that represents a [SharedResources](Access.SharedResources.md) object. +_expression_ A variable that represents a [SharedResources](Access.SharedResources.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required|**Long**|| diff --git a/api/Access.SharedResources.Parent.md b/api/Access.SharedResources.Parent.md index 4b534bff4e5..92d83962e4f 100644 --- a/api/Access.SharedResources.Parent.md +++ b/api/Access.SharedResources.Parent.md @@ -1,5 +1,5 @@ --- -title: SharedResources.Parent Property (Access) +title: SharedResources.Parent property (Access) keywords: vbaac10.chm14650 f1_keywords: - vbaac10.chm14650 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SharedResources.Parent Property (Access) +# SharedResources.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [SharedResources](Access.SharedResources.md) object. +_expression_ A variable that represents a [SharedResources](Access.SharedResources.md) object. ## See also diff --git a/api/Access.SharedResources.md b/api/Access.SharedResources.md index f821c88ba03..1274bfaa2ed 100644 --- a/api/Access.SharedResources.md +++ b/api/Access.SharedResources.md @@ -1,5 +1,5 @@ --- -title: SharedResources Object (Access) +title: SharedResources object (Access) keywords: vbaac10.chm14648 f1_keywords: - vbaac10.chm14648 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# SharedResources Object (Access) +# SharedResources object (Access) Represents the collection of shared resources in the database. diff --git a/api/Access.SmartTag.Application.md b/api/Access.SmartTag.Application.md index 7e83c5fb1c1..1a5dde119ef 100644 --- a/api/Access.SmartTag.Application.md +++ b/api/Access.SmartTag.Application.md @@ -1,5 +1,5 @@ --- -title: SmartTag.Application Property (Access) +title: SmartTag.Application property (Access) keywords: vbaac10.chm13318 f1_keywords: - vbaac10.chm13318 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTag.Application Property (Access) +# SmartTag.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [SmartTag](Access.SmartTag.md) object. +_expression_ A variable that represents a [SmartTag](Access.SmartTag.md) object. ## Remarks diff --git a/api/Access.SmartTag.Delete.md b/api/Access.SmartTag.Delete.md index 16f2b5f658f..8560abbad33 100644 --- a/api/Access.SmartTag.Delete.md +++ b/api/Access.SmartTag.Delete.md @@ -1,5 +1,5 @@ --- -title: SmartTag.Delete Method (Access) +title: SmartTag.Delete method (Access) keywords: vbaac10.chm13324 f1_keywords: - vbaac10.chm13324 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# SmartTag.Delete Method (Access) +# SmartTag.Delete method (Access) Deletes the specified object. ## Syntax - _expression_. `Delete` +_expression_. `Delete` - _expression_ A variable that represents a [SmartTag](Access.SmartTag.md) object. +_expression_ A variable that represents a [SmartTag](Access.SmartTag.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.SmartTag.IsMissing.md b/api/Access.SmartTag.IsMissing.md index 01896fae1be..71ae0557141 100644 --- a/api/Access.SmartTag.IsMissing.md +++ b/api/Access.SmartTag.IsMissing.md @@ -1,5 +1,5 @@ --- -title: SmartTag.IsMissing Property (Access) +title: SmartTag.IsMissing property (Access) keywords: vbaac10.chm13325 f1_keywords: - vbaac10.chm13325 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTag.IsMissing Property (Access) +# SmartTag.IsMissing property (Access) Returns **True** if the specified smart tag is not installed or is installed incorrectly. Read-only **Boolean**. ## Syntax - _expression_. `IsMissing` +_expression_. `IsMissing` - _expression_ A variable that represents a [SmartTag](Access.SmartTag.md) object. +_expression_ A variable that represents a [SmartTag](Access.SmartTag.md) object. ## See also diff --git a/api/Access.SmartTag.Name.md b/api/Access.SmartTag.Name.md index a64e7bbbfc2..8b0e567ccbf 100644 --- a/api/Access.SmartTag.Name.md +++ b/api/Access.SmartTag.Name.md @@ -1,5 +1,5 @@ --- -title: SmartTag.Name Property (Access) +title: SmartTag.Name property (Access) keywords: vbaac10.chm13319 f1_keywords: - vbaac10.chm13319 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTag.Name Property (Access) +# SmartTag.Name property (Access) You can use the **Name** property to determine the string expression that identifies the name of an object. Read-only **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [SmartTag](Access.SmartTag.md) object. +_expression_ A variable that represents a [SmartTag](Access.SmartTag.md) object. ## Remarks diff --git a/api/Access.SmartTag.Parent.md b/api/Access.SmartTag.Parent.md index 9a70295031e..5de16df4b8e 100644 --- a/api/Access.SmartTag.Parent.md +++ b/api/Access.SmartTag.Parent.md @@ -1,5 +1,5 @@ --- -title: SmartTag.Parent Property (Access) +title: SmartTag.Parent property (Access) keywords: vbaac10.chm13320 f1_keywords: - vbaac10.chm13320 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTag.Parent Property (Access) +# SmartTag.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [SmartTag](Access.SmartTag.md) object. +_expression_ A variable that represents a [SmartTag](Access.SmartTag.md) object. ## See also diff --git a/api/Access.SmartTag.Properties.md b/api/Access.SmartTag.Properties.md index 265d78c5a6e..f6350f26c4c 100644 --- a/api/Access.SmartTag.Properties.md +++ b/api/Access.SmartTag.Properties.md @@ -1,5 +1,5 @@ --- -title: SmartTag.Properties Property (Access) +title: SmartTag.Properties property (Access) keywords: vbaac10.chm13321 f1_keywords: - vbaac10.chm13321 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTag.Properties Property (Access) +# SmartTag.Properties property (Access) Returns a **SmartTagProperties** collection that represents the collection of properties for a particular smart tag. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [SmartTag](Access.SmartTag.md) object. +_expression_ A variable that represents a [SmartTag](Access.SmartTag.md) object. ## See also diff --git a/api/Access.SmartTag.SmartTagActions.md b/api/Access.SmartTag.SmartTagActions.md index 313a7aa1cf0..2797fa92e25 100644 --- a/api/Access.SmartTag.SmartTagActions.md +++ b/api/Access.SmartTag.SmartTagActions.md @@ -1,5 +1,5 @@ --- -title: SmartTag.SmartTagActions Property (Access) +title: SmartTag.SmartTagActions property (Access) keywords: vbaac10.chm13322 f1_keywords: - vbaac10.chm13322 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTag.SmartTagActions Property (Access) +# SmartTag.SmartTagActions property (Access) Returns a **[SmartTagActions](Access.SmartTagActions.md)** collection that represents the actions available for a specific smart tag. Read-only. ## Syntax - _expression_. `SmartTagActions` +_expression_. `SmartTagActions` - _expression_ A variable that represents a [SmartTag](Access.SmartTag.md) object. +_expression_ A variable that represents a [SmartTag](Access.SmartTag.md) object. ## Remarks diff --git a/api/Access.SmartTag.XML.md b/api/Access.SmartTag.XML.md index ea829366015..d527eefc31c 100644 --- a/api/Access.SmartTag.XML.md +++ b/api/Access.SmartTag.XML.md @@ -1,5 +1,5 @@ --- -title: SmartTag.XML Property (Access) +title: SmartTag.XML property (Access) keywords: vbaac10.chm13323 f1_keywords: - vbaac10.chm13323 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTag.XML Property (Access) +# SmartTag.XML property (Access) Returns a **String** that represents the related XML code for a smart tag. Read-only. ## Syntax - _expression_. `XML` +_expression_. `XML` - _expression_ A variable that represents a [SmartTag](Access.SmartTag.md) object. +_expression_ A variable that represents a [SmartTag](Access.SmartTag.md) object. ## See also diff --git a/api/Access.SmartTag.md b/api/Access.SmartTag.md index af33830108b..6c4f2ee67d8 100644 --- a/api/Access.SmartTag.md +++ b/api/Access.SmartTag.md @@ -1,5 +1,5 @@ --- -title: SmartTag Object (Access) +title: SmartTag object (Access) keywords: vbaac10.chm13316 f1_keywords: - vbaac10.chm13316 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# SmartTag Object (Access) +# SmartTag object (Access) Represents a smart tag that has been added to a control on a form or report. The **SmartTag** object is a member of the **[SmartTags](Access.SmartTags.md)** collection. diff --git a/api/Access.SmartTagAction.Application.md b/api/Access.SmartTagAction.Application.md index 8b0931be774..4875a27fe74 100644 --- a/api/Access.SmartTagAction.Application.md +++ b/api/Access.SmartTagAction.Application.md @@ -1,5 +1,5 @@ --- -title: SmartTagAction.Application Property (Access) +title: SmartTagAction.Application property (Access) keywords: vbaac10.chm13290 f1_keywords: - vbaac10.chm13290 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTagAction.Application Property (Access) +# SmartTagAction.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [SmartTagAction](Access.SmartTagAction.md) object. +_expression_ A variable that represents a [SmartTagAction](Access.SmartTagAction.md) object. ## Remarks diff --git a/api/Access.SmartTagAction.Execute.md b/api/Access.SmartTagAction.Execute.md index 6542c248e56..8bb44464a99 100644 --- a/api/Access.SmartTagAction.Execute.md +++ b/api/Access.SmartTagAction.Execute.md @@ -1,5 +1,5 @@ --- -title: SmartTagAction.Execute Method (Access) +title: SmartTagAction.Execute method (Access) keywords: vbaac10.chm13293 f1_keywords: - vbaac10.chm13293 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTagAction.Execute Method (Access) +# SmartTagAction.Execute method (Access) The **Execute** method performs the specified smart tag action. ## Syntax - _expression_. `Execute` +_expression_. `Execute` - _expression_ A variable that represents a [SmartTagAction](Access.SmartTagAction.md) object. +_expression_ A variable that represents a [SmartTagAction](Access.SmartTagAction.md) object. ## Remarks diff --git a/api/Access.SmartTagAction.Name.md b/api/Access.SmartTagAction.Name.md index d96b88d3e16..8e27c414904 100644 --- a/api/Access.SmartTagAction.Name.md +++ b/api/Access.SmartTagAction.Name.md @@ -1,5 +1,5 @@ --- -title: SmartTagAction.Name Property (Access) +title: SmartTagAction.Name property (Access) keywords: vbaac10.chm13292 f1_keywords: - vbaac10.chm13292 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTagAction.Name Property (Access) +# SmartTagAction.Name property (Access) You can use the **Name** property to determine the string expression that identifies the name of an object. Read-only **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [SmartTagAction](Access.SmartTagAction.md) object. +_expression_ A variable that represents a [SmartTagAction](Access.SmartTagAction.md) object. ## Remarks diff --git a/api/Access.SmartTagAction.Parent.md b/api/Access.SmartTagAction.Parent.md index 7ce9573eb91..9bae0597768 100644 --- a/api/Access.SmartTagAction.Parent.md +++ b/api/Access.SmartTagAction.Parent.md @@ -1,5 +1,5 @@ --- -title: SmartTagAction.Parent Property (Access) +title: SmartTagAction.Parent property (Access) keywords: vbaac10.chm13291 f1_keywords: - vbaac10.chm13291 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTagAction.Parent Property (Access) +# SmartTagAction.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [SmartTagAction](Access.SmartTagAction.md) object. +_expression_ A variable that represents a [SmartTagAction](Access.SmartTagAction.md) object. ## See also diff --git a/api/Access.SmartTagAction.md b/api/Access.SmartTagAction.md index 24a75656d41..cd03f20e645 100644 --- a/api/Access.SmartTagAction.md +++ b/api/Access.SmartTagAction.md @@ -1,5 +1,5 @@ --- -title: SmartTagAction Object (Access) +title: SmartTagAction object (Access) keywords: vbaac10.chm13288 f1_keywords: - vbaac10.chm13288 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# SmartTagAction Object (Access) +# SmartTagAction object (Access) Represents a single action for a smart tag. diff --git a/api/Access.SmartTagActions.Application.md b/api/Access.SmartTagActions.Application.md index ae5dc02579b..a4b8d6a87e0 100644 --- a/api/Access.SmartTagActions.Application.md +++ b/api/Access.SmartTagActions.Application.md @@ -1,5 +1,5 @@ --- -title: SmartTagActions.Application Property (Access) +title: SmartTagActions.Application property (Access) keywords: vbaac10.chm13297 f1_keywords: - vbaac10.chm13297 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTagActions.Application Property (Access) +# SmartTagActions.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [SmartTagActions](Access.SmartTagActions.md) object. +_expression_ A variable that represents a [SmartTagActions](Access.SmartTagActions.md) object. ## Remarks diff --git a/api/Access.SmartTagActions.Count.md b/api/Access.SmartTagActions.Count.md index 4ed008323d8..675bfc74cd3 100644 --- a/api/Access.SmartTagActions.Count.md +++ b/api/Access.SmartTagActions.Count.md @@ -1,5 +1,5 @@ --- -title: SmartTagActions.Count Property (Access) +title: SmartTagActions.Count property (Access) keywords: vbaac10.chm13298 f1_keywords: - vbaac10.chm13298 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTagActions.Count Property (Access) +# SmartTagActions.Count property (Access) You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [SmartTagActions](Access.SmartTagActions.md) object. +_expression_ A variable that represents a [SmartTagActions](Access.SmartTagActions.md) object. ## See also diff --git a/api/Access.SmartTagActions.Item.md b/api/Access.SmartTagActions.Item.md index 8fe036f75b5..7056bbef74b 100644 --- a/api/Access.SmartTagActions.Item.md +++ b/api/Access.SmartTagActions.Item.md @@ -1,5 +1,5 @@ --- -title: SmartTagActions.Item Property (Access) +title: SmartTagActions.Item property (Access) keywords: vbaac10.chm13300 f1_keywords: - vbaac10.chm13300 @@ -11,25 +11,25 @@ ms.date: 06/08/2017 --- -# SmartTagActions.Item Property (Access) +# SmartTagActions.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **SmartTagAction**. ## Syntax - _expression_. `Item`( ` _Index_` ) +_expression_. `Item`( ` _Index_` ) - _expression_ A variable that represents a [SmartTagActions](Access.SmartTagActions.md) object. +_expression_ A variable that represents a [SmartTagActions](Access.SmartTagActions.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| -| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| +| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| ## Remarks diff --git a/api/Access.SmartTagActions.Parent.md b/api/Access.SmartTagActions.Parent.md index ca9fe28e2b9..2c62aa0c6d7 100644 --- a/api/Access.SmartTagActions.Parent.md +++ b/api/Access.SmartTagActions.Parent.md @@ -1,5 +1,5 @@ --- -title: SmartTagActions.Parent Property (Access) +title: SmartTagActions.Parent property (Access) keywords: vbaac10.chm13299 f1_keywords: - vbaac10.chm13299 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTagActions.Parent Property (Access) +# SmartTagActions.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [SmartTagActions](Access.SmartTagActions.md) object. +_expression_ A variable that represents a [SmartTagActions](Access.SmartTagActions.md) object. ## See also diff --git a/api/Access.SmartTagActions.md b/api/Access.SmartTagActions.md index 82cf710a2e7..0a3c3ff352e 100644 --- a/api/Access.SmartTagActions.md +++ b/api/Access.SmartTagActions.md @@ -1,5 +1,5 @@ --- -title: SmartTagActions Object (Access) +title: SmartTagActions object (Access) keywords: vbaac10.chm13295 f1_keywords: - vbaac10.chm13295 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# SmartTagActions Object (Access) +# SmartTagActions object (Access) Represents a collection of actions for an individual smart tag or a type of smart tag. diff --git a/api/Access.SmartTagProperties.Add.md b/api/Access.SmartTagProperties.Add.md index 40271b90653..708d758cdb2 100644 --- a/api/Access.SmartTagProperties.Add.md +++ b/api/Access.SmartTagProperties.Add.md @@ -1,5 +1,5 @@ --- -title: SmartTagProperties.Add Method (Access) +title: SmartTagProperties.Add method (Access) keywords: vbaac10.chm13314 f1_keywords: - vbaac10.chm13314 @@ -11,28 +11,28 @@ ms.date: 06/08/2017 --- -# SmartTagProperties.Add Method (Access) +# SmartTagProperties.Add method (Access) Adds a custom property to a smart tag. ## Syntax - _expression_. `Add`( ` _Name_`, ` _Value_` ) +_expression_. `Add`( ` _Name_`, ` _Value_` ) - _expression_ A variable that represents a [SmartTagProperties](Access.SmartTagProperties.md) object. +_expression_ A variable that represents a [SmartTagProperties](Access.SmartTagProperties.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required|**String**|The name to be used for the custom property.| | _Value_|Required|**Variant**|The value of the custom property.| -### Return Value +### Return value SmartTagProperty diff --git a/api/Access.SmartTagProperties.Application.md b/api/Access.SmartTagProperties.Application.md index 4f1710671f7..d49dbcceb3b 100644 --- a/api/Access.SmartTagProperties.Application.md +++ b/api/Access.SmartTagProperties.Application.md @@ -1,5 +1,5 @@ --- -title: SmartTagProperties.Application Property (Access) +title: SmartTagProperties.Application property (Access) keywords: vbaac10.chm13310 f1_keywords: - vbaac10.chm13310 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTagProperties.Application Property (Access) +# SmartTagProperties.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [SmartTagProperties](Access.SmartTagProperties.md) object. +_expression_ A variable that represents a [SmartTagProperties](Access.SmartTagProperties.md) object. ## Remarks diff --git a/api/Access.SmartTagProperties.Count.md b/api/Access.SmartTagProperties.Count.md index e66e5ca6cc9..fc26f7e7e9d 100644 --- a/api/Access.SmartTagProperties.Count.md +++ b/api/Access.SmartTagProperties.Count.md @@ -1,5 +1,5 @@ --- -title: SmartTagProperties.Count Property (Access) +title: SmartTagProperties.Count property (Access) keywords: vbaac10.chm13311 f1_keywords: - vbaac10.chm13311 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTagProperties.Count Property (Access) +# SmartTagProperties.Count property (Access) You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [SmartTagProperties](Access.SmartTagProperties.md) object. +_expression_ A variable that represents a [SmartTagProperties](Access.SmartTagProperties.md) object. ## See also diff --git a/api/Access.SmartTagProperties.Item.md b/api/Access.SmartTagProperties.Item.md index d4693a9c89b..f5b65cc22f8 100644 --- a/api/Access.SmartTagProperties.Item.md +++ b/api/Access.SmartTagProperties.Item.md @@ -1,5 +1,5 @@ --- -title: SmartTagProperties.Item Property (Access) +title: SmartTagProperties.Item property (Access) keywords: vbaac10.chm13313 f1_keywords: - vbaac10.chm13313 @@ -11,25 +11,25 @@ ms.date: 06/08/2017 --- -# SmartTagProperties.Item Property (Access) +# SmartTagProperties.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **SmartTagProperty**. ## Syntax - _expression_. `Item`( ` _Index_` ) +_expression_. `Item`( ` _Index_` ) - _expression_ A variable that represents a [SmartTagProperties](Access.SmartTagProperties.md) object. +_expression_ A variable that represents a [SmartTagProperties](Access.SmartTagProperties.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| -| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| +| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| ## Remarks diff --git a/api/Access.SmartTagProperties.Parent.md b/api/Access.SmartTagProperties.Parent.md index 765dad247ed..2dfa691766f 100644 --- a/api/Access.SmartTagProperties.Parent.md +++ b/api/Access.SmartTagProperties.Parent.md @@ -1,5 +1,5 @@ --- -title: SmartTagProperties.Parent Property (Access) +title: SmartTagProperties.Parent property (Access) keywords: vbaac10.chm13312 f1_keywords: - vbaac10.chm13312 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTagProperties.Parent Property (Access) +# SmartTagProperties.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [SmartTagProperties](Access.SmartTagProperties.md) object. +_expression_ A variable that represents a [SmartTagProperties](Access.SmartTagProperties.md) object. ## See also diff --git a/api/Access.SmartTagProperties.md b/api/Access.SmartTagProperties.md index 3bb004a975e..c320a3000c6 100644 --- a/api/Access.SmartTagProperties.md +++ b/api/Access.SmartTagProperties.md @@ -1,5 +1,5 @@ --- -title: SmartTagProperties Object (Access) +title: SmartTagProperties object (Access) keywords: vbaac10.chm13308 f1_keywords: - vbaac10.chm13308 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# SmartTagProperties Object (Access) +# SmartTagProperties object (Access) A collection of **[SmartTagProperty](Access.SmartTagProperty.md)** objects that represents the properties related to a smart tag. diff --git a/api/Access.SmartTagProperty.Delete.md b/api/Access.SmartTagProperty.Delete.md index 2c3c64d6a56..a12a434ca5f 100644 --- a/api/Access.SmartTagProperty.Delete.md +++ b/api/Access.SmartTagProperty.Delete.md @@ -1,5 +1,5 @@ --- -title: SmartTagProperty.Delete Method (Access) +title: SmartTagProperty.Delete method (Access) keywords: vbaac10.chm13306 f1_keywords: - vbaac10.chm13306 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# SmartTagProperty.Delete Method (Access) +# SmartTagProperty.Delete method (Access) Deletes the specified object. ## Syntax - _expression_. `Delete` +_expression_. `Delete` - _expression_ A variable that represents a [SmartTagProperty](Access.SmartTagProperty.md) object. +_expression_ A variable that represents a [SmartTagProperty](Access.SmartTagProperty.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.SmartTagProperty.Name.md b/api/Access.SmartTagProperty.Name.md index 00bb870b64f..5fdaf09923f 100644 --- a/api/Access.SmartTagProperty.Name.md +++ b/api/Access.SmartTagProperty.Name.md @@ -1,5 +1,5 @@ --- -title: SmartTagProperty.Name Property (Access) +title: SmartTagProperty.Name property (Access) keywords: vbaac10.chm13304 f1_keywords: - vbaac10.chm13304 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTagProperty.Name Property (Access) +# SmartTagProperty.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [SmartTagProperty](Access.SmartTagProperty.md) object. +_expression_ A variable that represents a [SmartTagProperty](Access.SmartTagProperty.md) object. ## Remarks diff --git a/api/Access.SmartTagProperty.Value.md b/api/Access.SmartTagProperty.Value.md index 1a89c19819d..0def5da3be3 100644 --- a/api/Access.SmartTagProperty.Value.md +++ b/api/Access.SmartTagProperty.Value.md @@ -1,5 +1,5 @@ --- -title: SmartTagProperty.Value Property (Access) +title: SmartTagProperty.Value property (Access) keywords: vbaac10.chm13305 f1_keywords: - vbaac10.chm13305 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTagProperty.Value Property (Access) +# SmartTagProperty.Value property (Access) Gets or sets the value of the specified object. Read/write **Variant**. ## Syntax - _expression_. `Value` +_expression_. `Value` - _expression_ A variable that represents a [SmartTagProperty](Access.SmartTagProperty.md) object. +_expression_ A variable that represents a [SmartTagProperty](Access.SmartTagProperty.md) object. ## Remarks diff --git a/api/Access.SmartTagProperty.md b/api/Access.SmartTagProperty.md index b37b5a9c4d2..799df649f58 100644 --- a/api/Access.SmartTagProperty.md +++ b/api/Access.SmartTagProperty.md @@ -1,5 +1,5 @@ --- -title: SmartTagProperty Object (Access) +title: SmartTagProperty object (Access) keywords: vbaac10.chm13302 f1_keywords: - vbaac10.chm13302 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# SmartTagProperty Object (Access) +# SmartTagProperty object (Access) Represents a single instance of a custom property for a smart tag. The **SmartTagProperty** object is a member of the **[SmartTagProperties](Access.SmartTagProperties.md)** collection. diff --git a/api/Access.SmartTags.Add.md b/api/Access.SmartTags.Add.md index 686d0220d38..9f65253645f 100644 --- a/api/Access.SmartTags.Add.md +++ b/api/Access.SmartTags.Add.md @@ -1,5 +1,5 @@ --- -title: SmartTags.Add Method (Access) +title: SmartTags.Add method (Access) keywords: vbaac10.chm13286 f1_keywords: - vbaac10.chm13286 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# SmartTags.Add Method (Access) +# SmartTags.Add method (Access) Adds a smart tag to a form or control. ## Syntax - _expression_. `Add`( ` _Name_` ) +_expression_. `Add`( ` _Name_` ) - _expression_ A variable that represents a [SmartTags](Access.SmartTags.md) object. +_expression_ A variable that represents a [SmartTags](Access.SmartTags.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required|**String**|The name of the smart tag to add.| -### Return Value +### Return value SmartTag diff --git a/api/Access.SmartTags.Application.md b/api/Access.SmartTags.Application.md index 0a2f1d3af73..0d3e4083c20 100644 --- a/api/Access.SmartTags.Application.md +++ b/api/Access.SmartTags.Application.md @@ -1,5 +1,5 @@ --- -title: SmartTags.Application Property (Access) +title: SmartTags.Application property (Access) keywords: vbaac10.chm13282 f1_keywords: - vbaac10.chm13282 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTags.Application Property (Access) +# SmartTags.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [SmartTags](Access.SmartTags.md) object. +_expression_ A variable that represents a [SmartTags](Access.SmartTags.md) object. ## Remarks diff --git a/api/Access.SmartTags.Count.md b/api/Access.SmartTags.Count.md index 4f6fd4c45ad..764dc632a78 100644 --- a/api/Access.SmartTags.Count.md +++ b/api/Access.SmartTags.Count.md @@ -1,5 +1,5 @@ --- -title: SmartTags.Count Property (Access) +title: SmartTags.Count property (Access) keywords: vbaac10.chm13285 f1_keywords: - vbaac10.chm13285 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTags.Count Property (Access) +# SmartTags.Count property (Access) You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [SmartTags](Access.SmartTags.md) object. +_expression_ A variable that represents a [SmartTags](Access.SmartTags.md) object. ## See also diff --git a/api/Access.SmartTags.Item.md b/api/Access.SmartTags.Item.md index 36507bbec03..3152de5d669 100644 --- a/api/Access.SmartTags.Item.md +++ b/api/Access.SmartTags.Item.md @@ -1,5 +1,5 @@ --- -title: SmartTags.Item Property (Access) +title: SmartTags.Item property (Access) keywords: vbaac10.chm13284 f1_keywords: - vbaac10.chm13284 @@ -11,25 +11,25 @@ ms.date: 06/08/2017 --- -# SmartTags.Item Property (Access) +# SmartTags.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **SmartTag**. ## Syntax - _expression_. `Item`( ` _Index_` ) +_expression_. `Item`( ` _Index_` ) - _expression_ A variable that represents a [SmartTags](Access.SmartTags.md) object. +_expression_ A variable that represents a [SmartTags](Access.SmartTags.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| -| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| +| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection| ## Remarks diff --git a/api/Access.SmartTags.Parent.md b/api/Access.SmartTags.Parent.md index a78fc8c39a3..534316d6223 100644 --- a/api/Access.SmartTags.Parent.md +++ b/api/Access.SmartTags.Parent.md @@ -1,5 +1,5 @@ --- -title: SmartTags.Parent Property (Access) +title: SmartTags.Parent property (Access) keywords: vbaac10.chm13283 f1_keywords: - vbaac10.chm13283 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SmartTags.Parent Property (Access) +# SmartTags.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [SmartTags](Access.SmartTags.md) object. +_expression_ A variable that represents a [SmartTags](Access.SmartTags.md) object. ## See also diff --git a/api/Access.SmartTags.md b/api/Access.SmartTags.md index 31d2fd0f925..add1ed60879 100644 --- a/api/Access.SmartTags.md +++ b/api/Access.SmartTags.md @@ -1,5 +1,5 @@ --- -title: SmartTags Object (Access) +title: SmartTags object (Access) keywords: vbaac10.chm13280 f1_keywords: - vbaac10.chm13280 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# SmartTags Object (Access) +# SmartTags object (Access) Represents the collection of smart tags for a control on a form, report, or data access page. diff --git a/api/Access.SubForm.AddColon.md b/api/Access.SubForm.AddColon.md index 3e3d5254b14..d66546d1376 100644 --- a/api/Access.SubForm.AddColon.md +++ b/api/Access.SubForm.AddColon.md @@ -1,5 +1,5 @@ --- -title: SubForm.AddColon Property (Access) +title: SubForm.AddColon property (Access) keywords: vbaac10.chm11949 f1_keywords: - vbaac10.chm11949 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.AddColon Property (Access) +# SubForm.AddColon property (Access) Specifies whether a colon follows the text in labels for new controls. Read/write **Boolean**. ## Syntax - _expression_. `AddColon` +_expression_. `AddColon` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## See also diff --git a/api/Access.SubForm.Application.md b/api/Access.SubForm.Application.md index d03ebab41b6..641fb46abb3 100644 --- a/api/Access.SubForm.Application.md +++ b/api/Access.SubForm.Application.md @@ -1,5 +1,5 @@ --- -title: SubForm.Application Property (Access) +title: SubForm.Application property (Access) keywords: vbaac10.chm11914 f1_keywords: - vbaac10.chm11914 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Application Property (Access) +# SubForm.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.AutoLabel.md b/api/Access.SubForm.AutoLabel.md index 84fa26caff2..48a49d93cf1 100644 --- a/api/Access.SubForm.AutoLabel.md +++ b/api/Access.SubForm.AutoLabel.md @@ -1,5 +1,5 @@ --- -title: SubForm.AutoLabel Property (Access) +title: SubForm.AutoLabel property (Access) keywords: vbaac10.chm11948 f1_keywords: - vbaac10.chm11948 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.AutoLabel Property (Access) +# SubForm.AutoLabel property (Access) Specifies whether labels are automatically created and attached to new controls. Read/write **Boolean**. ## Syntax - _expression_. `AutoLabel` +_expression_. `AutoLabel` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## See also diff --git a/api/Access.SubForm.BorderColor.md b/api/Access.SubForm.BorderColor.md index c7932313cf3..c10aac35dc5 100644 --- a/api/Access.SubForm.BorderColor.md +++ b/api/Access.SubForm.BorderColor.md @@ -1,5 +1,5 @@ --- -title: SubForm.BorderColor Property (Access) +title: SubForm.BorderColor property (Access) keywords: vbaac10.chm11947 f1_keywords: - vbaac10.chm11947 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.BorderColor Property (Access) +# SubForm.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.BorderShade.md b/api/Access.SubForm.BorderShade.md index f41b6669a80..303fdd91ff2 100644 --- a/api/Access.SubForm.BorderShade.md +++ b/api/Access.SubForm.BorderShade.md @@ -1,5 +1,5 @@ --- -title: SubForm.BorderShade Property (Access) +title: SubForm.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.BorderShade Property (Access) +# SubForm.BorderShade property (Access) Gets or sets the shade that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.BorderStyle.md b/api/Access.SubForm.BorderStyle.md index d5b006847f3..ec925442ee3 100644 --- a/api/Access.SubForm.BorderStyle.md +++ b/api/Access.SubForm.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: SubForm.BorderStyle Property (Access) +title: SubForm.BorderStyle property (Access) keywords: vbaac10.chm11943 f1_keywords: - vbaac10.chm11943 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.BorderStyle Property (Access) +# SubForm.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.BorderThemeColorIndex.md b/api/Access.SubForm.BorderThemeColorIndex.md index a03c8ca13df..0c88e35ad6e 100644 --- a/api/Access.SubForm.BorderThemeColorIndex.md +++ b/api/Access.SubForm.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: SubForm.BorderThemeColorIndex Property (Access) +title: SubForm.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.BorderThemeColorIndex Property (Access) +# SubForm.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.BorderTint.md b/api/Access.SubForm.BorderTint.md index 7cce8e4b789..df6ea61c087 100644 --- a/api/Access.SubForm.BorderTint.md +++ b/api/Access.SubForm.BorderTint.md @@ -1,5 +1,5 @@ --- -title: SubForm.BorderTint Property (Access) +title: SubForm.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.BorderTint Property (Access) +# SubForm.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.BorderWidth.md b/api/Access.SubForm.BorderWidth.md index c32c1ecea78..d0a33341b8a 100644 --- a/api/Access.SubForm.BorderWidth.md +++ b/api/Access.SubForm.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: SubForm.BorderWidth Property (Access) +title: SubForm.BorderWidth property (Access) keywords: vbaac10.chm11945 f1_keywords: - vbaac10.chm11945 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.BorderWidth Property (Access) +# SubForm.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.BottomPadding.md b/api/Access.SubForm.BottomPadding.md index bbfc39deac3..cbd5d00b006 100644 --- a/api/Access.SubForm.BottomPadding.md +++ b/api/Access.SubForm.BottomPadding.md @@ -1,5 +1,5 @@ --- -title: SubForm.BottomPadding Property (Access) +title: SubForm.BottomPadding property (Access) keywords: vbaac10.chm11969 f1_keywords: - vbaac10.chm11969 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.BottomPadding Property (Access) +# SubForm.BottomPadding property (Access) Gets or sets the amount of space (in inches) between the subform and its bottom gridline. Read/write **Integer**. ## Syntax - _expression_. `BottomPadding` +_expression_. `BottomPadding` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## See also diff --git a/api/Access.SubForm.CanGrow.md b/api/Access.SubForm.CanGrow.md index 1ca9be73a5c..d8adcb9c5b9 100644 --- a/api/Access.SubForm.CanGrow.md +++ b/api/Access.SubForm.CanGrow.md @@ -1,5 +1,5 @@ --- -title: SubForm.CanGrow Property (Access) +title: SubForm.CanGrow property (Access) keywords: vbaac10.chm11936 f1_keywords: - vbaac10.chm11936 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.CanGrow Property (Access) +# SubForm.CanGrow property (Access) Gets or sets whether the specified control automatically adjusts vertically to print or preview all the data the control contains. Read/write **Boolean**. ## Syntax - _expression_. `CanGrow` +_expression_. `CanGrow` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.CanShrink.md b/api/Access.SubForm.CanShrink.md index 81e86d0c46f..0869ca8f2c9 100644 --- a/api/Access.SubForm.CanShrink.md +++ b/api/Access.SubForm.CanShrink.md @@ -1,5 +1,5 @@ --- -title: SubForm.CanShrink Property (Access) +title: SubForm.CanShrink property (Access) keywords: vbaac10.chm11937 f1_keywords: - vbaac10.chm11937 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.CanShrink Property (Access) +# SubForm.CanShrink property (Access) Gets or sets whether the specified control automatically adjusts vertically to print or preview all the data the section or control contains. Read/write **Boolean**. ## Syntax - _expression_. `CanShrink` +_expression_. `CanShrink` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.ControlType.md b/api/Access.SubForm.ControlType.md index 67cc62b6268..5004ba16c1a 100644 --- a/api/Access.SubForm.ControlType.md +++ b/api/Access.SubForm.ControlType.md @@ -1,5 +1,5 @@ --- -title: SubForm.ControlType Property (Access) +title: SubForm.ControlType property (Access) keywords: vbaac10.chm11925 f1_keywords: - vbaac10.chm11925 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.ControlType Property (Access) +# SubForm.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.Controls.md b/api/Access.SubForm.Controls.md index e22aa8ec56a..84019d8ccc3 100644 --- a/api/Access.SubForm.Controls.md +++ b/api/Access.SubForm.Controls.md @@ -1,5 +1,5 @@ --- -title: SubForm.Controls Property (Access) +title: SubForm.Controls property (Access) keywords: vbaac10.chm11922 f1_keywords: - vbaac10.chm11922 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Controls Property (Access) +# SubForm.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.DisplayWhen.md b/api/Access.SubForm.DisplayWhen.md index 849357d33c0..16479156e9a 100644 --- a/api/Access.SubForm.DisplayWhen.md +++ b/api/Access.SubForm.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: SubForm.DisplayWhen Property (Access) +title: SubForm.DisplayWhen property (Access) keywords: vbaac10.chm11931 f1_keywords: - vbaac10.chm11931 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.DisplayWhen Property (Access) +# SubForm.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.Enabled.md b/api/Access.SubForm.Enabled.md index e64b1cf12d6..24915ff5626 100644 --- a/api/Access.SubForm.Enabled.md +++ b/api/Access.SubForm.Enabled.md @@ -1,5 +1,5 @@ --- -title: SubForm.Enabled Property (Access) +title: SubForm.Enabled property (Access) keywords: vbaac10.chm11932 f1_keywords: - vbaac10.chm11932 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Enabled Property (Access) +# SubForm.Enabled property (Access) You can use the **Enabled** property to set or return the status of the conditional format in the **[FormatCondition](Access.FormatCondition.md)** object. Read/write **Boolean**. ## Syntax - _expression_. `Enabled` +_expression_. `Enabled` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.Enter.md b/api/Access.SubForm.Enter.md index 7fa0c715f21..851d6ecadf1 100644 --- a/api/Access.SubForm.Enter.md +++ b/api/Access.SubForm.Enter.md @@ -1,5 +1,5 @@ --- -title: SubForm.Enter Event (Access) +title: SubForm.Enter event (Access) keywords: vbaac10.chm14229 f1_keywords: - vbaac10.chm14229 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Enter Event (Access) +# SubForm.Enter event (Access) The **Enter** event occurs before a control actually receives the focus from a control on the same form or report. ## Syntax - _expression_. `Enter` +_expression_. `Enter` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.EventProcPrefix.md b/api/Access.SubForm.EventProcPrefix.md index 6796b95b446..5904f7e2005 100644 --- a/api/Access.SubForm.EventProcPrefix.md +++ b/api/Access.SubForm.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: SubForm.EventProcPrefix Property (Access) +title: SubForm.EventProcPrefix property (Access) keywords: vbaac10.chm11923 f1_keywords: - vbaac10.chm11923 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.EventProcPrefix Property (Access) +# SubForm.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.Exit.md b/api/Access.SubForm.Exit.md index d7e005a0c1e..4a704a2e371 100644 --- a/api/Access.SubForm.Exit.md +++ b/api/Access.SubForm.Exit.md @@ -1,5 +1,5 @@ --- -title: SubForm.Exit Event (Access) +title: SubForm.Exit event (Access) keywords: vbaac10.chm14230 f1_keywords: - vbaac10.chm14230 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# SubForm.Exit Event (Access) +# SubForm.Exit event (Access) The **Exit** event occurs just before a control loses the focus to another control on the same form or report. ## Syntax - _expression_. `Exit`( ` _Cancel_` ) +_expression_. `Exit`( ` _Cancel_` ) - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|Set to **True** to cancel the event.| diff --git a/api/Access.SubForm.FilterOnEmptyMaster.md b/api/Access.SubForm.FilterOnEmptyMaster.md index 8437c9f9e4a..bc0eb736cde 100644 --- a/api/Access.SubForm.FilterOnEmptyMaster.md +++ b/api/Access.SubForm.FilterOnEmptyMaster.md @@ -1,5 +1,5 @@ --- -title: SubForm.FilterOnEmptyMaster Property (Access) +title: SubForm.FilterOnEmptyMaster property (Access) keywords: vbaac10.chm11981 f1_keywords: - vbaac10.chm11981 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.FilterOnEmptyMaster Property (Access) +# SubForm.FilterOnEmptyMaster property (Access) Gets or sets whether all records are displayed when the subform's master field is **Null**. Read/write **Boolean**. ## Syntax - _expression_. `FilterOnEmptyMaster` +_expression_. `FilterOnEmptyMaster` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## See also diff --git a/api/Access.SubForm.Form.md b/api/Access.SubForm.Form.md index e86c2bfe685..a7d856fac64 100644 --- a/api/Access.SubForm.Form.md +++ b/api/Access.SubForm.Form.md @@ -1,5 +1,5 @@ --- -title: SubForm.Form Property (Access) +title: SubForm.Form property (Access) keywords: vbaac10.chm11916 f1_keywords: - vbaac10.chm11916 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Form Property (Access) +# SubForm.Form property (Access) You can use the **Form** property to refer to a form or to refer to the form associated with a subformcontrol. Read-only **Form**. ## Syntax - _expression_. `Form` +_expression_. `Form` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.GridlineColor.md b/api/Access.SubForm.GridlineColor.md index 6776f4b1a79..b608204668b 100644 --- a/api/Access.SubForm.GridlineColor.md +++ b/api/Access.SubForm.GridlineColor.md @@ -1,5 +1,5 @@ --- -title: SubForm.GridlineColor Property (Access) +title: SubForm.GridlineColor property (Access) keywords: vbaac10.chm11978 f1_keywords: - vbaac10.chm11978 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.GridlineColor Property (Access) +# SubForm.GridlineColor property (Access) Gets or sets the color of the gridline for the specified subform. Read/write **Long**. ## Syntax - _expression_. `GridlineColor` +_expression_. `GridlineColor` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.GridlineShade.md b/api/Access.SubForm.GridlineShade.md index 3f8156721eb..50f3cc9b354 100644 --- a/api/Access.SubForm.GridlineShade.md +++ b/api/Access.SubForm.GridlineShade.md @@ -1,5 +1,5 @@ --- -title: SubForm.GridlineShade Property (Access) +title: SubForm.GridlineShade property (Access) keywords: vbaac10.chm14637 f1_keywords: - vbaac10.chm14637 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.GridlineShade Property (Access) +# SubForm.GridlineShade property (Access) Gets or sets the shade applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineShade` +_expression_. `GridlineShade` - _expression_ A variable that represents an [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents an [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.GridlineStyleBottom.md b/api/Access.SubForm.GridlineStyleBottom.md index 2c9add56326..e3318cd57f4 100644 --- a/api/Access.SubForm.GridlineStyleBottom.md +++ b/api/Access.SubForm.GridlineStyleBottom.md @@ -1,5 +1,5 @@ --- -title: SubForm.GridlineStyleBottom Property (Access) +title: SubForm.GridlineStyleBottom property (Access) keywords: vbaac10.chm11973 f1_keywords: - vbaac10.chm11973 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.GridlineStyleBottom Property (Access) +# SubForm.GridlineStyleBottom property (Access) Gets or sets the bottom gridline style of the specified subform. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleBottom` +_expression_. `GridlineStyleBottom` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.GridlineStyleLeft.md b/api/Access.SubForm.GridlineStyleLeft.md index 793569035a8..2d7c667b9ec 100644 --- a/api/Access.SubForm.GridlineStyleLeft.md +++ b/api/Access.SubForm.GridlineStyleLeft.md @@ -1,5 +1,5 @@ --- -title: SubForm.GridlineStyleLeft Property (Access) +title: SubForm.GridlineStyleLeft property (Access) keywords: vbaac10.chm11970 f1_keywords: - vbaac10.chm11970 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.GridlineStyleLeft Property (Access) +# SubForm.GridlineStyleLeft property (Access) Gets or sets the width of the bottom gridline for the specified subform. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleLeft` +_expression_. `GridlineStyleLeft` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.GridlineStyleRight.md b/api/Access.SubForm.GridlineStyleRight.md index a952f5266d6..dc662f05d5a 100644 --- a/api/Access.SubForm.GridlineStyleRight.md +++ b/api/Access.SubForm.GridlineStyleRight.md @@ -1,5 +1,5 @@ --- -title: SubForm.GridlineStyleRight Property (Access) +title: SubForm.GridlineStyleRight property (Access) keywords: vbaac10.chm11972 f1_keywords: - vbaac10.chm11972 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.GridlineStyleRight Property (Access) +# SubForm.GridlineStyleRight property (Access) Gets or sets the right gridline style of the specified subform. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleRight` +_expression_. `GridlineStyleRight` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.GridlineStyleTop.md b/api/Access.SubForm.GridlineStyleTop.md index 9eee6b3d470..634664aa0b6 100644 --- a/api/Access.SubForm.GridlineStyleTop.md +++ b/api/Access.SubForm.GridlineStyleTop.md @@ -1,5 +1,5 @@ --- -title: SubForm.GridlineStyleTop Property (Access) +title: SubForm.GridlineStyleTop property (Access) keywords: vbaac10.chm11971 f1_keywords: - vbaac10.chm11971 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.GridlineStyleTop Property (Access) +# SubForm.GridlineStyleTop property (Access) Gets or sets the top gridline style of the specified subform. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleTop` +_expression_. `GridlineStyleTop` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.GridlineThemeColorIndex.md b/api/Access.SubForm.GridlineThemeColorIndex.md index c0aba84843f..66268ca5849 100644 --- a/api/Access.SubForm.GridlineThemeColorIndex.md +++ b/api/Access.SubForm.GridlineThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: SubForm.GridlineThemeColorIndex Property (Access) +title: SubForm.GridlineThemeColorIndex property (Access) keywords: vbaac10.chm14635 f1_keywords: - vbaac10.chm14635 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.GridlineThemeColorIndex Property (Access) +# SubForm.GridlineThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **GridlineColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `GridlineThemeColorIndex` +_expression_. `GridlineThemeColorIndex` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.GridlineTint.md b/api/Access.SubForm.GridlineTint.md index 1375271e45d..40fdc4495ae 100644 --- a/api/Access.SubForm.GridlineTint.md +++ b/api/Access.SubForm.GridlineTint.md @@ -1,5 +1,5 @@ --- -title: SubForm.GridlineTint Property (Access) +title: SubForm.GridlineTint property (Access) keywords: vbaac10.chm14636 f1_keywords: - vbaac10.chm14636 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.GridlineTint Property (Access) +# SubForm.GridlineTint property (Access) Gets or sets the tint applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineTint` +_expression_. `GridlineTint` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.GridlineWidthBottom.md b/api/Access.SubForm.GridlineWidthBottom.md index b6eca139890..3efbccc605f 100644 --- a/api/Access.SubForm.GridlineWidthBottom.md +++ b/api/Access.SubForm.GridlineWidthBottom.md @@ -1,5 +1,5 @@ --- -title: SubForm.GridlineWidthBottom Property (Access) +title: SubForm.GridlineWidthBottom property (Access) keywords: vbaac10.chm11977 f1_keywords: - vbaac10.chm11977 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.GridlineWidthBottom Property (Access) +# SubForm.GridlineWidthBottom property (Access) Gets or sets the width of the bottom gridline for the specified subform. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthBottom` +_expression_. `GridlineWidthBottom` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.GridlineWidthLeft.md b/api/Access.SubForm.GridlineWidthLeft.md index cf0d81b911b..a306f90dac4 100644 --- a/api/Access.SubForm.GridlineWidthLeft.md +++ b/api/Access.SubForm.GridlineWidthLeft.md @@ -1,5 +1,5 @@ --- -title: SubForm.GridlineWidthLeft Property (Access) +title: SubForm.GridlineWidthLeft property (Access) keywords: vbaac10.chm11974 f1_keywords: - vbaac10.chm11974 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.GridlineWidthLeft Property (Access) +# SubForm.GridlineWidthLeft property (Access) Gets or sets the width of the left gridline for the specified subform. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthLeft` +_expression_. `GridlineWidthLeft` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.GridlineWidthRight.md b/api/Access.SubForm.GridlineWidthRight.md index 9f99f9b4035..825e008b84e 100644 --- a/api/Access.SubForm.GridlineWidthRight.md +++ b/api/Access.SubForm.GridlineWidthRight.md @@ -1,5 +1,5 @@ --- -title: SubForm.GridlineWidthRight Property (Access) +title: SubForm.GridlineWidthRight property (Access) keywords: vbaac10.chm11976 f1_keywords: - vbaac10.chm11976 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.GridlineWidthRight Property (Access) +# SubForm.GridlineWidthRight property (Access) Gets or sets the width of the right gridline for the specified subform. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthRight` +_expression_. `GridlineWidthRight` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.GridlineWidthTop.md b/api/Access.SubForm.GridlineWidthTop.md index 3c984371d78..48ed8b9516a 100644 --- a/api/Access.SubForm.GridlineWidthTop.md +++ b/api/Access.SubForm.GridlineWidthTop.md @@ -1,5 +1,5 @@ --- -title: SubForm.GridlineWidthTop Property (Access) +title: SubForm.GridlineWidthTop property (Access) keywords: vbaac10.chm11975 f1_keywords: - vbaac10.chm11975 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.GridlineWidthTop Property (Access) +# SubForm.GridlineWidthTop property (Access) Gets or sets the width of the top gridline for the specified subform. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthTop` +_expression_. `GridlineWidthTop` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.Height.md b/api/Access.SubForm.Height.md index 7706d2596a9..ad4e02009f5 100644 --- a/api/Access.SubForm.Height.md +++ b/api/Access.SubForm.Height.md @@ -1,5 +1,5 @@ --- -title: SubForm.Height Property (Access) +title: SubForm.Height property (Access) keywords: vbaac10.chm11941 f1_keywords: - vbaac10.chm11941 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Height Property (Access) +# SubForm.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.HorizontalAnchor.md b/api/Access.SubForm.HorizontalAnchor.md index 2a9ca85530b..706f6b0b519 100644 --- a/api/Access.SubForm.HorizontalAnchor.md +++ b/api/Access.SubForm.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: SubForm.HorizontalAnchor Property (Access) +title: SubForm.HorizontalAnchor property (Access) keywords: vbaac10.chm11979 f1_keywords: - vbaac10.chm11979 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.HorizontalAnchor Property (Access) +# SubForm.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the subform is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.InSelection.md b/api/Access.SubForm.InSelection.md index 31fff79e21a..820088a0773 100644 --- a/api/Access.SubForm.InSelection.md +++ b/api/Access.SubForm.InSelection.md @@ -1,5 +1,5 @@ --- -title: SubForm.InSelection Property (Access) +title: SubForm.InSelection property (Access) keywords: vbaac10.chm11957 f1_keywords: - vbaac10.chm11957 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.InSelection Property (Access) +# SubForm.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.IsVisible.md b/api/Access.SubForm.IsVisible.md index 7000a52d4fb..ab13b85e252 100644 --- a/api/Access.SubForm.IsVisible.md +++ b/api/Access.SubForm.IsVisible.md @@ -1,5 +1,5 @@ --- -title: SubForm.IsVisible Property (Access) +title: SubForm.IsVisible property (Access) keywords: vbaac10.chm11956 f1_keywords: - vbaac10.chm11956 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.IsVisible Property (Access) +# SubForm.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.LabelAlign.md b/api/Access.SubForm.LabelAlign.md index 1aea5669f20..3dc9382bd3b 100644 --- a/api/Access.SubForm.LabelAlign.md +++ b/api/Access.SubForm.LabelAlign.md @@ -1,5 +1,5 @@ --- -title: SubForm.LabelAlign Property (Access) +title: SubForm.LabelAlign property (Access) keywords: vbaac10.chm11952 f1_keywords: - vbaac10.chm11952 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.LabelAlign Property (Access) +# SubForm.LabelAlign property (Access) The property specifies the text alignment within attached labels on new controls. Read/write **Byte**. ## Syntax - _expression_. `LabelAlign` +_expression_. `LabelAlign` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.LabelX.md b/api/Access.SubForm.LabelX.md index b0675d67a42..1b71d3e1f36 100644 --- a/api/Access.SubForm.LabelX.md +++ b/api/Access.SubForm.LabelX.md @@ -1,5 +1,5 @@ --- -title: SubForm.LabelX Property (Access) +title: SubForm.LabelX property (Access) keywords: vbaac10.chm11950 f1_keywords: - vbaac10.chm11950 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# SubForm.LabelX Property (Access) +# SubForm.LabelX property (Access) The **LabelX** property (along with the **LabelY** property) specifies the placement of the label for a new control. Read/write **Integer**. @@ -19,9 +19,9 @@ The **LabelX** property (along with the **LabelY** property) specifies the plac ## Syntax - _expression_. `LabelX` +_expression_. `LabelX` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.LabelY.md b/api/Access.SubForm.LabelY.md index 2658ff0d3e5..1bcbf82d5aa 100644 --- a/api/Access.SubForm.LabelY.md +++ b/api/Access.SubForm.LabelY.md @@ -1,5 +1,5 @@ --- -title: SubForm.LabelY Property (Access) +title: SubForm.LabelY property (Access) keywords: vbaac10.chm11951 f1_keywords: - vbaac10.chm11951 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# SubForm.LabelY Property (Access) +# SubForm.LabelY property (Access) The **LabelY** property (along with the **LabelX** property) specifies the placement of the label for a new control. Read/write **Integer**. @@ -19,9 +19,9 @@ The **LabelY** property (along with the **LabelX** property) specifies the plac ## Syntax - _expression_. `LabelY` +_expression_. `LabelY` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.Layout.md b/api/Access.SubForm.Layout.md index f06fac28471..963afc6ef45 100644 --- a/api/Access.SubForm.Layout.md +++ b/api/Access.SubForm.Layout.md @@ -1,5 +1,5 @@ --- -title: SubForm.Layout Property (Access) +title: SubForm.Layout property (Access) keywords: vbaac10.chm11965 f1_keywords: - vbaac10.chm11965 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Layout Property (Access) +# SubForm.Layout property (Access) Returns the type of layout for the specified subform. Read-only **[AcLayoutType](Access.AcLayoutType.md)**. ## Syntax - _expression_. `Layout` +_expression_. `Layout` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## See also diff --git a/api/Access.SubForm.LayoutID.md b/api/Access.SubForm.LayoutID.md index 2ed2b6878d6..bb819b91a20 100644 --- a/api/Access.SubForm.LayoutID.md +++ b/api/Access.SubForm.LayoutID.md @@ -1,5 +1,5 @@ --- -title: SubForm.LayoutID Property (Access) +title: SubForm.LayoutID property (Access) keywords: vbaac10.chm11982 f1_keywords: - vbaac10.chm11982 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.LayoutID Property (Access) +# SubForm.LayoutID property (Access) Returns the unique identifier for the layout that contains the specified subform. Read-only **Long**. ## Syntax - _expression_. `LayoutID` +_expression_. `LayoutID` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.Left.md b/api/Access.SubForm.Left.md index da0e9265670..5a1a36ec019 100644 --- a/api/Access.SubForm.Left.md +++ b/api/Access.SubForm.Left.md @@ -1,5 +1,5 @@ --- -title: SubForm.Left Property (Access) +title: SubForm.Left property (Access) keywords: vbaac10.chm11938 f1_keywords: - vbaac10.chm11938 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Left Property (Access) +# SubForm.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.LeftPadding.md b/api/Access.SubForm.LeftPadding.md index 01da9affabd..82be769578a 100644 --- a/api/Access.SubForm.LeftPadding.md +++ b/api/Access.SubForm.LeftPadding.md @@ -1,5 +1,5 @@ --- -title: SubForm.LeftPadding Property (Access) +title: SubForm.LeftPadding property (Access) keywords: vbaac10.chm11966 f1_keywords: - vbaac10.chm11966 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.LeftPadding Property (Access) +# SubForm.LeftPadding property (Access) Gets or sets the amount of space (in inches) between the subform and its left gridline. Read/write **Integer**. ## Syntax - _expression_. `LeftPadding` +_expression_. `LeftPadding` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## See also diff --git a/api/Access.SubForm.LinkChildFields.md b/api/Access.SubForm.LinkChildFields.md index 3f120d2ed20..f88f98f9f27 100644 --- a/api/Access.SubForm.LinkChildFields.md +++ b/api/Access.SubForm.LinkChildFields.md @@ -1,5 +1,5 @@ --- -title: SubForm.LinkChildFields Property (Access) +title: SubForm.LinkChildFields property (Access) keywords: vbaac10.chm11927 f1_keywords: - vbaac10.chm11927 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.LinkChildFields Property (Access) +# SubForm.LinkChildFields property (Access) You can use the **LinkChildFields** property (along with the **LinkMasterFields** property) together to specify how Microsoft Access links records in a form or report to records in a subform, subreport, or embedded object, such as a chart. If these properties are set, Microsoft Access automatically updates the related record in the subform when you change to a new record in a main form. Read/write **String**. ## Syntax - _expression_. `LinkChildFields` +_expression_. `LinkChildFields` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.LinkMasterFields.md b/api/Access.SubForm.LinkMasterFields.md index bc0c4ef7863..4345098833d 100644 --- a/api/Access.SubForm.LinkMasterFields.md +++ b/api/Access.SubForm.LinkMasterFields.md @@ -1,5 +1,5 @@ --- -title: SubForm.LinkMasterFields Property (Access) +title: SubForm.LinkMasterFields property (Access) keywords: vbaac10.chm11928 f1_keywords: - vbaac10.chm11928 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.LinkMasterFields Property (Access) +# SubForm.LinkMasterFields property (Access) You can use the **LinkMasterFields** property (along with the **LinkChildFields** property) together to specify how Microsoft Access links records in a form or report to records in a subform, subreport, or embedded object, such as a chart. If these properties are set, Microsoft Access automatically updates the related record in the subform when you change to a new record in a main form. Read/write **String**. ## Syntax - _expression_. `LinkMasterFields` +_expression_. `LinkMasterFields` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.Locked.md b/api/Access.SubForm.Locked.md index 70e7a101c1a..dffe7020466 100644 --- a/api/Access.SubForm.Locked.md +++ b/api/Access.SubForm.Locked.md @@ -1,5 +1,5 @@ --- -title: SubForm.Locked Property (Access) +title: SubForm.Locked property (Access) keywords: vbaac10.chm11933 f1_keywords: - vbaac10.chm11933 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Locked Property (Access) +# SubForm.Locked property (Access) The **Locked** property specifies whether you can edit data in a control in Form view. Read/write **Boolean**. ## Syntax - _expression_. `Locked` +_expression_. `Locked` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.Move.md b/api/Access.SubForm.Move.md index 54db7926715..572709e5f62 100644 --- a/api/Access.SubForm.Move.md +++ b/api/Access.SubForm.Move.md @@ -1,5 +1,5 @@ --- -title: SubForm.Move Method (Access) +title: SubForm.Move method (Access) keywords: vbaac10.chm11961 f1_keywords: - vbaac10.chm11961 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# SubForm.Move Method (Access) +# SubForm.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.SubForm.Name.md b/api/Access.SubForm.Name.md index d2be620e937..fe47781c6d0 100644 --- a/api/Access.SubForm.Name.md +++ b/api/Access.SubForm.Name.md @@ -1,5 +1,5 @@ --- -title: SubForm.Name Property (Access) +title: SubForm.Name property (Access) keywords: vbaac10.chm11960 f1_keywords: - vbaac10.chm11960 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Name Property (Access) +# SubForm.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.OldBorderStyle.md b/api/Access.SubForm.OldBorderStyle.md index b7edf4f74eb..aa2546d65bd 100644 --- a/api/Access.SubForm.OldBorderStyle.md +++ b/api/Access.SubForm.OldBorderStyle.md @@ -1,5 +1,5 @@ --- -title: SubForm.OldBorderStyle Property (Access) +title: SubForm.OldBorderStyle property (Access) keywords: vbaac10.chm11944 f1_keywords: - vbaac10.chm11944 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.OldBorderStyle Property (Access) +# SubForm.OldBorderStyle property (Access) You can use this property to set or returns the unedited value of the **BorderStyle** property for a form or control. This property is useful if you need to revert to an unedited or preferred border style. Read/write **Byte**. ## Syntax - _expression_. `OldBorderStyle` +_expression_. `OldBorderStyle` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.OnEnter.md b/api/Access.SubForm.OnEnter.md index 55c2853f9ca..393bc68c7b5 100644 --- a/api/Access.SubForm.OnEnter.md +++ b/api/Access.SubForm.OnEnter.md @@ -1,5 +1,5 @@ --- -title: SubForm.OnEnter Property (Access) +title: SubForm.OnEnter property (Access) keywords: vbaac10.chm11958 f1_keywords: - vbaac10.chm11958 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.OnEnter Property (Access) +# SubForm.OnEnter property (Access) Sets or returns the value of the **On Enter** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnEnter` +_expression_. `OnEnter` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Enter** event occurs before a control actually receives the focus from a The **OnEnter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Enter** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.SubForm.OnExit.md b/api/Access.SubForm.OnExit.md index e8cc1751ffd..cc7f99955cf 100644 --- a/api/Access.SubForm.OnExit.md +++ b/api/Access.SubForm.OnExit.md @@ -1,5 +1,5 @@ --- -title: SubForm.OnExit Property (Access) +title: SubForm.OnExit property (Access) keywords: vbaac10.chm11959 f1_keywords: - vbaac10.chm11959 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.OnExit Property (Access) +# SubForm.OnExit property (Access) Sets or returns the value of the **On Exit** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnExit` +_expression_. `OnExit` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Exit** event occurs just before a control loses the focus to another cont The **OnExit** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Exit** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.SubForm.Parent.md b/api/Access.SubForm.Parent.md index 44920df6abe..7ae8f199970 100644 --- a/api/Access.SubForm.Parent.md +++ b/api/Access.SubForm.Parent.md @@ -1,5 +1,5 @@ --- -title: SubForm.Parent Property (Access) +title: SubForm.Parent property (Access) keywords: vbaac10.chm11915 f1_keywords: - vbaac10.chm11915 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Parent Property (Access) +# SubForm.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.Properties.md b/api/Access.SubForm.Properties.md index 0c6d6a139d1..b8edc8a2c01 100644 --- a/api/Access.SubForm.Properties.md +++ b/api/Access.SubForm.Properties.md @@ -1,5 +1,5 @@ --- -title: SubForm.Properties Property (Access) +title: SubForm.Properties property (Access) keywords: vbaac10.chm11918 f1_keywords: - vbaac10.chm11918 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Properties Property (Access) +# SubForm.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.Report.md b/api/Access.SubForm.Report.md index e75bbcd6873..7b78dd666fc 100644 --- a/api/Access.SubForm.Report.md +++ b/api/Access.SubForm.Report.md @@ -1,5 +1,5 @@ --- -title: SubForm.Report Property (Access) +title: SubForm.Report property (Access) keywords: vbaac10.chm11917 f1_keywords: - vbaac10.chm11917 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Report Property (Access) +# SubForm.Report property (Access) You can use the **Report** property to refer to a report or to refer to the report associated with a subreport control. Read-only **Report**. ## Syntax - _expression_. `Report` +_expression_. `Report` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.Requery.md b/api/Access.SubForm.Requery.md index c4893c11bae..4d0e8e8c376 100644 --- a/api/Access.SubForm.Requery.md +++ b/api/Access.SubForm.Requery.md @@ -1,5 +1,5 @@ --- -title: SubForm.Requery Method (Access) +title: SubForm.Requery method (Access) keywords: vbaac10.chm11921 f1_keywords: - vbaac10.chm11921 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Requery Method (Access) +# SubForm.Requery method (Access) The **Requery** method updates the data underlying a specified subform by requerying the source of data for the subform. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.RightPadding.md b/api/Access.SubForm.RightPadding.md index 652fae2c277..85b03cbb292 100644 --- a/api/Access.SubForm.RightPadding.md +++ b/api/Access.SubForm.RightPadding.md @@ -1,5 +1,5 @@ --- -title: SubForm.RightPadding Property (Access) +title: SubForm.RightPadding property (Access) keywords: vbaac10.chm11968 f1_keywords: - vbaac10.chm11968 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.RightPadding Property (Access) +# SubForm.RightPadding property (Access) Gets or sets the amount of space (in inches) between the subform and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## See also diff --git a/api/Access.SubForm.Section.md b/api/Access.SubForm.Section.md index 0be85d347ee..cdd3d893f9c 100644 --- a/api/Access.SubForm.Section.md +++ b/api/Access.SubForm.Section.md @@ -1,5 +1,5 @@ --- -title: SubForm.Section Property (Access) +title: SubForm.Section property (Access) keywords: vbaac10.chm11953 f1_keywords: - vbaac10.chm11953 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Section Property (Access) +# SubForm.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.SetFocus.md b/api/Access.SubForm.SetFocus.md index cab3b85aef9..521fdffa350 100644 --- a/api/Access.SubForm.SetFocus.md +++ b/api/Access.SubForm.SetFocus.md @@ -1,5 +1,5 @@ --- -title: SubForm.SetFocus Method (Access) +title: SubForm.SetFocus method (Access) keywords: vbaac10.chm11920 f1_keywords: - vbaac10.chm11920 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# SubForm.SetFocus Method (Access) +# SubForm.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.SubForm.SizeToFit.md b/api/Access.SubForm.SizeToFit.md index 49bcfe125d7..f2e5d679891 100644 --- a/api/Access.SubForm.SizeToFit.md +++ b/api/Access.SubForm.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: SubForm.SizeToFit Method (Access) +title: SubForm.SizeToFit method (Access) keywords: vbaac10.chm11919 f1_keywords: - vbaac10.chm11919 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.SizeToFit Method (Access) +# SubForm.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.SourceObject.md b/api/Access.SubForm.SourceObject.md index 7a5d070f6d3..a275c44ce96 100644 --- a/api/Access.SubForm.SourceObject.md +++ b/api/Access.SubForm.SourceObject.md @@ -1,5 +1,5 @@ --- -title: SubForm.SourceObject Property (Access) +title: SubForm.SourceObject property (Access) keywords: vbaac10.chm11926 f1_keywords: - vbaac10.chm11926 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.SourceObject Property (Access) +# SubForm.SourceObject property (Access) You can use the **SourceObject** property to identify the form or report that is the source of the subform or subreport on a form or report. Read/write **String**. ## Syntax - _expression_. `SourceObject` +_expression_. `SourceObject` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.SpecialEffect.md b/api/Access.SubForm.SpecialEffect.md index a5acfe2adce..35a69d431fd 100644 --- a/api/Access.SubForm.SpecialEffect.md +++ b/api/Access.SubForm.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: SubForm.SpecialEffect Property (Access) +title: SubForm.SpecialEffect property (Access) keywords: vbaac10.chm11942 f1_keywords: - vbaac10.chm11942 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.SpecialEffect Property (Access) +# SubForm.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.StatusBarText.md b/api/Access.SubForm.StatusBarText.md index 3a4f3ede27b..7b665253aa0 100644 --- a/api/Access.SubForm.StatusBarText.md +++ b/api/Access.SubForm.StatusBarText.md @@ -1,5 +1,5 @@ --- -title: SubForm.StatusBarText Property (Access) +title: SubForm.StatusBarText property (Access) keywords: vbaac10.chm11929 f1_keywords: - vbaac10.chm11929 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.StatusBarText Property (Access) +# SubForm.StatusBarText property (Access) You can use the **StatusBarText** property to specify the text that is displayed in the status bar when a control is selected. Read/write **String**. ## Syntax - _expression_. `StatusBarText` +_expression_. `StatusBarText` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.TabIndex.md b/api/Access.SubForm.TabIndex.md index 82e03eccaa0..b103e1c314f 100644 --- a/api/Access.SubForm.TabIndex.md +++ b/api/Access.SubForm.TabIndex.md @@ -1,5 +1,5 @@ --- -title: SubForm.TabIndex Property (Access) +title: SubForm.TabIndex property (Access) keywords: vbaac10.chm11935 f1_keywords: - vbaac10.chm11935 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.TabIndex Property (Access) +# SubForm.TabIndex property (Access) You can use the **TabIndex** property to specify a control's place in the tab order on a form or report. Read/write **Integer**. ## Syntax - _expression_. `TabIndex` +_expression_. `TabIndex` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.TabStop.md b/api/Access.SubForm.TabStop.md index 86875ab9fdf..d0fc52b74e8 100644 --- a/api/Access.SubForm.TabStop.md +++ b/api/Access.SubForm.TabStop.md @@ -1,5 +1,5 @@ --- -title: SubForm.TabStop Property (Access) +title: SubForm.TabStop property (Access) keywords: vbaac10.chm11934 f1_keywords: - vbaac10.chm11934 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.TabStop Property (Access) +# SubForm.TabStop property (Access) You can use the **TabStop** property to specify whether you can use the TAB key to move the focus to a control. Read/write **Boolean**. ## Syntax - _expression_. `TabStop` +_expression_. `TabStop` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.Tag.md b/api/Access.SubForm.Tag.md index ec8ad85ff68..b71625c2d0e 100644 --- a/api/Access.SubForm.Tag.md +++ b/api/Access.SubForm.Tag.md @@ -1,5 +1,5 @@ --- -title: SubForm.Tag Property (Access) +title: SubForm.Tag property (Access) keywords: vbaac10.chm11955 f1_keywords: - vbaac10.chm11955 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Tag Property (Access) +# SubForm.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.Top.md b/api/Access.SubForm.Top.md index e7f673f4f33..3cc543042d5 100644 --- a/api/Access.SubForm.Top.md +++ b/api/Access.SubForm.Top.md @@ -1,5 +1,5 @@ --- -title: SubForm.Top Property (Access) +title: SubForm.Top property (Access) keywords: vbaac10.chm11939 f1_keywords: - vbaac10.chm11939 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Top Property (Access) +# SubForm.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.TopPadding.md b/api/Access.SubForm.TopPadding.md index 2d6bd4d09d5..469f0604acd 100644 --- a/api/Access.SubForm.TopPadding.md +++ b/api/Access.SubForm.TopPadding.md @@ -1,5 +1,5 @@ --- -title: SubForm.TopPadding Property (Access) +title: SubForm.TopPadding property (Access) keywords: vbaac10.chm11967 f1_keywords: - vbaac10.chm11967 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.TopPadding Property (Access) +# SubForm.TopPadding property (Access) Gets or sets the amount of space (in inches) between the subform and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## See also diff --git a/api/Access.SubForm.VerticalAnchor.md b/api/Access.SubForm.VerticalAnchor.md index 79c423e828d..9247d6ec7d7 100644 --- a/api/Access.SubForm.VerticalAnchor.md +++ b/api/Access.SubForm.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: SubForm.VerticalAnchor Property (Access) +title: SubForm.VerticalAnchor property (Access) keywords: vbaac10.chm11980 f1_keywords: - vbaac10.chm11980 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.VerticalAnchor Property (Access) +# SubForm.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified subform is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.Visible.md b/api/Access.SubForm.Visible.md index f2dd3525604..42ee9d2e29d 100644 --- a/api/Access.SubForm.Visible.md +++ b/api/Access.SubForm.Visible.md @@ -1,5 +1,5 @@ --- -title: SubForm.Visible Property (Access) +title: SubForm.Visible property (Access) keywords: vbaac10.chm11930 f1_keywords: - vbaac10.chm11930 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Visible Property (Access) +# SubForm.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.Width.md b/api/Access.SubForm.Width.md index 3ce16e1b847..4a4fda8853f 100644 --- a/api/Access.SubForm.Width.md +++ b/api/Access.SubForm.Width.md @@ -1,5 +1,5 @@ --- -title: SubForm.Width Property (Access) +title: SubForm.Width property (Access) keywords: vbaac10.chm11940 f1_keywords: - vbaac10.chm11940 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# SubForm.Width Property (Access) +# SubForm.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [SubForm](Access.SubForm.md) object. +_expression_ A variable that represents a [SubForm](Access.SubForm.md) object. ## Remarks diff --git a/api/Access.SubForm.md b/api/Access.SubForm.md index 8127ee2395d..155908bc14b 100644 --- a/api/Access.SubForm.md +++ b/api/Access.SubForm.md @@ -1,5 +1,5 @@ --- -title: SubForm Object (Access) +title: SubForm object (Access) keywords: vbaac10.chm11985 f1_keywords: - vbaac10.chm11985 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# SubForm Object (Access) +# SubForm object (Access) This object corresponds to a subform control. The subform control embeds a form in a form. diff --git a/api/Access.TabControl.Application.md b/api/Access.TabControl.Application.md index 3edc6b9b519..7e1160745d0 100644 --- a/api/Access.TabControl.Application.md +++ b/api/Access.TabControl.Application.md @@ -1,5 +1,5 @@ --- -title: TabControl.Application Property (Access) +title: TabControl.Application property (Access) keywords: vbaac10.chm12065 f1_keywords: - vbaac10.chm12065 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Application Property (Access) +# TabControl.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.BackColor.md b/api/Access.TabControl.BackColor.md index ff42388c1c1..ee600a01de1 100644 --- a/api/Access.TabControl.BackColor.md +++ b/api/Access.TabControl.BackColor.md @@ -1,5 +1,5 @@ --- -title: TabControl.BackColor Property (Access) +title: TabControl.BackColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.BackColor Property (Access) +# TabControl.BackColor property (Access) Gets or sets the interior color of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackColor` +_expression_. `BackColor` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.BackShade.md b/api/Access.TabControl.BackShade.md index 2b127cc0ade..bbfd913373d 100644 --- a/api/Access.TabControl.BackShade.md +++ b/api/Access.TabControl.BackShade.md @@ -1,5 +1,5 @@ --- -title: TabControl.BackShade Property (Access) +title: TabControl.BackShade property (Access) keywords: vbaac10.chm14633 f1_keywords: - vbaac10.chm14633 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.BackShade Property (Access) +# TabControl.BackShade property (Access) Gets or sets the shade applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackShade` +_expression_. `BackShade` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.BackStyle.md b/api/Access.TabControl.BackStyle.md index ac4149ec14d..cd68cf4c471 100644 --- a/api/Access.TabControl.BackStyle.md +++ b/api/Access.TabControl.BackStyle.md @@ -1,5 +1,5 @@ --- -title: TabControl.BackStyle Property (Access) +title: TabControl.BackStyle property (Access) keywords: vbaac10.chm12085 f1_keywords: - vbaac10.chm12085 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.BackStyle Property (Access) +# TabControl.BackStyle property (Access) You can use the **BackStyle** property to specify whether a control will be transparent. Read/write **Byte**. ## Syntax - _expression_. `BackStyle` +_expression_. `BackStyle` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.BackThemeColorIndex.md b/api/Access.TabControl.BackThemeColorIndex.md index c9e30e71854..985ee8dcd64 100644 --- a/api/Access.TabControl.BackThemeColorIndex.md +++ b/api/Access.TabControl.BackThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: TabControl.BackThemeColorIndex Property (Access) +title: TabControl.BackThemeColorIndex property (Access) keywords: vbaac10.chm14631 f1_keywords: - vbaac10.chm14631 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.BackThemeColorIndex Property (Access) +# TabControl.BackThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BackColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackThemeColorIndex` +_expression_. `BackThemeColorIndex` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.BackTint.md b/api/Access.TabControl.BackTint.md index 3dbfdcab00b..5bc74435036 100644 --- a/api/Access.TabControl.BackTint.md +++ b/api/Access.TabControl.BackTint.md @@ -1,5 +1,5 @@ --- -title: TabControl.BackTint Property (Access) +title: TabControl.BackTint property (Access) keywords: vbaac10.chm14632 f1_keywords: - vbaac10.chm14632 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.BackTint Property (Access) +# TabControl.BackTint property (Access) Gets or sets the tint that is applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackTint` +_expression_. `BackTint` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.BorderColor.md b/api/Access.TabControl.BorderColor.md index f40664b26b1..1845bfefc6d 100644 --- a/api/Access.TabControl.BorderColor.md +++ b/api/Access.TabControl.BorderColor.md @@ -1,5 +1,5 @@ --- -title: TabControl.BorderColor Property (Access) +title: TabControl.BorderColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.BorderColor Property (Access) +# TabControl.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.BorderShade.md b/api/Access.TabControl.BorderShade.md index 1a2d59c679a..3d1009ee03a 100644 --- a/api/Access.TabControl.BorderShade.md +++ b/api/Access.TabControl.BorderShade.md @@ -1,5 +1,5 @@ --- -title: TabControl.BorderShade Property (Access) +title: TabControl.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.BorderShade Property (Access) +# TabControl.BorderShade property (Access) Gets or sets the shade that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.BorderStyle.md b/api/Access.TabControl.BorderStyle.md index 2523519cb56..08d9ce6911d 100644 --- a/api/Access.TabControl.BorderStyle.md +++ b/api/Access.TabControl.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: TabControl.BorderStyle Property (Access) +title: TabControl.BorderStyle property (Access) keywords: vbaac10.chm10204 f1_keywords: - vbaac10.chm10204 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.BorderStyle Property (Access) +# TabControl.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.BorderThemeColorIndex.md b/api/Access.TabControl.BorderThemeColorIndex.md index 2de3a6d0fe1..1fcae03b2c4 100644 --- a/api/Access.TabControl.BorderThemeColorIndex.md +++ b/api/Access.TabControl.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: TabControl.BorderThemeColorIndex Property (Access) +title: TabControl.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.BorderThemeColorIndex Property (Access) +# TabControl.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.BorderTint.md b/api/Access.TabControl.BorderTint.md index 89a302f717c..02e53d2edf5 100644 --- a/api/Access.TabControl.BorderTint.md +++ b/api/Access.TabControl.BorderTint.md @@ -1,5 +1,5 @@ --- -title: TabControl.BorderTint Property (Access) +title: TabControl.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.BorderTint Property (Access) +# TabControl.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.BottomPadding.md b/api/Access.TabControl.BottomPadding.md index 03e0835ff3d..bd92d2f8590 100644 --- a/api/Access.TabControl.BottomPadding.md +++ b/api/Access.TabControl.BottomPadding.md @@ -1,5 +1,5 @@ --- -title: TabControl.BottomPadding Property (Access) +title: TabControl.BottomPadding property (Access) keywords: vbaac10.chm14539 f1_keywords: - vbaac10.chm14539 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.BottomPadding Property (Access) +# TabControl.BottomPadding property (Access) Gets or sets the amount of space (in inches) between the list box and its bottom gridline. Read/write **Integer**. ## Syntax - _expression_. `BottomPadding` +_expression_. `BottomPadding` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## See also diff --git a/api/Access.TabControl.Change.md b/api/Access.TabControl.Change.md index b2f8e2bd324..7499c10adac 100644 --- a/api/Access.TabControl.Change.md +++ b/api/Access.TabControl.Change.md @@ -1,5 +1,5 @@ --- -title: TabControl.Change Event (Access) +title: TabControl.Change event (Access) keywords: vbaac10.chm14278 f1_keywords: - vbaac10.chm14278 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Change Event (Access) +# TabControl.Change event (Access) The **Change** event occurs when when you move from one page to another page. ## Syntax - _expression_. `Change` +_expression_. `Change` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.Click.md b/api/Access.TabControl.Click.md index 7052e6134ed..61c2feef1a5 100644 --- a/api/Access.TabControl.Click.md +++ b/api/Access.TabControl.Click.md @@ -1,5 +1,5 @@ --- -title: TabControl.Click Event (Access) +title: TabControl.Click event (Access) keywords: vbaac10.chm14270 f1_keywords: - vbaac10.chm14270 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Click Event (Access) +# TabControl.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.ControlType.md b/api/Access.TabControl.ControlType.md index 7ac950e4823..581c6a517fd 100644 --- a/api/Access.TabControl.ControlType.md +++ b/api/Access.TabControl.ControlType.md @@ -1,5 +1,5 @@ --- -title: TabControl.ControlType Property (Access) +title: TabControl.ControlType property (Access) keywords: vbaac10.chm12074 f1_keywords: - vbaac10.chm12074 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.ControlType Property (Access) +# TabControl.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.DblClick.md b/api/Access.TabControl.DblClick.md index 16f7b44a390..83fae167768 100644 --- a/api/Access.TabControl.DblClick.md +++ b/api/Access.TabControl.DblClick.md @@ -1,5 +1,5 @@ --- -title: TabControl.DblClick Event (Access) +title: TabControl.DblClick event (Access) keywords: vbaac10.chm14271 f1_keywords: - vbaac10.chm14271 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TabControl.DblClick Event (Access) +# TabControl.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_` ) +_expression_. `DblClick`( ` _Cancel_` ) - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **DblClick** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **DblClick** event.| diff --git a/api/Access.TabControl.DisplayWhen.md b/api/Access.TabControl.DisplayWhen.md index 40cd6e4135b..98a65bee11a 100644 --- a/api/Access.TabControl.DisplayWhen.md +++ b/api/Access.TabControl.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: TabControl.DisplayWhen Property (Access) +title: TabControl.DisplayWhen property (Access) keywords: vbaac10.chm12077 f1_keywords: - vbaac10.chm12077 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.DisplayWhen Property (Access) +# TabControl.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.Enabled.md b/api/Access.TabControl.Enabled.md index ec1b6ed79b1..0c40bb9f737 100644 --- a/api/Access.TabControl.Enabled.md +++ b/api/Access.TabControl.Enabled.md @@ -1,5 +1,5 @@ --- -title: TabControl.Enabled Property (Access) +title: TabControl.Enabled property (Access) keywords: vbaac10.chm12078 f1_keywords: - vbaac10.chm12078 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Enabled Property (Access) +# TabControl.Enabled property (Access) You can use the **Enabled** property to set or return the status of the conditional format in the **[FormatCondition](Access.FormatCondition.md)** object. Read/write **Boolean**. ## Syntax - _expression_. `Enabled` +_expression_. `Enabled` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.EventProcPrefix.md b/api/Access.TabControl.EventProcPrefix.md index edc27189621..b4786ede44b 100644 --- a/api/Access.TabControl.EventProcPrefix.md +++ b/api/Access.TabControl.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: TabControl.EventProcPrefix Property (Access) +title: TabControl.EventProcPrefix property (Access) keywords: vbaac10.chm12072 f1_keywords: - vbaac10.chm12072 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.EventProcPrefix Property (Access) +# TabControl.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.FontBold.md b/api/Access.TabControl.FontBold.md index 233f18fc88b..0101d006717 100644 --- a/api/Access.TabControl.FontBold.md +++ b/api/Access.TabControl.FontBold.md @@ -1,5 +1,5 @@ --- -title: TabControl.FontBold Property (Access) +title: TabControl.FontBold property (Access) keywords: vbaac10.chm12096 f1_keywords: - vbaac10.chm12096 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TabControl.FontBold Property (Access) +# TabControl.FontBold property (Access) You can use the **FontBold** property to specify whether a font appears in a bold style in the following situations: @@ -26,9 +26,9 @@ You can use the **FontBold** property to specify whether a font appears in a bo ## Syntax - _expression_. `FontBold` +_expression_. `FontBold` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.FontItalic.md b/api/Access.TabControl.FontItalic.md index 065bde0a26b..2400685fae1 100644 --- a/api/Access.TabControl.FontItalic.md +++ b/api/Access.TabControl.FontItalic.md @@ -1,5 +1,5 @@ --- -title: TabControl.FontItalic Property (Access) +title: TabControl.FontItalic property (Access) keywords: vbaac10.chm12093 f1_keywords: - vbaac10.chm12093 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TabControl.FontItalic Property (Access) +# TabControl.FontItalic property (Access) You can use the **FontItalic** property to specify whether text is italic in the following situations: @@ -26,9 +26,9 @@ You can use the **FontItalic** property to specify whether text is italic in th ## Syntax - _expression_. `FontItalic` +_expression_. `FontItalic` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.FontName.md b/api/Access.TabControl.FontName.md index f0933aca982..fcaeff1faf5 100644 --- a/api/Access.TabControl.FontName.md +++ b/api/Access.TabControl.FontName.md @@ -1,5 +1,5 @@ --- -title: TabControl.FontName Property (Access) +title: TabControl.FontName property (Access) keywords: vbaac10.chm12090 f1_keywords: - vbaac10.chm12090 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TabControl.FontName Property (Access) +# TabControl.FontName property (Access) You can use the **FontName** property to specify the font for text in the following situations: @@ -26,9 +26,9 @@ Read/write **String**. ## Syntax - _expression_. `FontName` +_expression_. `FontName` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.FontSize.md b/api/Access.TabControl.FontSize.md index 033852de6f9..75562d2a644 100644 --- a/api/Access.TabControl.FontSize.md +++ b/api/Access.TabControl.FontSize.md @@ -1,5 +1,5 @@ --- -title: TabControl.FontSize Property (Access) +title: TabControl.FontSize property (Access) keywords: vbaac10.chm12091 f1_keywords: - vbaac10.chm12091 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TabControl.FontSize Property (Access) +# TabControl.FontSize property (Access) You can use the **FontSize** property to specify the point size for text in the following situations: @@ -26,9 +26,9 @@ Read/write **Integer**. ## Syntax - _expression_. `FontSize` +_expression_. `FontSize` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.FontUnderline.md b/api/Access.TabControl.FontUnderline.md index d465b4fbcfd..98c6a72a641 100644 --- a/api/Access.TabControl.FontUnderline.md +++ b/api/Access.TabControl.FontUnderline.md @@ -1,5 +1,5 @@ --- -title: TabControl.FontUnderline Property (Access) +title: TabControl.FontUnderline property (Access) keywords: vbaac10.chm12094 f1_keywords: - vbaac10.chm12094 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TabControl.FontUnderline Property (Access) +# TabControl.FontUnderline property (Access) You can use the **FontUnderline** property to specify whether text is underlined in the following situations: @@ -26,9 +26,9 @@ You can use the **FontUnderline** property to specify whether text is underline ## Syntax - _expression_. `FontUnderline` +_expression_. `FontUnderline` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.FontWeight.md b/api/Access.TabControl.FontWeight.md index 1b4116e6ff3..f2b27b4a4e2 100644 --- a/api/Access.TabControl.FontWeight.md +++ b/api/Access.TabControl.FontWeight.md @@ -1,5 +1,5 @@ --- -title: TabControl.FontWeight Property (Access) +title: TabControl.FontWeight property (Access) keywords: vbaac10.chm12092 f1_keywords: - vbaac10.chm12092 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.FontWeight Property (Access) +# TabControl.FontWeight property (Access) You can use the **DatasheetFontWeight** property to specify the line width of the font used to display and print characters for field names and data in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `FontWeight` +_expression_. `FontWeight` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.ForeColor.md b/api/Access.TabControl.ForeColor.md index ea356a9718d..079f06e3932 100644 --- a/api/Access.TabControl.ForeColor.md +++ b/api/Access.TabControl.ForeColor.md @@ -1,5 +1,5 @@ --- -title: TabControl.ForeColor Property (Access) +title: TabControl.ForeColor property (Access) keywords: vbaac10.chm11083 f1_keywords: - vbaac10.chm11083 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.ForeColor Property (Access) +# TabControl.ForeColor property (Access) You can use the **ForeColor** property to specify the color for text in a control. Read/write **Long**. ## Syntax - _expression_. `ForeColor` +_expression_. `ForeColor` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.ForeShade.md b/api/Access.TabControl.ForeShade.md index c61c47ab529..9d9ea5d1aff 100644 --- a/api/Access.TabControl.ForeShade.md +++ b/api/Access.TabControl.ForeShade.md @@ -1,5 +1,5 @@ --- -title: TabControl.ForeShade Property (Access) +title: TabControl.ForeShade property (Access) keywords: vbaac10.chm14606 f1_keywords: - vbaac10.chm14606 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.ForeShade Property (Access) +# TabControl.ForeShade property (Access) Gets or sets the shade that is applied to the theme color in the **ForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `ForeShade` +_expression_. `ForeShade` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.ForeThemeColorIndex.md b/api/Access.TabControl.ForeThemeColorIndex.md index b75514635ed..87695369df4 100644 --- a/api/Access.TabControl.ForeThemeColorIndex.md +++ b/api/Access.TabControl.ForeThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: TabControl.ForeThemeColorIndex Property (Access) +title: TabControl.ForeThemeColorIndex property (Access) keywords: vbaac10.chm14604 f1_keywords: - vbaac10.chm14604 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.ForeThemeColorIndex Property (Access) +# TabControl.ForeThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **ForeColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `ForeThemeColorIndex` +_expression_. `ForeThemeColorIndex` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.ForeTint.md b/api/Access.TabControl.ForeTint.md index 9da747ef38a..e00e6b51af4 100644 --- a/api/Access.TabControl.ForeTint.md +++ b/api/Access.TabControl.ForeTint.md @@ -1,5 +1,5 @@ --- -title: TabControl.ForeTint Property (Access) +title: TabControl.ForeTint property (Access) keywords: vbaac10.chm14605 f1_keywords: - vbaac10.chm14605 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.ForeTint Property (Access) +# TabControl.ForeTint property (Access) Gets or sets the tint that is applied to the theme color in the **ForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `ForeTint` +_expression_. `ForeTint` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.Gradient.md b/api/Access.TabControl.Gradient.md index f0320ff0213..a080a3166d4 100644 --- a/api/Access.TabControl.Gradient.md +++ b/api/Access.TabControl.Gradient.md @@ -1,5 +1,5 @@ --- -title: TabControl.Gradient Property (Access) +title: TabControl.Gradient property (Access) keywords: vbaac10.chm14662 f1_keywords: - vbaac10.chm14662 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Gradient Property (Access) +# TabControl.Gradient property (Access) Gets or sets the gradient fill applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `Gradient` +_expression_. `Gradient` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.GridlineColor.md b/api/Access.TabControl.GridlineColor.md index e66b5117d53..aef9b9c16f8 100644 --- a/api/Access.TabControl.GridlineColor.md +++ b/api/Access.TabControl.GridlineColor.md @@ -1,5 +1,5 @@ --- -title: TabControl.GridlineColor Property (Access) +title: TabControl.GridlineColor property (Access) keywords: vbaac10.chm14549 f1_keywords: - vbaac10.chm14549 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.GridlineColor Property (Access) +# TabControl.GridlineColor property (Access) Gets or sets the color of the gridline for the specified list box. Read/write **Long**. ## Syntax - _expression_. `GridlineColor` +_expression_. `GridlineColor` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.GridlineShade.md b/api/Access.TabControl.GridlineShade.md index 1d11c5efb0a..8f417d835d7 100644 --- a/api/Access.TabControl.GridlineShade.md +++ b/api/Access.TabControl.GridlineShade.md @@ -1,5 +1,5 @@ --- -title: TabControl.GridlineShade Property (Access) +title: TabControl.GridlineShade property (Access) keywords: vbaac10.chm14637 f1_keywords: - vbaac10.chm14637 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.GridlineShade Property (Access) +# TabControl.GridlineShade property (Access) Gets or sets the shade applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineShade` +_expression_. `GridlineShade` - _expression_ A variable that represents an [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents an [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.GridlineStyleBottom.md b/api/Access.TabControl.GridlineStyleBottom.md index 5e3b95d2307..063bbdc542a 100644 --- a/api/Access.TabControl.GridlineStyleBottom.md +++ b/api/Access.TabControl.GridlineStyleBottom.md @@ -1,5 +1,5 @@ --- -title: TabControl.GridlineStyleBottom Property (Access) +title: TabControl.GridlineStyleBottom property (Access) keywords: vbaac10.chm14543 f1_keywords: - vbaac10.chm14543 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.GridlineStyleBottom Property (Access) +# TabControl.GridlineStyleBottom property (Access) Gets or sets the bottom gridline style of the specified list box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleBottom` +_expression_. `GridlineStyleBottom` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.GridlineStyleLeft.md b/api/Access.TabControl.GridlineStyleLeft.md index c3e5a8ed54c..d3664315737 100644 --- a/api/Access.TabControl.GridlineStyleLeft.md +++ b/api/Access.TabControl.GridlineStyleLeft.md @@ -1,5 +1,5 @@ --- -title: TabControl.GridlineStyleLeft Property (Access) +title: TabControl.GridlineStyleLeft property (Access) keywords: vbaac10.chm14540 f1_keywords: - vbaac10.chm14540 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.GridlineStyleLeft Property (Access) +# TabControl.GridlineStyleLeft property (Access) Gets or sets the width of the bottom gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleLeft` +_expression_. `GridlineStyleLeft` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.GridlineStyleRight.md b/api/Access.TabControl.GridlineStyleRight.md index d95d4b7d790..caa11e84f41 100644 --- a/api/Access.TabControl.GridlineStyleRight.md +++ b/api/Access.TabControl.GridlineStyleRight.md @@ -1,5 +1,5 @@ --- -title: TabControl.GridlineStyleRight Property (Access) +title: TabControl.GridlineStyleRight property (Access) keywords: vbaac10.chm14542 f1_keywords: - vbaac10.chm14542 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.GridlineStyleRight Property (Access) +# TabControl.GridlineStyleRight property (Access) Gets or sets the right gridline style of the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleRight` +_expression_. `GridlineStyleRight` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.GridlineStyleTop.md b/api/Access.TabControl.GridlineStyleTop.md index 0d4d4aaae72..25e2e2d803f 100644 --- a/api/Access.TabControl.GridlineStyleTop.md +++ b/api/Access.TabControl.GridlineStyleTop.md @@ -1,5 +1,5 @@ --- -title: TabControl.GridlineStyleTop Property (Access) +title: TabControl.GridlineStyleTop property (Access) keywords: vbaac10.chm14541 f1_keywords: - vbaac10.chm14541 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.GridlineStyleTop Property (Access) +# TabControl.GridlineStyleTop property (Access) Gets or sets the top gridline style of the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleTop` +_expression_. `GridlineStyleTop` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.GridlineThemeColorIndex.md b/api/Access.TabControl.GridlineThemeColorIndex.md index 3eef3851fa4..eea147a2759 100644 --- a/api/Access.TabControl.GridlineThemeColorIndex.md +++ b/api/Access.TabControl.GridlineThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: TabControl.GridlineThemeColorIndex Property (Access) +title: TabControl.GridlineThemeColorIndex property (Access) keywords: vbaac10.chm14635 f1_keywords: - vbaac10.chm14635 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.GridlineThemeColorIndex Property (Access) +# TabControl.GridlineThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **GridlineColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `GridlineThemeColorIndex` +_expression_. `GridlineThemeColorIndex` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.GridlineTint.md b/api/Access.TabControl.GridlineTint.md index 68fd3d139b5..72a6abc00e6 100644 --- a/api/Access.TabControl.GridlineTint.md +++ b/api/Access.TabControl.GridlineTint.md @@ -1,5 +1,5 @@ --- -title: TabControl.GridlineTint Property (Access) +title: TabControl.GridlineTint property (Access) keywords: vbaac10.chm14636 f1_keywords: - vbaac10.chm14636 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.GridlineTint Property (Access) +# TabControl.GridlineTint property (Access) Gets or sets the tint applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineTint` +_expression_. `GridlineTint` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.GridlineWidthBottom.md b/api/Access.TabControl.GridlineWidthBottom.md index 03120eb211d..2145831d8e0 100644 --- a/api/Access.TabControl.GridlineWidthBottom.md +++ b/api/Access.TabControl.GridlineWidthBottom.md @@ -1,5 +1,5 @@ --- -title: TabControl.GridlineWidthBottom Property (Access) +title: TabControl.GridlineWidthBottom property (Access) keywords: vbaac10.chm14547 f1_keywords: - vbaac10.chm14547 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.GridlineWidthBottom Property (Access) +# TabControl.GridlineWidthBottom property (Access) Gets or sets the width of the bottom gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthBottom` +_expression_. `GridlineWidthBottom` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.GridlineWidthLeft.md b/api/Access.TabControl.GridlineWidthLeft.md index e4807e254ff..1f11a6780ea 100644 --- a/api/Access.TabControl.GridlineWidthLeft.md +++ b/api/Access.TabControl.GridlineWidthLeft.md @@ -1,5 +1,5 @@ --- -title: TabControl.GridlineWidthLeft Property (Access) +title: TabControl.GridlineWidthLeft property (Access) keywords: vbaac10.chm14544 f1_keywords: - vbaac10.chm14544 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.GridlineWidthLeft Property (Access) +# TabControl.GridlineWidthLeft property (Access) Gets or sets the width of the left gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthLeft` +_expression_. `GridlineWidthLeft` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.GridlineWidthRight.md b/api/Access.TabControl.GridlineWidthRight.md index 0f5179f9709..4e385ad5c43 100644 --- a/api/Access.TabControl.GridlineWidthRight.md +++ b/api/Access.TabControl.GridlineWidthRight.md @@ -1,5 +1,5 @@ --- -title: TabControl.GridlineWidthRight Property (Access) +title: TabControl.GridlineWidthRight property (Access) keywords: vbaac10.chm14546 f1_keywords: - vbaac10.chm14546 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.GridlineWidthRight Property (Access) +# TabControl.GridlineWidthRight property (Access) Gets or sets the width of the right gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthRight` +_expression_. `GridlineWidthRight` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.GridlineWidthTop.md b/api/Access.TabControl.GridlineWidthTop.md index e6382e30f14..e44608da5f5 100644 --- a/api/Access.TabControl.GridlineWidthTop.md +++ b/api/Access.TabControl.GridlineWidthTop.md @@ -1,5 +1,5 @@ --- -title: TabControl.GridlineWidthTop Property (Access) +title: TabControl.GridlineWidthTop property (Access) keywords: vbaac10.chm14545 f1_keywords: - vbaac10.chm14545 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.GridlineWidthTop Property (Access) +# TabControl.GridlineWidthTop property (Access) Gets or sets the width of the top gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthTop` +_expression_. `GridlineWidthTop` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.Height.md b/api/Access.TabControl.Height.md index 76588f56625..b68b0be09c8 100644 --- a/api/Access.TabControl.Height.md +++ b/api/Access.TabControl.Height.md @@ -1,5 +1,5 @@ --- -title: TabControl.Height Property (Access) +title: TabControl.Height property (Access) keywords: vbaac10.chm12084 f1_keywords: - vbaac10.chm12084 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Height Property (Access) +# TabControl.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.HelpContextId.md b/api/Access.TabControl.HelpContextId.md index 335e2a5f402..1002926e734 100644 --- a/api/Access.TabControl.HelpContextId.md +++ b/api/Access.TabControl.HelpContextId.md @@ -1,5 +1,5 @@ --- -title: TabControl.HelpContextId Property (Access) +title: TabControl.HelpContextId property (Access) keywords: vbaac10.chm12098 f1_keywords: - vbaac10.chm12098 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.HelpContextId Property (Access) +# TabControl.HelpContextId property (Access) The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**. ## Syntax - _expression_. `HelpContextId` +_expression_. `HelpContextId` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.HorizontalAnchor.md b/api/Access.TabControl.HorizontalAnchor.md index 305350c4c11..3ad836cc3ee 100644 --- a/api/Access.TabControl.HorizontalAnchor.md +++ b/api/Access.TabControl.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: TabControl.HorizontalAnchor Property (Access) +title: TabControl.HorizontalAnchor property (Access) keywords: vbaac10.chm12125 f1_keywords: - vbaac10.chm12125 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.HorizontalAnchor Property (Access) +# TabControl.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the tab control is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.HoverColor.md b/api/Access.TabControl.HoverColor.md index 7431ca03814..f2c07357ad7 100644 --- a/api/Access.TabControl.HoverColor.md +++ b/api/Access.TabControl.HoverColor.md @@ -1,5 +1,5 @@ --- -title: TabControl.HoverColor Property (Access) +title: TabControl.HoverColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.HoverColor Property (Access) +# TabControl.HoverColor property (Access) Gets or sets the color displayed on the control when the user rests the mouse cursor over it. Read/write **Long**. ## Syntax - _expression_. `HoverColor` +_expression_. `HoverColor` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.HoverForeColor.md b/api/Access.TabControl.HoverForeColor.md index efb20825b8a..77d4b9573f2 100644 --- a/api/Access.TabControl.HoverForeColor.md +++ b/api/Access.TabControl.HoverForeColor.md @@ -1,5 +1,5 @@ --- -title: TabControl.HoverForeColor Property (Access) +title: TabControl.HoverForeColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.HoverForeColor Property (Access) +# TabControl.HoverForeColor property (Access) Gets or sets the color of the text displayed on the control when the user rests the mouse cursor over it. Read/write **Long**. ## Syntax - _expression_. `HoverForeColor` +_expression_. `HoverForeColor` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.HoverForeShade.md b/api/Access.TabControl.HoverForeShade.md index 228342baffb..0bbc09ce49b 100644 --- a/api/Access.TabControl.HoverForeShade.md +++ b/api/Access.TabControl.HoverForeShade.md @@ -1,5 +1,5 @@ --- -title: TabControl.HoverForeShade Property (Access) +title: TabControl.HoverForeShade property (Access) keywords: vbaac10.chm14618 f1_keywords: - vbaac10.chm14618 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.HoverForeShade Property (Access) +# TabControl.HoverForeShade property (Access) Gets or sets the shade applied to the theme color in the **HoverForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `HoverForeShade` +_expression_. `HoverForeShade` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.HoverForeThemeColorIndex.md b/api/Access.TabControl.HoverForeThemeColorIndex.md index 2296a6daa30..a364fafc17e 100644 --- a/api/Access.TabControl.HoverForeThemeColorIndex.md +++ b/api/Access.TabControl.HoverForeThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: TabControl.HoverForeThemeColorIndex Property (Access) +title: TabControl.HoverForeThemeColorIndex property (Access) keywords: vbaac10.chm14616 f1_keywords: - vbaac10.chm14616 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.HoverForeThemeColorIndex Property (Access) +# TabControl.HoverForeThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **HoverForeColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `HoverForeThemeColorIndex` +_expression_. `HoverForeThemeColorIndex` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.HoverForeTint.md b/api/Access.TabControl.HoverForeTint.md index 2ed3fe9afc5..88dc8f3b0f5 100644 --- a/api/Access.TabControl.HoverForeTint.md +++ b/api/Access.TabControl.HoverForeTint.md @@ -1,5 +1,5 @@ --- -title: TabControl.HoverForeTint Property (Access) +title: TabControl.HoverForeTint property (Access) keywords: vbaac10.chm14617 f1_keywords: - vbaac10.chm14617 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.HoverForeTint Property (Access) +# TabControl.HoverForeTint property (Access) Gets or sets the tint applied to the theme color in the **HoverForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `HoverForeTint` +_expression_. `HoverForeTint` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.HoverShade.md b/api/Access.TabControl.HoverShade.md index 4372ea3c0c5..2c2b899d13f 100644 --- a/api/Access.TabControl.HoverShade.md +++ b/api/Access.TabControl.HoverShade.md @@ -1,5 +1,5 @@ --- -title: TabControl.HoverShade Property (Access) +title: TabControl.HoverShade property (Access) keywords: vbaac10.chm14614 f1_keywords: - vbaac10.chm14614 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.HoverShade Property (Access) +# TabControl.HoverShade property (Access) Gets or sets the shade that is applied to the theme color in the **HoverColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `HoverShade` +_expression_. `HoverShade` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.HoverThemeColorIndex.md b/api/Access.TabControl.HoverThemeColorIndex.md index d2e6578db76..6aa6c9cacee 100644 --- a/api/Access.TabControl.HoverThemeColorIndex.md +++ b/api/Access.TabControl.HoverThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: TabControl.HoverThemeColorIndex Property (Access) +title: TabControl.HoverThemeColorIndex property (Access) keywords: vbaac10.chm14612 f1_keywords: - vbaac10.chm14612 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.HoverThemeColorIndex Property (Access) +# TabControl.HoverThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **HoverColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `HoverThemeColorIndex` +_expression_. `HoverThemeColorIndex` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.HoverTint.md b/api/Access.TabControl.HoverTint.md index 91db3c62125..d75ce076ac2 100644 --- a/api/Access.TabControl.HoverTint.md +++ b/api/Access.TabControl.HoverTint.md @@ -1,5 +1,5 @@ --- -title: TabControl.HoverTint Property (Access) +title: TabControl.HoverTint property (Access) keywords: vbaac10.chm14613 f1_keywords: - vbaac10.chm14613 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.HoverTint Property (Access) +# TabControl.HoverTint property (Access) Gets or sets the tint applied to the theme color in the **HoverColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `HoverTint` +_expression_. `HoverTint` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.InSelection.md b/api/Access.TabControl.InSelection.md index ad140e51f74..9be3a9bfb2d 100644 --- a/api/Access.TabControl.InSelection.md +++ b/api/Access.TabControl.InSelection.md @@ -1,5 +1,5 @@ --- -title: TabControl.InSelection Property (Access) +title: TabControl.InSelection property (Access) keywords: vbaac10.chm12103 f1_keywords: - vbaac10.chm12103 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.InSelection Property (Access) +# TabControl.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.IsVisible.md b/api/Access.TabControl.IsVisible.md index 41513e503ca..06ce59589f1 100644 --- a/api/Access.TabControl.IsVisible.md +++ b/api/Access.TabControl.IsVisible.md @@ -1,5 +1,5 @@ --- -title: TabControl.IsVisible Property (Access) +title: TabControl.IsVisible property (Access) keywords: vbaac10.chm12102 f1_keywords: - vbaac10.chm12102 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.IsVisible Property (Access) +# TabControl.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.KeyDown.md b/api/Access.TabControl.KeyDown.md index 4854971cf5f..071764368c1 100644 --- a/api/Access.TabControl.KeyDown.md +++ b/api/Access.TabControl.KeyDown.md @@ -1,5 +1,5 @@ --- -title: TabControl.KeyDown Event (Access) +title: TabControl.KeyDown event (Access) keywords: vbaac10.chm14275 f1_keywords: - vbaac10.chm14275 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TabControl.KeyDown Event (Access) +# TabControl.KeyDown event (Access) The **KeyDown** event occurs when the user presses a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|A key code, such as **vbKeyF1** (the F1 key) or **vbKeyHome** (the HOME key). To specify key codes, use the intrinsic constants shown in the Object Browser. You can prevent an object from receiving a keystroke by setting KeyCode to 0.| | _Shift_|Required|**Integer**|The state of the SHIFT, CTRL, and ALT keys at the time of the event. If you need to test for the Shift argument, you can use one of the following intrinsic constants as bit masks: diff --git a/api/Access.TabControl.KeyPress.md b/api/Access.TabControl.KeyPress.md index 0cdb5d89621..6031a5e99ba 100644 --- a/api/Access.TabControl.KeyPress.md +++ b/api/Access.TabControl.KeyPress.md @@ -1,5 +1,5 @@ --- -title: TabControl.KeyPress Event (Access) +title: TabControl.KeyPress event (Access) keywords: vbaac10.chm14276 f1_keywords: - vbaac10.chm14276 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TabControl.KeyPress Event (Access) +# TabControl.KeyPress event (Access) The **KeyPress** event occurs when the user presses and releases a key or key combination that corresponds to an ANSI code while a form or control has the focus. This event also occurs if you send an ANSI keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyPress`( ` _KeyAscii_` ) +_expression_. `KeyPress`( ` _KeyAscii_` ) - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyAscii_|Required|**Integer**| Returns a numeric ANSI key code. The _KeyAscii_ argument is passed by reference; changing it sends a different character to the object. Setting the _KeyAscii_ argument to 0 cancels the keystroke so that the object doesn't recognize that a key was pressed.| diff --git a/api/Access.TabControl.KeyUp.md b/api/Access.TabControl.KeyUp.md index 48d189bc248..0101ba6e6ad 100644 --- a/api/Access.TabControl.KeyUp.md +++ b/api/Access.TabControl.KeyUp.md @@ -1,5 +1,5 @@ --- -title: TabControl.KeyUp Event (Access) +title: TabControl.KeyUp event (Access) keywords: vbaac10.chm14277 f1_keywords: - vbaac10.chm14277 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TabControl.KeyUp Event (Access) +# TabControl.KeyUp event (Access) The **KeyUp** event occurs when the user releases a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|A key code, such as **vbKeyF1** (the F1 key) or **vbKeyHome** (the HOME key). To specify key codes, use the intrinsic constants shown in the Object Browser. You can prevent an object from receiving a keystroke by setting KeyCode to 0.| | _Shift_|Required|**Integer**|The state of the SHIFT, CTRL, and ALT keys at the time of the event. If you need to test for the Shift argument, you can use one of the following intrinsic constants as bit masks: diff --git a/api/Access.TabControl.Layout.md b/api/Access.TabControl.Layout.md index 8c1127c07e9..dc9cc375884 100644 --- a/api/Access.TabControl.Layout.md +++ b/api/Access.TabControl.Layout.md @@ -1,5 +1,5 @@ --- -title: TabControl.Layout Property (Access) +title: TabControl.Layout property (Access) keywords: vbaac10.chm14535 f1_keywords: - vbaac10.chm14535 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Layout Property (Access) +# TabControl.Layout property (Access) Returns the type of layout for the specified text box. Read-only **[AcLayoutType](Access.AcLayoutType.md)**. ## Syntax - _expression_. `Layout` +_expression_. `Layout` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## See also diff --git a/api/Access.TabControl.LayoutID.md b/api/Access.TabControl.LayoutID.md index 1fedb48efe7..e54d91b8d10 100644 --- a/api/Access.TabControl.LayoutID.md +++ b/api/Access.TabControl.LayoutID.md @@ -1,5 +1,5 @@ --- -title: TabControl.LayoutID Property (Access) +title: TabControl.LayoutID property (Access) keywords: vbaac10.chm14548 f1_keywords: - vbaac10.chm14548 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.LayoutID Property (Access) +# TabControl.LayoutID property (Access) Returns the unique identifier for the layout that contains the specified text box. Read-only **Long**. ## Syntax - _expression_. `LayoutID` +_expression_. `LayoutID` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.Left.md b/api/Access.TabControl.Left.md index afafcf16321..be0907daa7c 100644 --- a/api/Access.TabControl.Left.md +++ b/api/Access.TabControl.Left.md @@ -1,5 +1,5 @@ --- -title: TabControl.Left Property (Access) +title: TabControl.Left property (Access) keywords: vbaac10.chm12081 f1_keywords: - vbaac10.chm12081 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Left Property (Access) +# TabControl.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.LeftPadding.md b/api/Access.TabControl.LeftPadding.md index 71365b3498b..c277033b3ee 100644 --- a/api/Access.TabControl.LeftPadding.md +++ b/api/Access.TabControl.LeftPadding.md @@ -1,5 +1,5 @@ --- -title: TabControl.LeftPadding Property (Access) +title: TabControl.LeftPadding property (Access) keywords: vbaac10.chm14536 f1_keywords: - vbaac10.chm14536 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.LeftPadding Property (Access) +# TabControl.LeftPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its left gridline. Read/write **Integer**. ## Syntax - _expression_. `LeftPadding` +_expression_. `LeftPadding` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## See also diff --git a/api/Access.TabControl.MouseDown.md b/api/Access.TabControl.MouseDown.md index 5cf5b55db51..a0b71911bc7 100644 --- a/api/Access.TabControl.MouseDown.md +++ b/api/Access.TabControl.MouseDown.md @@ -1,5 +1,5 @@ --- -title: TabControl.MouseDown Event (Access) +title: TabControl.MouseDown event (Access) keywords: vbaac10.chm14272 f1_keywords: - vbaac10.chm14272 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TabControl.MouseDown Event (Access) +# TabControl.MouseDown event (Access) The **MouseDown** event occurs when the user presses a mouse button. ## Syntax - _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.TabControl.MouseMove.md b/api/Access.TabControl.MouseMove.md index e088b492d44..dd9897793a8 100644 --- a/api/Access.TabControl.MouseMove.md +++ b/api/Access.TabControl.MouseMove.md @@ -1,5 +1,5 @@ --- -title: TabControl.MouseMove Event (Access) +title: TabControl.MouseMove event (Access) keywords: vbaac10.chm14273 f1_keywords: - vbaac10.chm14273 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TabControl.MouseMove Event (Access) +# TabControl.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.TabControl.MouseUp.md b/api/Access.TabControl.MouseUp.md index 18071c07f0b..1bf582e8aa3 100644 --- a/api/Access.TabControl.MouseUp.md +++ b/api/Access.TabControl.MouseUp.md @@ -1,5 +1,5 @@ --- -title: TabControl.MouseUp Event (Access) +title: TabControl.MouseUp event (Access) keywords: vbaac10.chm14274 f1_keywords: - vbaac10.chm14274 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TabControl.MouseUp Event (Access) +# TabControl.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.TabControl.Move.md b/api/Access.TabControl.Move.md index abfd6bbe8fe..f49feb4d685 100644 --- a/api/Access.TabControl.Move.md +++ b/api/Access.TabControl.Move.md @@ -1,5 +1,5 @@ --- -title: TabControl.Move Method (Access) +title: TabControl.Move method (Access) keywords: vbaac10.chm12114 f1_keywords: - vbaac10.chm12114 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TabControl.Move Method (Access) +# TabControl.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.TabControl.MultiRow.md b/api/Access.TabControl.MultiRow.md index 100a76686f2..cc879556c8b 100644 --- a/api/Access.TabControl.MultiRow.md +++ b/api/Access.TabControl.MultiRow.md @@ -1,5 +1,5 @@ --- -title: TabControl.MultiRow Property (Access) +title: TabControl.MultiRow property (Access) keywords: vbaac10.chm12086 f1_keywords: - vbaac10.chm12086 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.MultiRow Property (Access) +# TabControl.MultiRow property (Access) You can use the **MultiRow** property to specify or determine whether a tab control can display more than one row of tabs. Read/write **Boolean**. ## Syntax - _expression_. `MultiRow` +_expression_. `MultiRow` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.Name.md b/api/Access.TabControl.Name.md index 40159ad525e..713769041fe 100644 --- a/api/Access.TabControl.Name.md +++ b/api/Access.TabControl.Name.md @@ -1,5 +1,5 @@ --- -title: TabControl.Name Property (Access) +title: TabControl.Name property (Access) keywords: vbaac10.chm12113 f1_keywords: - vbaac10.chm12113 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Name Property (Access) +# TabControl.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.OldValue.md b/api/Access.TabControl.OldValue.md index 2ed2913a8e8..c8048b943a8 100644 --- a/api/Access.TabControl.OldValue.md +++ b/api/Access.TabControl.OldValue.md @@ -1,5 +1,5 @@ --- -title: TabControl.OldValue Property (Access) +title: TabControl.OldValue property (Access) keywords: vbaac10.chm12067 f1_keywords: - vbaac10.chm12067 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.OldValue Property (Access) +# TabControl.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.OnChange.md b/api/Access.TabControl.OnChange.md index cdb7833d03f..2fb8ede17aa 100644 --- a/api/Access.TabControl.OnChange.md +++ b/api/Access.TabControl.OnChange.md @@ -1,5 +1,5 @@ --- -title: TabControl.OnChange Property (Access) +title: TabControl.OnChange property (Access) keywords: vbaac10.chm12104 f1_keywords: - vbaac10.chm12104 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.OnChange Property (Access) +# TabControl.OnChange property (Access) Sets or returns the value of the **On Change** box in the **Properties** window of one of the objects in the Applies To list. Read/write **String**. ## Syntax - _expression_. `OnChange` +_expression_. `OnChange` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Change** event occurs when the contents of a text box or the text portion The **OnChange** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Change** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TabControl.OnClick.md b/api/Access.TabControl.OnClick.md index e3b6a06e5e3..e8d4ba868f8 100644 --- a/api/Access.TabControl.OnClick.md +++ b/api/Access.TabControl.OnClick.md @@ -1,5 +1,5 @@ --- -title: TabControl.OnClick Property (Access) +title: TabControl.OnClick property (Access) keywords: vbaac10.chm12105 f1_keywords: - vbaac10.chm12105 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.OnClick Property (Access) +# TabControl.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TabControl.OnDblClick.md b/api/Access.TabControl.OnDblClick.md index e0d6a2db698..3495d038731 100644 --- a/api/Access.TabControl.OnDblClick.md +++ b/api/Access.TabControl.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: TabControl.OnDblClick Property (Access) +title: TabControl.OnDblClick property (Access) keywords: vbaac10.chm12106 f1_keywords: - vbaac10.chm12106 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.OnDblClick Property (Access) +# TabControl.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TabControl.OnKeyDown.md b/api/Access.TabControl.OnKeyDown.md index 0f514f54f0b..d880210fcde 100644 --- a/api/Access.TabControl.OnKeyDown.md +++ b/api/Access.TabControl.OnKeyDown.md @@ -1,5 +1,5 @@ --- -title: TabControl.OnKeyDown Property (Access) +title: TabControl.OnKeyDown property (Access) keywords: vbaac10.chm12110 f1_keywords: - vbaac10.chm12110 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.OnKeyDown Property (Access) +# TabControl.OnKeyDown property (Access) Sets or returns the value of the **On Key Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyDown` +_expression_. `OnKeyDown` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyDown** event occurs when a user presses a key while a form or control The **OnKeyDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TabControl.OnKeyPress.md b/api/Access.TabControl.OnKeyPress.md index 9fdc9c6a60d..8acc5ca572a 100644 --- a/api/Access.TabControl.OnKeyPress.md +++ b/api/Access.TabControl.OnKeyPress.md @@ -1,5 +1,5 @@ --- -title: TabControl.OnKeyPress Property (Access) +title: TabControl.OnKeyPress property (Access) keywords: vbaac10.chm12112 f1_keywords: - vbaac10.chm12112 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.OnKeyPress Property (Access) +# TabControl.OnKeyPress property (Access) Sets or returns the value of the **On Key Press** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyPress` +_expression_. `OnKeyPress` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyPress** event occurs when a user presses a key while a form or control The **OnKeyPress** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Press** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TabControl.OnKeyUp.md b/api/Access.TabControl.OnKeyUp.md index c21f0822787..7a5b7c9d06a 100644 --- a/api/Access.TabControl.OnKeyUp.md +++ b/api/Access.TabControl.OnKeyUp.md @@ -1,5 +1,5 @@ --- -title: TabControl.OnKeyUp Property (Access) +title: TabControl.OnKeyUp property (Access) keywords: vbaac10.chm12111 f1_keywords: - vbaac10.chm12111 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.OnKeyUp Property (Access) +# TabControl.OnKeyUp property (Access) Sets or returns the value of the **On Key Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyUp` +_expression_. `OnKeyUp` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyUp** event occurs when a user presses a key while a form or control ha The **OnKeyUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TabControl.OnMouseDown.md b/api/Access.TabControl.OnMouseDown.md index a81d1ff95c0..5d839bd44ae 100644 --- a/api/Access.TabControl.OnMouseDown.md +++ b/api/Access.TabControl.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: TabControl.OnMouseDown Property (Access) +title: TabControl.OnMouseDown property (Access) keywords: vbaac10.chm12107 f1_keywords: - vbaac10.chm12107 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.OnMouseDown Property (Access) +# TabControl.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TabControl.OnMouseMove.md b/api/Access.TabControl.OnMouseMove.md index b1574fbec9e..dc7ab9fb525 100644 --- a/api/Access.TabControl.OnMouseMove.md +++ b/api/Access.TabControl.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: TabControl.OnMouseMove Property (Access) +title: TabControl.OnMouseMove property (Access) keywords: vbaac10.chm12108 f1_keywords: - vbaac10.chm12108 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.OnMouseMove Property (Access) +# TabControl.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TabControl.OnMouseUp.md b/api/Access.TabControl.OnMouseUp.md index 0bbd1bf38b1..ec7f941881e 100644 --- a/api/Access.TabControl.OnMouseUp.md +++ b/api/Access.TabControl.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: TabControl.OnMouseUp Property (Access) +title: TabControl.OnMouseUp property (Access) keywords: vbaac10.chm12109 f1_keywords: - vbaac10.chm12109 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.OnMouseUp Property (Access) +# TabControl.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TabControl.Pages.md b/api/Access.TabControl.Pages.md index de74a350fd7..80d666478b2 100644 --- a/api/Access.TabControl.Pages.md +++ b/api/Access.TabControl.Pages.md @@ -1,5 +1,5 @@ --- -title: TabControl.Pages Property (Access) +title: TabControl.Pages property (Access) keywords: vbaac10.chm12070 f1_keywords: - vbaac10.chm12070 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Pages Property (Access) +# TabControl.Pages property (Access) Returns a **[Pages](Access.Pages.md)** collection that represents the pages in the specified **TabControl** object. Read-only. ## Syntax - _expression_. `Pages` +_expression_. `Pages` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Example diff --git a/api/Access.TabControl.Parent.md b/api/Access.TabControl.Parent.md index e830525f4d4..1c80d135cd2 100644 --- a/api/Access.TabControl.Parent.md +++ b/api/Access.TabControl.Parent.md @@ -1,5 +1,5 @@ --- -title: TabControl.Parent Property (Access) +title: TabControl.Parent property (Access) keywords: vbaac10.chm12066 f1_keywords: - vbaac10.chm12066 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Parent Property (Access) +# TabControl.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## See also diff --git a/api/Access.TabControl.PressedColor.md b/api/Access.TabControl.PressedColor.md index 26c56ad85e8..bbec5968472 100644 --- a/api/Access.TabControl.PressedColor.md +++ b/api/Access.TabControl.PressedColor.md @@ -1,5 +1,5 @@ --- -title: TabControl.PressedColor Property (Access) +title: TabControl.PressedColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.PressedColor Property (Access) +# TabControl.PressedColor property (Access) Gets or sets the color displayed on the control when the user clicks it. Read/write **Long**. ## Syntax - _expression_. `PressedColor` +_expression_. `PressedColor` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.PressedForeColor.md b/api/Access.TabControl.PressedForeColor.md index 956a91db058..aad2c086517 100644 --- a/api/Access.TabControl.PressedForeColor.md +++ b/api/Access.TabControl.PressedForeColor.md @@ -1,5 +1,5 @@ --- -title: TabControl.PressedForeColor Property (Access) +title: TabControl.PressedForeColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.PressedForeColor Property (Access) +# TabControl.PressedForeColor property (Access) Gets or sets the color of the text displayed on the control when the user clicks it. Read/write **Long**. ## Syntax - _expression_. `PressedForeColor` +_expression_. `PressedForeColor` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.PressedForeShade.md b/api/Access.TabControl.PressedForeShade.md index 3bcd2b21856..e466af2c832 100644 --- a/api/Access.TabControl.PressedForeShade.md +++ b/api/Access.TabControl.PressedForeShade.md @@ -1,5 +1,5 @@ --- -title: TabControl.PressedForeShade Property (Access) +title: TabControl.PressedForeShade property (Access) keywords: vbaac10.chm14626 f1_keywords: - vbaac10.chm14626 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.PressedForeShade Property (Access) +# TabControl.PressedForeShade property (Access) Gets or sets the shade applied to the theme color in the **PressedForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `PressedForeShade` +_expression_. `PressedForeShade` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.PressedForeThemeColorIndex.md b/api/Access.TabControl.PressedForeThemeColorIndex.md index 100be68800a..04ebc6f07c5 100644 --- a/api/Access.TabControl.PressedForeThemeColorIndex.md +++ b/api/Access.TabControl.PressedForeThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: TabControl.PressedForeThemeColorIndex Property (Access) +title: TabControl.PressedForeThemeColorIndex property (Access) keywords: vbaac10.chm14624 f1_keywords: - vbaac10.chm14624 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.PressedForeThemeColorIndex Property (Access) +# TabControl.PressedForeThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **PressedForeColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `PressedForeThemeColorIndex` +_expression_. `PressedForeThemeColorIndex` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.PressedForeTint.md b/api/Access.TabControl.PressedForeTint.md index a8a1e4f4c94..94c097f1c44 100644 --- a/api/Access.TabControl.PressedForeTint.md +++ b/api/Access.TabControl.PressedForeTint.md @@ -1,5 +1,5 @@ --- -title: TabControl.PressedForeTint Property (Access) +title: TabControl.PressedForeTint property (Access) keywords: vbaac10.chm14625 f1_keywords: - vbaac10.chm14625 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.PressedForeTint Property (Access) +# TabControl.PressedForeTint property (Access) Gets or sets the tint applied to the theme color in the **PressedForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `PressedForeTint` +_expression_. `PressedForeTint` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.PressedShade.md b/api/Access.TabControl.PressedShade.md index acb2416a2f4..b65c09828de 100644 --- a/api/Access.TabControl.PressedShade.md +++ b/api/Access.TabControl.PressedShade.md @@ -1,5 +1,5 @@ --- -title: TabControl.PressedShade Property (Access) +title: TabControl.PressedShade property (Access) keywords: vbaac10.chm14622 f1_keywords: - vbaac10.chm14622 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.PressedShade Property (Access) +# TabControl.PressedShade property (Access) Gets or sets the shade that is applied to the theme color in the **PressedColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `PressedShade` +_expression_. `PressedShade` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.PressedThemeColorIndex.md b/api/Access.TabControl.PressedThemeColorIndex.md index 83ca76b3fa7..7d4a8ebb4e9 100644 --- a/api/Access.TabControl.PressedThemeColorIndex.md +++ b/api/Access.TabControl.PressedThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: TabControl.PressedThemeColorIndex Property (Access) +title: TabControl.PressedThemeColorIndex property (Access) keywords: vbaac10.chm14620 f1_keywords: - vbaac10.chm14620 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.PressedThemeColorIndex Property (Access) +# TabControl.PressedThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **PressedColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `PressedThemeColorIndex` +_expression_. `PressedThemeColorIndex` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.PressedTint.md b/api/Access.TabControl.PressedTint.md index 7654f796b10..f79279356fc 100644 --- a/api/Access.TabControl.PressedTint.md +++ b/api/Access.TabControl.PressedTint.md @@ -1,5 +1,5 @@ --- -title: TabControl.PressedTint Property (Access) +title: TabControl.PressedTint property (Access) keywords: vbaac10.chm14621 f1_keywords: - vbaac10.chm14621 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.PressedTint Property (Access) +# TabControl.PressedTint property (Access) Gets or sets the tint applied to the theme color in the **PressedColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `PressedTint` +_expression_. `PressedTint` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.Properties.md b/api/Access.TabControl.Properties.md index 2b476634390..4d7c18786c1 100644 --- a/api/Access.TabControl.Properties.md +++ b/api/Access.TabControl.Properties.md @@ -1,5 +1,5 @@ --- -title: TabControl.Properties Property (Access) +title: TabControl.Properties property (Access) keywords: vbaac10.chm12068 f1_keywords: - vbaac10.chm12068 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Properties Property (Access) +# TabControl.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.RightPadding.md b/api/Access.TabControl.RightPadding.md index dc0c5dcd91b..e443f1d376b 100644 --- a/api/Access.TabControl.RightPadding.md +++ b/api/Access.TabControl.RightPadding.md @@ -1,5 +1,5 @@ --- -title: TabControl.RightPadding Property (Access) +title: TabControl.RightPadding property (Access) keywords: vbaac10.chm14538 f1_keywords: - vbaac10.chm14538 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.RightPadding Property (Access) +# TabControl.RightPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## See also diff --git a/api/Access.TabControl.Section.md b/api/Access.TabControl.Section.md index bb304bd60b2..3973c48fb6f 100644 --- a/api/Access.TabControl.Section.md +++ b/api/Access.TabControl.Section.md @@ -1,5 +1,5 @@ --- -title: TabControl.Section Property (Access) +title: TabControl.Section property (Access) keywords: vbaac10.chm12099 f1_keywords: - vbaac10.chm12099 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Section Property (Access) +# TabControl.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.Shape.md b/api/Access.TabControl.Shape.md index 4210e7c14ce..57f17f9c336 100644 --- a/api/Access.TabControl.Shape.md +++ b/api/Access.TabControl.Shape.md @@ -1,5 +1,5 @@ --- -title: TabControl.Shape Property (Access) +title: TabControl.Shape property (Access) keywords: vbaac10.chm14628 f1_keywords: - vbaac10.chm14628 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Shape Property (Access) +# TabControl.Shape property (Access) Returns or sets the shape of the specified tab control. Read/write **Long**. ## Syntax - _expression_. `Shape` +_expression_. `Shape` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.ShortcutMenuBar.md b/api/Access.TabControl.ShortcutMenuBar.md index 2c79237360d..62a6fee8f11 100644 --- a/api/Access.TabControl.ShortcutMenuBar.md +++ b/api/Access.TabControl.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: TabControl.ShortcutMenuBar Property (Access) +title: TabControl.ShortcutMenuBar property (Access) keywords: vbaac10.chm12097 f1_keywords: - vbaac10.chm12097 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.ShortcutMenuBar Property (Access) +# TabControl.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.SizeToFit.md b/api/Access.TabControl.SizeToFit.md index c5f8edadc30..e8a79376760 100644 --- a/api/Access.TabControl.SizeToFit.md +++ b/api/Access.TabControl.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: TabControl.SizeToFit Method (Access) +title: TabControl.SizeToFit method (Access) keywords: vbaac10.chm12069 f1_keywords: - vbaac10.chm12069 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.SizeToFit Method (Access) +# TabControl.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.StatusBarText.md b/api/Access.TabControl.StatusBarText.md index 8b32d92448d..69e7552ace4 100644 --- a/api/Access.TabControl.StatusBarText.md +++ b/api/Access.TabControl.StatusBarText.md @@ -1,5 +1,5 @@ --- -title: TabControl.StatusBarText Property (Access) +title: TabControl.StatusBarText property (Access) keywords: vbaac10.chm12075 f1_keywords: - vbaac10.chm12075 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.StatusBarText Property (Access) +# TabControl.StatusBarText property (Access) You can use the **StatusBarText** property to specify the text that is displayed in the status bar when a control is selected. Read/write **String**. ## Syntax - _expression_. `StatusBarText` +_expression_. `StatusBarText` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.Style.md b/api/Access.TabControl.Style.md index 9fb76638207..46e0fa3e856 100644 --- a/api/Access.TabControl.Style.md +++ b/api/Access.TabControl.Style.md @@ -1,5 +1,5 @@ --- -title: TabControl.Style Property (Access) +title: TabControl.Style property (Access) keywords: vbaac10.chm12087 f1_keywords: - vbaac10.chm12087 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Style Property (Access) +# TabControl.Style property (Access) You can use the **Style** property to specify or determine the appearance of tabs on a tab control. Read/write **Byte**. ## Syntax - _expression_. `Style` +_expression_. `Style` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.TabFixedHeight.md b/api/Access.TabControl.TabFixedHeight.md index 23d738c1250..35019a95fe0 100644 --- a/api/Access.TabControl.TabFixedHeight.md +++ b/api/Access.TabControl.TabFixedHeight.md @@ -1,5 +1,5 @@ --- -title: TabControl.TabFixedHeight Property (Access) +title: TabControl.TabFixedHeight property (Access) keywords: vbaac10.chm12088,vbaac10.chm4517 f1_keywords: - vbaac10.chm12088,vbaac10.chm4517 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.TabFixedHeight Property (Access) +# TabControl.TabFixedHeight property (Access) You can use the **TabFixedHeight** property to specify or determine the height of the tabs on a tab control. Read/write **Integer**. ## Syntax - _expression_. `TabFixedHeight` +_expression_. `TabFixedHeight` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.TabFixedWidth.md b/api/Access.TabControl.TabFixedWidth.md index e367bbac092..ec614cc67d3 100644 --- a/api/Access.TabControl.TabFixedWidth.md +++ b/api/Access.TabControl.TabFixedWidth.md @@ -1,5 +1,5 @@ --- -title: TabControl.TabFixedWidth Property (Access) +title: TabControl.TabFixedWidth property (Access) keywords: vbaac10.chm12089,vbaac10.chm5506 f1_keywords: - vbaac10.chm12089,vbaac10.chm5506 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.TabFixedWidth Property (Access) +# TabControl.TabFixedWidth property (Access) You can use the **TabFixedWidth** property to specify or determine the width of the tabs on a tab control. Read/write **Integer**. ## Syntax - _expression_. `TabFixedWidth` +_expression_. `TabFixedWidth` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.TabIndex.md b/api/Access.TabControl.TabIndex.md index 1478e7b1a8d..c3d8b452a8c 100644 --- a/api/Access.TabControl.TabIndex.md +++ b/api/Access.TabControl.TabIndex.md @@ -1,5 +1,5 @@ --- -title: TabControl.TabIndex Property (Access) +title: TabControl.TabIndex property (Access) keywords: vbaac10.chm12080 f1_keywords: - vbaac10.chm12080 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.TabIndex Property (Access) +# TabControl.TabIndex property (Access) You can use the **TabIndex** property to specify a control's place in the tab order on a form or report. Read/write **Integer**. ## Syntax - _expression_. `TabIndex` +_expression_. `TabIndex` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.TabStop.md b/api/Access.TabControl.TabStop.md index 04028cb0133..0c5159850db 100644 --- a/api/Access.TabControl.TabStop.md +++ b/api/Access.TabControl.TabStop.md @@ -1,5 +1,5 @@ --- -title: TabControl.TabStop Property (Access) +title: TabControl.TabStop property (Access) keywords: vbaac10.chm12079 f1_keywords: - vbaac10.chm12079 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.TabStop Property (Access) +# TabControl.TabStop property (Access) You can use the **TabStop** property to specify whether you can use the TAB key to move the focus to a control. Read/write **Boolean**. ## Syntax - _expression_. `TabStop` +_expression_. `TabStop` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.Tag.md b/api/Access.TabControl.Tag.md index 60db65160c2..e7b2c45d382 100644 --- a/api/Access.TabControl.Tag.md +++ b/api/Access.TabControl.Tag.md @@ -1,5 +1,5 @@ --- -title: TabControl.Tag Property (Access) +title: TabControl.Tag property (Access) keywords: vbaac10.chm12101 f1_keywords: - vbaac10.chm12101 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Tag Property (Access) +# TabControl.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.ThemeFontIndex.md b/api/Access.TabControl.ThemeFontIndex.md index 37c82975f86..419fc48d991 100644 --- a/api/Access.TabControl.ThemeFontIndex.md +++ b/api/Access.TabControl.ThemeFontIndex.md @@ -1,5 +1,5 @@ --- -title: TabControl.ThemeFontIndex Property (Access) +title: TabControl.ThemeFontIndex property (Access) keywords: vbaac10.chm14610 f1_keywords: - vbaac10.chm14610 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.ThemeFontIndex Property (Access) +# TabControl.ThemeFontIndex property (Access) Gets or sets the font index that represents a font in the applied theme associated with the **FontName** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `ThemeFontIndex` +_expression_. `ThemeFontIndex` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.Top.md b/api/Access.TabControl.Top.md index 6ca437247bb..bb5261bdf16 100644 --- a/api/Access.TabControl.Top.md +++ b/api/Access.TabControl.Top.md @@ -1,5 +1,5 @@ --- -title: TabControl.Top Property (Access) +title: TabControl.Top property (Access) keywords: vbaac10.chm12082 f1_keywords: - vbaac10.chm12082 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Top Property (Access) +# TabControl.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.TopPadding.md b/api/Access.TabControl.TopPadding.md index 244fcff7bad..49427986966 100644 --- a/api/Access.TabControl.TopPadding.md +++ b/api/Access.TabControl.TopPadding.md @@ -1,5 +1,5 @@ --- -title: TabControl.TopPadding Property (Access) +title: TabControl.TopPadding property (Access) keywords: vbaac10.chm14537 f1_keywords: - vbaac10.chm14537 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.TopPadding Property (Access) +# TabControl.TopPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## See also diff --git a/api/Access.TabControl.UseTheme.md b/api/Access.TabControl.UseTheme.md index bed02c2ff61..1b3c3f3a4ec 100644 --- a/api/Access.TabControl.UseTheme.md +++ b/api/Access.TabControl.UseTheme.md @@ -1,5 +1,5 @@ --- -title: TabControl.UseTheme Property (Access) +title: TabControl.UseTheme property (Access) keywords: vbaac10.chm14627 f1_keywords: - vbaac10.chm14627 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.UseTheme Property (Access) +# TabControl.UseTheme property (Access) Gets or sets whether the specified object will utilize formatting styles defined in Office Document Themes. Read/write **Boolean**. ## Syntax - _expression_. `UseTheme` +_expression_. `UseTheme` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.Value.md b/api/Access.TabControl.Value.md index 7dd63ae5e7c..925bbb94d0a 100644 --- a/api/Access.TabControl.Value.md +++ b/api/Access.TabControl.Value.md @@ -1,5 +1,5 @@ --- -title: TabControl.Value Property (Access) +title: TabControl.Value property (Access) keywords: vbaac10.chm12071 f1_keywords: - vbaac10.chm12071 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Value Property (Access) +# TabControl.Value property (Access) Determines or specifies the selected **[Page](Access.Page.md)** object. Read/write **Variant**. ## Syntax - _expression_. `Value` +_expression_. `Value` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.VerticalAnchor.md b/api/Access.TabControl.VerticalAnchor.md index 9f54aa99519..9ee18ef3217 100644 --- a/api/Access.TabControl.VerticalAnchor.md +++ b/api/Access.TabControl.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: TabControl.VerticalAnchor Property (Access) +title: TabControl.VerticalAnchor property (Access) keywords: vbaac10.chm12126 f1_keywords: - vbaac10.chm12126 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.VerticalAnchor Property (Access) +# TabControl.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified tab control is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.Visible.md b/api/Access.TabControl.Visible.md index c3e451700bc..0af922092cd 100644 --- a/api/Access.TabControl.Visible.md +++ b/api/Access.TabControl.Visible.md @@ -1,5 +1,5 @@ --- -title: TabControl.Visible Property (Access) +title: TabControl.Visible property (Access) keywords: vbaac10.chm12076 f1_keywords: - vbaac10.chm12076 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Visible Property (Access) +# TabControl.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.Width.md b/api/Access.TabControl.Width.md index 40182038c27..8fb1469da7e 100644 --- a/api/Access.TabControl.Width.md +++ b/api/Access.TabControl.Width.md @@ -1,5 +1,5 @@ --- -title: TabControl.Width Property (Access) +title: TabControl.Width property (Access) keywords: vbaac10.chm12083 f1_keywords: - vbaac10.chm12083 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TabControl.Width Property (Access) +# TabControl.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [TabControl](Access.TabControl.md) object. +_expression_ A variable that represents a [TabControl](Access.TabControl.md) object. ## Remarks diff --git a/api/Access.TabControl.md b/api/Access.TabControl.md index 30e217cb167..94784356a15 100644 --- a/api/Access.TabControl.md +++ b/api/Access.TabControl.md @@ -1,5 +1,5 @@ --- -title: TabControl Object (Access) +title: TabControl object (Access) keywords: vbaac10.chm12136 f1_keywords: - vbaac10.chm12136 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TabControl Object (Access) +# TabControl object (Access) A tab control contains multiple pages on which you can place other controls, such as text boxes or option buttons. When a user clicks the corresponding tab, that page becomes active. diff --git a/api/Access.TempVar.Name.md b/api/Access.TempVar.Name.md index a3ee831150c..9aa36aee6ee 100644 --- a/api/Access.TempVar.Name.md +++ b/api/Access.TempVar.Name.md @@ -1,5 +1,5 @@ --- -title: TempVar.Name Property (Access) +title: TempVar.Name property (Access) keywords: vbaac10.chm14060 f1_keywords: - vbaac10.chm14060 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TempVar.Name Property (Access) +# TempVar.Name property (Access) Gets the name of the specified **[TempVar](Access.TempVar.md)**. Read-only **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [TempVar](Access.TempVar.md) object. +_expression_ A variable that represents a [TempVar](Access.TempVar.md) object. ## See also diff --git a/api/Access.TempVar.Value.md b/api/Access.TempVar.Value.md index 27f29150836..46560d6660a 100644 --- a/api/Access.TempVar.Value.md +++ b/api/Access.TempVar.Value.md @@ -1,5 +1,5 @@ --- -title: TempVar.Value Property (Access) +title: TempVar.Value property (Access) keywords: vbaac10.chm14061 f1_keywords: - vbaac10.chm14061 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TempVar.Value Property (Access) +# TempVar.Value property (Access) Gets or sets the value of the specified **[TempVar](Access.TempVar.md)**. Read/write **Variant**. ## Syntax - _expression_. `Value` +_expression_. `Value` - _expression_ A variable that represents a [TempVar](Access.TempVar.md) object. +_expression_ A variable that represents a [TempVar](Access.TempVar.md) object. ## Remarks diff --git a/api/Access.TempVar.md b/api/Access.TempVar.md index 41770b5c79d..6d300171c5f 100644 --- a/api/Access.TempVar.md +++ b/api/Access.TempVar.md @@ -1,5 +1,5 @@ --- -title: TempVar Object (Access) +title: TempVar object (Access) keywords: vbaac10.chm14063 f1_keywords: - vbaac10.chm14063 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TempVar Object (Access) +# TempVar object (Access) Represents a variable that be used in Visual Basic for Applications (VBA) code or from a macro. diff --git a/api/Access.TempVars.Add.md b/api/Access.TempVars.Add.md index 09472e9248e..3adde8c92e6 100644 --- a/api/Access.TempVars.Add.md +++ b/api/Access.TempVars.Add.md @@ -1,5 +1,5 @@ --- -title: TempVars.Add Method (Access) +title: TempVars.Add method (Access) keywords: vbaac10.chm14069 f1_keywords: - vbaac10.chm14069 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TempVars.Add Method (Access) +# TempVars.Add method (Access) Adds a variable to the **[TempVars](Access.TempVars.md)** collection. ## Syntax - _expression_. `Add`( ` _Name_`, ` _Value_` ) +_expression_. `Add`( ` _Name_`, ` _Value_` ) - _expression_ A variable that represents a [TempVars](Access.TempVars.md) object. +_expression_ A variable that represents a [TempVars](Access.TempVars.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required|**String**|The name to use for the **TempVar**.| | _Value_|Required|**Variant**|The value to store as a **TempVar**. This value must be a string expression or a numeric expression. Setting this argument to an object data type will result in a run-time error.| diff --git a/api/Access.TempVars.Application.md b/api/Access.TempVars.Application.md index 56a58c2fd7e..259d8fb8e28 100644 --- a/api/Access.TempVars.Application.md +++ b/api/Access.TempVars.Application.md @@ -1,5 +1,5 @@ --- -title: TempVars.Application Property (Access) +title: TempVars.Application property (Access) keywords: vbaac10.chm14065 f1_keywords: - vbaac10.chm14065 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TempVars.Application Property (Access) +# TempVars.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [TempVars](Access.TempVars.md) object. +_expression_ A variable that represents a [TempVars](Access.TempVars.md) object. ## Remarks diff --git a/api/Access.TempVars.Count.md b/api/Access.TempVars.Count.md index a1e0b584b0b..5aa8532e6b1 100644 --- a/api/Access.TempVars.Count.md +++ b/api/Access.TempVars.Count.md @@ -1,5 +1,5 @@ --- -title: TempVars.Count Property (Access) +title: TempVars.Count property (Access) keywords: vbaac10.chm14068 f1_keywords: - vbaac10.chm14068 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TempVars.Count Property (Access) +# TempVars.Count property (Access) Gets the number of **[TempVar](Access.TempVar.md)** objects in the **[TempVars](Access.TempVars.md)** collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [TempVars](Access.TempVars.md) object. +_expression_ A variable that represents a [TempVars](Access.TempVars.md) object. ## See also diff --git a/api/Access.TempVars.Item.md b/api/Access.TempVars.Item.md index f08a846357d..5c0c204e278 100644 --- a/api/Access.TempVars.Item.md +++ b/api/Access.TempVars.Item.md @@ -1,5 +1,5 @@ --- -title: TempVars.Item Property (Access) +title: TempVars.Item property (Access) keywords: vbaac10.chm14067 f1_keywords: - vbaac10.chm14067 @@ -11,25 +11,25 @@ ms.date: 06/08/2017 --- -# TempVars.Item Property (Access) +# TempVars.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **TempVar**. ## Syntax - _expression_. `Item`( ` _Index_` ) +_expression_. `Item`( ` _Index_` ) - _expression_ A variable that represents a [TempVars](Access.TempVars.md) object. +_expression_ A variable that represents a [TempVars](Access.TempVars.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| -| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection.| +| _Index_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the _index_ argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the _index_ argument must be the name of a member of the collection.| ## See also diff --git a/api/Access.TempVars.Parent.md b/api/Access.TempVars.Parent.md index 0e40ef1d5b3..62e3247be5b 100644 --- a/api/Access.TempVars.Parent.md +++ b/api/Access.TempVars.Parent.md @@ -1,5 +1,5 @@ --- -title: TempVars.Parent Property (Access) +title: TempVars.Parent property (Access) keywords: vbaac10.chm14066 f1_keywords: - vbaac10.chm14066 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TempVars.Parent Property (Access) +# TempVars.Parent property (Access) Returns the parent object for the specified object. Read-only **Object**. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [TempVars](Access.TempVars.md) object. +_expression_ A variable that represents a [TempVars](Access.TempVars.md) object. ## See also diff --git a/api/Access.TempVars.Remove.md b/api/Access.TempVars.Remove.md index 29daafe4df5..f9d272af69f 100644 --- a/api/Access.TempVars.Remove.md +++ b/api/Access.TempVars.Remove.md @@ -1,5 +1,5 @@ --- -title: TempVars.Remove Method (Access) +title: TempVars.Remove method (Access) keywords: vbaac10.chm14070 f1_keywords: - vbaac10.chm14070 @@ -11,25 +11,25 @@ ms.date: 06/08/2017 --- -# TempVars.Remove Method (Access) +# TempVars.Remove method (Access) Removes the specified **[TempVar](Access.TempVar.md)** object from the **[TempVars](Access.TempVars.md)** collection. ## Syntax - _expression_. `Remove`( ` _var_` ) +_expression_. `Remove`( ` _var_` ) - _expression_ A variable that represents a [TempVars](Access.TempVars.md) object. +_expression_ A variable that represents a [TempVars](Access.TempVars.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| -| _var_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the argument must be the name of a member of the collection.| +| _var_|Required|**Variant**|An expression that specifies the position of a member of the collection referred to by the _expression_ argument. If a numeric expression, the argument must be a number from 0 to the value of the collection's 'Count' property minus 1. If a string expression, the argument must be the name of a member of the collection.| ## See also diff --git a/api/Access.TempVars.RemoveAll.md b/api/Access.TempVars.RemoveAll.md index 4be719d6e57..ea382f40d56 100644 --- a/api/Access.TempVars.RemoveAll.md +++ b/api/Access.TempVars.RemoveAll.md @@ -1,5 +1,5 @@ --- -title: TempVars.RemoveAll Method (Access) +title: TempVars.RemoveAll method (Access) keywords: vbaac10.chm14071 f1_keywords: - vbaac10.chm14071 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TempVars.RemoveAll Method (Access) +# TempVars.RemoveAll method (Access) Removes all of the **[TempVar](Access.TempVar.md)** objects from the **[TempVars](Access.TempVars.md)** collection. ## Syntax - _expression_. `RemoveAll` +_expression_. `RemoveAll` - _expression_ A variable that represents a [TempVars](Access.TempVars.md) object. +_expression_ A variable that represents a [TempVars](Access.TempVars.md) object. ## See also diff --git a/api/Access.TempVars.md b/api/Access.TempVars.md index 097d49e695e..91077bbf2be 100644 --- a/api/Access.TempVars.md +++ b/api/Access.TempVars.md @@ -1,5 +1,5 @@ --- -title: TempVars Object (Access) +title: TempVars object (Access) keywords: vbaac10.chm14073 f1_keywords: - vbaac10.chm14073 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TempVars Object (Access) +# TempVars object (Access) Represents the collection of **[TempVar](Access.TempVar.md)** objects. diff --git a/api/Access.TextBox.AddColon.md b/api/Access.TextBox.AddColon.md index 0f23dd07641..3c81dfd9995 100644 --- a/api/Access.TextBox.AddColon.md +++ b/api/Access.TextBox.AddColon.md @@ -1,5 +1,5 @@ --- -title: TextBox.AddColon Property (Access) +title: TextBox.AddColon property (Access) keywords: vbaac10.chm11099 f1_keywords: - vbaac10.chm11099 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.AddColon Property (Access) +# TextBox.AddColon property (Access) Specifies whether a colon follows the text in labels for new controls. Read/write **Boolean**. ## Syntax - _expression_. `AddColon` +_expression_. `AddColon` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## See also diff --git a/api/Access.TextBox.AfterUpdate(even).md b/api/Access.TextBox.AfterUpdate(even).md index 325eb59448c..8374f46620a 100644 --- a/api/Access.TextBox.AfterUpdate(even).md +++ b/api/Access.TextBox.AfterUpdate(even).md @@ -1,5 +1,5 @@ --- -title: TextBox.AfterUpdate Event (Access) +title: TextBox.AfterUpdate event (Access) keywords: vbaac10.chm14195 f1_keywords: - vbaac10.chm14195 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.AfterUpdate Event (Access) +# TextBox.AfterUpdate event (Access) The **AfterUpdate** event occurs after changed data in a control or record is updated. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.AfterUpdate(property).md b/api/Access.TextBox.AfterUpdate(property).md index 75e1c3141f0..a5735f73e08 100644 --- a/api/Access.TextBox.AfterUpdate(property).md +++ b/api/Access.TextBox.AfterUpdate(property).md @@ -1,5 +1,5 @@ --- -title: TextBox.AfterUpdate Property (Access) +title: TextBox.AfterUpdate property (Access) keywords: vbaac10.chm11116 f1_keywords: - vbaac10.chm11116 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.AfterUpdate Property (Access) +# TextBox.AfterUpdate property (Access) Returns or sets which macro, event procedure, or user-defined function runs when the **AfterUpdate** event occurs. Read/write **String**. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.AllowAutoCorrect.md b/api/Access.TextBox.AllowAutoCorrect.md index a4e09038e48..c71941500e1 100644 --- a/api/Access.TextBox.AllowAutoCorrect.md +++ b/api/Access.TextBox.AllowAutoCorrect.md @@ -1,5 +1,5 @@ --- -title: TextBox.AllowAutoCorrect Property (Access) +title: TextBox.AllowAutoCorrect property (Access) keywords: vbaac10.chm11055 f1_keywords: - vbaac10.chm11055 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.AllowAutoCorrect Property (Access) +# TextBox.AllowAutoCorrect property (Access) You can use the **AllowAutoCorrect** property to specify whetherthe specified control will automatically correct entries made by the user. Read/write **Boolean**. ## Syntax - _expression_. `AllowAutoCorrect` +_expression_. `AllowAutoCorrect` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Application.md b/api/Access.TextBox.Application.md index 2ab6ee7fe61..aa25107d6dc 100644 --- a/api/Access.TextBox.Application.md +++ b/api/Access.TextBox.Application.md @@ -1,5 +1,5 @@ --- -title: TextBox.Application Property (Access) +title: TextBox.Application property (Access) keywords: vbaac10.chm11028 f1_keywords: - vbaac10.chm11028 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Application Property (Access) +# TextBox.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.AsianLineBreak.md b/api/Access.TextBox.AsianLineBreak.md index 3ba42050499..a2008669149 100644 --- a/api/Access.TextBox.AsianLineBreak.md +++ b/api/Access.TextBox.AsianLineBreak.md @@ -1,5 +1,5 @@ --- -title: TextBox.AsianLineBreak Property (Access) +title: TextBox.AsianLineBreak property (Access) keywords: vbaac10.chm11147 f1_keywords: - vbaac10.chm11147 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.AsianLineBreak Property (Access) +# TextBox.AsianLineBreak property (Access) Returns or sets a **Boolean** indicating whether line breaks in text boxes follow rules governing East Asian languages. **True** to control line breaks based on East Asian language rules. Read/write. ## Syntax - _expression_. `AsianLineBreak` +_expression_. `AsianLineBreak` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.AutoLabel.md b/api/Access.TextBox.AutoLabel.md index 26afe37f0a6..9bdcc88aa21 100644 --- a/api/Access.TextBox.AutoLabel.md +++ b/api/Access.TextBox.AutoLabel.md @@ -1,5 +1,5 @@ --- -title: TextBox.AutoLabel Property (Access) +title: TextBox.AutoLabel property (Access) keywords: vbaac10.chm11098 f1_keywords: - vbaac10.chm11098 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.AutoLabel Property (Access) +# TextBox.AutoLabel property (Access) Specifies whether labels are automatically created and attached to new controls. Read/write **Boolean**. ## Syntax - _expression_. `AutoLabel` +_expression_. `AutoLabel` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## See also diff --git a/api/Access.TextBox.AutoTab.md b/api/Access.TextBox.AutoTab.md index 017ff6b45bd..4e507a8a965 100644 --- a/api/Access.TextBox.AutoTab.md +++ b/api/Access.TextBox.AutoTab.md @@ -1,5 +1,5 @@ --- -title: TextBox.AutoTab Property (Access) +title: TextBox.AutoTab property (Access) keywords: vbaac10.chm11063,vbaac10.chm4278 f1_keywords: - vbaac10.chm11063,vbaac10.chm4278 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.AutoTab Property (Access) +# TextBox.AutoTab property (Access) You can use the **AutoTab** property to specify whether an automatic tab occurs when the last character permitted by a text box control's input mask is entered. An automatic tab moves the focus to the next control in the form's tab order. Read/write **Boolean**. ## Syntax - _expression_. `AutoTab` +_expression_. `AutoTab` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.BackColor.md b/api/Access.TextBox.BackColor.md index c56a09d24d5..b729909df14 100644 --- a/api/Access.TextBox.BackColor.md +++ b/api/Access.TextBox.BackColor.md @@ -1,5 +1,5 @@ --- -title: TextBox.BackColor Property (Access) +title: TextBox.BackColor property (Access) keywords: vbaac10.chm11076 f1_keywords: - vbaac10.chm11076 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.BackColor Property (Access) +# TextBox.BackColor property (Access) Gets or sets the interior color of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackColor` +_expression_. `BackColor` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.BackShade.md b/api/Access.TextBox.BackShade.md index f6e2eee8d6d..57835dd5236 100644 --- a/api/Access.TextBox.BackShade.md +++ b/api/Access.TextBox.BackShade.md @@ -1,5 +1,5 @@ --- -title: TextBox.BackShade Property (Access) +title: TextBox.BackShade property (Access) keywords: vbaac10.chm14633 f1_keywords: - vbaac10.chm14633 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.BackShade Property (Access) +# TextBox.BackShade property (Access) Gets or sets the shade applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackShade` +_expression_. `BackShade` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.BackStyle.md b/api/Access.TextBox.BackStyle.md index 63633700ece..a25333c44ab 100644 --- a/api/Access.TextBox.BackStyle.md +++ b/api/Access.TextBox.BackStyle.md @@ -1,5 +1,5 @@ --- -title: TextBox.BackStyle Property (Access) +title: TextBox.BackStyle property (Access) keywords: vbaac10.chm11075 f1_keywords: - vbaac10.chm11075 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.BackStyle Property (Access) +# TextBox.BackStyle property (Access) You can use the **BackStyle** property to specify whether a control will be transparent. Read/write **Byte**. ## Syntax - _expression_. `BackStyle` +_expression_. `BackStyle` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.BackThemeColorIndex.md b/api/Access.TextBox.BackThemeColorIndex.md index 37cc909ea23..0a89f2c74ae 100644 --- a/api/Access.TextBox.BackThemeColorIndex.md +++ b/api/Access.TextBox.BackThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: TextBox.BackThemeColorIndex Property (Access) +title: TextBox.BackThemeColorIndex property (Access) keywords: vbaac10.chm14631 f1_keywords: - vbaac10.chm14631 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.BackThemeColorIndex Property (Access) +# TextBox.BackThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BackColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackThemeColorIndex` +_expression_. `BackThemeColorIndex` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.BackTint.md b/api/Access.TextBox.BackTint.md index 49990b88aae..3dc26407c52 100644 --- a/api/Access.TextBox.BackTint.md +++ b/api/Access.TextBox.BackTint.md @@ -1,5 +1,5 @@ --- -title: TextBox.BackTint Property (Access) +title: TextBox.BackTint property (Access) keywords: vbaac10.chm14632 f1_keywords: - vbaac10.chm14632 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.BackTint Property (Access) +# TextBox.BackTint property (Access) Gets or sets the tint that is applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackTint` +_expression_. `BackTint` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.BeforeUpdate(even).md b/api/Access.TextBox.BeforeUpdate(even).md index 1824bbe33b8..c07819b324d 100644 --- a/api/Access.TextBox.BeforeUpdate(even).md +++ b/api/Access.TextBox.BeforeUpdate(even).md @@ -1,5 +1,5 @@ --- -title: TextBox.BeforeUpdate Event (Access) +title: TextBox.BeforeUpdate event (Access) keywords: vbaac10.chm14194 f1_keywords: - vbaac10.chm14194 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TextBox.BeforeUpdate Event (Access) +# TextBox.BeforeUpdate event (Access) The **BeforeUpdate** event occurs before changed data in a control or record is updated. ## Syntax - _expression_. `BeforeUpdate`( ` _Cancel_` ) +_expression_. `BeforeUpdate`( ` _Cancel_` ) - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **BeforeUpdate** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **BeforeUpdate** event.| diff --git a/api/Access.TextBox.BeforeUpdate(property).md b/api/Access.TextBox.BeforeUpdate(property).md index 0e3bfc29378..0f2bd093846 100644 --- a/api/Access.TextBox.BeforeUpdate(property).md +++ b/api/Access.TextBox.BeforeUpdate(property).md @@ -1,5 +1,5 @@ --- -title: TextBox.BeforeUpdate Property (Access) +title: TextBox.BeforeUpdate property (Access) keywords: vbaac10.chm11115 f1_keywords: - vbaac10.chm11115 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.BeforeUpdate Property (Access) +# TextBox.BeforeUpdate property (Access) Returns or sets which macro, event procedure, or user-defined function runs when the **BeforeUpdate** event occurs. Read/write **String**. ## Syntax - _expression_. `BeforeUpdate` +_expression_. `BeforeUpdate` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.BorderColor.md b/api/Access.TextBox.BorderColor.md index a4c8a58f028..8d1c25aba56 100644 --- a/api/Access.TextBox.BorderColor.md +++ b/api/Access.TextBox.BorderColor.md @@ -1,5 +1,5 @@ --- -title: TextBox.BorderColor Property (Access) +title: TextBox.BorderColor property (Access) keywords: vbaac10.chm11080 f1_keywords: - vbaac10.chm11080 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.BorderColor Property (Access) +# TextBox.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.BorderShade.md b/api/Access.TextBox.BorderShade.md index bcd39d9ee43..85e94646a47 100644 --- a/api/Access.TextBox.BorderShade.md +++ b/api/Access.TextBox.BorderShade.md @@ -1,5 +1,5 @@ --- -title: TextBox.BorderShade Property (Access) +title: TextBox.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.BorderShade Property (Access) +# TextBox.BorderShade property (Access) Gets or sets the shade that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.BorderStyle.md b/api/Access.TextBox.BorderStyle.md index 2d1e86e9cf9..096f29afce6 100644 --- a/api/Access.TextBox.BorderStyle.md +++ b/api/Access.TextBox.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: TextBox.BorderStyle Property (Access) +title: TextBox.BorderStyle property (Access) keywords: vbaac10.chm11078 f1_keywords: - vbaac10.chm11078 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.BorderStyle Property (Access) +# TextBox.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.BorderThemeColorIndex.md b/api/Access.TextBox.BorderThemeColorIndex.md index 63c6e0d8cd6..907232c12bc 100644 --- a/api/Access.TextBox.BorderThemeColorIndex.md +++ b/api/Access.TextBox.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: TextBox.BorderThemeColorIndex Property (Access) +title: TextBox.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.BorderThemeColorIndex Property (Access) +# TextBox.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.BorderTint.md b/api/Access.TextBox.BorderTint.md index c5bc61d3b3f..d7ba294651b 100644 --- a/api/Access.TextBox.BorderTint.md +++ b/api/Access.TextBox.BorderTint.md @@ -1,5 +1,5 @@ --- -title: TextBox.BorderTint Property (Access) +title: TextBox.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.BorderTint Property (Access) +# TextBox.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.BorderWidth.md b/api/Access.TextBox.BorderWidth.md index 890f9b6ba67..9687dd08694 100644 --- a/api/Access.TextBox.BorderWidth.md +++ b/api/Access.TextBox.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: TextBox.BorderWidth Property (Access) +title: TextBox.BorderWidth property (Access) keywords: vbaac10.chm11081 f1_keywords: - vbaac10.chm11081 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.BorderWidth Property (Access) +# TextBox.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.BottomMargin.md b/api/Access.TextBox.BottomMargin.md index 9fb74068482..3921093599a 100644 --- a/api/Access.TextBox.BottomMargin.md +++ b/api/Access.TextBox.BottomMargin.md @@ -1,5 +1,5 @@ --- -title: TextBox.BottomMargin Property (Access) +title: TextBox.BottomMargin property (Access) keywords: vbaac10.chm11142 f1_keywords: - vbaac10.chm11142 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.BottomMargin Property (Access) +# TextBox.BottomMargin property (Access) Along with the **LeftMargin**, **RightMargin**, and **TopMargin** properties, specifies the location of information displayed within a text box control. Read/write **Integer**. ## Syntax - _expression_. `BottomMargin` +_expression_. `BottomMargin` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.BottomPadding.md b/api/Access.TextBox.BottomPadding.md index f0c20338326..5629dd6fb76 100644 --- a/api/Access.TextBox.BottomPadding.md +++ b/api/Access.TextBox.BottomPadding.md @@ -1,5 +1,5 @@ --- -title: TextBox.BottomPadding Property (Access) +title: TextBox.BottomPadding property (Access) keywords: vbaac10.chm11155 f1_keywords: - vbaac10.chm11155 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.BottomPadding Property (Access) +# TextBox.BottomPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its bottom gridline. Read/write **Integer**. ## Syntax - _expression_. `BottomPadding` +_expression_. `BottomPadding` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## See also diff --git a/api/Access.TextBox.CanGrow.md b/api/Access.TextBox.CanGrow.md index a11ecbeb8ce..9c75317490a 100644 --- a/api/Access.TextBox.CanGrow.md +++ b/api/Access.TextBox.CanGrow.md @@ -1,5 +1,5 @@ --- -title: TextBox.CanGrow Property (Access) +title: TextBox.CanGrow property (Access) keywords: vbaac10.chm11068 f1_keywords: - vbaac10.chm11068 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.CanGrow Property (Access) +# TextBox.CanGrow property (Access) Gets or sets whether the specified control automatically adjusts vertically to print or preview all the data the control contains. Read/write **Boolean**. ## Syntax - _expression_. `CanGrow` +_expression_. `CanGrow` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.CanShrink.md b/api/Access.TextBox.CanShrink.md index 89c8c6d1c45..2eab7fea4da 100644 --- a/api/Access.TextBox.CanShrink.md +++ b/api/Access.TextBox.CanShrink.md @@ -1,5 +1,5 @@ --- -title: TextBox.CanShrink Property (Access) +title: TextBox.CanShrink property (Access) keywords: vbaac10.chm11069 f1_keywords: - vbaac10.chm11069 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.CanShrink Property (Access) +# TextBox.CanShrink property (Access) Gets or sets whether the specified control automatically adjusts vertically to print or preview all the data the section or control contains. Read/write **Boolean**. ## Syntax - _expression_. `CanShrink` +_expression_. `CanShrink` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Change.md b/api/Access.TextBox.Change.md index 4ffd99e601b..c117f5122b8 100644 --- a/api/Access.TextBox.Change.md +++ b/api/Access.TextBox.Change.md @@ -1,5 +1,5 @@ --- -title: TextBox.Change Event (Access) +title: TextBox.Change event (Access) keywords: vbaac10.chm14196 f1_keywords: - vbaac10.chm14196 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Change Event (Access) +# TextBox.Change event (Access) The **Change** event occurs when the contents of the specified control changes. ## Syntax - _expression_. `Change` +_expression_. `Change` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Click.md b/api/Access.TextBox.Click.md index 563bf6329ba..f7a044014e9 100644 --- a/api/Access.TextBox.Click.md +++ b/api/Access.TextBox.Click.md @@ -1,5 +1,5 @@ --- -title: TextBox.Click Event (Access) +title: TextBox.Click event (Access) keywords: vbaac10.chm14201 f1_keywords: - vbaac10.chm14201 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Click Event (Access) +# TextBox.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.ColumnHidden.md b/api/Access.TextBox.ColumnHidden.md index f8cee0523e6..c565895f37e 100644 --- a/api/Access.TextBox.ColumnHidden.md +++ b/api/Access.TextBox.ColumnHidden.md @@ -1,5 +1,5 @@ --- -title: TextBox.ColumnHidden Property (Access) +title: TextBox.ColumnHidden property (Access) keywords: vbaac10.chm11097 f1_keywords: - vbaac10.chm11097 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ColumnHidden Property (Access) +# TextBox.ColumnHidden property (Access) You can use the **ColumnHidden** property to show or hide a specified column in Datasheet view. Read/write **Boolean**. ## Syntax - _expression_. `ColumnHidden` +_expression_. `ColumnHidden` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.ColumnOrder.md b/api/Access.TextBox.ColumnOrder.md index 30a241f147f..8beb1e635f5 100644 --- a/api/Access.TextBox.ColumnOrder.md +++ b/api/Access.TextBox.ColumnOrder.md @@ -1,5 +1,5 @@ --- -title: TextBox.ColumnOrder Property (Access) +title: TextBox.ColumnOrder property (Access) keywords: vbaac10.chm11096 f1_keywords: - vbaac10.chm11096 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ColumnOrder Property (Access) +# TextBox.ColumnOrder property (Access) You can use the **ColumnOrder** property to specify the order of the columns in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `ColumnOrder` +_expression_. `ColumnOrder` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.ColumnWidth.md b/api/Access.TextBox.ColumnWidth.md index 1b1c1bb00db..e55fab3e08f 100644 --- a/api/Access.TextBox.ColumnWidth.md +++ b/api/Access.TextBox.ColumnWidth.md @@ -1,5 +1,5 @@ --- -title: TextBox.ColumnWidth Property (Access) +title: TextBox.ColumnWidth property (Access) keywords: vbaac10.chm11095 f1_keywords: - vbaac10.chm11095 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ColumnWidth Property (Access) +# TextBox.ColumnWidth property (Access) You can use the **ColumnWidth** property to specify the width of a column in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `ColumnWidth` +_expression_. `ColumnWidth` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.ControlSource.md b/api/Access.TextBox.ControlSource.md index c0c231a21d1..a5eca02bad5 100644 --- a/api/Access.TextBox.ControlSource.md +++ b/api/Access.TextBox.ControlSource.md @@ -1,5 +1,5 @@ --- -title: TextBox.ControlSource Property (Access) +title: TextBox.ControlSource property (Access) keywords: vbaac10.chm11043 f1_keywords: - vbaac10.chm11043 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ControlSource Property (Access) +# TextBox.ControlSource property (Access) You can use the **ControlSource** property to specify what data appears in a control. You can display and edit data bound to a field in a table, query, or SQL statement. You can also display the result of an expression. Read/write **String**. ## Syntax - _expression_. `ControlSource` +_expression_. `ControlSource` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.ControlTipText.md b/api/Access.TextBox.ControlTipText.md index 21bed3ece8a..6527b1db47b 100644 --- a/api/Access.TextBox.ControlTipText.md +++ b/api/Access.TextBox.ControlTipText.md @@ -1,5 +1,5 @@ --- -title: TextBox.ControlTipText Property (Access) +title: TextBox.ControlTipText property (Access) keywords: vbaac10.chm11093 f1_keywords: - vbaac10.chm11093 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ControlTipText Property (Access) +# TextBox.ControlTipText property (Access) You can use the **ControlTipText** property to specify the text that appears in a ScreenTip when you hold the mouse pointer over a control. Read/write **String**. ## Syntax - _expression_. `ControlTipText` +_expression_. `ControlTipText` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.ControlType.md b/api/Access.TextBox.ControlType.md index ad598829047..f4fc4b04f1f 100644 --- a/api/Access.TextBox.ControlType.md +++ b/api/Access.TextBox.ControlType.md @@ -1,5 +1,5 @@ --- -title: TextBox.ControlType Property (Access) +title: TextBox.ControlType property (Access) keywords: vbaac10.chm11042 f1_keywords: - vbaac10.chm11042 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ControlType Property (Access) +# TextBox.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Controls.md b/api/Access.TextBox.Controls.md index 18bba62049e..a5fcb097cbe 100644 --- a/api/Access.TextBox.Controls.md +++ b/api/Access.TextBox.Controls.md @@ -1,5 +1,5 @@ --- -title: TextBox.Controls Property (Access) +title: TextBox.Controls property (Access) keywords: vbaac10.chm11036 f1_keywords: - vbaac10.chm11036 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Controls Property (Access) +# TextBox.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.DblClick.md b/api/Access.TextBox.DblClick.md index 86f870ad641..a13c7e99f4b 100644 --- a/api/Access.TextBox.DblClick.md +++ b/api/Access.TextBox.DblClick.md @@ -1,5 +1,5 @@ --- -title: TextBox.DblClick Event (Access) +title: TextBox.DblClick event (Access) keywords: vbaac10.chm14202 f1_keywords: - vbaac10.chm14202 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TextBox.DblClick Event (Access) +# TextBox.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_` ) +_expression_. `DblClick`( ` _Cancel_` ) - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **DblClick** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **DblClick** event.| diff --git a/api/Access.TextBox.DecimalPlaces.md b/api/Access.TextBox.DecimalPlaces.md index e4f003c4c47..344802d2201 100644 --- a/api/Access.TextBox.DecimalPlaces.md +++ b/api/Access.TextBox.DecimalPlaces.md @@ -1,5 +1,5 @@ --- -title: TextBox.DecimalPlaces Property (Access) +title: TextBox.DecimalPlaces property (Access) keywords: vbaac10.chm11045 f1_keywords: - vbaac10.chm11045 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.DecimalPlaces Property (Access) +# TextBox.DecimalPlaces property (Access) You can use the **DecimalPlaces** property to specify the number of decimal places Microsoft Access uses to display numbers. Read/write **Byte**. ## Syntax - _expression_. `DecimalPlaces` +_expression_. `DecimalPlaces` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.DefaultValue.md b/api/Access.TextBox.DefaultValue.md index a6cdf10a9a6..dbca57e8ea1 100644 --- a/api/Access.TextBox.DefaultValue.md +++ b/api/Access.TextBox.DefaultValue.md @@ -1,5 +1,5 @@ --- -title: TextBox.DefaultValue Property (Access) +title: TextBox.DefaultValue property (Access) keywords: vbaac10.chm11047 f1_keywords: - vbaac10.chm11047 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.DefaultValue Property (Access) +# TextBox.DefaultValue property (Access) Specifies a value that is automatically entered in a field when a new record is created. For example, in an Addresses table you can set the default value for the City field to New York. When users add a record to the table, they can either accept this value or enter the name of a different city. Read/write **String**. ## Syntax - _expression_. `DefaultValue` +_expression_. `DefaultValue` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Dirty.md b/api/Access.TextBox.Dirty.md index 77bf2d8a0c6..31b155a5a04 100644 --- a/api/Access.TextBox.Dirty.md +++ b/api/Access.TextBox.Dirty.md @@ -1,5 +1,5 @@ --- -title: TextBox.Dirty Event (Access) +title: TextBox.Dirty event (Access) keywords: vbaac10.chm14209 f1_keywords: - vbaac10.chm14209 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TextBox.Dirty Event (Access) +# TextBox.Dirty event (Access) The Dirty event occurs when the contents of the specified control changes. ## Syntax - _expression_. `Dirty`( ` _Cancel_` ) +_expression_. `Dirty`( ` _Cancel_` ) - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **Dirty** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **Dirty** event.| diff --git a/api/Access.TextBox.DisplayAsHyperlink.md b/api/Access.TextBox.DisplayAsHyperlink.md index 9054013ceca..8fc3997f718 100644 --- a/api/Access.TextBox.DisplayAsHyperlink.md +++ b/api/Access.TextBox.DisplayAsHyperlink.md @@ -1,5 +1,5 @@ --- -title: TextBox.DisplayAsHyperlink Property (Access) +title: TextBox.DisplayAsHyperlink property (Access) keywords: vbaac10.chm11183 f1_keywords: - vbaac10.chm11183 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.DisplayAsHyperlink Property (Access) +# TextBox.DisplayAsHyperlink property (Access) Gets or sets an **[AcDisplayAsHyperlink](Access.AcDisplayAsHyperlink.md)** constant that specifies whether to display the contents of the specified text box as a hyperlink. Read/write. ## Syntax - _expression_. `DisplayAsHyperlink` +_expression_. `DisplayAsHyperlink` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## See also diff --git a/api/Access.TextBox.DisplayWhen.md b/api/Access.TextBox.DisplayWhen.md index e4dbd700a51..95c4633fc97 100644 --- a/api/Access.TextBox.DisplayWhen.md +++ b/api/Access.TextBox.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: TextBox.DisplayWhen Property (Access) +title: TextBox.DisplayWhen property (Access) keywords: vbaac10.chm11057 f1_keywords: - vbaac10.chm11057 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.DisplayWhen Property (Access) +# TextBox.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Enabled.md b/api/Access.TextBox.Enabled.md index c108b8d4312..b8cc64fa3d5 100644 --- a/api/Access.TextBox.Enabled.md +++ b/api/Access.TextBox.Enabled.md @@ -1,5 +1,5 @@ --- -title: TextBox.Enabled Property (Access) +title: TextBox.Enabled property (Access) keywords: vbaac10.chm11060 f1_keywords: - vbaac10.chm11060 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Enabled Property (Access) +# TextBox.Enabled property (Access) You can use the **Enabled** property to set or return the status of the conditional format in the **[FormatCondition](Access.FormatCondition.md)** object. Read/write **Boolean**. ## Syntax - _expression_. `Enabled` +_expression_. `Enabled` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Enter.md b/api/Access.TextBox.Enter.md index 3004663c61e..a95eaeb70a8 100644 --- a/api/Access.TextBox.Enter.md +++ b/api/Access.TextBox.Enter.md @@ -1,5 +1,5 @@ --- -title: TextBox.Enter Event (Access) +title: TextBox.Enter event (Access) keywords: vbaac10.chm14197 f1_keywords: - vbaac10.chm14197 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Enter Event (Access) +# TextBox.Enter event (Access) The **Enter** event occurs before a control actually receives the focus from a control on the same form or report. ## Syntax - _expression_. `Enter` +_expression_. `Enter` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.EnterKeyBehavior.md b/api/Access.TextBox.EnterKeyBehavior.md index c566fbb54a5..82ab4ff2ca9 100644 --- a/api/Access.TextBox.EnterKeyBehavior.md +++ b/api/Access.TextBox.EnterKeyBehavior.md @@ -1,5 +1,5 @@ --- -title: TextBox.EnterKeyBehavior Property (Access) +title: TextBox.EnterKeyBehavior property (Access) keywords: vbaac10.chm11054,vbaac10.chm4343 f1_keywords: - vbaac10.chm11054,vbaac10.chm4343 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.EnterKeyBehavior Property (Access) +# TextBox.EnterKeyBehavior property (Access) You can use the **EnterKeyBehavior** property to specify what happens when you press ENTER in a text box control in Form view or Datasheet view. Read/write **Boolean**. ## Syntax - _expression_. `EnterKeyBehavior` +_expression_. `EnterKeyBehavior` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.EventProcPrefix.md b/api/Access.TextBox.EventProcPrefix.md index 039545b1d81..e088f9f692a 100644 --- a/api/Access.TextBox.EventProcPrefix.md +++ b/api/Access.TextBox.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: TextBox.EventProcPrefix Property (Access) +title: TextBox.EventProcPrefix property (Access) keywords: vbaac10.chm11040 f1_keywords: - vbaac10.chm11040 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.EventProcPrefix Property (Access) +# TextBox.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Exit.md b/api/Access.TextBox.Exit.md index f5e0072210b..81366644695 100644 --- a/api/Access.TextBox.Exit.md +++ b/api/Access.TextBox.Exit.md @@ -1,5 +1,5 @@ --- -title: TextBox.Exit Event (Access) +title: TextBox.Exit event (Access) keywords: vbaac10.chm14198 f1_keywords: - vbaac10.chm14198 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TextBox.Exit Event (Access) +# TextBox.Exit event (Access) The **Exit** event occurs just before a control loses the focus to another control on the same form or report. ## Syntax - _expression_. `Exit`( ` _Cancel_` ) +_expression_. `Exit`( ` _Cancel_` ) - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|Set to **True** to cancel the event.| diff --git a/api/Access.TextBox.FilterLookup.md b/api/Access.TextBox.FilterLookup.md index 88a1e730f08..b201b54988b 100644 --- a/api/Access.TextBox.FilterLookup.md +++ b/api/Access.TextBox.FilterLookup.md @@ -1,5 +1,5 @@ --- -title: TextBox.FilterLookup Property (Access) +title: TextBox.FilterLookup property (Access) keywords: vbaac10.chm11062,vbaac10.chm4353 f1_keywords: - vbaac10.chm11062,vbaac10.chm4353 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.FilterLookup Property (Access) +# TextBox.FilterLookup property (Access) You can use the **FilterLookup** property to specify whether values appear in a bound text box control when using the Filter By Form or Server Filter By Form window. Read/write **Byte**. ## Syntax - _expression_. `FilterLookup` +_expression_. `FilterLookup` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.FontBold.md b/api/Access.TextBox.FontBold.md index cfe6de45ed9..0430a755415 100644 --- a/api/Access.TextBox.FontBold.md +++ b/api/Access.TextBox.FontBold.md @@ -1,5 +1,5 @@ --- -title: TextBox.FontBold Property (Access) +title: TextBox.FontBold property (Access) keywords: vbaac10.chm11091 f1_keywords: - vbaac10.chm11091 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TextBox.FontBold Property (Access) +# TextBox.FontBold property (Access) You can use the **FontBold** property to specify whether a font appears in a bold style in the following situations: @@ -26,9 +26,9 @@ You can use the **FontBold** property to specify whether a font appears in a bo ## Syntax - _expression_. `FontBold` +_expression_. `FontBold` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.FontItalic.md b/api/Access.TextBox.FontItalic.md index 672b5d6aeef..9b1eb4ba1e1 100644 --- a/api/Access.TextBox.FontItalic.md +++ b/api/Access.TextBox.FontItalic.md @@ -1,5 +1,5 @@ --- -title: TextBox.FontItalic Property (Access) +title: TextBox.FontItalic property (Access) keywords: vbaac10.chm11087 f1_keywords: - vbaac10.chm11087 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TextBox.FontItalic Property (Access) +# TextBox.FontItalic property (Access) You can use the **FontItalic** property to specify whether text is italic in the following situations: @@ -26,9 +26,9 @@ You can use the **FontItalic** property to specify whether text is italic in th ## Syntax - _expression_. `FontItalic` +_expression_. `FontItalic` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.FontName.md b/api/Access.TextBox.FontName.md index 3d50a6e7f7a..54f69d5adee 100644 --- a/api/Access.TextBox.FontName.md +++ b/api/Access.TextBox.FontName.md @@ -1,5 +1,5 @@ --- -title: TextBox.FontName Property (Access) +title: TextBox.FontName property (Access) keywords: vbaac10.chm11084 f1_keywords: - vbaac10.chm11084 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TextBox.FontName Property (Access) +# TextBox.FontName property (Access) You can use the **FontName** property to specify the font for text in the following situations: @@ -26,9 +26,9 @@ Read/write **String**. ## Syntax - _expression_. `FontName` +_expression_. `FontName` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.FontSize.md b/api/Access.TextBox.FontSize.md index ad3468c7e2b..95261c3fdb3 100644 --- a/api/Access.TextBox.FontSize.md +++ b/api/Access.TextBox.FontSize.md @@ -1,5 +1,5 @@ --- -title: TextBox.FontSize Property (Access) +title: TextBox.FontSize property (Access) keywords: vbaac10.chm11085 f1_keywords: - vbaac10.chm11085 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TextBox.FontSize Property (Access) +# TextBox.FontSize property (Access) You can use the **FontSize** property to specify the point size for text in the following situations: @@ -26,9 +26,9 @@ Read/write **Integer**. ## Syntax - _expression_. `FontSize` +_expression_. `FontSize` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.FontUnderline.md b/api/Access.TextBox.FontUnderline.md index d909d2dd97d..21f357edc90 100644 --- a/api/Access.TextBox.FontUnderline.md +++ b/api/Access.TextBox.FontUnderline.md @@ -1,5 +1,5 @@ --- -title: TextBox.FontUnderline Property (Access) +title: TextBox.FontUnderline property (Access) keywords: vbaac10.chm11088 f1_keywords: - vbaac10.chm11088 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TextBox.FontUnderline Property (Access) +# TextBox.FontUnderline property (Access) You can use the **FontUnderline** property to specify whether text is underlined in the following situations: @@ -26,9 +26,9 @@ You can use the **FontUnderline** property to specify whether text is underline ## Syntax - _expression_. `FontUnderline` +_expression_. `FontUnderline` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.FontWeight.md b/api/Access.TextBox.FontWeight.md index bf4db9be2ff..5cfde706147 100644 --- a/api/Access.TextBox.FontWeight.md +++ b/api/Access.TextBox.FontWeight.md @@ -1,5 +1,5 @@ --- -title: TextBox.FontWeight Property (Access) +title: TextBox.FontWeight property (Access) keywords: vbaac10.chm11086 f1_keywords: - vbaac10.chm11086 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.FontWeight Property (Access) +# TextBox.FontWeight property (Access) You can use the **DatasheetFontWeight** property to specify the line width of the font used to display and print characters for field names and data in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `FontWeight` +_expression_. `FontWeight` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.ForeColor.md b/api/Access.TextBox.ForeColor.md index 675cfa9c38c..0c0800acf76 100644 --- a/api/Access.TextBox.ForeColor.md +++ b/api/Access.TextBox.ForeColor.md @@ -1,5 +1,5 @@ --- -title: TextBox.ForeColor Property (Access) +title: TextBox.ForeColor property (Access) keywords: vbaac10.chm11083 f1_keywords: - vbaac10.chm11083 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ForeColor Property (Access) +# TextBox.ForeColor property (Access) You can use the **ForeColor** property to specify the color for text in a control. Read/write **Long**. ## Syntax - _expression_. `ForeColor` +_expression_. `ForeColor` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.ForeShade.md b/api/Access.TextBox.ForeShade.md index b80bd524fb5..729975ee0f6 100644 --- a/api/Access.TextBox.ForeShade.md +++ b/api/Access.TextBox.ForeShade.md @@ -1,5 +1,5 @@ --- -title: TextBox.ForeShade Property (Access) +title: TextBox.ForeShade property (Access) keywords: vbaac10.chm14606 f1_keywords: - vbaac10.chm14606 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ForeShade Property (Access) +# TextBox.ForeShade property (Access) Gets or sets the shade that is applied to the theme color in the **ForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `ForeShade` +_expression_. `ForeShade` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.ForeThemeColorIndex.md b/api/Access.TextBox.ForeThemeColorIndex.md index f7ec66af605..e94fdeced33 100644 --- a/api/Access.TextBox.ForeThemeColorIndex.md +++ b/api/Access.TextBox.ForeThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: TextBox.ForeThemeColorIndex Property (Access) +title: TextBox.ForeThemeColorIndex property (Access) keywords: vbaac10.chm14604 f1_keywords: - vbaac10.chm14604 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ForeThemeColorIndex Property (Access) +# TextBox.ForeThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **ForeColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `ForeThemeColorIndex` +_expression_. `ForeThemeColorIndex` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.ForeTint.md b/api/Access.TextBox.ForeTint.md index 1a432a5d2c9..f8ceacaab6b 100644 --- a/api/Access.TextBox.ForeTint.md +++ b/api/Access.TextBox.ForeTint.md @@ -1,5 +1,5 @@ --- -title: TextBox.ForeTint Property (Access) +title: TextBox.ForeTint property (Access) keywords: vbaac10.chm14605 f1_keywords: - vbaac10.chm14605 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ForeTint Property (Access) +# TextBox.ForeTint property (Access) Gets or sets the tint that is applied to the theme color in the **ForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `ForeTint` +_expression_. `ForeTint` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Format.md b/api/Access.TextBox.Format.md index 71846a8e397..1e86973c769 100644 --- a/api/Access.TextBox.Format.md +++ b/api/Access.TextBox.Format.md @@ -1,5 +1,5 @@ --- -title: TextBox.Format Property (Access) +title: TextBox.Format property (Access) keywords: vbaac10.chm11044 f1_keywords: - vbaac10.chm11044 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Format Property (Access) +# TextBox.Format property (Access) You can use the **Format** property to customize the way numbers, dates, times, and text are displayed and printed. Read/write **String**. ## Syntax - _expression_. `Format` +_expression_. `Format` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.FormatConditions.md b/api/Access.TextBox.FormatConditions.md index d76a0616254..194a64b1a7a 100644 --- a/api/Access.TextBox.FormatConditions.md +++ b/api/Access.TextBox.FormatConditions.md @@ -1,5 +1,5 @@ --- -title: TextBox.FormatConditions Property (Access) +title: TextBox.FormatConditions property (Access) keywords: vbaac10.chm11038 f1_keywords: - vbaac10.chm11038 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.FormatConditions Property (Access) +# TextBox.FormatConditions property (Access) You can use the **FormatConditions** property to return a read-only reference to the **[FormatConditions](Access.FormatConditions.md)** collection and its related properties. ## Syntax - _expression_. `FormatConditions` +_expression_. `FormatConditions` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Example diff --git a/api/Access.TextBox.FuriganaControl.md b/api/Access.TextBox.FuriganaControl.md index 4f1d797c6f2..74009d4c7d6 100644 --- a/api/Access.TextBox.FuriganaControl.md +++ b/api/Access.TextBox.FuriganaControl.md @@ -1,5 +1,5 @@ --- -title: TextBox.FuriganaControl Property (Access) +title: TextBox.FuriganaControl property (Access) keywords: vbaac10.chm11049 f1_keywords: - vbaac10.chm11049 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TextBox.FuriganaControl Property (Access) +# TextBox.FuriganaControl property (Access) @@ -19,9 +19,9 @@ ms.date: 06/08/2017 ## Syntax - _expression_. `FuriganaControl` +_expression_. `FuriganaControl` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.GotFocus.md b/api/Access.TextBox.GotFocus.md index 5a864377b08..908d9dd9901 100644 --- a/api/Access.TextBox.GotFocus.md +++ b/api/Access.TextBox.GotFocus.md @@ -1,5 +1,5 @@ --- -title: TextBox.GotFocus Event (Access) +title: TextBox.GotFocus event (Access) keywords: vbaac10.chm14199 f1_keywords: - vbaac10.chm14199 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.GotFocus Event (Access) +# TextBox.GotFocus event (Access) The **GotFocus** event occurs when the specified object receives the focus. ## Syntax - _expression_. `GotFocus` +_expression_. `GotFocus` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.GridlineColor.md b/api/Access.TextBox.GridlineColor.md index bbe527d6d7a..3e97e91c7c3 100644 --- a/api/Access.TextBox.GridlineColor.md +++ b/api/Access.TextBox.GridlineColor.md @@ -1,5 +1,5 @@ --- -title: TextBox.GridlineColor Property (Access) +title: TextBox.GridlineColor property (Access) keywords: vbaac10.chm11164 f1_keywords: - vbaac10.chm11164 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.GridlineColor Property (Access) +# TextBox.GridlineColor property (Access) Gets or sets the color of the gridline for the specified text box. Read/write **Long**. ## Syntax - _expression_. `GridlineColor` +_expression_. `GridlineColor` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.GridlineShade.md b/api/Access.TextBox.GridlineShade.md index aebad4b633a..41b80691829 100644 --- a/api/Access.TextBox.GridlineShade.md +++ b/api/Access.TextBox.GridlineShade.md @@ -1,5 +1,5 @@ --- -title: TextBox.GridlineShade Property (Access) +title: TextBox.GridlineShade property (Access) keywords: vbaac10.chm14637 f1_keywords: - vbaac10.chm14637 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.GridlineShade Property (Access) +# TextBox.GridlineShade property (Access) Gets or sets the shade applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineShade` +_expression_. `GridlineShade` - _expression_ A variable that represents an [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents an [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.GridlineStyleBottom.md b/api/Access.TextBox.GridlineStyleBottom.md index 1345946157c..ed7d8409606 100644 --- a/api/Access.TextBox.GridlineStyleBottom.md +++ b/api/Access.TextBox.GridlineStyleBottom.md @@ -1,5 +1,5 @@ --- -title: TextBox.GridlineStyleBottom Property (Access) +title: TextBox.GridlineStyleBottom property (Access) keywords: vbaac10.chm11159 f1_keywords: - vbaac10.chm11159 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.GridlineStyleBottom Property (Access) +# TextBox.GridlineStyleBottom property (Access) Gets or sets the bottom gridline style of the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleBottom` +_expression_. `GridlineStyleBottom` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.GridlineStyleLeft.md b/api/Access.TextBox.GridlineStyleLeft.md index 9ea07ab925c..9ebb1d2732e 100644 --- a/api/Access.TextBox.GridlineStyleLeft.md +++ b/api/Access.TextBox.GridlineStyleLeft.md @@ -1,5 +1,5 @@ --- -title: TextBox.GridlineStyleLeft Property (Access) +title: TextBox.GridlineStyleLeft property (Access) keywords: vbaac10.chm11156 f1_keywords: - vbaac10.chm11156 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.GridlineStyleLeft Property (Access) +# TextBox.GridlineStyleLeft property (Access) Gets or sets the width of the bottom gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleLeft` +_expression_. `GridlineStyleLeft` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.GridlineStyleRight.md b/api/Access.TextBox.GridlineStyleRight.md index 1e2a27af877..03c611467e7 100644 --- a/api/Access.TextBox.GridlineStyleRight.md +++ b/api/Access.TextBox.GridlineStyleRight.md @@ -1,5 +1,5 @@ --- -title: TextBox.GridlineStyleRight Property (Access) +title: TextBox.GridlineStyleRight property (Access) keywords: vbaac10.chm11158 f1_keywords: - vbaac10.chm11158 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.GridlineStyleRight Property (Access) +# TextBox.GridlineStyleRight property (Access) Gets or sets the right gridline style of the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleRight` +_expression_. `GridlineStyleRight` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.GridlineStyleTop.md b/api/Access.TextBox.GridlineStyleTop.md index a152313a9a3..f8ec8a8d690 100644 --- a/api/Access.TextBox.GridlineStyleTop.md +++ b/api/Access.TextBox.GridlineStyleTop.md @@ -1,5 +1,5 @@ --- -title: TextBox.GridlineStyleTop Property (Access) +title: TextBox.GridlineStyleTop property (Access) keywords: vbaac10.chm11157 f1_keywords: - vbaac10.chm11157 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.GridlineStyleTop Property (Access) +# TextBox.GridlineStyleTop property (Access) Gets or sets the top gridline style of the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleTop` +_expression_. `GridlineStyleTop` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.GridlineThemeColorIndex.md b/api/Access.TextBox.GridlineThemeColorIndex.md index fe4c3fed5f1..9e61d2171cd 100644 --- a/api/Access.TextBox.GridlineThemeColorIndex.md +++ b/api/Access.TextBox.GridlineThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: TextBox.GridlineThemeColorIndex Property (Access) +title: TextBox.GridlineThemeColorIndex property (Access) keywords: vbaac10.chm14635 f1_keywords: - vbaac10.chm14635 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.GridlineThemeColorIndex Property (Access) +# TextBox.GridlineThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **GridlineColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `GridlineThemeColorIndex` +_expression_. `GridlineThemeColorIndex` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.GridlineTint.md b/api/Access.TextBox.GridlineTint.md index 42cb47b94ad..cb18b5a813f 100644 --- a/api/Access.TextBox.GridlineTint.md +++ b/api/Access.TextBox.GridlineTint.md @@ -1,5 +1,5 @@ --- -title: TextBox.GridlineTint Property (Access) +title: TextBox.GridlineTint property (Access) keywords: vbaac10.chm14636 f1_keywords: - vbaac10.chm14636 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.GridlineTint Property (Access) +# TextBox.GridlineTint property (Access) Gets or sets the tint applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineTint` +_expression_. `GridlineTint` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.GridlineWidthBottom.md b/api/Access.TextBox.GridlineWidthBottom.md index f8956025778..55f13ddb7e1 100644 --- a/api/Access.TextBox.GridlineWidthBottom.md +++ b/api/Access.TextBox.GridlineWidthBottom.md @@ -1,5 +1,5 @@ --- -title: TextBox.GridlineWidthBottom Property (Access) +title: TextBox.GridlineWidthBottom property (Access) keywords: vbaac10.chm11163 f1_keywords: - vbaac10.chm11163 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.GridlineWidthBottom Property (Access) +# TextBox.GridlineWidthBottom property (Access) Gets or sets the width of the bottom gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthBottom` +_expression_. `GridlineWidthBottom` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.GridlineWidthLeft.md b/api/Access.TextBox.GridlineWidthLeft.md index db944e384fc..4fd420eb741 100644 --- a/api/Access.TextBox.GridlineWidthLeft.md +++ b/api/Access.TextBox.GridlineWidthLeft.md @@ -1,5 +1,5 @@ --- -title: TextBox.GridlineWidthLeft Property (Access) +title: TextBox.GridlineWidthLeft property (Access) keywords: vbaac10.chm11160 f1_keywords: - vbaac10.chm11160 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.GridlineWidthLeft Property (Access) +# TextBox.GridlineWidthLeft property (Access) Gets or sets the width of the left gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthLeft` +_expression_. `GridlineWidthLeft` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.GridlineWidthRight.md b/api/Access.TextBox.GridlineWidthRight.md index 83da008e8b1..fab4d8d9f14 100644 --- a/api/Access.TextBox.GridlineWidthRight.md +++ b/api/Access.TextBox.GridlineWidthRight.md @@ -1,5 +1,5 @@ --- -title: TextBox.GridlineWidthRight Property (Access) +title: TextBox.GridlineWidthRight property (Access) keywords: vbaac10.chm11162 f1_keywords: - vbaac10.chm11162 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.GridlineWidthRight Property (Access) +# TextBox.GridlineWidthRight property (Access) Gets or sets the width of the right gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthRight` +_expression_. `GridlineWidthRight` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.GridlineWidthTop.md b/api/Access.TextBox.GridlineWidthTop.md index 2bb938adc8b..df27d304d82 100644 --- a/api/Access.TextBox.GridlineWidthTop.md +++ b/api/Access.TextBox.GridlineWidthTop.md @@ -1,5 +1,5 @@ --- -title: TextBox.GridlineWidthTop Property (Access) +title: TextBox.GridlineWidthTop property (Access) keywords: vbaac10.chm11161 f1_keywords: - vbaac10.chm11161 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.GridlineWidthTop Property (Access) +# TextBox.GridlineWidthTop property (Access) Gets or sets the width of the top gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthTop` +_expression_. `GridlineWidthTop` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Height.md b/api/Access.TextBox.Height.md index 7a503340e3f..de25cbb78f6 100644 --- a/api/Access.TextBox.Height.md +++ b/api/Access.TextBox.Height.md @@ -1,5 +1,5 @@ --- -title: TextBox.Height Property (Access) +title: TextBox.Height property (Access) keywords: vbaac10.chm11074 f1_keywords: - vbaac10.chm11074 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Height Property (Access) +# TextBox.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.HelpContextId.md b/api/Access.TextBox.HelpContextId.md index ff13028f9cf..68f0e8f9f60 100644 --- a/api/Access.TextBox.HelpContextId.md +++ b/api/Access.TextBox.HelpContextId.md @@ -1,5 +1,5 @@ --- -title: TextBox.HelpContextId Property (Access) +title: TextBox.HelpContextId property (Access) keywords: vbaac10.chm11094 f1_keywords: - vbaac10.chm11094 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.HelpContextId Property (Access) +# TextBox.HelpContextId property (Access) The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**. ## Syntax - _expression_. `HelpContextId` +_expression_. `HelpContextId` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.HideDuplicates.md b/api/Access.TextBox.HideDuplicates.md index ed96bbde335..5942d7f4e1c 100644 --- a/api/Access.TextBox.HideDuplicates.md +++ b/api/Access.TextBox.HideDuplicates.md @@ -1,5 +1,5 @@ --- -title: TextBox.HideDuplicates Property (Access) +title: TextBox.HideDuplicates property (Access) keywords: vbaac10.chm11067 f1_keywords: - vbaac10.chm11067 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.HideDuplicates Property (Access) +# TextBox.HideDuplicates property (Access) You can use the **HideDuplicates** property to hide a control on a report when its value is the same as in the preceding record. Read/write **Boolean**. ## Syntax - _expression_. `HideDuplicates` +_expression_. `HideDuplicates` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.HorizontalAnchor.md b/api/Access.TextBox.HorizontalAnchor.md index 54dcbc94115..7028b30e3aa 100644 --- a/api/Access.TextBox.HorizontalAnchor.md +++ b/api/Access.TextBox.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: TextBox.HorizontalAnchor Property (Access) +title: TextBox.HorizontalAnchor property (Access) keywords: vbaac10.chm11165 f1_keywords: - vbaac10.chm11165 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.HorizontalAnchor Property (Access) +# TextBox.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the text box is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Hyperlink.md b/api/Access.TextBox.Hyperlink.md index 3128963965b..cb8b1a89596 100644 --- a/api/Access.TextBox.Hyperlink.md +++ b/api/Access.TextBox.Hyperlink.md @@ -1,5 +1,5 @@ --- -title: TextBox.Hyperlink Property (Access) +title: TextBox.Hyperlink property (Access) keywords: vbaac10.chm11037 f1_keywords: - vbaac10.chm11037 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Hyperlink Property (Access) +# TextBox.Hyperlink property (Access) You can use the **Hyperlink** property to return a reference to a **Hyperlink** object. You can use the **Hyperlink** property to access the properties and methods of a control's hyperlink. Read-only. ## Syntax - _expression_. `Hyperlink` +_expression_. `Hyperlink` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Example diff --git a/api/Access.TextBox.IMEHold.md b/api/Access.TextBox.IMEHold.md index aecb031d069..418aea97a0f 100644 --- a/api/Access.TextBox.IMEHold.md +++ b/api/Access.TextBox.IMEHold.md @@ -1,5 +1,5 @@ --- -title: TextBox.IMEHold Property (Access) +title: TextBox.IMEHold property (Access) keywords: vbaac10.chm11048 f1_keywords: - vbaac10.chm11048 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.IMEHold Property (Access) +# TextBox.IMEHold property (Access) [Language-specific information](overview/learn-about-language-specific-information-access.md)You can use the **IMEHold/Hold KanjiConversionMode** property to show whether the Kanji Conversion Mode is maintained when the control loses the focus. Read/write **Boolean**. ## Syntax - _expression_. `IMEHold` +_expression_. `IMEHold` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.IMEMode.md b/api/Access.TextBox.IMEMode.md index 38d19e3ac5e..7daa5f9e62f 100644 --- a/api/Access.TextBox.IMEMode.md +++ b/api/Access.TextBox.IMEMode.md @@ -1,5 +1,5 @@ --- -title: TextBox.IMEMode Property (Access) +title: TextBox.IMEMode property (Access) keywords: vbaac10.chm11135 f1_keywords: - vbaac10.chm11135 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TextBox.IMEMode Property (Access) +# TextBox.IMEMode property (Access) @@ -19,9 +19,9 @@ ms.date: 06/08/2017 ## Syntax - _expression_. `IMEMode` +_expression_. `IMEMode` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.IMESentenceMode.md b/api/Access.TextBox.IMESentenceMode.md index 2f5d9a65c5a..66e6e3bca16 100644 --- a/api/Access.TextBox.IMESentenceMode.md +++ b/api/Access.TextBox.IMESentenceMode.md @@ -1,5 +1,5 @@ --- -title: TextBox.IMESentenceMode Property (Access) +title: TextBox.IMESentenceMode property (Access) keywords: vbaac10.chm11137 f1_keywords: - vbaac10.chm11137 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TextBox.IMESentenceMode Property (Access) +# TextBox.IMESentenceMode property (Access) @@ -19,9 +19,9 @@ ms.date: 06/08/2017 ## Syntax - _expression_. `IMESentenceMode` +_expression_. `IMESentenceMode` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.InSelection.md b/api/Access.TextBox.InSelection.md index efb563bf944..2a18a00a353 100644 --- a/api/Access.TextBox.InSelection.md +++ b/api/Access.TextBox.InSelection.md @@ -1,5 +1,5 @@ --- -title: TextBox.InSelection Property (Access) +title: TextBox.InSelection property (Access) keywords: vbaac10.chm11114 f1_keywords: - vbaac10.chm11114 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.InSelection Property (Access) +# TextBox.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.InputMask.md b/api/Access.TextBox.InputMask.md index 473b2833e2d..8f6f0addfa6 100644 --- a/api/Access.TextBox.InputMask.md +++ b/api/Access.TextBox.InputMask.md @@ -1,5 +1,5 @@ --- -title: TextBox.InputMask Property (Access) +title: TextBox.InputMask property (Access) keywords: vbaac10.chm11046 f1_keywords: - vbaac10.chm11046 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.InputMask Property (Access) +# TextBox.InputMask property (Access) You can use the **InputMask** property to make data entry easier and to control the values users can enter in a text boxcontrol. Read/write **String**. ## Syntax - _expression_. `InputMask` +_expression_. `InputMask` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.IsHyperlink.md b/api/Access.TextBox.IsHyperlink.md index 32c35553bb0..ff60a15dc2c 100644 --- a/api/Access.TextBox.IsHyperlink.md +++ b/api/Access.TextBox.IsHyperlink.md @@ -1,5 +1,5 @@ --- -title: TextBox.IsHyperlink Property (Access) +title: TextBox.IsHyperlink property (Access) keywords: vbaac10.chm11143 f1_keywords: - vbaac10.chm11143 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.IsHyperlink Property (Access) +# TextBox.IsHyperlink property (Access) You can use the **IsHyperlink** property to specify or determine if the data contained in a text box is a hyperlink. Read/write **Boolean**. ## Syntax - _expression_. `IsHyperlink` +_expression_. `IsHyperlink` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## See also diff --git a/api/Access.TextBox.IsVisible.md b/api/Access.TextBox.IsVisible.md index 87aa153b063..4f2a7e26622 100644 --- a/api/Access.TextBox.IsVisible.md +++ b/api/Access.TextBox.IsVisible.md @@ -1,5 +1,5 @@ --- -title: TextBox.IsVisible Property (Access) +title: TextBox.IsVisible property (Access) keywords: vbaac10.chm11113 f1_keywords: - vbaac10.chm11113 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.IsVisible Property (Access) +# TextBox.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.KeyDown.md b/api/Access.TextBox.KeyDown.md index 2b9eb79bb08..2ffa4bee151 100644 --- a/api/Access.TextBox.KeyDown.md +++ b/api/Access.TextBox.KeyDown.md @@ -1,5 +1,5 @@ --- -title: TextBox.KeyDown Event (Access) +title: TextBox.KeyDown event (Access) keywords: vbaac10.chm14206 f1_keywords: - vbaac10.chm14206 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TextBox.KeyDown Event (Access) +# TextBox.KeyDown event (Access) The **KeyDown** event occurs when the user presses a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|A key code, such as **vbKeyF1** (the F1 key) or **vbKeyHome** (the HOME key). To specify key codes, use the intrinsic constants shown in the Object Browser. You can prevent an object from receiving a keystroke by setting KeyCode to 0.| | _Shift_|Required|**Integer**|The state of the SHIFT, CTRL, and ALT keys at the time of the event. If you need to test for the Shift argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.TextBox.MouseMove.md b/api/Access.TextBox.MouseMove.md index d463384b3dc..cca88eebe2e 100644 --- a/api/Access.TextBox.MouseMove.md +++ b/api/Access.TextBox.MouseMove.md @@ -1,5 +1,5 @@ --- -title: TextBox.MouseMove Event (Access) +title: TextBox.MouseMove event (Access) keywords: vbaac10.chm14204 f1_keywords: - vbaac10.chm14204 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TextBox.MouseMove Event (Access) +# TextBox.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.TextBox.MouseUp.md b/api/Access.TextBox.MouseUp.md index 3bc4160ab08..3292e20ce8a 100644 --- a/api/Access.TextBox.MouseUp.md +++ b/api/Access.TextBox.MouseUp.md @@ -1,5 +1,5 @@ --- -title: TextBox.MouseUp Event (Access) +title: TextBox.MouseUp event (Access) keywords: vbaac10.chm14205 f1_keywords: - vbaac10.chm14205 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TextBox.MouseUp Event (Access) +# TextBox.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.TextBox.Move.md b/api/Access.TextBox.Move.md index 72eb83a22c5..116ea9f76ed 100644 --- a/api/Access.TextBox.Move.md +++ b/api/Access.TextBox.Move.md @@ -1,5 +1,5 @@ --- -title: TextBox.Move Method (Access) +title: TextBox.Move method (Access) keywords: vbaac10.chm11144 f1_keywords: - vbaac10.chm11144 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TextBox.Move Method (Access) +# TextBox.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.TextBox.Name.md b/api/Access.TextBox.Name.md index 8f5235bf698..b43cd7088c8 100644 --- a/api/Access.TextBox.Name.md +++ b/api/Access.TextBox.Name.md @@ -1,5 +1,5 @@ --- -title: TextBox.Name Property (Access) +title: TextBox.Name property (Access) keywords: vbaac10.chm11136 f1_keywords: - vbaac10.chm11136 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Name Property (Access) +# TextBox.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.NumeralShapes.md b/api/Access.TextBox.NumeralShapes.md index 9b5beeb507c..98659ccb485 100644 --- a/api/Access.TextBox.NumeralShapes.md +++ b/api/Access.TextBox.NumeralShapes.md @@ -1,5 +1,5 @@ --- -title: TextBox.NumeralShapes Property (Access) +title: TextBox.NumeralShapes property (Access) keywords: vbaac10.chm11134 f1_keywords: - vbaac10.chm11134 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TextBox.NumeralShapes Property (Access) +# TextBox.NumeralShapes property (Access) @@ -19,9 +19,9 @@ ms.date: 06/08/2017 ## Syntax - _expression_. `NumeralShapes` +_expression_. `NumeralShapes` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.OldBorderStyle.md b/api/Access.TextBox.OldBorderStyle.md index 7a302be7c32..4f35583c032 100644 --- a/api/Access.TextBox.OldBorderStyle.md +++ b/api/Access.TextBox.OldBorderStyle.md @@ -1,5 +1,5 @@ --- -title: TextBox.OldBorderStyle Property (Access) +title: TextBox.OldBorderStyle property (Access) keywords: vbaac10.chm11079 f1_keywords: - vbaac10.chm11079 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OldBorderStyle Property (Access) +# TextBox.OldBorderStyle property (Access) You can use this property to set or returns the unedited value of the **BorderStyle** property for a form or control. This property is useful if you need to revert to an unedited or preferred border style. Read/write **Byte**. ## Syntax - _expression_. `OldBorderStyle` +_expression_. `OldBorderStyle` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.OldValue.md b/api/Access.TextBox.OldValue.md index 66ae4140c78..5c8dc98422b 100644 --- a/api/Access.TextBox.OldValue.md +++ b/api/Access.TextBox.OldValue.md @@ -1,5 +1,5 @@ --- -title: TextBox.OldValue Property (Access) +title: TextBox.OldValue property (Access) keywords: vbaac10.chm11031 f1_keywords: - vbaac10.chm11031 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OldValue Property (Access) +# TextBox.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.OnChange.md b/api/Access.TextBox.OnChange.md index 596a9e09101..6acd465b6eb 100644 --- a/api/Access.TextBox.OnChange.md +++ b/api/Access.TextBox.OnChange.md @@ -1,5 +1,5 @@ --- -title: TextBox.OnChange Property (Access) +title: TextBox.OnChange property (Access) keywords: vbaac10.chm11117 f1_keywords: - vbaac10.chm11117 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OnChange Property (Access) +# TextBox.OnChange property (Access) Sets or returns the value of the **On Change** box in the **Properties** window of one of the objects in the Applies To list. Read/write **String**. ## Syntax - _expression_. `OnChange` +_expression_. `OnChange` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Change** event occurs when the contents of a text box or the text portion The **OnChange** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Change** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TextBox.OnClick.md b/api/Access.TextBox.OnClick.md index ab3f5a51011..640aad04cbc 100644 --- a/api/Access.TextBox.OnClick.md +++ b/api/Access.TextBox.OnClick.md @@ -1,5 +1,5 @@ --- -title: TextBox.OnClick Property (Access) +title: TextBox.OnClick property (Access) keywords: vbaac10.chm11122 f1_keywords: - vbaac10.chm11122 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OnClick Property (Access) +# TextBox.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TextBox.OnDblClick.md b/api/Access.TextBox.OnDblClick.md index 65afc81dc99..482c0a4ba24 100644 --- a/api/Access.TextBox.OnDblClick.md +++ b/api/Access.TextBox.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: TextBox.OnDblClick Property (Access) +title: TextBox.OnDblClick property (Access) keywords: vbaac10.chm11123 f1_keywords: - vbaac10.chm11123 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OnDblClick Property (Access) +# TextBox.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TextBox.OnDirty.md b/api/Access.TextBox.OnDirty.md index eca846e48ad..b05ca5ab7a8 100644 --- a/api/Access.TextBox.OnDirty.md +++ b/api/Access.TextBox.OnDirty.md @@ -1,5 +1,5 @@ --- -title: TextBox.OnDirty Property (Access) +title: TextBox.OnDirty property (Access) keywords: vbaac10.chm11145 f1_keywords: - vbaac10.chm11145 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OnDirty Property (Access) +# TextBox.OnDirty property (Access) Sets or returns the value of the **On Dirty** box in the **Properties** window of a form or report. Read/write **String**. ## Syntax - _expression_. `OnDirty` +_expression_. `OnDirty` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Dirty** event occurs when the contents of a form or the text portion of a The **OnClose** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dirty** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TextBox.OnEnter.md b/api/Access.TextBox.OnEnter.md index 022b1ea3ae0..04db45a775e 100644 --- a/api/Access.TextBox.OnEnter.md +++ b/api/Access.TextBox.OnEnter.md @@ -1,5 +1,5 @@ --- -title: TextBox.OnEnter Property (Access) +title: TextBox.OnEnter property (Access) keywords: vbaac10.chm11118 f1_keywords: - vbaac10.chm11118 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OnEnter Property (Access) +# TextBox.OnEnter property (Access) Sets or returns the value of the **On Enter** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnEnter` +_expression_. `OnEnter` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Enter** event occurs before a control actually receives the focus from a The **OnEnter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Enter** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TextBox.OnExit.md b/api/Access.TextBox.OnExit.md index 66b5deab3ee..82b3bdd5ee9 100644 --- a/api/Access.TextBox.OnExit.md +++ b/api/Access.TextBox.OnExit.md @@ -1,5 +1,5 @@ --- -title: TextBox.OnExit Property (Access) +title: TextBox.OnExit property (Access) keywords: vbaac10.chm11119 f1_keywords: - vbaac10.chm11119 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OnExit Property (Access) +# TextBox.OnExit property (Access) Sets or returns the value of the **On Exit** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnExit` +_expression_. `OnExit` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Exit** event occurs just before a control loses the focus to another cont The **OnExit** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Exit** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TextBox.OnGotFocus.md b/api/Access.TextBox.OnGotFocus.md index 3ed53e0bfea..391b0441346 100644 --- a/api/Access.TextBox.OnGotFocus.md +++ b/api/Access.TextBox.OnGotFocus.md @@ -1,5 +1,5 @@ --- -title: TextBox.OnGotFocus Property (Access) +title: TextBox.OnGotFocus property (Access) keywords: vbaac10.chm11120 f1_keywords: - vbaac10.chm11120 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OnGotFocus Property (Access) +# TextBox.OnGotFocus property (Access) Sets or returns the value of the **On Got Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnGotFocus` +_expression_. `OnGotFocus` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **GotFocus** event occurs when the object receives the focus. The **OnGotFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Got Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TextBox.OnKeyDown.md b/api/Access.TextBox.OnKeyDown.md index cdce70e95db..8855564da6f 100644 --- a/api/Access.TextBox.OnKeyDown.md +++ b/api/Access.TextBox.OnKeyDown.md @@ -1,5 +1,5 @@ --- -title: TextBox.OnKeyDown Property (Access) +title: TextBox.OnKeyDown property (Access) keywords: vbaac10.chm11127 f1_keywords: - vbaac10.chm11127 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OnKeyDown Property (Access) +# TextBox.OnKeyDown property (Access) Sets or returns the value of the **On Key Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyDown` +_expression_. `OnKeyDown` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyDown** event occurs when a user presses a key while a form or control The **OnKeyDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TextBox.OnKeyPress.md b/api/Access.TextBox.OnKeyPress.md index 36c2b9adbaf..fc72d6d012d 100644 --- a/api/Access.TextBox.OnKeyPress.md +++ b/api/Access.TextBox.OnKeyPress.md @@ -1,5 +1,5 @@ --- -title: TextBox.OnKeyPress Property (Access) +title: TextBox.OnKeyPress property (Access) keywords: vbaac10.chm11129 f1_keywords: - vbaac10.chm11129 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OnKeyPress Property (Access) +# TextBox.OnKeyPress property (Access) Sets or returns the value of the **On Key Press** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyPress` +_expression_. `OnKeyPress` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyPress** event occurs when a user presses a key while a form or control The **OnKeyPress** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Press** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TextBox.OnKeyUp.md b/api/Access.TextBox.OnKeyUp.md index db7ba53f803..abec7acb8e3 100644 --- a/api/Access.TextBox.OnKeyUp.md +++ b/api/Access.TextBox.OnKeyUp.md @@ -1,5 +1,5 @@ --- -title: TextBox.OnKeyUp Property (Access) +title: TextBox.OnKeyUp property (Access) keywords: vbaac10.chm11128 f1_keywords: - vbaac10.chm11128 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OnKeyUp Property (Access) +# TextBox.OnKeyUp property (Access) Sets or returns the value of the **On Key Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyUp` +_expression_. `OnKeyUp` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyUp** event occurs when a user presses a key while a form or control ha The **OnKeyUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TextBox.OnLostFocus.md b/api/Access.TextBox.OnLostFocus.md index 852e9a1ff7b..6e908048c0e 100644 --- a/api/Access.TextBox.OnLostFocus.md +++ b/api/Access.TextBox.OnLostFocus.md @@ -1,5 +1,5 @@ --- -title: TextBox.OnLostFocus Property (Access) +title: TextBox.OnLostFocus property (Access) keywords: vbaac10.chm11121 f1_keywords: - vbaac10.chm11121 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OnLostFocus Property (Access) +# TextBox.OnLostFocus property (Access) Sets or returns the value of the **On Lost Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnLostFocus` +_expression_. `OnLostFocus` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **LostFocus** event occurs when the object loses the focus. The **OnLostFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Lost Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TextBox.OnMouseDown.md b/api/Access.TextBox.OnMouseDown.md index cb85f0ea4bf..9698e49e1c4 100644 --- a/api/Access.TextBox.OnMouseDown.md +++ b/api/Access.TextBox.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: TextBox.OnMouseDown Property (Access) +title: TextBox.OnMouseDown property (Access) keywords: vbaac10.chm11124 f1_keywords: - vbaac10.chm11124 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OnMouseDown Property (Access) +# TextBox.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TextBox.OnMouseMove.md b/api/Access.TextBox.OnMouseMove.md index 17815c8adc1..539c25b8669 100644 --- a/api/Access.TextBox.OnMouseMove.md +++ b/api/Access.TextBox.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: TextBox.OnMouseMove Property (Access) +title: TextBox.OnMouseMove property (Access) keywords: vbaac10.chm11125 f1_keywords: - vbaac10.chm11125 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OnMouseMove Property (Access) +# TextBox.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TextBox.OnMouseUp.md b/api/Access.TextBox.OnMouseUp.md index 6f9ba13b5d8..563e4185fdf 100644 --- a/api/Access.TextBox.OnMouseUp.md +++ b/api/Access.TextBox.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: TextBox.OnMouseUp Property (Access) +title: TextBox.OnMouseUp property (Access) keywords: vbaac10.chm11126 f1_keywords: - vbaac10.chm11126 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OnMouseUp Property (Access) +# TextBox.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.TextBox.OnUndo.md b/api/Access.TextBox.OnUndo.md index 2b48e0a17d4..cff616fe515 100644 --- a/api/Access.TextBox.OnUndo.md +++ b/api/Access.TextBox.OnUndo.md @@ -1,5 +1,5 @@ --- -title: TextBox.OnUndo Property (Access) +title: TextBox.OnUndo property (Access) keywords: vbaac10.chm11146 f1_keywords: - vbaac10.chm11146 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.OnUndo Property (Access) +# TextBox.OnUndo property (Access) Returns or sets a **String** indicating which macro, event procedure, or user-defined function runs when the **Undo** event occurs. Read/write.. ## Syntax - _expression_. `OnUndo` +_expression_. `OnUndo` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Parent.md b/api/Access.TextBox.Parent.md index b6540bba851..be9566441e5 100644 --- a/api/Access.TextBox.Parent.md +++ b/api/Access.TextBox.Parent.md @@ -1,5 +1,5 @@ --- -title: TextBox.Parent Property (Access) +title: TextBox.Parent property (Access) keywords: vbaac10.chm11029 f1_keywords: - vbaac10.chm11029 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Parent Property (Access) +# TextBox.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## See also diff --git a/api/Access.TextBox.PostalAddress.md b/api/Access.TextBox.PostalAddress.md index 1e70c6295b5..619872911e8 100644 --- a/api/Access.TextBox.PostalAddress.md +++ b/api/Access.TextBox.PostalAddress.md @@ -1,5 +1,5 @@ --- -title: TextBox.PostalAddress Property (Access) +title: TextBox.PostalAddress property (Access) keywords: vbaac10.chm11050 f1_keywords: - vbaac10.chm11050 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.PostalAddress Property (Access) +# TextBox.PostalAddress property (Access) You can use the **PostalAddress Property** property to specify or determine the postal code and the Customer Barcode data corresponding to the address information displayed in a specified field/textbox. The PostalAddress Property wizard enables the setting of these properties. Read/write **String**. ## Syntax - _expression_. `PostalAddress` +_expression_. `PostalAddress` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Properties.md b/api/Access.TextBox.Properties.md index de5b117b5d9..35796003a19 100644 --- a/api/Access.TextBox.Properties.md +++ b/api/Access.TextBox.Properties.md @@ -1,5 +1,5 @@ --- -title: TextBox.Properties Property (Access) +title: TextBox.Properties property (Access) keywords: vbaac10.chm11032 f1_keywords: - vbaac10.chm11032 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Properties Property (Access) +# TextBox.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.ReadingOrder.md b/api/Access.TextBox.ReadingOrder.md index 438d3dbffcf..2778a807aa7 100644 --- a/api/Access.TextBox.ReadingOrder.md +++ b/api/Access.TextBox.ReadingOrder.md @@ -1,5 +1,5 @@ --- -title: TextBox.ReadingOrder Property (Access) +title: TextBox.ReadingOrder property (Access) keywords: vbaac10.chm11130 f1_keywords: - vbaac10.chm11130 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ReadingOrder Property (Access) +# TextBox.ReadingOrder property (Access) You can use the **ReadingOrder** property to specify or determine the reading order of words in text. Read/write **Byte**. ## Syntax - _expression_. `ReadingOrder` +_expression_. `ReadingOrder` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Requery.md b/api/Access.TextBox.Requery.md index 1d600405a23..1c9f47a1f25 100644 --- a/api/Access.TextBox.Requery.md +++ b/api/Access.TextBox.Requery.md @@ -1,5 +1,5 @@ --- -title: TextBox.Requery Method (Access) +title: TextBox.Requery method (Access) keywords: vbaac10.chm11034 f1_keywords: - vbaac10.chm11034 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Requery Method (Access) +# TextBox.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.RightMargin.md b/api/Access.TextBox.RightMargin.md index 14b551b08bb..095a9396061 100644 --- a/api/Access.TextBox.RightMargin.md +++ b/api/Access.TextBox.RightMargin.md @@ -1,5 +1,5 @@ --- -title: TextBox.RightMargin Property (Access) +title: TextBox.RightMargin property (Access) keywords: vbaac10.chm11141 f1_keywords: - vbaac10.chm11141 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.RightMargin Property (Access) +# TextBox.RightMargin property (Access) Along with the **TopMargin**, **Left Margin**, and **BottomMargin** properties, specifies the location of information displayed within text box control. Read/write **Integer**. ## Syntax - _expression_. `RightMargin` +_expression_. `RightMargin` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.RightPadding.md b/api/Access.TextBox.RightPadding.md index 62db0fdb6a3..0b13a5c4606 100644 --- a/api/Access.TextBox.RightPadding.md +++ b/api/Access.TextBox.RightPadding.md @@ -1,5 +1,5 @@ --- -title: TextBox.RightPadding Property (Access) +title: TextBox.RightPadding property (Access) keywords: vbaac10.chm11154 f1_keywords: - vbaac10.chm11154 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.RightPadding Property (Access) +# TextBox.RightPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## See also diff --git a/api/Access.TextBox.RunningSum.md b/api/Access.TextBox.RunningSum.md index 9f2a5cd7779..21793b69560 100644 --- a/api/Access.TextBox.RunningSum.md +++ b/api/Access.TextBox.RunningSum.md @@ -1,5 +1,5 @@ --- -title: TextBox.RunningSum Property (Access) +title: TextBox.RunningSum property (Access) keywords: vbaac10.chm11070 f1_keywords: - vbaac10.chm11070 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.RunningSum Property (Access) +# TextBox.RunningSum property (Access) You can use the **RunningSum** property to calculate record-by-record or group-by-group totals in a report. Read/write **Byte**. ## Syntax - _expression_. `RunningSum` +_expression_. `RunningSum` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.ScrollBarAlign.md b/api/Access.TextBox.ScrollBarAlign.md index eca33e0279a..a6656347cd9 100644 --- a/api/Access.TextBox.ScrollBarAlign.md +++ b/api/Access.TextBox.ScrollBarAlign.md @@ -1,5 +1,5 @@ --- -title: TextBox.ScrollBarAlign Property (Access) +title: TextBox.ScrollBarAlign property (Access) keywords: vbaac10.chm11133 f1_keywords: - vbaac10.chm11133 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ScrollBarAlign Property (Access) +# TextBox.ScrollBarAlign property (Access) You can use the **ScrollBarAlign** to specify or determine the alignment of a vertical scroll bar. Read/write **Byte**. ## Syntax - _expression_. `ScrollBarAlign` +_expression_. `ScrollBarAlign` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.ScrollBars.md b/api/Access.TextBox.ScrollBars.md index a9b48337607..68a2c821230 100644 --- a/api/Access.TextBox.ScrollBars.md +++ b/api/Access.TextBox.ScrollBars.md @@ -1,5 +1,5 @@ --- -title: TextBox.ScrollBars Property (Access) +title: TextBox.ScrollBars property (Access) keywords: vbaac10.chm11066 f1_keywords: - vbaac10.chm11066 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ScrollBars Property (Access) +# TextBox.ScrollBars property (Access) You can use the **ScrollBars** property to specify whether scroll bars appear on a text box control. Read/write **Byte**. ## Syntax - _expression_. `ScrollBars` +_expression_. `ScrollBars` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Section.md b/api/Access.TextBox.Section.md index 67623a7c05f..5b5801adf3f 100644 --- a/api/Access.TextBox.Section.md +++ b/api/Access.TextBox.Section.md @@ -1,5 +1,5 @@ --- -title: TextBox.Section Property (Access) +title: TextBox.Section property (Access) keywords: vbaac10.chm11103 f1_keywords: - vbaac10.chm11103 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Section Property (Access) +# TextBox.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.SelLength.md b/api/Access.TextBox.SelLength.md index 1a44c727df4..f83f891340e 100644 --- a/api/Access.TextBox.SelLength.md +++ b/api/Access.TextBox.SelLength.md @@ -1,5 +1,5 @@ --- -title: TextBox.SelLength Property (Access) +title: TextBox.SelLength property (Access) keywords: vbaac10.chm11109 f1_keywords: - vbaac10.chm11109 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.SelLength Property (Access) +# TextBox.SelLength property (Access) The **SelLength** property specifies or determines the number of characters selected in a text box. Read/write **Integer**. ## Syntax - _expression_. `SelLength` +_expression_. `SelLength` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.SelStart.md b/api/Access.TextBox.SelStart.md index fa91451d469..082a11d0b2b 100644 --- a/api/Access.TextBox.SelStart.md +++ b/api/Access.TextBox.SelStart.md @@ -1,5 +1,5 @@ --- -title: TextBox.SelStart Property (Access) +title: TextBox.SelStart property (Access) keywords: vbaac10.chm11108 f1_keywords: - vbaac10.chm11108 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.SelStart Property (Access) +# TextBox.SelStart property (Access) The **SelStart** property specifies or determines the starting point of the selected text or the position of the insertion point if no text is selected. Read/write **Integer**. ## Syntax - _expression_. `SelStart` +_expression_. `SelStart` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.SelText.md b/api/Access.TextBox.SelText.md index 0d3db7cb6fa..24ed8f77d86 100644 --- a/api/Access.TextBox.SelText.md +++ b/api/Access.TextBox.SelText.md @@ -1,5 +1,5 @@ --- -title: TextBox.SelText Property (Access) +title: TextBox.SelText property (Access) keywords: vbaac10.chm11107 f1_keywords: - vbaac10.chm11107 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.SelText Property (Access) +# TextBox.SelText property (Access) The **SelText** property returns a string containing the selected text. Read/write **String**. ## Syntax - _expression_. `SelText` +_expression_. `SelText` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.SetFocus.md b/api/Access.TextBox.SetFocus.md index b1bc927a151..8b05b92677d 100644 --- a/api/Access.TextBox.SetFocus.md +++ b/api/Access.TextBox.SetFocus.md @@ -1,5 +1,5 @@ --- -title: TextBox.SetFocus Method (Access) +title: TextBox.SetFocus method (Access) keywords: vbaac10.chm11035 f1_keywords: - vbaac10.chm11035 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# TextBox.SetFocus Method (Access) +# TextBox.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.TextBox.ShortcutMenuBar.md b/api/Access.TextBox.ShortcutMenuBar.md index 875c8e32852..aad0d3b54ec 100644 --- a/api/Access.TextBox.ShortcutMenuBar.md +++ b/api/Access.TextBox.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: TextBox.ShortcutMenuBar Property (Access) +title: TextBox.ShortcutMenuBar property (Access) keywords: vbaac10.chm11092 f1_keywords: - vbaac10.chm11092 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ShortcutMenuBar Property (Access) +# TextBox.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.ShowDatePicker.md b/api/Access.TextBox.ShowDatePicker.md index 586eca3791b..5de233c0fd3 100644 --- a/api/Access.TextBox.ShowDatePicker.md +++ b/api/Access.TextBox.ShowDatePicker.md @@ -1,5 +1,5 @@ --- -title: TextBox.ShowDatePicker Property (Access) +title: TextBox.ShowDatePicker property (Access) keywords: vbaac10.chm14293 f1_keywords: - vbaac10.chm14293 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ShowDatePicker Property (Access) +# TextBox.ShowDatePicker property (Access) Gets or sets whether the date picker control is displayed for the specified text box. Read/write **Integer**. ## Syntax - _expression_. `ShowDatePicker` +_expression_. `ShowDatePicker` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.SizeToFit.md b/api/Access.TextBox.SizeToFit.md index b98f311cfbd..e5c5ebf55bf 100644 --- a/api/Access.TextBox.SizeToFit.md +++ b/api/Access.TextBox.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: TextBox.SizeToFit Method (Access) +title: TextBox.SizeToFit method (Access) keywords: vbaac10.chm11033 f1_keywords: - vbaac10.chm11033 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.SizeToFit Method (Access) +# TextBox.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.SmartTags.md b/api/Access.TextBox.SmartTags.md index 0f38ce346a3..22da4546426 100644 --- a/api/Access.TextBox.SmartTags.md +++ b/api/Access.TextBox.SmartTags.md @@ -1,5 +1,5 @@ --- -title: TextBox.SmartTags Property (Access) +title: TextBox.SmartTags property (Access) keywords: vbaac10.chm11148 f1_keywords: - vbaac10.chm11148 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.SmartTags Property (Access) +# TextBox.SmartTags property (Access) Returns a **[SmartTags](Access.SmartTags.md)** collection that represents the collection of smart tags that have been added to a control. . ## Syntax - _expression_. `SmartTags` +_expression_. `SmartTags` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.SpecialEffect.md b/api/Access.TextBox.SpecialEffect.md index b6b882e2f68..579330c4f75 100644 --- a/api/Access.TextBox.SpecialEffect.md +++ b/api/Access.TextBox.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: TextBox.SpecialEffect Property (Access) +title: TextBox.SpecialEffect property (Access) keywords: vbaac10.chm11077 f1_keywords: - vbaac10.chm11077 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.SpecialEffect Property (Access) +# TextBox.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.StatusBarText.md b/api/Access.TextBox.StatusBarText.md index 775249d9591..3498c6c842b 100644 --- a/api/Access.TextBox.StatusBarText.md +++ b/api/Access.TextBox.StatusBarText.md @@ -1,5 +1,5 @@ --- -title: TextBox.StatusBarText Property (Access) +title: TextBox.StatusBarText property (Access) keywords: vbaac10.chm11053 f1_keywords: - vbaac10.chm11053 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.StatusBarText Property (Access) +# TextBox.StatusBarText property (Access) You can use the **StatusBarText** property to specify the text that is displayed in the status bar when a control is selected. Read/write **String**. ## Syntax - _expression_. `StatusBarText` +_expression_. `StatusBarText` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.TabIndex.md b/api/Access.TextBox.TabIndex.md index 447f01c9bb1..b05610f5807 100644 --- a/api/Access.TextBox.TabIndex.md +++ b/api/Access.TextBox.TabIndex.md @@ -1,5 +1,5 @@ --- -title: TextBox.TabIndex Property (Access) +title: TextBox.TabIndex property (Access) keywords: vbaac10.chm11065 f1_keywords: - vbaac10.chm11065 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.TabIndex Property (Access) +# TextBox.TabIndex property (Access) You can use the **TabIndex** property to specify a control's place in the tab order on a form or report. Read/write **Integer**. ## Syntax - _expression_. `TabIndex` +_expression_. `TabIndex` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.TabStop.md b/api/Access.TextBox.TabStop.md index 54d9e65e0d9..e4540c4b4a5 100644 --- a/api/Access.TextBox.TabStop.md +++ b/api/Access.TextBox.TabStop.md @@ -1,5 +1,5 @@ --- -title: TextBox.TabStop Property (Access) +title: TextBox.TabStop property (Access) keywords: vbaac10.chm11064 f1_keywords: - vbaac10.chm11064 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.TabStop Property (Access) +# TextBox.TabStop property (Access) You can use the **TabStop** property to specify whether you can use the TAB key to move the focus to a control. Read/write **Boolean**. ## Syntax - _expression_. `TabStop` +_expression_. `TabStop` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Tag.md b/api/Access.TextBox.Tag.md index 0e4a25aa93f..fc5be7c0ba4 100644 --- a/api/Access.TextBox.Tag.md +++ b/api/Access.TextBox.Tag.md @@ -1,5 +1,5 @@ --- -title: TextBox.Tag Property (Access) +title: TextBox.Tag property (Access) keywords: vbaac10.chm11105 f1_keywords: - vbaac10.chm11105 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Tag Property (Access) +# TextBox.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Text.md b/api/Access.TextBox.Text.md index 9986021f633..64f0e4e8f0b 100644 --- a/api/Access.TextBox.Text.md +++ b/api/Access.TextBox.Text.md @@ -1,5 +1,5 @@ --- -title: TextBox.Text Property (Access) +title: TextBox.Text property (Access) keywords: vbaac10.chm11106 f1_keywords: - vbaac10.chm11106 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Text Property (Access) +# TextBox.Text property (Access) You can use the **Text** property to set or return the text **Value** contained in a text box. Read/write **String**. ## Syntax - _expression_. `Text` +_expression_. `Text` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.TextAlign.md b/api/Access.TextBox.TextAlign.md index 7c4894a71f9..4ac3bc40061 100644 --- a/api/Access.TextBox.TextAlign.md +++ b/api/Access.TextBox.TextAlign.md @@ -1,5 +1,5 @@ --- -title: TextBox.TextAlign Property (Access) +title: TextBox.TextAlign property (Access) keywords: vbaac10.chm11090 f1_keywords: - vbaac10.chm11090 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.TextAlign Property (Access) +# TextBox.TextAlign property (Access) The **TextAlign** property specifies the text alignment in new controls. Read/write **Byte**. ## Syntax - _expression_. `TextAlign` +_expression_. `TextAlign` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.TextFormat.md b/api/Access.TextBox.TextFormat.md index 84da82c4f17..8798bfd6df8 100644 --- a/api/Access.TextBox.TextFormat.md +++ b/api/Access.TextBox.TextFormat.md @@ -1,5 +1,5 @@ --- -title: TextBox.TextFormat Property (Access) +title: TextBox.TextFormat property (Access) keywords: vbaac10.chm11151,vbaac10.chm5650 f1_keywords: - vbaac10.chm11151,vbaac10.chm5650 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.TextFormat Property (Access) +# TextBox.TextFormat property (Access) Gets or sets whether rich text is displayed in the specified text box. Read/write [AcTextFormat](Access.AcTextFormat.md). ## Syntax - _expression_. `TextFormat` +_expression_. `TextFormat` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## See also diff --git a/api/Access.TextBox.ThemeFontIndex.md b/api/Access.TextBox.ThemeFontIndex.md index 81005250c78..622730245b4 100644 --- a/api/Access.TextBox.ThemeFontIndex.md +++ b/api/Access.TextBox.ThemeFontIndex.md @@ -1,5 +1,5 @@ --- -title: TextBox.ThemeFontIndex Property (Access) +title: TextBox.ThemeFontIndex property (Access) keywords: vbaac10.chm14610 f1_keywords: - vbaac10.chm14610 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ThemeFontIndex Property (Access) +# TextBox.ThemeFontIndex property (Access) Gets or sets the font index that represents a font in the applied theme associated with the **FontName** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `ThemeFontIndex` +_expression_. `ThemeFontIndex` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Top.md b/api/Access.TextBox.Top.md index a6d4475b814..1973c0231bf 100644 --- a/api/Access.TextBox.Top.md +++ b/api/Access.TextBox.Top.md @@ -1,5 +1,5 @@ --- -title: TextBox.Top Property (Access) +title: TextBox.Top property (Access) keywords: vbaac10.chm11072 f1_keywords: - vbaac10.chm11072 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Top Property (Access) +# TextBox.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.TopMargin.md b/api/Access.TextBox.TopMargin.md index ddccc9a579a..71101a3888b 100644 --- a/api/Access.TextBox.TopMargin.md +++ b/api/Access.TextBox.TopMargin.md @@ -1,5 +1,5 @@ --- -title: TextBox.TopMargin Property (Access) +title: TextBox.TopMargin property (Access) keywords: vbaac10.chm11139 f1_keywords: - vbaac10.chm11139 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.TopMargin Property (Access) +# TextBox.TopMargin property (Access) Along with the **LeftMargin**, **RightMargin**, and **BottomMargin** properties, specifies the location of information displayed within a text box control. Read/write **Integer**. ## Syntax - _expression_. `TopMargin` +_expression_. `TopMargin` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.TopPadding.md b/api/Access.TextBox.TopPadding.md index f1ce5ed68c6..f373cf51bc3 100644 --- a/api/Access.TextBox.TopPadding.md +++ b/api/Access.TextBox.TopPadding.md @@ -1,5 +1,5 @@ --- -title: TextBox.TopPadding Property (Access) +title: TextBox.TopPadding property (Access) keywords: vbaac10.chm11153 f1_keywords: - vbaac10.chm11153 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.TopPadding Property (Access) +# TextBox.TopPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## See also diff --git a/api/Access.TextBox.Undo(even).md b/api/Access.TextBox.Undo(even).md index 0012843ab3b..d4fc2caeb37 100644 --- a/api/Access.TextBox.Undo(even).md +++ b/api/Access.TextBox.Undo(even).md @@ -1,5 +1,5 @@ --- -title: TextBox.Undo Event (Access) +title: TextBox.Undo event (Access) keywords: vbaac10.chm14210 f1_keywords: - vbaac10.chm14210 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# TextBox.Undo Event (Access) +# TextBox.Undo event (Access) Occurs when the user undoes a change. ## Syntax - _expression_. `Undo`( ` _Cancel_`, ) +_expression_. `Undo`( ` _Cancel_`, ) - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|Set this argument to **True** to cancel the undo operation and leave the control or form in its edited state.| diff --git a/api/Access.TextBox.Undo(method).md b/api/Access.TextBox.Undo(method).md index ae2b48e9aa8..2307348c773 100644 --- a/api/Access.TextBox.Undo(method).md +++ b/api/Access.TextBox.Undo(method).md @@ -1,5 +1,5 @@ --- -title: TextBox.Undo Method (Access) +title: TextBox.Undo method (Access) keywords: vbaac10.chm11030 f1_keywords: - vbaac10.chm11030 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Undo Method (Access) +# TextBox.Undo method (Access) You can use the **Undo** method to reset a control or form when its value has been changed. ## Syntax - _expression_. `Undo` +_expression_. `Undo` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.ValidationRule.md b/api/Access.TextBox.ValidationRule.md index b8c5542e2c2..1a36b5c8405 100644 --- a/api/Access.TextBox.ValidationRule.md +++ b/api/Access.TextBox.ValidationRule.md @@ -1,5 +1,5 @@ --- -title: TextBox.ValidationRule Property (Access) +title: TextBox.ValidationRule property (Access) keywords: vbaac10.chm11051 f1_keywords: - vbaac10.chm11051 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ValidationRule Property (Access) +# TextBox.ValidationRule property (Access) You can use the **ValidationRule** property to specify requirements for data entered into a record, field, or control. When data is entered that violates the **ValidationRule** setting, you can use the **ValidationText** property to specify the message to be displayed to the user. Read/write **String**. ## Syntax - _expression_. `ValidationRule` +_expression_. `ValidationRule` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.ValidationText.md b/api/Access.TextBox.ValidationText.md index b3119d14c0a..5a486260e66 100644 --- a/api/Access.TextBox.ValidationText.md +++ b/api/Access.TextBox.ValidationText.md @@ -1,5 +1,5 @@ --- -title: TextBox.ValidationText Property (Access) +title: TextBox.ValidationText property (Access) keywords: vbaac10.chm11052 f1_keywords: - vbaac10.chm11052 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.ValidationText Property (Access) +# TextBox.ValidationText property (Access) Use the **ValidationText** property to specify a message to be displayed to the user when data is entered that violates a **ValidationRule** setting for a record, field, or control. Read/write **String**. ## Syntax - _expression_. `ValidationText` +_expression_. `ValidationText` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Value.md b/api/Access.TextBox.Value.md index bfdc6d1851c..90aa1e0453d 100644 --- a/api/Access.TextBox.Value.md +++ b/api/Access.TextBox.Value.md @@ -1,5 +1,5 @@ --- -title: TextBox.Value Property (Access) +title: TextBox.Value property (Access) keywords: vbaac10.chm11039 f1_keywords: - vbaac10.chm11039 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Value Property (Access) +# TextBox.Value property (Access) Determines or specifies the text in the text box. Read/write **Variant**. ## Syntax - _expression_. `Value` +_expression_. `Value` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Vertical.md b/api/Access.TextBox.Vertical.md index 36aa3088042..177f89f727c 100644 --- a/api/Access.TextBox.Vertical.md +++ b/api/Access.TextBox.Vertical.md @@ -1,5 +1,5 @@ --- -title: TextBox.Vertical Property (Access) +title: TextBox.Vertical property (Access) keywords: vbaac10.chm11058 f1_keywords: - vbaac10.chm11058 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Vertical Property (Access) +# TextBox.Vertical property (Access) You can use the **Vertical** property to set a form control for vertical display and editing or set a report control for vertical display and printing. Read/write **Boolean**. ## Syntax - _expression_. `Vertical` +_expression_. `Vertical` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.VerticalAnchor.md b/api/Access.TextBox.VerticalAnchor.md index 17c2460e709..aa44085c895 100644 --- a/api/Access.TextBox.VerticalAnchor.md +++ b/api/Access.TextBox.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: TextBox.VerticalAnchor Property (Access) +title: TextBox.VerticalAnchor property (Access) keywords: vbaac10.chm11166 f1_keywords: - vbaac10.chm11166 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.VerticalAnchor Property (Access) +# TextBox.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified text box is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Visible.md b/api/Access.TextBox.Visible.md index 22b08355302..567e9ea55dc 100644 --- a/api/Access.TextBox.Visible.md +++ b/api/Access.TextBox.Visible.md @@ -1,5 +1,5 @@ --- -title: TextBox.Visible Property (Access) +title: TextBox.Visible property (Access) keywords: vbaac10.chm11056 f1_keywords: - vbaac10.chm11056 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Visible Property (Access) +# TextBox.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.Width.md b/api/Access.TextBox.Width.md index 7828d193d20..de49d25503a 100644 --- a/api/Access.TextBox.Width.md +++ b/api/Access.TextBox.Width.md @@ -1,5 +1,5 @@ --- -title: TextBox.Width Property (Access) +title: TextBox.Width property (Access) keywords: vbaac10.chm11073 f1_keywords: - vbaac10.chm11073 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# TextBox.Width Property (Access) +# TextBox.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [TextBox](Access.TextBox.md) object. +_expression_ A variable that represents a [TextBox](Access.TextBox.md) object. ## Remarks diff --git a/api/Access.TextBox.md b/api/Access.TextBox.md index bf297c9ffb0..50500b71e3b 100644 --- a/api/Access.TextBox.md +++ b/api/Access.TextBox.md @@ -1,5 +1,5 @@ --- -title: TextBox Object (Access) +title: TextBox object (Access) keywords: vbaac10.chm11201 f1_keywords: - vbaac10.chm11201 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# TextBox Object (Access) +# TextBox object (Access) This object represents a text box control on a form or report. Text boxes are used to either display data from a record source, or to display the results of a calculation, or to accept input from a user. diff --git a/api/Access.ToggleButton.AddColon.md b/api/Access.ToggleButton.AddColon.md index a32877c3bce..df0490b109c 100644 --- a/api/Access.ToggleButton.AddColon.md +++ b/api/Access.ToggleButton.AddColon.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.AddColon Property (Access) +title: ToggleButton.AddColon property (Access) keywords: vbaac10.chm11737 f1_keywords: - vbaac10.chm11737 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.AddColon Property (Access) +# ToggleButton.AddColon property (Access) Specifies whether a colon follows the text in labels for new controls. Read/write **Boolean**. ## Syntax - _expression_. `AddColon` +_expression_. `AddColon` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## See also diff --git a/api/Access.ToggleButton.AfterUpdate(even).md b/api/Access.ToggleButton.AfterUpdate(even).md index 7e49c319851..a5c19e8c007 100644 --- a/api/Access.ToggleButton.AfterUpdate(even).md +++ b/api/Access.ToggleButton.AfterUpdate(even).md @@ -1,5 +1,5 @@ --- -title: ToggleButton.AfterUpdate Event (Access) +title: ToggleButton.AfterUpdate event (Access) keywords: vbaac10.chm14149 f1_keywords: - vbaac10.chm14149 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.AfterUpdate Event (Access) +# ToggleButton.AfterUpdate event (Access) The **AfterUpdate** event occurs after changed data in a control or record is updated. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.AfterUpdate(property).md b/api/Access.ToggleButton.AfterUpdate(property).md index 69fe5565cef..cbbef055b2c 100644 --- a/api/Access.ToggleButton.AfterUpdate(property).md +++ b/api/Access.ToggleButton.AfterUpdate(property).md @@ -1,5 +1,5 @@ --- -title: ToggleButton.AfterUpdate Property (Access) +title: ToggleButton.AfterUpdate property (Access) keywords: vbaac10.chm11748 f1_keywords: - vbaac10.chm11748 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.AfterUpdate Property (Access) +# ToggleButton.AfterUpdate property (Access) Returns or sets which macro, event procedure, or user-defined function runs when the **AfterUpdate** event occurs. Read/write **String**. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Application.md b/api/Access.ToggleButton.Application.md index 4e13905a119..9e491a04981 100644 --- a/api/Access.ToggleButton.Application.md +++ b/api/Access.ToggleButton.Application.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Application Property (Access) +title: ToggleButton.Application property (Access) keywords: vbaac10.chm11687 f1_keywords: - vbaac10.chm11687 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Application Property (Access) +# ToggleButton.Application property (Access) You can use the **Application** property to access the active Microsoft Access **[Application](Access.Application.md)** object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.AutoLabel.md b/api/Access.ToggleButton.AutoLabel.md index ffdbaa49fd6..58432d7238a 100644 --- a/api/Access.ToggleButton.AutoLabel.md +++ b/api/Access.ToggleButton.AutoLabel.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.AutoLabel Property (Access) +title: ToggleButton.AutoLabel property (Access) keywords: vbaac10.chm11736 f1_keywords: - vbaac10.chm11736 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.AutoLabel Property (Access) +# ToggleButton.AutoLabel property (Access) Specifies whether labels are automatically created and attached to new controls. Read/write **Boolean**. ## Syntax - _expression_. `AutoLabel` +_expression_. `AutoLabel` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## See also diff --git a/api/Access.ToggleButton.BackColor.md b/api/Access.ToggleButton.BackColor.md index fb2e91cc649..a2153b0d01e 100644 --- a/api/Access.ToggleButton.BackColor.md +++ b/api/Access.ToggleButton.BackColor.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.BackColor Property (Access) +title: ToggleButton.BackColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.BackColor Property (Access) +# ToggleButton.BackColor property (Access) Gets or sets the interior color of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackColor` +_expression_. `BackColor` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.BackShade.md b/api/Access.ToggleButton.BackShade.md index 40bdc417873..15f99affb15 100644 --- a/api/Access.ToggleButton.BackShade.md +++ b/api/Access.ToggleButton.BackShade.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.BackShade Property (Access) +title: ToggleButton.BackShade property (Access) keywords: vbaac10.chm14633 f1_keywords: - vbaac10.chm14633 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.BackShade Property (Access) +# ToggleButton.BackShade property (Access) Gets or sets the shade applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackShade` +_expression_. `BackShade` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.BackThemeColorIndex.md b/api/Access.ToggleButton.BackThemeColorIndex.md index 170c2e28a25..4af4e622b09 100644 --- a/api/Access.ToggleButton.BackThemeColorIndex.md +++ b/api/Access.ToggleButton.BackThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.BackThemeColorIndex Property (Access) +title: ToggleButton.BackThemeColorIndex property (Access) keywords: vbaac10.chm14631 f1_keywords: - vbaac10.chm14631 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.BackThemeColorIndex Property (Access) +# ToggleButton.BackThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BackColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BackThemeColorIndex` +_expression_. `BackThemeColorIndex` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.BackTint.md b/api/Access.ToggleButton.BackTint.md index fd787e858d7..213ef23d8d3 100644 --- a/api/Access.ToggleButton.BackTint.md +++ b/api/Access.ToggleButton.BackTint.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.BackTint Property (Access) +title: ToggleButton.BackTint property (Access) keywords: vbaac10.chm14632 f1_keywords: - vbaac10.chm14632 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.BackTint Property (Access) +# ToggleButton.BackTint property (Access) Gets or sets the tint that is applied to the theme color in the **BackColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BackTint` +_expression_. `BackTint` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.BeforeUpdate(even).md b/api/Access.ToggleButton.BeforeUpdate(even).md index 3803db336d9..c657d71c21d 100644 --- a/api/Access.ToggleButton.BeforeUpdate(even).md +++ b/api/Access.ToggleButton.BeforeUpdate(even).md @@ -1,5 +1,5 @@ --- -title: ToggleButton.BeforeUpdate Event (Access) +title: ToggleButton.BeforeUpdate event (Access) keywords: vbaac10.chm14148 f1_keywords: - vbaac10.chm14148 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ToggleButton.BeforeUpdate Event (Access) +# ToggleButton.BeforeUpdate event (Access) The **BeforeUpdate** event occurs before changed data in a control or record is updated. ## Syntax - _expression_. `BeforeUpdate`( ` _Cancel_` ) +_expression_. `BeforeUpdate`( ` _Cancel_` ) - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **BeforeUpdate** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **BeforeUpdate** event.| diff --git a/api/Access.ToggleButton.BeforeUpdate(property).md b/api/Access.ToggleButton.BeforeUpdate(property).md index fb9594face6..97ea924305e 100644 --- a/api/Access.ToggleButton.BeforeUpdate(property).md +++ b/api/Access.ToggleButton.BeforeUpdate(property).md @@ -1,5 +1,5 @@ --- -title: ToggleButton.BeforeUpdate Property (Access) +title: ToggleButton.BeforeUpdate property (Access) keywords: vbaac10.chm11747 f1_keywords: - vbaac10.chm11747 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.BeforeUpdate Property (Access) +# ToggleButton.BeforeUpdate property (Access) Returns or sets which macro, event procedure, or user-defined function runs when the **BeforeUpdate** event occurs. Read/write **String**. ## Syntax - _expression_. `BeforeUpdate` +_expression_. `BeforeUpdate` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Bevel.md b/api/Access.ToggleButton.Bevel.md index e5ede21cab6..c324061f227 100644 --- a/api/Access.ToggleButton.Bevel.md +++ b/api/Access.ToggleButton.Bevel.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Bevel Property (Access) +title: ToggleButton.Bevel property (Access) keywords: vbaac10.chm14629 f1_keywords: - vbaac10.chm14629 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Bevel Property (Access) +# ToggleButton.Bevel property (Access) Gets or sets the bevel effect applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `Bevel` +_expression_. `Bevel` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.BorderColor.md b/api/Access.ToggleButton.BorderColor.md index e91a2a8a7c6..ee6e4aec7ac 100644 --- a/api/Access.ToggleButton.BorderColor.md +++ b/api/Access.ToggleButton.BorderColor.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.BorderColor Property (Access) +title: ToggleButton.BorderColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.BorderColor Property (Access) +# ToggleButton.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.BorderShade.md b/api/Access.ToggleButton.BorderShade.md index dc6716ff855..eaa56305fec 100644 --- a/api/Access.ToggleButton.BorderShade.md +++ b/api/Access.ToggleButton.BorderShade.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.BorderShade Property (Access) +title: ToggleButton.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.BorderShade Property (Access) +# ToggleButton.BorderShade property (Access) Gets or sets the shade that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.BorderStyle.md b/api/Access.ToggleButton.BorderStyle.md index ccb44c849d4..5f0afd22a27 100644 --- a/api/Access.ToggleButton.BorderStyle.md +++ b/api/Access.ToggleButton.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.BorderStyle Property (Access) +title: ToggleButton.BorderStyle property (Access) keywords: vbaac10.chm10204 f1_keywords: - vbaac10.chm10204 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.BorderStyle Property (Access) +# ToggleButton.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.BorderThemeColorIndex.md b/api/Access.ToggleButton.BorderThemeColorIndex.md index 4aa819e633f..82ee9a67da0 100644 --- a/api/Access.ToggleButton.BorderThemeColorIndex.md +++ b/api/Access.ToggleButton.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.BorderThemeColorIndex Property (Access) +title: ToggleButton.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.BorderThemeColorIndex Property (Access) +# ToggleButton.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.BorderTint.md b/api/Access.ToggleButton.BorderTint.md index b11590e927e..5245448ed42 100644 --- a/api/Access.ToggleButton.BorderTint.md +++ b/api/Access.ToggleButton.BorderTint.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.BorderTint Property (Access) +title: ToggleButton.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.BorderTint Property (Access) +# ToggleButton.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.BorderWidth.md b/api/Access.ToggleButton.BorderWidth.md index bfad418ed4c..6beed5122cf 100644 --- a/api/Access.ToggleButton.BorderWidth.md +++ b/api/Access.ToggleButton.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.BorderWidth Property (Access) +title: ToggleButton.BorderWidth property (Access) keywords: vbaac10.chm10207 f1_keywords: - vbaac10.chm10207 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.BorderWidth Property (Access) +# ToggleButton.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.BottomPadding.md b/api/Access.ToggleButton.BottomPadding.md index 99f07c3fef7..fc9a01b3f10 100644 --- a/api/Access.ToggleButton.BottomPadding.md +++ b/api/Access.ToggleButton.BottomPadding.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.BottomPadding Property (Access) +title: ToggleButton.BottomPadding property (Access) keywords: vbaac10.chm11783 f1_keywords: - vbaac10.chm11783 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.BottomPadding Property (Access) +# ToggleButton.BottomPadding property (Access) Gets or sets the amount of space (in inches) between the toggle button and its bottom gridline. Read/write **Integer**. ## Syntax - _expression_. `BottomPadding` +_expression_. `BottomPadding` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## See also diff --git a/api/Access.ToggleButton.Caption.md b/api/Access.ToggleButton.Caption.md index 19b90e373ff..674d474d70c 100644 --- a/api/Access.ToggleButton.Caption.md +++ b/api/Access.ToggleButton.Caption.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Caption Property (Access) +title: ToggleButton.Caption property (Access) keywords: vbaac10.chm11701 f1_keywords: - vbaac10.chm11701 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Caption Property (Access) +# ToggleButton.Caption property (Access) Gets or sets the text that appears in the control. Read/write **String**. ## Syntax - _expression_. `Caption` +_expression_. `Caption` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Click.md b/api/Access.ToggleButton.Click.md index 739966fc8f1..851d960ed72 100644 --- a/api/Access.ToggleButton.Click.md +++ b/api/Access.ToggleButton.Click.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Click Event (Access) +title: ToggleButton.Click event (Access) keywords: vbaac10.chm14147 f1_keywords: - vbaac10.chm14147 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Click Event (Access) +# ToggleButton.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.ColumnHidden.md b/api/Access.ToggleButton.ColumnHidden.md index 18e3450e591..0d0318e5148 100644 --- a/api/Access.ToggleButton.ColumnHidden.md +++ b/api/Access.ToggleButton.ColumnHidden.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.ColumnHidden Property (Access) +title: ToggleButton.ColumnHidden property (Access) keywords: vbaac10.chm11735 f1_keywords: - vbaac10.chm11735 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.ColumnHidden Property (Access) +# ToggleButton.ColumnHidden property (Access) You can use the **ColumnHidden** property to show or hide a specified column in Datasheet view. Read/write **Boolean**. ## Syntax - _expression_. `ColumnHidden` +_expression_. `ColumnHidden` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.ColumnOrder.md b/api/Access.ToggleButton.ColumnOrder.md index 760be101498..6992da439a9 100644 --- a/api/Access.ToggleButton.ColumnOrder.md +++ b/api/Access.ToggleButton.ColumnOrder.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.ColumnOrder Property (Access) +title: ToggleButton.ColumnOrder property (Access) keywords: vbaac10.chm11734 f1_keywords: - vbaac10.chm11734 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.ColumnOrder Property (Access) +# ToggleButton.ColumnOrder property (Access) You can use the **ColumnOrder** property to specify the order of the columns in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `ColumnOrder` +_expression_. `ColumnOrder` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.ColumnWidth.md b/api/Access.ToggleButton.ColumnWidth.md index c7422cbf300..59124054c8c 100644 --- a/api/Access.ToggleButton.ColumnWidth.md +++ b/api/Access.ToggleButton.ColumnWidth.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.ColumnWidth Property (Access) +title: ToggleButton.ColumnWidth property (Access) keywords: vbaac10.chm11733 f1_keywords: - vbaac10.chm11733 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.ColumnWidth Property (Access) +# ToggleButton.ColumnWidth property (Access) You can use the **ColumnWidth** property to specify the width of a column in Datasheet view. Read/write **Integer**. ## Syntax - _expression_. `ColumnWidth` +_expression_. `ColumnWidth` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.ControlSource.md b/api/Access.ToggleButton.ControlSource.md index 48b3621aacb..4af19b9311e 100644 --- a/api/Access.ToggleButton.ControlSource.md +++ b/api/Access.ToggleButton.ControlSource.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.ControlSource Property (Access) +title: ToggleButton.ControlSource property (Access) keywords: vbaac10.chm11700 f1_keywords: - vbaac10.chm11700 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.ControlSource Property (Access) +# ToggleButton.ControlSource property (Access) You can use the **ControlSource** property to specify what data appears in a control. You can display and edit data bound to a field in a table, query, or SQL statement. You can also display the result of an expression. Read/write **String**. ## Syntax - _expression_. `ControlSource` +_expression_. `ControlSource` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.ControlTipText.md b/api/Access.ToggleButton.ControlTipText.md index 5ee876d79e9..43b2415fdd1 100644 --- a/api/Access.ToggleButton.ControlTipText.md +++ b/api/Access.ToggleButton.ControlTipText.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.ControlTipText Property (Access) +title: ToggleButton.ControlTipText property (Access) keywords: vbaac10.chm11731 f1_keywords: - vbaac10.chm11731 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.ControlTipText Property (Access) +# ToggleButton.ControlTipText property (Access) You can use the **ControlTipText** property to specify the text that appears in a ScreenTip when you hold the mouse pointer over a control. Read/write **String**. ## Syntax - _expression_. `ControlTipText` +_expression_. `ControlTipText` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.ControlType.md b/api/Access.ToggleButton.ControlType.md index 553ab93b802..29afa21f830 100644 --- a/api/Access.ToggleButton.ControlType.md +++ b/api/Access.ToggleButton.ControlType.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.ControlType Property (Access) +title: ToggleButton.ControlType property (Access) keywords: vbaac10.chm11699 f1_keywords: - vbaac10.chm11699 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.ControlType Property (Access) +# ToggleButton.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Controls.md b/api/Access.ToggleButton.Controls.md index 290ef960e93..92d4d19deca 100644 --- a/api/Access.ToggleButton.Controls.md +++ b/api/Access.ToggleButton.Controls.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Controls Property (Access) +title: ToggleButton.Controls property (Access) keywords: vbaac10.chm11695 f1_keywords: - vbaac10.chm11695 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Controls Property (Access) +# ToggleButton.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.DblClick.md b/api/Access.ToggleButton.DblClick.md index 50ca9b4fb41..399e51bec72 100644 --- a/api/Access.ToggleButton.DblClick.md +++ b/api/Access.ToggleButton.DblClick.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.DblClick Event (Access) +title: ToggleButton.DblClick event (Access) keywords: vbaac10.chm14154 f1_keywords: - vbaac10.chm14154 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ToggleButton.DblClick Event (Access) +# ToggleButton.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_` ) +_expression_. `DblClick`( ` _Cancel_` ) - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|The setting determines if the **DblClick** event occurs. Setting the _Cancel_ argument to **True** (?1) cancels the **DblClick** event.| diff --git a/api/Access.ToggleButton.DefaultValue.md b/api/Access.ToggleButton.DefaultValue.md index 8da643fa119..1c4ccf77d4d 100644 --- a/api/Access.ToggleButton.DefaultValue.md +++ b/api/Access.ToggleButton.DefaultValue.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.DefaultValue Property (Access) +title: ToggleButton.DefaultValue property (Access) keywords: vbaac10.chm11706 f1_keywords: - vbaac10.chm11706 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.DefaultValue Property (Access) +# ToggleButton.DefaultValue property (Access) Specifies a value that is automatically entered in a field when a new record is created. For example, in an Addresses table you can set the default value for the City field to New York. When users add a record to the table, they can either accept this value or enter the name of a different city. Read/write **String**. ## Syntax - _expression_. `DefaultValue` +_expression_. `DefaultValue` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.DisplayWhen.md b/api/Access.ToggleButton.DisplayWhen.md index 0440d71fd46..2e7e028296d 100644 --- a/api/Access.ToggleButton.DisplayWhen.md +++ b/api/Access.ToggleButton.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.DisplayWhen Property (Access) +title: ToggleButton.DisplayWhen property (Access) keywords: vbaac10.chm11711 f1_keywords: - vbaac10.chm11711 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.DisplayWhen Property (Access) +# ToggleButton.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Enabled.md b/api/Access.ToggleButton.Enabled.md index 04f1efa1f3f..319728881d0 100644 --- a/api/Access.ToggleButton.Enabled.md +++ b/api/Access.ToggleButton.Enabled.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Enabled Property (Access) +title: ToggleButton.Enabled property (Access) keywords: vbaac10.chm11712 f1_keywords: - vbaac10.chm11712 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Enabled Property (Access) +# ToggleButton.Enabled property (Access) You can use the **Enabled** property to set or return the status of the conditional format in the **[FormatCondition](Access.FormatCondition.md)** object. Read/write **Boolean**. ## Syntax - _expression_. `Enabled` +_expression_. `Enabled` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Enter.md b/api/Access.ToggleButton.Enter.md index 3dca930bcf8..62db43beac1 100644 --- a/api/Access.ToggleButton.Enter.md +++ b/api/Access.ToggleButton.Enter.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Enter Event (Access) +title: ToggleButton.Enter event (Access) keywords: vbaac10.chm14150 f1_keywords: - vbaac10.chm14150 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Enter Event (Access) +# ToggleButton.Enter event (Access) The **Enter** event occurs before a control actually receives the focus from a control on the same form or report. ## Syntax - _expression_. `Enter` +_expression_. `Enter` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.EventProcPrefix.md b/api/Access.ToggleButton.EventProcPrefix.md index 67c129a59a7..7b253254356 100644 --- a/api/Access.ToggleButton.EventProcPrefix.md +++ b/api/Access.ToggleButton.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.EventProcPrefix Property (Access) +title: ToggleButton.EventProcPrefix property (Access) keywords: vbaac10.chm11697 f1_keywords: - vbaac10.chm11697 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.EventProcPrefix Property (Access) +# ToggleButton.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Exit.md b/api/Access.ToggleButton.Exit.md index 1a66a5a76ab..1e7d67f63ab 100644 --- a/api/Access.ToggleButton.Exit.md +++ b/api/Access.ToggleButton.Exit.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Exit Event (Access) +title: ToggleButton.Exit event (Access) keywords: vbaac10.chm14151 f1_keywords: - vbaac10.chm14151 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ToggleButton.Exit Event (Access) +# ToggleButton.Exit event (Access) The **Exit** event occurs just before a control loses the focus to another control on the same form or report. ## Syntax - _expression_. `Exit`( ` _Cancel_` ) +_expression_. `Exit`( ` _Cancel_` ) - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|Set to **True** to cancel the event.| diff --git a/api/Access.ToggleButton.FontBold.md b/api/Access.ToggleButton.FontBold.md index dbfb1c6fa5b..dbf9a4332c0 100644 --- a/api/Access.ToggleButton.FontBold.md +++ b/api/Access.ToggleButton.FontBold.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.FontBold Property (Access) +title: ToggleButton.FontBold property (Access) keywords: vbaac10.chm11729 f1_keywords: - vbaac10.chm11729 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ToggleButton.FontBold Property (Access) +# ToggleButton.FontBold property (Access) You can use the **FontBold** property to specify whether a font appears in a bold style in the following situations: @@ -26,9 +26,9 @@ You can use the **FontBold** property to specify whether a font appears in a bo ## Syntax - _expression_. `FontBold` +_expression_. `FontBold` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.FontItalic.md b/api/Access.ToggleButton.FontItalic.md index eb3265c30e3..3356d32ab3a 100644 --- a/api/Access.ToggleButton.FontItalic.md +++ b/api/Access.ToggleButton.FontItalic.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.FontItalic Property (Access) +title: ToggleButton.FontItalic property (Access) keywords: vbaac10.chm11726 f1_keywords: - vbaac10.chm11726 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ToggleButton.FontItalic Property (Access) +# ToggleButton.FontItalic property (Access) You can use the **FontItalic** property to specify whether text is italic in the following situations: @@ -26,9 +26,9 @@ You can use the **FontItalic** property to specify whether text is italic in th ## Syntax - _expression_. `FontItalic` +_expression_. `FontItalic` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.FontName.md b/api/Access.ToggleButton.FontName.md index 4bbb4cacc03..e2c4f5afd33 100644 --- a/api/Access.ToggleButton.FontName.md +++ b/api/Access.ToggleButton.FontName.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.FontName Property (Access) +title: ToggleButton.FontName property (Access) keywords: vbaac10.chm11723 f1_keywords: - vbaac10.chm11723 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ToggleButton.FontName Property (Access) +# ToggleButton.FontName property (Access) You can use the **FontName** property to specify the font for text in the following situations: @@ -26,9 +26,9 @@ Read/write **String**. ## Syntax - _expression_. `FontName` +_expression_. `FontName` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.FontSize.md b/api/Access.ToggleButton.FontSize.md index 30cb2bde6b0..3d470ce5c3b 100644 --- a/api/Access.ToggleButton.FontSize.md +++ b/api/Access.ToggleButton.FontSize.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.FontSize Property (Access) +title: ToggleButton.FontSize property (Access) keywords: vbaac10.chm11724 f1_keywords: - vbaac10.chm11724 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ToggleButton.FontSize Property (Access) +# ToggleButton.FontSize property (Access) You can use the **FontSize** property to specify the point size for text in the following situations: @@ -26,9 +26,9 @@ Read/write **Integer**. ## Syntax - _expression_. `FontSize` +_expression_. `FontSize` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.FontUnderline.md b/api/Access.ToggleButton.FontUnderline.md index 3bda33a6bb9..a790f35fa33 100644 --- a/api/Access.ToggleButton.FontUnderline.md +++ b/api/Access.ToggleButton.FontUnderline.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.FontUnderline Property (Access) +title: ToggleButton.FontUnderline property (Access) keywords: vbaac10.chm11727 f1_keywords: - vbaac10.chm11727 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ToggleButton.FontUnderline Property (Access) +# ToggleButton.FontUnderline property (Access) You can use the **FontUnderline** property to specify whether text is underlined in the following situations: @@ -26,9 +26,9 @@ You can use the **FontUnderline** property to specify whether text is underline ## Syntax - _expression_. `FontUnderline` +_expression_. `FontUnderline` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.FontWeight.md b/api/Access.ToggleButton.FontWeight.md index 85da85c987b..41d7d5d5fc6 100644 --- a/api/Access.ToggleButton.FontWeight.md +++ b/api/Access.ToggleButton.FontWeight.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.FontWeight Property (Access) +title: ToggleButton.FontWeight property (Access) keywords: vbaac10.chm11725 f1_keywords: - vbaac10.chm11725 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.FontWeight Property (Access) +# ToggleButton.FontWeight property (Access) Use the **FontWeight** property to specify the line width that Windows uses to display and print characters in a control. Read/write **Integer**. ## Syntax - _expression_. `FontWeight` +_expression_. `FontWeight` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.ForeColor.md b/api/Access.ToggleButton.ForeColor.md index 0848af7315f..49d5d6ff9c1 100644 --- a/api/Access.ToggleButton.ForeColor.md +++ b/api/Access.ToggleButton.ForeColor.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.ForeColor Property (Access) +title: ToggleButton.ForeColor property (Access) keywords: vbaac10.chm11722 f1_keywords: - vbaac10.chm11722 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.ForeColor Property (Access) +# ToggleButton.ForeColor property (Access) You can use the **ForeColor** property to specify the color for text in a control. Read/write **Long**. ## Syntax - _expression_. `ForeColor` +_expression_. `ForeColor` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.ForeShade.md b/api/Access.ToggleButton.ForeShade.md index b0431f11da2..b887ed25220 100644 --- a/api/Access.ToggleButton.ForeShade.md +++ b/api/Access.ToggleButton.ForeShade.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.ForeShade Property (Access) +title: ToggleButton.ForeShade property (Access) keywords: vbaac10.chm14606 f1_keywords: - vbaac10.chm14606 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.ForeShade Property (Access) +# ToggleButton.ForeShade property (Access) Gets or sets the shade that is applied to the theme color in the **ForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `ForeShade` +_expression_. `ForeShade` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.ForeThemeColorIndex.md b/api/Access.ToggleButton.ForeThemeColorIndex.md index 590b2973335..bf04ae7f309 100644 --- a/api/Access.ToggleButton.ForeThemeColorIndex.md +++ b/api/Access.ToggleButton.ForeThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.ForeThemeColorIndex Property (Access) +title: ToggleButton.ForeThemeColorIndex property (Access) keywords: vbaac10.chm14604 f1_keywords: - vbaac10.chm14604 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.ForeThemeColorIndex Property (Access) +# ToggleButton.ForeThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **ForeColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `ForeThemeColorIndex` +_expression_. `ForeThemeColorIndex` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.ForeTint.md b/api/Access.ToggleButton.ForeTint.md index 59d31079b7b..75c502d42e4 100644 --- a/api/Access.ToggleButton.ForeTint.md +++ b/api/Access.ToggleButton.ForeTint.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.ForeTint Property (Access) +title: ToggleButton.ForeTint property (Access) keywords: vbaac10.chm14605 f1_keywords: - vbaac10.chm14605 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.ForeTint Property (Access) +# ToggleButton.ForeTint property (Access) Gets or sets the tint that is applied to the theme color in the **ForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `ForeTint` +_expression_. `ForeTint` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Glow.md b/api/Access.ToggleButton.Glow.md index ead962c0ad7..273d36e6c71 100644 --- a/api/Access.ToggleButton.Glow.md +++ b/api/Access.ToggleButton.Glow.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Glow Property (Access) +title: ToggleButton.Glow property (Access) keywords: vbaac10.chm14630 f1_keywords: - vbaac10.chm14630 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Glow Property (Access) +# ToggleButton.Glow property (Access) Gets or sets the Glow effect applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `Glow` +_expression_. `Glow` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.GotFocus.md b/api/Access.ToggleButton.GotFocus.md index 77b7ecf3257..edf2f793e93 100644 --- a/api/Access.ToggleButton.GotFocus.md +++ b/api/Access.ToggleButton.GotFocus.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.GotFocus Event (Access) +title: ToggleButton.GotFocus event (Access) keywords: vbaac10.chm14152 f1_keywords: - vbaac10.chm14152 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.GotFocus Event (Access) +# ToggleButton.GotFocus event (Access) The **GotFocus** event occurs when the specified object receives the focus. ## Syntax - _expression_. `GotFocus` +_expression_. `GotFocus` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Gradient.md b/api/Access.ToggleButton.Gradient.md index 8d2efd24773..d38434cbf12 100644 --- a/api/Access.ToggleButton.Gradient.md +++ b/api/Access.ToggleButton.Gradient.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Gradient Property (Access) +title: ToggleButton.Gradient property (Access) keywords: vbaac10.chm14662 f1_keywords: - vbaac10.chm14662 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Gradient Property (Access) +# ToggleButton.Gradient property (Access) Gets or sets the gradient fill applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `Gradient` +_expression_. `Gradient` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.GridlineColor.md b/api/Access.ToggleButton.GridlineColor.md index 2dbf680fc56..ace2d9f49d7 100644 --- a/api/Access.ToggleButton.GridlineColor.md +++ b/api/Access.ToggleButton.GridlineColor.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.GridlineColor Property (Access) +title: ToggleButton.GridlineColor property (Access) keywords: vbaac10.chm11792 f1_keywords: - vbaac10.chm11792 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.GridlineColor Property (Access) +# ToggleButton.GridlineColor property (Access) Gets or sets the color of the gridline for the specified toggle button. Read/write **Long**. ## Syntax - _expression_. `GridlineColor` +_expression_. `GridlineColor` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.GridlineShade.md b/api/Access.ToggleButton.GridlineShade.md index 7d37b228b6d..495f06b82e1 100644 --- a/api/Access.ToggleButton.GridlineShade.md +++ b/api/Access.ToggleButton.GridlineShade.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.GridlineShade Property (Access) +title: ToggleButton.GridlineShade property (Access) keywords: vbaac10.chm14637 f1_keywords: - vbaac10.chm14637 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.GridlineShade Property (Access) +# ToggleButton.GridlineShade property (Access) Gets or sets the shade applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineShade` +_expression_. `GridlineShade` - _expression_ A variable that represents an [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents an [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.GridlineStyleBottom.md b/api/Access.ToggleButton.GridlineStyleBottom.md index cc62a0a1c1b..99c76ebcf04 100644 --- a/api/Access.ToggleButton.GridlineStyleBottom.md +++ b/api/Access.ToggleButton.GridlineStyleBottom.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.GridlineStyleBottom Property (Access) +title: ToggleButton.GridlineStyleBottom property (Access) keywords: vbaac10.chm11787 f1_keywords: - vbaac10.chm11787 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.GridlineStyleBottom Property (Access) +# ToggleButton.GridlineStyleBottom property (Access) Gets or sets the bottom gridline style of the specified toggle button. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleBottom` +_expression_. `GridlineStyleBottom` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.GridlineStyleLeft.md b/api/Access.ToggleButton.GridlineStyleLeft.md index 30c89a130bc..be5fa1106d0 100644 --- a/api/Access.ToggleButton.GridlineStyleLeft.md +++ b/api/Access.ToggleButton.GridlineStyleLeft.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.GridlineStyleLeft Property (Access) +title: ToggleButton.GridlineStyleLeft property (Access) keywords: vbaac10.chm11784 f1_keywords: - vbaac10.chm11784 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.GridlineStyleLeft Property (Access) +# ToggleButton.GridlineStyleLeft property (Access) Gets or sets the width of the bottom gridline for the specified toggle button. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleLeft` +_expression_. `GridlineStyleLeft` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.GridlineStyleRight.md b/api/Access.ToggleButton.GridlineStyleRight.md index 02a13ec7b31..4f4e721e24a 100644 --- a/api/Access.ToggleButton.GridlineStyleRight.md +++ b/api/Access.ToggleButton.GridlineStyleRight.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.GridlineStyleRight Property (Access) +title: ToggleButton.GridlineStyleRight property (Access) keywords: vbaac10.chm11786 f1_keywords: - vbaac10.chm11786 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.GridlineStyleRight Property (Access) +# ToggleButton.GridlineStyleRight property (Access) Gets or sets the right gridline style of the specified toggle button. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleRight` +_expression_. `GridlineStyleRight` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.GridlineStyleTop.md b/api/Access.ToggleButton.GridlineStyleTop.md index 3c0062ff9cc..3fb49c4a202 100644 --- a/api/Access.ToggleButton.GridlineStyleTop.md +++ b/api/Access.ToggleButton.GridlineStyleTop.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.GridlineStyleTop Property (Access) +title: ToggleButton.GridlineStyleTop property (Access) keywords: vbaac10.chm11785 f1_keywords: - vbaac10.chm11785 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.GridlineStyleTop Property (Access) +# ToggleButton.GridlineStyleTop property (Access) Gets or sets the top gridline style of the specified toggle button. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleTop` +_expression_. `GridlineStyleTop` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.GridlineThemeColorIndex.md b/api/Access.ToggleButton.GridlineThemeColorIndex.md index cc4f611b44a..26a7905b0b2 100644 --- a/api/Access.ToggleButton.GridlineThemeColorIndex.md +++ b/api/Access.ToggleButton.GridlineThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.GridlineThemeColorIndex Property (Access) +title: ToggleButton.GridlineThemeColorIndex property (Access) keywords: vbaac10.chm14635 f1_keywords: - vbaac10.chm14635 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.GridlineThemeColorIndex Property (Access) +# ToggleButton.GridlineThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **GridlineColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `GridlineThemeColorIndex` +_expression_. `GridlineThemeColorIndex` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.GridlineTint.md b/api/Access.ToggleButton.GridlineTint.md index 1904f0bba25..b7977348351 100644 --- a/api/Access.ToggleButton.GridlineTint.md +++ b/api/Access.ToggleButton.GridlineTint.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.GridlineTint Property (Access) +title: ToggleButton.GridlineTint property (Access) keywords: vbaac10.chm14636 f1_keywords: - vbaac10.chm14636 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.GridlineTint Property (Access) +# ToggleButton.GridlineTint property (Access) Gets or sets the tint applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineTint` +_expression_. `GridlineTint` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.GridlineWidthBottom.md b/api/Access.ToggleButton.GridlineWidthBottom.md index aa080fdcc89..99b645a26b3 100644 --- a/api/Access.ToggleButton.GridlineWidthBottom.md +++ b/api/Access.ToggleButton.GridlineWidthBottom.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.GridlineWidthBottom Property (Access) +title: ToggleButton.GridlineWidthBottom property (Access) keywords: vbaac10.chm11791 f1_keywords: - vbaac10.chm11791 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.GridlineWidthBottom Property (Access) +# ToggleButton.GridlineWidthBottom property (Access) Gets or sets the width of the bottom gridline for the specified toggle button. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthBottom` +_expression_. `GridlineWidthBottom` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.GridlineWidthLeft.md b/api/Access.ToggleButton.GridlineWidthLeft.md index 8de3e190cf1..07cf8c80b11 100644 --- a/api/Access.ToggleButton.GridlineWidthLeft.md +++ b/api/Access.ToggleButton.GridlineWidthLeft.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.GridlineWidthLeft Property (Access) +title: ToggleButton.GridlineWidthLeft property (Access) keywords: vbaac10.chm11788 f1_keywords: - vbaac10.chm11788 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.GridlineWidthLeft Property (Access) +# ToggleButton.GridlineWidthLeft property (Access) Gets or sets the width of the left gridline for the specified toggle button. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthLeft` +_expression_. `GridlineWidthLeft` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.GridlineWidthRight.md b/api/Access.ToggleButton.GridlineWidthRight.md index 74f6d792997..93de75d3e99 100644 --- a/api/Access.ToggleButton.GridlineWidthRight.md +++ b/api/Access.ToggleButton.GridlineWidthRight.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.GridlineWidthRight Property (Access) +title: ToggleButton.GridlineWidthRight property (Access) keywords: vbaac10.chm11790 f1_keywords: - vbaac10.chm11790 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.GridlineWidthRight Property (Access) +# ToggleButton.GridlineWidthRight property (Access) Gets or sets the width of the right gridline for the specified toggle button. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthRight` +_expression_. `GridlineWidthRight` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.GridlineWidthTop.md b/api/Access.ToggleButton.GridlineWidthTop.md index f3cf55e1572..316b1dcfcac 100644 --- a/api/Access.ToggleButton.GridlineWidthTop.md +++ b/api/Access.ToggleButton.GridlineWidthTop.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.GridlineWidthTop Property (Access) +title: ToggleButton.GridlineWidthTop property (Access) keywords: vbaac10.chm11789 f1_keywords: - vbaac10.chm11789 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.GridlineWidthTop Property (Access) +# ToggleButton.GridlineWidthTop property (Access) Gets or sets the width of the top gridline for the specified toggle button. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthTop` +_expression_. `GridlineWidthTop` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Height.md b/api/Access.ToggleButton.Height.md index 2fede4ececd..1484e629a2a 100644 --- a/api/Access.ToggleButton.Height.md +++ b/api/Access.ToggleButton.Height.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Height Property (Access) +title: ToggleButton.Height property (Access) keywords: vbaac10.chm11721 f1_keywords: - vbaac10.chm11721 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Height Property (Access) +# ToggleButton.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.HelpContextId.md b/api/Access.ToggleButton.HelpContextId.md index 0ab20da6d5e..223413c0c6d 100644 --- a/api/Access.ToggleButton.HelpContextId.md +++ b/api/Access.ToggleButton.HelpContextId.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.HelpContextId Property (Access) +title: ToggleButton.HelpContextId property (Access) keywords: vbaac10.chm11732 f1_keywords: - vbaac10.chm11732 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.HelpContextId Property (Access) +# ToggleButton.HelpContextId property (Access) The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**. ## Syntax - _expression_. `HelpContextId` +_expression_. `HelpContextId` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.HideDuplicates.md b/api/Access.ToggleButton.HideDuplicates.md index ff1c777a84b..7ddf0534a53 100644 --- a/api/Access.ToggleButton.HideDuplicates.md +++ b/api/Access.ToggleButton.HideDuplicates.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.HideDuplicates Property (Access) +title: ToggleButton.HideDuplicates property (Access) keywords: vbaac10.chm11717 f1_keywords: - vbaac10.chm11717 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.HideDuplicates Property (Access) +# ToggleButton.HideDuplicates property (Access) You can use the **HideDuplicates** property to hide a control on a report when its value is the same as in the preceding record. Read/write **Boolean**. ## Syntax - _expression_. `HideDuplicates` +_expression_. `HideDuplicates` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.HorizontalAnchor.md b/api/Access.ToggleButton.HorizontalAnchor.md index 1e393cb277d..8316d9db1de 100644 --- a/api/Access.ToggleButton.HorizontalAnchor.md +++ b/api/Access.ToggleButton.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.HorizontalAnchor Property (Access) +title: ToggleButton.HorizontalAnchor property (Access) keywords: vbaac10.chm11793 f1_keywords: - vbaac10.chm11793 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.HorizontalAnchor Property (Access) +# ToggleButton.HorizontalAnchor property (Access) Gets or sets an **[AcHorizontalAnchor](Access.AcHorizontalAnchor.md)** constant that indicates how the toggle button is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.HoverColor.md b/api/Access.ToggleButton.HoverColor.md index 3ea4a2287c4..33ac3a57b71 100644 --- a/api/Access.ToggleButton.HoverColor.md +++ b/api/Access.ToggleButton.HoverColor.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.HoverColor Property (Access) +title: ToggleButton.HoverColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.HoverColor Property (Access) +# ToggleButton.HoverColor property (Access) Gets or sets the color displayed on the control when the user rests the mouse cursor over it. Read/write **Long**. ## Syntax - _expression_. `HoverColor` +_expression_. `HoverColor` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.HoverForeColor.md b/api/Access.ToggleButton.HoverForeColor.md index 03dce881944..af897eea11f 100644 --- a/api/Access.ToggleButton.HoverForeColor.md +++ b/api/Access.ToggleButton.HoverForeColor.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.HoverForeColor Property (Access) +title: ToggleButton.HoverForeColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.HoverForeColor Property (Access) +# ToggleButton.HoverForeColor property (Access) Gets or sets the color of the text displayed on the control when the user rests the mouse cursor over it. Read/write **Long**. ## Syntax - _expression_. `HoverForeColor` +_expression_. `HoverForeColor` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.HoverForeShade.md b/api/Access.ToggleButton.HoverForeShade.md index 3c052bdb033..32f99c10819 100644 --- a/api/Access.ToggleButton.HoverForeShade.md +++ b/api/Access.ToggleButton.HoverForeShade.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.HoverForeShade Property (Access) +title: ToggleButton.HoverForeShade property (Access) keywords: vbaac10.chm14618 f1_keywords: - vbaac10.chm14618 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.HoverForeShade Property (Access) +# ToggleButton.HoverForeShade property (Access) Gets or sets the shade applied to the theme color in the **HoverForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `HoverForeShade` +_expression_. `HoverForeShade` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.HoverForeThemeColorIndex.md b/api/Access.ToggleButton.HoverForeThemeColorIndex.md index 6a61493f4c5..a06878dd6c3 100644 --- a/api/Access.ToggleButton.HoverForeThemeColorIndex.md +++ b/api/Access.ToggleButton.HoverForeThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.HoverForeThemeColorIndex Property (Access) +title: ToggleButton.HoverForeThemeColorIndex property (Access) keywords: vbaac10.chm14616 f1_keywords: - vbaac10.chm14616 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.HoverForeThemeColorIndex Property (Access) +# ToggleButton.HoverForeThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **HoverForeColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `HoverForeThemeColorIndex` +_expression_. `HoverForeThemeColorIndex` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.HoverForeTint.md b/api/Access.ToggleButton.HoverForeTint.md index ef37fbd62fe..804ef569c78 100644 --- a/api/Access.ToggleButton.HoverForeTint.md +++ b/api/Access.ToggleButton.HoverForeTint.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.HoverForeTint Property (Access) +title: ToggleButton.HoverForeTint property (Access) keywords: vbaac10.chm14617 f1_keywords: - vbaac10.chm14617 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.HoverForeTint Property (Access) +# ToggleButton.HoverForeTint property (Access) Gets or sets the tint applied to the theme color in the **HoverForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `HoverForeTint` +_expression_. `HoverForeTint` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.HoverShade.md b/api/Access.ToggleButton.HoverShade.md index 1c563b5a58b..6e4dbebf15c 100644 --- a/api/Access.ToggleButton.HoverShade.md +++ b/api/Access.ToggleButton.HoverShade.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.HoverShade Property (Access) +title: ToggleButton.HoverShade property (Access) keywords: vbaac10.chm14614 f1_keywords: - vbaac10.chm14614 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.HoverShade Property (Access) +# ToggleButton.HoverShade property (Access) Gets or sets the shade that is applied to the theme color in the **HoverColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `HoverShade` +_expression_. `HoverShade` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.HoverThemeColorIndex.md b/api/Access.ToggleButton.HoverThemeColorIndex.md index 384599a0c7c..425acf8908a 100644 --- a/api/Access.ToggleButton.HoverThemeColorIndex.md +++ b/api/Access.ToggleButton.HoverThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.HoverThemeColorIndex Property (Access) +title: ToggleButton.HoverThemeColorIndex property (Access) keywords: vbaac10.chm14612 f1_keywords: - vbaac10.chm14612 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.HoverThemeColorIndex Property (Access) +# ToggleButton.HoverThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **HoverColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `HoverThemeColorIndex` +_expression_. `HoverThemeColorIndex` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.HoverTint.md b/api/Access.ToggleButton.HoverTint.md index d3a64433ead..15e329a5957 100644 --- a/api/Access.ToggleButton.HoverTint.md +++ b/api/Access.ToggleButton.HoverTint.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.HoverTint Property (Access) +title: ToggleButton.HoverTint property (Access) keywords: vbaac10.chm14613 f1_keywords: - vbaac10.chm14613 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.HoverTint Property (Access) +# ToggleButton.HoverTint property (Access) Gets or sets the tint applied to the theme color in the **HoverColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `HoverTint` +_expression_. `HoverTint` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.InSelection.md b/api/Access.ToggleButton.InSelection.md index 503abe0273b..ff2c3e613a8 100644 --- a/api/Access.ToggleButton.InSelection.md +++ b/api/Access.ToggleButton.InSelection.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.InSelection Property (Access) +title: ToggleButton.InSelection property (Access) keywords: vbaac10.chm11746 f1_keywords: - vbaac10.chm11746 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.InSelection Property (Access) +# ToggleButton.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.IsVisible.md b/api/Access.ToggleButton.IsVisible.md index e093bb89ea3..15cd2b12a61 100644 --- a/api/Access.ToggleButton.IsVisible.md +++ b/api/Access.ToggleButton.IsVisible.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.IsVisible Property (Access) +title: ToggleButton.IsVisible property (Access) keywords: vbaac10.chm11745 f1_keywords: - vbaac10.chm11745 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.IsVisible Property (Access) +# ToggleButton.IsVisible property (Access) You can use the **IsVisible** property in to determine whether a control on a report is visible. Read/write **Boolean**. ## Syntax - _expression_. `IsVisible` +_expression_. `IsVisible` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.KeyDown.md b/api/Access.ToggleButton.KeyDown.md index 0063f4c9788..b3626609703 100644 --- a/api/Access.ToggleButton.KeyDown.md +++ b/api/Access.ToggleButton.KeyDown.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.KeyDown Event (Access) +title: ToggleButton.KeyDown event (Access) keywords: vbaac10.chm14158 f1_keywords: - vbaac10.chm14158 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ToggleButton.KeyDown Event (Access) +# ToggleButton.KeyDown event (Access) The **KeyDown** event occurs when the user presses a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|A key code, such as **vbKeyF1** (the F1 key) or **vbKeyHome** (the HOME key). To specify key codes, use the intrinsic constants shown in the Object Browser. You can prevent an object from receiving a keystroke by setting KeyCode to 0.| | _Shift_|Required|**Integer**|The state of the SHIFT, CTRL, and ALT keys at the time of the event. If you need to test for the Shift argument, you can use one of the following intrinsic constants as bit masks: diff --git a/api/Access.ToggleButton.KeyPress.md b/api/Access.ToggleButton.KeyPress.md index 7c26ec4bb23..020f9f72695 100644 --- a/api/Access.ToggleButton.KeyPress.md +++ b/api/Access.ToggleButton.KeyPress.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.KeyPress Event (Access) +title: ToggleButton.KeyPress event (Access) keywords: vbaac10.chm14159 f1_keywords: - vbaac10.chm14159 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ToggleButton.KeyPress Event (Access) +# ToggleButton.KeyPress event (Access) The **KeyPress** event occurs when the user presses and releases a key or key combination that corresponds to an ANSI code while a form or control has the focus. This event also occurs if you send an ANSI keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyPress`( ` _KeyAscii_` ) +_expression_. `KeyPress`( ` _KeyAscii_` ) - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyAscii_|Required|**Integer**| Returns a numeric ANSI key code. The _KeyAscii_ argument is passed by reference; changing it sends a different character to the object. Setting the _KeyAscii_ argument to 0 cancels the keystroke so that the object doesn't recognize that a key was pressed.| diff --git a/api/Access.ToggleButton.KeyUp.md b/api/Access.ToggleButton.KeyUp.md index d2414553dc7..b5f8dcf1eeb 100644 --- a/api/Access.ToggleButton.KeyUp.md +++ b/api/Access.ToggleButton.KeyUp.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.KeyUp Event (Access) +title: ToggleButton.KeyUp event (Access) keywords: vbaac10.chm14160 f1_keywords: - vbaac10.chm14160 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ToggleButton.KeyUp Event (Access) +# ToggleButton.KeyUp event (Access) The **KeyUp** event occurs when the user releases a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|A key code, such as **vbKeyF1** (the F1 key) or **vbKeyHome** (the HOME key). To specify key codes, use the intrinsic constants shown in the Object Browser. You can prevent an object from receiving a keystroke by setting KeyCode to 0.| | _Shift_|Required|**Integer**|The state of the SHIFT, CTRL, and ALT keys at the time of the event. If you need to test for the Shift argument, you can use one of the following intrinsic constants as bit masks: diff --git a/api/Access.ToggleButton.LabelAlign.md b/api/Access.ToggleButton.LabelAlign.md index edf0c559756..093e1ef5ef2 100644 --- a/api/Access.ToggleButton.LabelAlign.md +++ b/api/Access.ToggleButton.LabelAlign.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.LabelAlign Property (Access) +title: ToggleButton.LabelAlign property (Access) keywords: vbaac10.chm11740 f1_keywords: - vbaac10.chm11740 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.LabelAlign Property (Access) +# ToggleButton.LabelAlign property (Access) The property specifies the text alignment within attached labels on new controls. Read/write **Byte**. ## Syntax - _expression_. `LabelAlign` +_expression_. `LabelAlign` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.LabelX.md b/api/Access.ToggleButton.LabelX.md index 8e0201dc062..d144253b6b8 100644 --- a/api/Access.ToggleButton.LabelX.md +++ b/api/Access.ToggleButton.LabelX.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.LabelX Property (Access) +title: ToggleButton.LabelX property (Access) keywords: vbaac10.chm11738 f1_keywords: - vbaac10.chm11738 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ToggleButton.LabelX Property (Access) +# ToggleButton.LabelX property (Access) The **LabelX** property (along with the **LabelY** property) specifies the placement of the label for a new control. Read/write **Integer**. @@ -19,9 +19,9 @@ The **LabelX** property (along with the **LabelY** property) specifies the plac ## Syntax - _expression_. `LabelX` +_expression_. `LabelX` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.LabelY.md b/api/Access.ToggleButton.LabelY.md index 6fac81488cf..605aced3450 100644 --- a/api/Access.ToggleButton.LabelY.md +++ b/api/Access.ToggleButton.LabelY.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.LabelY Property (Access) +title: ToggleButton.LabelY property (Access) keywords: vbaac10.chm11739 f1_keywords: - vbaac10.chm11739 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ToggleButton.LabelY Property (Access) +# ToggleButton.LabelY property (Access) The **LabelY** property (along with the **LabelX** property) specifies the placement of the label for a new control. Read/write **Integer**. @@ -19,9 +19,9 @@ The **LabelY** property (along with the **LabelX** property) specifies the plac ## Syntax - _expression_. `LabelY` +_expression_. `LabelY` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Layout.md b/api/Access.ToggleButton.Layout.md index 3255ff09f07..8cd126dce15 100644 --- a/api/Access.ToggleButton.Layout.md +++ b/api/Access.ToggleButton.Layout.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Layout Property (Access) +title: ToggleButton.Layout property (Access) keywords: vbaac10.chm11779 f1_keywords: - vbaac10.chm11779 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Layout Property (Access) +# ToggleButton.Layout property (Access) Returns the type of layout for the specified toggle button. Read-only **[AcLayoutType](Access.AcLayoutType.md)**. ## Syntax - _expression_. `Layout` +_expression_. `Layout` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## See also diff --git a/api/Access.ToggleButton.LayoutID.md b/api/Access.ToggleButton.LayoutID.md index 4e4a0df0091..c25e141ce93 100644 --- a/api/Access.ToggleButton.LayoutID.md +++ b/api/Access.ToggleButton.LayoutID.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.LayoutID Property (Access) +title: ToggleButton.LayoutID property (Access) keywords: vbaac10.chm11795 f1_keywords: - vbaac10.chm11795 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.LayoutID Property (Access) +# ToggleButton.LayoutID property (Access) Returns the unique identifier for the layout that contains the specified toggle button. Read-only **Long**. ## Syntax - _expression_. `LayoutID` +_expression_. `LayoutID` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Left.md b/api/Access.ToggleButton.Left.md index a3b85010e3a..20a4222059f 100644 --- a/api/Access.ToggleButton.Left.md +++ b/api/Access.ToggleButton.Left.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Left Property (Access) +title: ToggleButton.Left property (Access) keywords: vbaac10.chm11718 f1_keywords: - vbaac10.chm11718 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Left Property (Access) +# ToggleButton.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.LeftPadding.md b/api/Access.ToggleButton.LeftPadding.md index f06444f7284..dda20da120c 100644 --- a/api/Access.ToggleButton.LeftPadding.md +++ b/api/Access.ToggleButton.LeftPadding.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.LeftPadding Property (Access) +title: ToggleButton.LeftPadding property (Access) keywords: vbaac10.chm11780 f1_keywords: - vbaac10.chm11780 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.LeftPadding Property (Access) +# ToggleButton.LeftPadding property (Access) Gets or sets the amount of space (in inches) between the toggle button and its left gridline. Read/write **Integer**. ## Syntax - _expression_. `LeftPadding` +_expression_. `LeftPadding` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## See also diff --git a/api/Access.ToggleButton.Locked.md b/api/Access.ToggleButton.Locked.md index ad4e9447a33..e7dc7e7f4ed 100644 --- a/api/Access.ToggleButton.Locked.md +++ b/api/Access.ToggleButton.Locked.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Locked Property (Access) +title: ToggleButton.Locked property (Access) keywords: vbaac10.chm11713 f1_keywords: - vbaac10.chm11713 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Locked Property (Access) +# ToggleButton.Locked property (Access) The **Locked** property specifies whether you can edit data in a control in Form view. Read/write **Boolean**. ## Syntax - _expression_. `Locked` +_expression_. `Locked` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.LostFocus.md b/api/Access.ToggleButton.LostFocus.md index 2c8d6d8ea7c..9b66ac97ca0 100644 --- a/api/Access.ToggleButton.LostFocus.md +++ b/api/Access.ToggleButton.LostFocus.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.LostFocus Event (Access) +title: ToggleButton.LostFocus event (Access) keywords: vbaac10.chm14153 f1_keywords: - vbaac10.chm14153 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.LostFocus Event (Access) +# ToggleButton.LostFocus event (Access) The **LostFocus** event occurs when the specified object loses the focus. ## Syntax - _expression_. `LostFocus` +_expression_. `LostFocus` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.MouseDown.md b/api/Access.ToggleButton.MouseDown.md index 4292ad2a046..4562c6b8bbc 100644 --- a/api/Access.ToggleButton.MouseDown.md +++ b/api/Access.ToggleButton.MouseDown.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.MouseDown Event (Access) +title: ToggleButton.MouseDown event (Access) keywords: vbaac10.chm14155 f1_keywords: - vbaac10.chm14155 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ToggleButton.MouseDown Event (Access) +# ToggleButton.MouseDown event (Access) The **MouseDown** event occurs when the user presses a mouse button. ## Syntax - _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.ToggleButton.MouseMove.md b/api/Access.ToggleButton.MouseMove.md index 0f2c7daaa7b..b679b0b7457 100644 --- a/api/Access.ToggleButton.MouseMove.md +++ b/api/Access.ToggleButton.MouseMove.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.MouseMove Event (Access) +title: ToggleButton.MouseMove event (Access) keywords: vbaac10.chm14156 f1_keywords: - vbaac10.chm14156 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ToggleButton.MouseMove Event (Access) +# ToggleButton.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was pressed or released when the event was triggered. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.ToggleButton.MouseUp.md b/api/Access.ToggleButton.MouseUp.md index 3eca4257ad9..d8ec5ef0887 100644 --- a/api/Access.ToggleButton.MouseUp.md +++ b/api/Access.ToggleButton.MouseUp.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.MouseUp Event (Access) +title: ToggleButton.MouseUp event (Access) keywords: vbaac10.chm14157 f1_keywords: - vbaac10.chm14157 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ToggleButton.MouseUp Event (Access) +# ToggleButton.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|The button that was released to trigger the event. If you need to test for the Button argument, you can use one of the following intrinsic constants as bit masks:
acLeftButton The bit mask for the left mouse button. diff --git a/api/Access.ToggleButton.Move.md b/api/Access.ToggleButton.Move.md index e1929f7c95d..6cb891b0481 100644 --- a/api/Access.ToggleButton.Move.md +++ b/api/Access.ToggleButton.Move.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Move Method (Access) +title: ToggleButton.Move method (Access) keywords: vbaac10.chm11763 f1_keywords: - vbaac10.chm11763 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# ToggleButton.Move Method (Access) +# ToggleButton.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|The screen position in twips for the left edge of the object relative to the left edge of the Microsoft Access window.| | _Top_|Optional|**Variant**|The screen position in twips for the top edge of the object relative to the top edge of the Microsoft Access window.| diff --git a/api/Access.ToggleButton.Name.md b/api/Access.ToggleButton.Name.md index e6fba31c239..c191df0bc49 100644 --- a/api/Access.ToggleButton.Name.md +++ b/api/Access.ToggleButton.Name.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Name Property (Access) +title: ToggleButton.Name property (Access) keywords: vbaac10.chm11762 f1_keywords: - vbaac10.chm11762 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Name Property (Access) +# ToggleButton.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.ObjectPalette.md b/api/Access.ToggleButton.ObjectPalette.md index 5a49f47f0b1..7e9ebe1b0fd 100644 --- a/api/Access.ToggleButton.ObjectPalette.md +++ b/api/Access.ToggleButton.ObjectPalette.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.ObjectPalette Property (Access) +title: ToggleButton.ObjectPalette property (Access) keywords: vbaac10.chm11744 f1_keywords: - vbaac10.chm11744 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.ObjectPalette Property (Access) +# ToggleButton.ObjectPalette property (Access) The **ObjectPalette** property specifies the palette in the application used to create A bitmap or other graphic that is loaded into the specified control by using the **Picture** property. Read/write **Variant**. ## Syntax - _expression_. `ObjectPalette` +_expression_. `ObjectPalette` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.OldValue.md b/api/Access.ToggleButton.OldValue.md index b2fa53a43e1..bf5b4931d6c 100644 --- a/api/Access.ToggleButton.OldValue.md +++ b/api/Access.ToggleButton.OldValue.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.OldValue Property (Access) +title: ToggleButton.OldValue property (Access) keywords: vbaac10.chm11690 f1_keywords: - vbaac10.chm11690 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.OldValue Property (Access) +# ToggleButton.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.OnClick.md b/api/Access.ToggleButton.OnClick.md index 6f827e5a845..374d8122d3d 100644 --- a/api/Access.ToggleButton.OnClick.md +++ b/api/Access.ToggleButton.OnClick.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.OnClick Property (Access) +title: ToggleButton.OnClick property (Access) keywords: vbaac10.chm11753 f1_keywords: - vbaac10.chm11753 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.OnClick Property (Access) +# ToggleButton.OnClick property (Access) Sets or returns the value of the **On Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnClick` +_expression_. `OnClick` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Click** event occurs when a user presses and releases the left mouse butt The **OnClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ToggleButton.OnDblClick.md b/api/Access.ToggleButton.OnDblClick.md index 6a58d31769b..436929931c8 100644 --- a/api/Access.ToggleButton.OnDblClick.md +++ b/api/Access.ToggleButton.OnDblClick.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.OnDblClick Property (Access) +title: ToggleButton.OnDblClick property (Access) keywords: vbaac10.chm11754 f1_keywords: - vbaac10.chm11754 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.OnDblClick Property (Access) +# ToggleButton.OnDblClick property (Access) Sets or returns the value of the **On Dbl Click** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnDblClick` +_expression_. `OnDblClick` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **DblClick** event occurs when a user presses and releases the left mouse b The **OnDblClick** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Dbl Click** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ToggleButton.OnEnter.md b/api/Access.ToggleButton.OnEnter.md index 7805ac48d4b..b00ce5b3bc4 100644 --- a/api/Access.ToggleButton.OnEnter.md +++ b/api/Access.ToggleButton.OnEnter.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.OnEnter Property (Access) +title: ToggleButton.OnEnter property (Access) keywords: vbaac10.chm11749 f1_keywords: - vbaac10.chm11749 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.OnEnter Property (Access) +# ToggleButton.OnEnter property (Access) Sets or returns the value of the **On Enter** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnEnter` +_expression_. `OnEnter` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Enter** event occurs before a control actually receives the focus from a The **OnEnter** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Enter** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ToggleButton.OnExit.md b/api/Access.ToggleButton.OnExit.md index 50a52f8f38c..c75a94c8f32 100644 --- a/api/Access.ToggleButton.OnExit.md +++ b/api/Access.ToggleButton.OnExit.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.OnExit Property (Access) +title: ToggleButton.OnExit property (Access) keywords: vbaac10.chm11750 f1_keywords: - vbaac10.chm11750 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.OnExit Property (Access) +# ToggleButton.OnExit property (Access) Sets or returns the value of the **On Exit** box in the **Properties** window of specified object. Read/write **String**. . ## Syntax - _expression_. `OnExit` +_expression_. `OnExit` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **Exit** event occurs just before a control loses the focus to another cont The **OnExit** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Exit** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ToggleButton.OnGotFocus.md b/api/Access.ToggleButton.OnGotFocus.md index 53b8de471f2..93069c6652b 100644 --- a/api/Access.ToggleButton.OnGotFocus.md +++ b/api/Access.ToggleButton.OnGotFocus.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.OnGotFocus Property (Access) +title: ToggleButton.OnGotFocus property (Access) keywords: vbaac10.chm11751 f1_keywords: - vbaac10.chm11751 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.OnGotFocus Property (Access) +# ToggleButton.OnGotFocus property (Access) Sets or returns the value of the **On Got Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnGotFocus` +_expression_. `OnGotFocus` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **GotFocus** event occurs when the object receives the focus. The **OnGotFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Got Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ToggleButton.OnKeyDown.md b/api/Access.ToggleButton.OnKeyDown.md index 8bb559168af..645001fa4d0 100644 --- a/api/Access.ToggleButton.OnKeyDown.md +++ b/api/Access.ToggleButton.OnKeyDown.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.OnKeyDown Property (Access) +title: ToggleButton.OnKeyDown property (Access) keywords: vbaac10.chm11758 f1_keywords: - vbaac10.chm11758 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.OnKeyDown Property (Access) +# ToggleButton.OnKeyDown property (Access) Sets or returns the value of the **On Key Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyDown` +_expression_. `OnKeyDown` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyDown** event occurs when a user presses a key while a form or control The **OnKeyDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ToggleButton.OnKeyPress.md b/api/Access.ToggleButton.OnKeyPress.md index 9ce36f99fa4..e2e60f41425 100644 --- a/api/Access.ToggleButton.OnKeyPress.md +++ b/api/Access.ToggleButton.OnKeyPress.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.OnKeyPress Property (Access) +title: ToggleButton.OnKeyPress property (Access) keywords: vbaac10.chm11760 f1_keywords: - vbaac10.chm11760 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.OnKeyPress Property (Access) +# ToggleButton.OnKeyPress property (Access) Sets or returns the value of the **On Key Press** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyPress` +_expression_. `OnKeyPress` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyPress** event occurs when a user presses a key while a form or control The **OnKeyPress** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Press** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ToggleButton.OnKeyUp.md b/api/Access.ToggleButton.OnKeyUp.md index 70543f6022b..0d33c4ef176 100644 --- a/api/Access.ToggleButton.OnKeyUp.md +++ b/api/Access.ToggleButton.OnKeyUp.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.OnKeyUp Property (Access) +title: ToggleButton.OnKeyUp property (Access) keywords: vbaac10.chm11759 f1_keywords: - vbaac10.chm11759 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.OnKeyUp Property (Access) +# ToggleButton.OnKeyUp property (Access) Sets or returns the value of the **On Key Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyUp` +_expression_. `OnKeyUp` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyUp** event occurs when a user presses a key while a form or control ha The **OnKeyUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ToggleButton.OnLostFocus.md b/api/Access.ToggleButton.OnLostFocus.md index 520a4b54143..d3bdc220881 100644 --- a/api/Access.ToggleButton.OnLostFocus.md +++ b/api/Access.ToggleButton.OnLostFocus.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.OnLostFocus Property (Access) +title: ToggleButton.OnLostFocus property (Access) keywords: vbaac10.chm11752 f1_keywords: - vbaac10.chm11752 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.OnLostFocus Property (Access) +# ToggleButton.OnLostFocus property (Access) Sets or returns the value of the **On Lost Focus** box in the **Properties** window of the specified object. Read/write **String**. ## Syntax - _expression_. `OnLostFocus` +_expression_. `OnLostFocus` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **LostFocus** event occurs when the object loses the focus. The **OnLostFocus** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Lost Focus** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ToggleButton.OnMouseDown.md b/api/Access.ToggleButton.OnMouseDown.md index dc9a65dca98..ef89b09fa08 100644 --- a/api/Access.ToggleButton.OnMouseDown.md +++ b/api/Access.ToggleButton.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.OnMouseDown Property (Access) +title: ToggleButton.OnMouseDown property (Access) keywords: vbaac10.chm11755 f1_keywords: - vbaac10.chm11755 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.OnMouseDown Property (Access) +# ToggleButton.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ToggleButton.OnMouseMove.md b/api/Access.ToggleButton.OnMouseMove.md index f6f28b033a8..c6c4e8c3438 100644 --- a/api/Access.ToggleButton.OnMouseMove.md +++ b/api/Access.ToggleButton.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.OnMouseMove Property (Access) +title: ToggleButton.OnMouseMove property (Access) keywords: vbaac10.chm11756 f1_keywords: - vbaac10.chm11756 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.OnMouseMove Property (Access) +# ToggleButton.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ToggleButton.OnMouseUp.md b/api/Access.ToggleButton.OnMouseUp.md index 9c386c3509b..64849a0a307 100644 --- a/api/Access.ToggleButton.OnMouseUp.md +++ b/api/Access.ToggleButton.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.OnMouseUp Property (Access) +title: ToggleButton.OnMouseUp property (Access) keywords: vbaac10.chm11757 f1_keywords: - vbaac10.chm11757 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.OnMouseUp Property (Access) +# ToggleButton.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.ToggleButton.OptionValue.md b/api/Access.ToggleButton.OptionValue.md index e096656f96d..f3ccb96c1d5 100644 --- a/api/Access.ToggleButton.OptionValue.md +++ b/api/Access.ToggleButton.OptionValue.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.OptionValue Property (Access) +title: ToggleButton.OptionValue property (Access) keywords: vbaac10.chm11705 f1_keywords: - vbaac10.chm11705 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.OptionValue Property (Access) +# ToggleButton.OptionValue property (Access) Each control in an option group has a numeric value that you can set with the **OptionValue** property. Read/write **Long**. ## Syntax - _expression_. `OptionValue` +_expression_. `OptionValue` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Parent.md b/api/Access.ToggleButton.Parent.md index b83c5174dbd..9147b97c719 100644 --- a/api/Access.ToggleButton.Parent.md +++ b/api/Access.ToggleButton.Parent.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Parent Property (Access) +title: ToggleButton.Parent property (Access) keywords: vbaac10.chm11688 f1_keywords: - vbaac10.chm11688 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Parent Property (Access) +# ToggleButton.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Picture.md b/api/Access.ToggleButton.Picture.md index 45856f9fc07..437cfdd5aa1 100644 --- a/api/Access.ToggleButton.Picture.md +++ b/api/Access.ToggleButton.Picture.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Picture Property (Access) +title: ToggleButton.Picture property (Access) keywords: vbaac10.chm11702 f1_keywords: - vbaac10.chm11702 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Picture Property (Access) +# ToggleButton.Picture property (Access) You can use the **Picture** property to specify a bitmap or other type of graphic to be displayed on the specified control. Read/write **String**. ## Syntax - _expression_. `Picture` +_expression_. `Picture` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.PictureData.md b/api/Access.ToggleButton.PictureData.md index cf4259a36a5..50f9224f2c0 100644 --- a/api/Access.ToggleButton.PictureData.md +++ b/api/Access.ToggleButton.PictureData.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.PictureData Property (Access) +title: ToggleButton.PictureData property (Access) keywords: vbaac10.chm11704 f1_keywords: - vbaac10.chm11704 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.PictureData Property (Access) +# ToggleButton.PictureData property (Access) You can use the **PictureData** property to copy the picture to another object that supports the **Picture** property. Read/write **Variant**. ## Syntax - _expression_. `PictureData` +_expression_. `PictureData` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.PictureType.md b/api/Access.ToggleButton.PictureType.md index b928c6704be..d49d30cd348 100644 --- a/api/Access.ToggleButton.PictureType.md +++ b/api/Access.ToggleButton.PictureType.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.PictureType Property (Access) +title: ToggleButton.PictureType property (Access) keywords: vbaac10.chm11703 f1_keywords: - vbaac10.chm11703 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.PictureType Property (Access) +# ToggleButton.PictureType property (Access) You can use the **PictureType** property to specify whether Microsoft Access stores an object's picture as a linked or an embedded object. Read/write **Byte**. ## Syntax - _expression_. `PictureType` +_expression_. `PictureType` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.PressedColor.md b/api/Access.ToggleButton.PressedColor.md index 98f9400a142..def3e8de61b 100644 --- a/api/Access.ToggleButton.PressedColor.md +++ b/api/Access.ToggleButton.PressedColor.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.PressedColor Property (Access) +title: ToggleButton.PressedColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.PressedColor Property (Access) +# ToggleButton.PressedColor property (Access) Gets or sets the color displayed on the control when the user clicks it. Read/write **Long**. ## Syntax - _expression_. `PressedColor` +_expression_. `PressedColor` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.PressedForeColor.md b/api/Access.ToggleButton.PressedForeColor.md index 553a948b966..c8522c41cff 100644 --- a/api/Access.ToggleButton.PressedForeColor.md +++ b/api/Access.ToggleButton.PressedForeColor.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.PressedForeColor Property (Access) +title: ToggleButton.PressedForeColor property (Access) keywords: vbaac10.chm10839 f1_keywords: - vbaac10.chm10839 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.PressedForeColor Property (Access) +# ToggleButton.PressedForeColor property (Access) Gets or sets the color of the text displayed on the control when the user clicks it. Read/write **Long**. ## Syntax - _expression_. `PressedForeColor` +_expression_. `PressedForeColor` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.PressedForeShade.md b/api/Access.ToggleButton.PressedForeShade.md index 880ad74721c..8b433c8edc1 100644 --- a/api/Access.ToggleButton.PressedForeShade.md +++ b/api/Access.ToggleButton.PressedForeShade.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.PressedForeShade Property (Access) +title: ToggleButton.PressedForeShade property (Access) keywords: vbaac10.chm14626 f1_keywords: - vbaac10.chm14626 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.PressedForeShade Property (Access) +# ToggleButton.PressedForeShade property (Access) Gets or sets the shade applied to the theme color in the **PressedForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `PressedForeShade` +_expression_. `PressedForeShade` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.PressedForeThemeColorIndex.md b/api/Access.ToggleButton.PressedForeThemeColorIndex.md index 097fb3d7c2b..a4e1cd2554a 100644 --- a/api/Access.ToggleButton.PressedForeThemeColorIndex.md +++ b/api/Access.ToggleButton.PressedForeThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.PressedForeThemeColorIndex Property (Access) +title: ToggleButton.PressedForeThemeColorIndex property (Access) keywords: vbaac10.chm14624 f1_keywords: - vbaac10.chm14624 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.PressedForeThemeColorIndex Property (Access) +# ToggleButton.PressedForeThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **PressedForeColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `PressedForeThemeColorIndex` +_expression_. `PressedForeThemeColorIndex` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.PressedForeTint.md b/api/Access.ToggleButton.PressedForeTint.md index c39d3f08e76..595b92a2f00 100644 --- a/api/Access.ToggleButton.PressedForeTint.md +++ b/api/Access.ToggleButton.PressedForeTint.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.PressedForeTint Property (Access) +title: ToggleButton.PressedForeTint property (Access) keywords: vbaac10.chm14625 f1_keywords: - vbaac10.chm14625 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.PressedForeTint Property (Access) +# ToggleButton.PressedForeTint property (Access) Gets or sets the tint applied to the theme color in the **PressedForeColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `PressedForeTint` +_expression_. `PressedForeTint` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.PressedShade.md b/api/Access.ToggleButton.PressedShade.md index b14ceb02949..247e00f4f4c 100644 --- a/api/Access.ToggleButton.PressedShade.md +++ b/api/Access.ToggleButton.PressedShade.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.PressedShade Property (Access) +title: ToggleButton.PressedShade property (Access) keywords: vbaac10.chm14622 f1_keywords: - vbaac10.chm14622 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.PressedShade Property (Access) +# ToggleButton.PressedShade property (Access) Gets or sets the shade that is applied to the theme color in the **PressedColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `PressedShade` +_expression_. `PressedShade` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.PressedThemeColorIndex.md b/api/Access.ToggleButton.PressedThemeColorIndex.md index 639f9e58a8e..0fb273a49c3 100644 --- a/api/Access.ToggleButton.PressedThemeColorIndex.md +++ b/api/Access.ToggleButton.PressedThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.PressedThemeColorIndex Property (Access) +title: ToggleButton.PressedThemeColorIndex property (Access) keywords: vbaac10.chm14620 f1_keywords: - vbaac10.chm14620 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.PressedThemeColorIndex Property (Access) +# ToggleButton.PressedThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **PressedColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `PressedThemeColorIndex` +_expression_. `PressedThemeColorIndex` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.PressedTint.md b/api/Access.ToggleButton.PressedTint.md index bfbaf28d915..20c4ecceb89 100644 --- a/api/Access.ToggleButton.PressedTint.md +++ b/api/Access.ToggleButton.PressedTint.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.PressedTint Property (Access) +title: ToggleButton.PressedTint property (Access) keywords: vbaac10.chm14621 f1_keywords: - vbaac10.chm14621 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.PressedTint Property (Access) +# ToggleButton.PressedTint property (Access) Gets or sets the tint applied to the theme color in the **PressedColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `PressedTint` +_expression_. `PressedTint` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Properties.md b/api/Access.ToggleButton.Properties.md index 1ed877f388b..46a7f24f074 100644 --- a/api/Access.ToggleButton.Properties.md +++ b/api/Access.ToggleButton.Properties.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Properties Property (Access) +title: ToggleButton.Properties property (Access) keywords: vbaac10.chm11691 f1_keywords: - vbaac10.chm11691 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Properties Property (Access) +# ToggleButton.Properties property (Access) Returns a reference to a control's **[Properties](Access.Properties.md)** collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.QuickStyle.md b/api/Access.ToggleButton.QuickStyle.md index 7843e9cf93a..48be4f92394 100644 --- a/api/Access.ToggleButton.QuickStyle.md +++ b/api/Access.ToggleButton.QuickStyle.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.QuickStyle Property (Access) +title: ToggleButton.QuickStyle property (Access) keywords: vbaac10.chm14646 f1_keywords: - vbaac10.chm14646 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.QuickStyle Property (Access) +# ToggleButton.QuickStyle property (Access) Gets or sets the Quick Style that is applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `QuickStyle` +_expression_. `QuickStyle` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.ReadingOrder.md b/api/Access.ToggleButton.ReadingOrder.md index 1b16966948b..9d01c955579 100644 --- a/api/Access.ToggleButton.ReadingOrder.md +++ b/api/Access.ToggleButton.ReadingOrder.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.ReadingOrder Property (Access) +title: ToggleButton.ReadingOrder property (Access) keywords: vbaac10.chm11761 f1_keywords: - vbaac10.chm11761 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.ReadingOrder Property (Access) +# ToggleButton.ReadingOrder property (Access) You can use the **ReadingOrder** property to specify or determine the reading order of words in text. Read/write **Byte**. ## Syntax - _expression_. `ReadingOrder` +_expression_. `ReadingOrder` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Requery.md b/api/Access.ToggleButton.Requery.md index f4269ffcd75..06964d58083 100644 --- a/api/Access.ToggleButton.Requery.md +++ b/api/Access.ToggleButton.Requery.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Requery Method (Access) +title: ToggleButton.Requery method (Access) keywords: vbaac10.chm11693 f1_keywords: - vbaac10.chm11693 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Requery Method (Access) +# ToggleButton.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.RightPadding.md b/api/Access.ToggleButton.RightPadding.md index ddcecef2cd5..822e50937d6 100644 --- a/api/Access.ToggleButton.RightPadding.md +++ b/api/Access.ToggleButton.RightPadding.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.RightPadding Property (Access) +title: ToggleButton.RightPadding property (Access) keywords: vbaac10.chm11782 f1_keywords: - vbaac10.chm11782 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.RightPadding Property (Access) +# ToggleButton.RightPadding property (Access) Gets or sets the amount of space (in inches) between the toggle button and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## See also diff --git a/api/Access.ToggleButton.Section.md b/api/Access.ToggleButton.Section.md index 5af3aa022e7..3ff3670036c 100644 --- a/api/Access.ToggleButton.Section.md +++ b/api/Access.ToggleButton.Section.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Section Property (Access) +title: ToggleButton.Section property (Access) keywords: vbaac10.chm11741 f1_keywords: - vbaac10.chm11741 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Section Property (Access) +# ToggleButton.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.SetFocus.md b/api/Access.ToggleButton.SetFocus.md index 202aa404803..264c95107af 100644 --- a/api/Access.ToggleButton.SetFocus.md +++ b/api/Access.ToggleButton.SetFocus.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.SetFocus Method (Access) +title: ToggleButton.SetFocus method (Access) keywords: vbaac10.chm11694 f1_keywords: - vbaac10.chm11694 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# ToggleButton.SetFocus Method (Access) +# ToggleButton.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. -### Return Value +### Return value Nothing diff --git a/api/Access.ToggleButton.Shadow.md b/api/Access.ToggleButton.Shadow.md index 78ee44e8e1f..4e38e95c86c 100644 --- a/api/Access.ToggleButton.Shadow.md +++ b/api/Access.ToggleButton.Shadow.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Shadow Property (Access) +title: ToggleButton.Shadow property (Access) keywords: vbaac10.chm14638 f1_keywords: - vbaac10.chm14638 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Shadow Property (Access) +# ToggleButton.Shadow property (Access) Gets or sets the **Shadow** effect applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `Shadow` +_expression_. `Shadow` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Shape.md b/api/Access.ToggleButton.Shape.md index 805f3d51fb6..34e8cc5185a 100644 --- a/api/Access.ToggleButton.Shape.md +++ b/api/Access.ToggleButton.Shape.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Shape Property (Access) +title: ToggleButton.Shape property (Access) keywords: vbaac10.chm14628 f1_keywords: - vbaac10.chm14628 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Shape Property (Access) +# ToggleButton.Shape property (Access) Returns or sets the shape of the specified toggle button. Read/write **Long**. ## Syntax - _expression_. `Shape` +_expression_. `Shape` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.ShortcutMenuBar.md b/api/Access.ToggleButton.ShortcutMenuBar.md index da2e48cd0d4..fc5f442cc56 100644 --- a/api/Access.ToggleButton.ShortcutMenuBar.md +++ b/api/Access.ToggleButton.ShortcutMenuBar.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.ShortcutMenuBar Property (Access) +title: ToggleButton.ShortcutMenuBar property (Access) keywords: vbaac10.chm11730 f1_keywords: - vbaac10.chm11730 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.ShortcutMenuBar Property (Access) +# ToggleButton.ShortcutMenuBar property (Access) You can use the **ShortcutMenuBar** property to specify the shortcut menu that will appear when you right-click on the specified object. Read/write **String**. ## Syntax - _expression_. `ShortcutMenuBar` +_expression_. `ShortcutMenuBar` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.SizeToFit.md b/api/Access.ToggleButton.SizeToFit.md index 8aa54bf5e8b..af6d13d7efa 100644 --- a/api/Access.ToggleButton.SizeToFit.md +++ b/api/Access.ToggleButton.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.SizeToFit Method (Access) +title: ToggleButton.SizeToFit method (Access) keywords: vbaac10.chm11692 f1_keywords: - vbaac10.chm11692 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.SizeToFit Method (Access) +# ToggleButton.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.SoftEdges.md b/api/Access.ToggleButton.SoftEdges.md index 2eb18b7d79f..62d1f8056eb 100644 --- a/api/Access.ToggleButton.SoftEdges.md +++ b/api/Access.ToggleButton.SoftEdges.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.SoftEdges Property (Access) +title: ToggleButton.SoftEdges property (Access) keywords: vbaac10.chm14639 f1_keywords: - vbaac10.chm14639 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.SoftEdges Property (Access) +# ToggleButton.SoftEdges property (Access) Gets or sets the **Soft Edges** effect applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `SoftEdges` +_expression_. `SoftEdges` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.StatusBarText.md b/api/Access.ToggleButton.StatusBarText.md index e95e3602410..8ae8a7249f8 100644 --- a/api/Access.ToggleButton.StatusBarText.md +++ b/api/Access.ToggleButton.StatusBarText.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.StatusBarText Property (Access) +title: ToggleButton.StatusBarText property (Access) keywords: vbaac10.chm11709 f1_keywords: - vbaac10.chm11709 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.StatusBarText Property (Access) +# ToggleButton.StatusBarText property (Access) You can use the **StatusBarText** property to specify the text that is displayed in the status bar when a control is selected. Read/write **String**. ## Syntax - _expression_. `StatusBarText` +_expression_. `StatusBarText` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.TabIndex.md b/api/Access.ToggleButton.TabIndex.md index 4ae5fb8633b..c0f378d2441 100644 --- a/api/Access.ToggleButton.TabIndex.md +++ b/api/Access.ToggleButton.TabIndex.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.TabIndex Property (Access) +title: ToggleButton.TabIndex property (Access) keywords: vbaac10.chm11716 f1_keywords: - vbaac10.chm11716 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.TabIndex Property (Access) +# ToggleButton.TabIndex property (Access) You can use the **TabIndex** property to specify a control's place in the tab order on a form or report. Read/write **Integer**. ## Syntax - _expression_. `TabIndex` +_expression_. `TabIndex` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.TabStop.md b/api/Access.ToggleButton.TabStop.md index ea6a4ad29fd..867c4a0c8e7 100644 --- a/api/Access.ToggleButton.TabStop.md +++ b/api/Access.ToggleButton.TabStop.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.TabStop Property (Access) +title: ToggleButton.TabStop property (Access) keywords: vbaac10.chm11715 f1_keywords: - vbaac10.chm11715 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.TabStop Property (Access) +# ToggleButton.TabStop property (Access) You can use the **TabStop** property to specify whether you can use the TAB key to move the focus to a control. Read/write **Boolean**. ## Syntax - _expression_. `TabStop` +_expression_. `TabStop` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Tag.md b/api/Access.ToggleButton.Tag.md index 8d9d4308249..3ec1cfc98b2 100644 --- a/api/Access.ToggleButton.Tag.md +++ b/api/Access.ToggleButton.Tag.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Tag Property (Access) +title: ToggleButton.Tag property (Access) keywords: vbaac10.chm11743 f1_keywords: - vbaac10.chm11743 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Tag Property (Access) +# ToggleButton.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.ThemeFontIndex.md b/api/Access.ToggleButton.ThemeFontIndex.md index bbdf362f061..3367d576ed3 100644 --- a/api/Access.ToggleButton.ThemeFontIndex.md +++ b/api/Access.ToggleButton.ThemeFontIndex.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.ThemeFontIndex Property (Access) +title: ToggleButton.ThemeFontIndex property (Access) keywords: vbaac10.chm14610 f1_keywords: - vbaac10.chm14610 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.ThemeFontIndex Property (Access) +# ToggleButton.ThemeFontIndex property (Access) Gets or sets the font index that represents a font in the applied theme associated with the **FontName** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `ThemeFontIndex` +_expression_. `ThemeFontIndex` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Top.md b/api/Access.ToggleButton.Top.md index 185463bf7e6..f3ae9578799 100644 --- a/api/Access.ToggleButton.Top.md +++ b/api/Access.ToggleButton.Top.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Top Property (Access) +title: ToggleButton.Top property (Access) keywords: vbaac10.chm11719 f1_keywords: - vbaac10.chm11719 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Top Property (Access) +# ToggleButton.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. . ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.TopPadding.md b/api/Access.ToggleButton.TopPadding.md index 2712491e4b3..0c489f71f08 100644 --- a/api/Access.ToggleButton.TopPadding.md +++ b/api/Access.ToggleButton.TopPadding.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.TopPadding Property (Access) +title: ToggleButton.TopPadding property (Access) keywords: vbaac10.chm11781 f1_keywords: - vbaac10.chm11781 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.TopPadding Property (Access) +# ToggleButton.TopPadding property (Access) Gets or sets the amount of space (in inches) between the toggle button and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## See also diff --git a/api/Access.ToggleButton.TripleState.md b/api/Access.ToggleButton.TripleState.md index 4f69079be7f..f853b2168ea 100644 --- a/api/Access.ToggleButton.TripleState.md +++ b/api/Access.ToggleButton.TripleState.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.TripleState Property (Access) +title: ToggleButton.TripleState property (Access) keywords: vbaac10.chm11714 f1_keywords: - vbaac10.chm11714 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.TripleState Property (Access) +# ToggleButton.TripleState property (Access) You can use the **TripleState** property to specify how the specified control will display Null values. Read/write **Boolean**. ## Syntax - _expression_. `TripleState` +_expression_. `TripleState` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Undo.md b/api/Access.ToggleButton.Undo.md index 174688e2701..d05b78a6f15 100644 --- a/api/Access.ToggleButton.Undo.md +++ b/api/Access.ToggleButton.Undo.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Undo Method (Access) +title: ToggleButton.Undo method (Access) keywords: vbaac10.chm11689 f1_keywords: - vbaac10.chm11689 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Undo Method (Access) +# ToggleButton.Undo method (Access) You can use the **Undo** method to reset a control or form when its value has been changed. ## Syntax - _expression_. `Undo` +_expression_. `Undo` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.UseTheme.md b/api/Access.ToggleButton.UseTheme.md index 1f1e7bd14b3..e13f611ec9e 100644 --- a/api/Access.ToggleButton.UseTheme.md +++ b/api/Access.ToggleButton.UseTheme.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.UseTheme Property (Access) +title: ToggleButton.UseTheme property (Access) keywords: vbaac10.chm14627 f1_keywords: - vbaac10.chm14627 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.UseTheme Property (Access) +# ToggleButton.UseTheme property (Access) Gets or sets whether the specified object will utilize formatting styles defined in Office Document Themes. Read/write **Boolean**. ## Syntax - _expression_. `UseTheme` +_expression_. `UseTheme` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.ValidationRule.md b/api/Access.ToggleButton.ValidationRule.md index 3f980f82634..d3bb2b1cd86 100644 --- a/api/Access.ToggleButton.ValidationRule.md +++ b/api/Access.ToggleButton.ValidationRule.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.ValidationRule Property (Access) +title: ToggleButton.ValidationRule property (Access) keywords: vbaac10.chm11707 f1_keywords: - vbaac10.chm11707 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.ValidationRule Property (Access) +# ToggleButton.ValidationRule property (Access) You can use the **ValidationRule** property to specify requirements for data entered into a record, field, or control. When data is entered that violates the **ValidationRule** setting, you can use the **ValidationText** property to specify the message to be displayed to the user. Read/write **String**. ## Syntax - _expression_. `ValidationRule` +_expression_. `ValidationRule` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.ValidationText.md b/api/Access.ToggleButton.ValidationText.md index facb17b5912..e744a112222 100644 --- a/api/Access.ToggleButton.ValidationText.md +++ b/api/Access.ToggleButton.ValidationText.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.ValidationText Property (Access) +title: ToggleButton.ValidationText property (Access) keywords: vbaac10.chm11708 f1_keywords: - vbaac10.chm11708 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.ValidationText Property (Access) +# ToggleButton.ValidationText property (Access) Use the **ValidationText** property to specify a message to be displayed to the user when data is entered that violates a **ValidationRule** setting for a record, field, or control. Read/write **String**. ## Syntax - _expression_. `ValidationText` +_expression_. `ValidationText` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Value.md b/api/Access.ToggleButton.Value.md index b333feb7e6d..9d15d6c3374 100644 --- a/api/Access.ToggleButton.Value.md +++ b/api/Access.ToggleButton.Value.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Value Property (Access) +title: ToggleButton.Value property (Access) keywords: vbaac10.chm11696 f1_keywords: - vbaac10.chm11696 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Value Property (Access) +# ToggleButton.Value property (Access) Determines or specifies whether or not the specified toggle button control is selected. Read/write **Variant**. ## Syntax - _expression_. `Value` +_expression_. `Value` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.VerticalAnchor.md b/api/Access.ToggleButton.VerticalAnchor.md index 2fd8a597ba7..a69d364b04c 100644 --- a/api/Access.ToggleButton.VerticalAnchor.md +++ b/api/Access.ToggleButton.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.VerticalAnchor Property (Access) +title: ToggleButton.VerticalAnchor property (Access) keywords: vbaac10.chm11794 f1_keywords: - vbaac10.chm11794 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.VerticalAnchor Property (Access) +# ToggleButton.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified toggle button is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Visible.md b/api/Access.ToggleButton.Visible.md index 4988905dc10..4a83c89df62 100644 --- a/api/Access.ToggleButton.Visible.md +++ b/api/Access.ToggleButton.Visible.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Visible Property (Access) +title: ToggleButton.Visible property (Access) keywords: vbaac10.chm11710 f1_keywords: - vbaac10.chm11710 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Visible Property (Access) +# ToggleButton.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.Width.md b/api/Access.ToggleButton.Width.md index 7cfe4ae0e7a..caa4e44d57b 100644 --- a/api/Access.ToggleButton.Width.md +++ b/api/Access.ToggleButton.Width.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.Width Property (Access) +title: ToggleButton.Width property (Access) keywords: vbaac10.chm11720 f1_keywords: - vbaac10.chm11720 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.Width Property (Access) +# ToggleButton.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Access.ToggleButton.md b/api/Access.ToggleButton.md index 10e7ac73f59..46fdc63c97f 100644 --- a/api/Access.ToggleButton.md +++ b/api/Access.ToggleButton.md @@ -1,5 +1,5 @@ --- -title: ToggleButton Object (Access) +title: ToggleButton object (Access) keywords: vbaac10.chm11810 f1_keywords: - vbaac10.chm11810 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# ToggleButton Object (Access) +# ToggleButton object (Access) This object corresponds to a toggle button. A toggle button on a form is a stand-alone control used to display a Yes/No value from an underlying record source. diff --git a/api/Access.WSParameter.Name.md b/api/Access.WSParameter.Name.md index d02766a5d59..2c4b5201c8c 100644 --- a/api/Access.WSParameter.Name.md +++ b/api/Access.WSParameter.Name.md @@ -1,5 +1,5 @@ --- -title: WSParameter.Name Property (Access) +title: WSParameter.Name property (Access) keywords: vbaac10.chm14584 f1_keywords: - vbaac10.chm14584 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WSParameter.Name Property (Access) +# WSParameter.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [WSParameter](Access.WSParameter.md) object. +_expression_ A variable that represents a [WSParameter](Access.WSParameter.md) object. ## Remarks diff --git a/api/Access.WSParameter.Parent.md b/api/Access.WSParameter.Parent.md index c9250324095..0c65f31bb92 100644 --- a/api/Access.WSParameter.Parent.md +++ b/api/Access.WSParameter.Parent.md @@ -1,5 +1,5 @@ --- -title: WSParameter.Parent Property (Access) +title: WSParameter.Parent property (Access) keywords: vbaac10.chm14583 f1_keywords: - vbaac10.chm14583 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WSParameter.Parent Property (Access) +# WSParameter.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [WSParameter](Access.WSParameter.md) object. +_expression_ A variable that represents a [WSParameter](Access.WSParameter.md) object. ## See also diff --git a/api/Access.WSParameter.Type.md b/api/Access.WSParameter.Type.md index c624cef26c6..232767b3d2e 100644 --- a/api/Access.WSParameter.Type.md +++ b/api/Access.WSParameter.Type.md @@ -1,5 +1,5 @@ --- -title: WSParameter.Type Property (Access) +title: WSParameter.Type property (Access) keywords: vbaac10.chm12747 f1_keywords: - vbaac10.chm12747 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WSParameter.Type Property (Access) +# WSParameter.Type property (Access) Get the data type of the specified parameter. **Read-only** Integer. ## Syntax - _expression_. `Type` +_expression_. `Type` - _expression_ A variable that represents a [WSParameter](Access.WSParameter.md) object. +_expression_ A variable that represents a [WSParameter](Access.WSParameter.md) object. ## See also diff --git a/api/Access.WSParameter.md b/api/Access.WSParameter.md index c07fa9e00ad..8481da1d303 100644 --- a/api/Access.WSParameter.md +++ b/api/Access.WSParameter.md @@ -1,5 +1,5 @@ --- -title: WSParameter Object (Access) +title: WSParameter object (Access) keywords: vbaac10.chm14582 f1_keywords: - vbaac10.chm14582 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# WSParameter Object (Access) +# WSParameter object (Access) Represents a parameter defined for an [Operation](Access.Operation.md). diff --git a/api/Access.WSParameters.Count.md b/api/Access.WSParameters.Count.md index 21601a7da9b..e63ea5bba4d 100644 --- a/api/Access.WSParameters.Count.md +++ b/api/Access.WSParameters.Count.md @@ -1,5 +1,5 @@ --- -title: WSParameters.Count Property (Access) +title: WSParameters.Count property (Access) keywords: vbaac10.chm14580 f1_keywords: - vbaac10.chm14580 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WSParameters.Count Property (Access) +# WSParameters.Count property (Access) You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [WSParameters](Access.WSParameters.md) object. +_expression_ A variable that represents a [WSParameters](Access.WSParameters.md) object. ## See also diff --git a/api/Access.WSParameters.Item.md b/api/Access.WSParameters.Item.md index 8d8cb2348b1..5a9fad0afba 100644 --- a/api/Access.WSParameters.Item.md +++ b/api/Access.WSParameters.Item.md @@ -1,5 +1,5 @@ --- -title: WSParameters.Item Property (Access) +title: WSParameters.Item property (Access) keywords: vbaac10.chm14579 f1_keywords: - vbaac10.chm14579 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# WSParameters.Item Property (Access) +# WSParameters.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **Object**. ## Syntax - _expression_. `Item`( ` _Index_` ) +_expression_. `Item`( ` _Index_` ) - _expression_ A variable that represents a [WSParameters](Access.WSParameters.md) object. +_expression_ A variable that represents a [WSParameters](Access.WSParameters.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required|**Variant**|| diff --git a/api/Access.WSParameters.Parent.md b/api/Access.WSParameters.Parent.md index 17be3b5a248..40adabb3535 100644 --- a/api/Access.WSParameters.Parent.md +++ b/api/Access.WSParameters.Parent.md @@ -1,5 +1,5 @@ --- -title: WSParameters.Parent Property (Access) +title: WSParameters.Parent property (Access) keywords: vbaac10.chm14586 f1_keywords: - vbaac10.chm14586 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WSParameters.Parent Property (Access) +# WSParameters.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [WSParameters](Access.WSParameters.md) object. +_expression_ A variable that represents a [WSParameters](Access.WSParameters.md) object. ## See also diff --git a/api/Access.WSParameters.md b/api/Access.WSParameters.md index f39eab9c74a..33a0da9fffa 100644 --- a/api/Access.WSParameters.md +++ b/api/Access.WSParameters.md @@ -1,5 +1,5 @@ --- -title: WSParameters Object (Access) +title: WSParameters object (Access) keywords: vbaac10.chm14578 f1_keywords: - vbaac10.chm14578 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# WSParameters Object (Access) +# WSParameters object (Access) Represents the collection of parameters of defined for an [Operation](Access.Operation.md). diff --git a/api/Access.WebBrowserControl.AfterUpdate.md b/api/Access.WebBrowserControl.AfterUpdate.md index 6b31950c725..a6700ba6463 100644 --- a/api/Access.WebBrowserControl.AfterUpdate.md +++ b/api/Access.WebBrowserControl.AfterUpdate.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.AfterUpdate Event (Access) +title: WebBrowserControl.AfterUpdate event (Access) keywords: vbaac10.chm143125 f1_keywords: - vbaac10.chm143125 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.AfterUpdate Event (Access) +# WebBrowserControl.AfterUpdate event (Access) The **AfterUpdate** event occurs after changed data in a control or record is updated. ## Syntax - _expression_. `AfterUpdate` +_expression_. `AfterUpdate` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.Application.md b/api/Access.WebBrowserControl.Application.md index 79e5e60c1a3..d756b382c85 100644 --- a/api/Access.WebBrowserControl.Application.md +++ b/api/Access.WebBrowserControl.Application.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Application Property (Access) +title: WebBrowserControl.Application property (Access) keywords: vbaac10.chm14347 f1_keywords: - vbaac10.chm14347 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Application Property (Access) +# WebBrowserControl.Application property (Access) You can use the **Application** property to access the active Microsoft Access[Application](Access.Application.md)object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.BeforeNavigate2.md b/api/Access.WebBrowserControl.BeforeNavigate2.md index d7d0913131f..dd690a436dd 100644 --- a/api/Access.WebBrowserControl.BeforeNavigate2.md +++ b/api/Access.WebBrowserControl.BeforeNavigate2.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.BeforeNavigate2 Event (Access) +title: WebBrowserControl.BeforeNavigate2 event (Access) keywords: vbaac10.chm143140 f1_keywords: - vbaac10.chm143140 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.BeforeNavigate2 Event (Access) +# WebBrowserControl.BeforeNavigate2 event (Access) Occurs before navigation occurs in the given **WebBrowserControl**. ## Syntax - _expression_. `BeforeNavigate2`( ` _pDisp_`, ` _URL_`, ` _flags_`, ` _TargetFrameName_`, ` _PostData_`, ` _Headers_`, ` _Cancel_` ) +_expression_. `BeforeNavigate2`( ` _pDisp_`, ` _URL_`, ` _flags_`, ` _TargetFrameName_`, ` _PostData_`, ` _Headers_`, ` _Cancel_` ) - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _pDisp_|Required|**Object**|A pointer to the **IDispatch** interface for the WebBrowser object that represents the window or frame.| | _URL_|Required|**Variant**|Contains the URL to be navigated to.| diff --git a/api/Access.WebBrowserControl.BeforeUpdate.md b/api/Access.WebBrowserControl.BeforeUpdate.md index 27529b05166..5c1df56db0c 100644 --- a/api/Access.WebBrowserControl.BeforeUpdate.md +++ b/api/Access.WebBrowserControl.BeforeUpdate.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.BeforeUpdate Event (Access) +title: WebBrowserControl.BeforeUpdate event (Access) keywords: vbaac10.chm143124 f1_keywords: - vbaac10.chm143124 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.BeforeUpdate Event (Access) +# WebBrowserControl.BeforeUpdate event (Access) The **BeforeUpdate** event occurs before changed data in a control or record is updated. ## Syntax - _expression_. `BeforeUpdate`( ` _Cancel_`, ) +_expression_. `BeforeUpdate`( ` _Cancel_`, ) - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.BorderColor.md b/api/Access.WebBrowserControl.BorderColor.md index 2a090c49c3a..50dc466b3b1 100644 --- a/api/Access.WebBrowserControl.BorderColor.md +++ b/api/Access.WebBrowserControl.BorderColor.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.BorderColor Property (Access) +title: WebBrowserControl.BorderColor property (Access) keywords: vbaac10.chm14376 f1_keywords: - vbaac10.chm14376 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.BorderColor Property (Access) +# WebBrowserControl.BorderColor property (Access) You can use the **BorderColor** property to specify the color of a control's border. Read/write **Long**. ## Syntax - _expression_. `BorderColor` +_expression_. `BorderColor` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.BorderShade.md b/api/Access.WebBrowserControl.BorderShade.md index 9fc56fd56fd..d5f7e885e1a 100644 --- a/api/Access.WebBrowserControl.BorderShade.md +++ b/api/Access.WebBrowserControl.BorderShade.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.BorderShade Property (Access) +title: WebBrowserControl.BorderShade property (Access) keywords: vbaac10.chm14603 f1_keywords: - vbaac10.chm14603 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.BorderShade Property (Access) +# WebBrowserControl.BorderShade property (Access) Gets or sets the shade applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderShade` +_expression_. `BorderShade` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.BorderStyle.md b/api/Access.WebBrowserControl.BorderStyle.md index afe68f753bf..8129cfc7e7b 100644 --- a/api/Access.WebBrowserControl.BorderStyle.md +++ b/api/Access.WebBrowserControl.BorderStyle.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.BorderStyle Property (Access) +title: WebBrowserControl.BorderStyle property (Access) keywords: vbaac10.chm14375 f1_keywords: - vbaac10.chm14375 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.BorderStyle Property (Access) +# WebBrowserControl.BorderStyle property (Access) Specifies how a control's border appears.Read/write **Byte**. ## Syntax - _expression_. `BorderStyle` +_expression_. `BorderStyle` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.BorderThemeColorIndex.md b/api/Access.WebBrowserControl.BorderThemeColorIndex.md index d2e7a351aa2..26bd9450d96 100644 --- a/api/Access.WebBrowserControl.BorderThemeColorIndex.md +++ b/api/Access.WebBrowserControl.BorderThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.BorderThemeColorIndex Property (Access) +title: WebBrowserControl.BorderThemeColorIndex property (Access) keywords: vbaac10.chm14634 f1_keywords: - vbaac10.chm14634 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.BorderThemeColorIndex Property (Access) +# WebBrowserControl.BorderThemeColorIndex property (Access) Gets or sets a value that represents a color in the applied color theme associated with the **BorderColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `BorderThemeColorIndex` +_expression_. `BorderThemeColorIndex` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.BorderTint.md b/api/Access.WebBrowserControl.BorderTint.md index a73c9862560..b4555fcf2f9 100644 --- a/api/Access.WebBrowserControl.BorderTint.md +++ b/api/Access.WebBrowserControl.BorderTint.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.BorderTint Property (Access) +title: WebBrowserControl.BorderTint property (Access) keywords: vbaac10.chm14602 f1_keywords: - vbaac10.chm14602 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.BorderTint Property (Access) +# WebBrowserControl.BorderTint property (Access) Gets or sets the tint that is applied to the theme color in the **BorderColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `BorderTint` +_expression_. `BorderTint` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.BorderWidth.md b/api/Access.WebBrowserControl.BorderWidth.md index 03aa92c5e83..86dba2d4093 100644 --- a/api/Access.WebBrowserControl.BorderWidth.md +++ b/api/Access.WebBrowserControl.BorderWidth.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.BorderWidth Property (Access) +title: WebBrowserControl.BorderWidth property (Access) keywords: vbaac10.chm14377 f1_keywords: - vbaac10.chm14377 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.BorderWidth Property (Access) +# WebBrowserControl.BorderWidth property (Access) You can use the **BorderWidth** property to specify the width of a control's border. Read/write **Byte**. ## Syntax - _expression_. `BorderWidth` +_expression_. `BorderWidth` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.BottomPadding.md b/api/Access.WebBrowserControl.BottomPadding.md index 1abd7c789b6..6089e2c6988 100644 --- a/api/Access.WebBrowserControl.BottomPadding.md +++ b/api/Access.WebBrowserControl.BottomPadding.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.BottomPadding Property (Access) +title: WebBrowserControl.BottomPadding property (Access) keywords: vbaac10.chm14393 f1_keywords: - vbaac10.chm14393 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.BottomPadding Property (Access) +# WebBrowserControl.BottomPadding property (Access) Gets or sets the amount of space (in inches) between the list box and its bottom gridline. Read/write **Integer**. ## Syntax - _expression_. `BottomPadding` +_expression_. `BottomPadding` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## See also diff --git a/api/Access.WebBrowserControl.Change.md b/api/Access.WebBrowserControl.Change.md index 21e3d244da0..091a6308b4f 100644 --- a/api/Access.WebBrowserControl.Change.md +++ b/api/Access.WebBrowserControl.Change.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Change Event (Access) +title: WebBrowserControl.Change event (Access) keywords: vbaac10.chm143129 f1_keywords: - vbaac10.chm143129 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Change Event (Access) +# WebBrowserControl.Change event (Access) The **Change** event occurs when the contents of the specified control changes. ## Syntax - _expression_. `Change` +_expression_. `Change` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.Click.md b/api/Access.WebBrowserControl.Click.md index b6e19578538..1c9fc532ab3 100644 --- a/api/Access.WebBrowserControl.Click.md +++ b/api/Access.WebBrowserControl.Click.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Click Event (Access) +title: WebBrowserControl.Click event (Access) keywords: vbaac10.chm143132 f1_keywords: - vbaac10.chm143132 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Click Event (Access) +# WebBrowserControl.Click event (Access) The **Click** event occurs when the user presses and then releases a mouse button over an object. ## Syntax - _expression_. `Click` +_expression_. `Click` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.ControlSource.md b/api/Access.WebBrowserControl.ControlSource.md index e83ea12a87c..dac3236c8e3 100644 --- a/api/Access.WebBrowserControl.ControlSource.md +++ b/api/Access.WebBrowserControl.ControlSource.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.ControlSource Property (Access) +title: WebBrowserControl.ControlSource property (Access) keywords: vbaac10.chm14359 f1_keywords: - vbaac10.chm14359 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.ControlSource Property (Access) +# WebBrowserControl.ControlSource property (Access) You can use the **ControlSource** property to specify what data appears in a control. You can display and edit data bound to a field in a table, query, or SQL statement. You can also display the result of an expression. Read/write **String**. ## Syntax - _expression_. `ControlSource` +_expression_. `ControlSource` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.ControlTipText.md b/api/Access.WebBrowserControl.ControlTipText.md index b2a281353a3..b56a5e96de6 100644 --- a/api/Access.WebBrowserControl.ControlTipText.md +++ b/api/Access.WebBrowserControl.ControlTipText.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.ControlTipText Property (Access) +title: WebBrowserControl.ControlTipText property (Access) keywords: vbaac10.chm14682 f1_keywords: - vbaac10.chm14682 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.ControlTipText Property (Access) +# WebBrowserControl.ControlTipText property (Access) You can use the **ControlTipText** property to specify the text that appears in a ScreenTip when you hold the mouse pointer over a control. Read/write **String**. ## Syntax - _expression_. `ControlTipText` +_expression_. `ControlTipText` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.ControlType.md b/api/Access.WebBrowserControl.ControlType.md index bdd974cfcff..fac1c93d87f 100644 --- a/api/Access.WebBrowserControl.ControlType.md +++ b/api/Access.WebBrowserControl.ControlType.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.ControlType Property (Access) +title: WebBrowserControl.ControlType property (Access) keywords: vbaac10.chm14528 f1_keywords: - vbaac10.chm14528 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.ControlType Property (Access) +# WebBrowserControl.ControlType property (Access) You can use the **ControlType** property in Visual Basic to determine the type of a control on a form or report. Read/write **Byte**. ## Syntax - _expression_. `ControlType` +_expression_. `ControlType` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.Controls.md b/api/Access.WebBrowserControl.Controls.md index 7b901a0a9a3..c5864c2a14c 100644 --- a/api/Access.WebBrowserControl.Controls.md +++ b/api/Access.WebBrowserControl.Controls.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Controls Property (Access) +title: WebBrowserControl.Controls property (Access) keywords: vbaac10.chm14355 f1_keywords: - vbaac10.chm14355 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Controls Property (Access) +# WebBrowserControl.Controls property (Access) Returns the **Controls** collection of a form, subform, report or section. Read-only **Controls**. ## Syntax - _expression_. `Controls` +_expression_. `Controls` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.DblClick.md b/api/Access.WebBrowserControl.DblClick.md index f2b21792e28..8f664335a99 100644 --- a/api/Access.WebBrowserControl.DblClick.md +++ b/api/Access.WebBrowserControl.DblClick.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.DblClick Event (Access) +title: WebBrowserControl.DblClick event (Access) keywords: vbaac10.chm143133 f1_keywords: - vbaac10.chm143133 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.DblClick Event (Access) +# WebBrowserControl.DblClick event (Access) The **DblClick** event occurs when the user presses and releases the left mouse button twice over an object within the double-click time limit of the system. ## Syntax - _expression_. `DblClick`( ` _Cancel_`, ) +_expression_. `DblClick`( ` _Cancel_`, ) - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.Dirty.md b/api/Access.WebBrowserControl.Dirty.md index ec92649b95e..9e440aa5deb 100644 --- a/api/Access.WebBrowserControl.Dirty.md +++ b/api/Access.WebBrowserControl.Dirty.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Dirty Event (Access) +title: WebBrowserControl.Dirty event (Access) keywords: vbaac10.chm143128 f1_keywords: - vbaac10.chm143128 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Dirty Event (Access) +# WebBrowserControl.Dirty event (Access) The **Dirty** event occurs when the contents of the specified control changes. ## Syntax - _expression_. `Dirty`( ` _Cancel_`, ) +_expression_. `Dirty`( ` _Cancel_`, ) - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.DisplayWhen.md b/api/Access.WebBrowserControl.DisplayWhen.md index 196ad14b1ad..8c6c851cf9a 100644 --- a/api/Access.WebBrowserControl.DisplayWhen.md +++ b/api/Access.WebBrowserControl.DisplayWhen.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.DisplayWhen Property (Access) +title: WebBrowserControl.DisplayWhen property (Access) keywords: vbaac10.chm14360 f1_keywords: - vbaac10.chm14360 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.DisplayWhen Property (Access) +# WebBrowserControl.DisplayWhen property (Access) You can use the **DisplayWhen** property to specify which of a form's controls you want displayed on screen and in print. Read/write **Byte**. ## Syntax - _expression_. `DisplayWhen` +_expression_. `DisplayWhen` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.DocumentComplete.md b/api/Access.WebBrowserControl.DocumentComplete.md index f6c4dfea20b..18807c28d76 100644 --- a/api/Access.WebBrowserControl.DocumentComplete.md +++ b/api/Access.WebBrowserControl.DocumentComplete.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.DocumentComplete Event (Access) +title: WebBrowserControl.DocumentComplete event (Access) keywords: vbaac10.chm143141 f1_keywords: - vbaac10.chm143141 @@ -11,28 +11,28 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.DocumentComplete Event (Access) +# WebBrowserControl.DocumentComplete event (Access) Occurs when a document is completely loaded and initialized. ## Syntax - _expression_. `DocumentComplete`( ` _pDisp_`, ` _URL_` ) +_expression_. `DocumentComplete`( ` _pDisp_`, ` _URL_` ) - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _pDisp_|Required|**Object**| pointer to the **IDispatch** interface of the window or frame in which the document is loaded.| | _URL_|Required|**Variant**|Contains the URL of the loaded document.| -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.Enabled.md b/api/Access.WebBrowserControl.Enabled.md index 9c40fc8f0e2..5ed74bba7ec 100644 --- a/api/Access.WebBrowserControl.Enabled.md +++ b/api/Access.WebBrowserControl.Enabled.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Enabled Property (Access) +title: WebBrowserControl.Enabled property (Access) keywords: vbaac10.chm14361 f1_keywords: - vbaac10.chm14361 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Enabled Property (Access) +# WebBrowserControl.Enabled property (Access) You can use the **Enabled** property to set or return the status of the conditional format in the [FormatCondition](Access.FormatCondition.md)object. Read/write **Boolean**. ## Syntax - _expression_. `Enabled` +_expression_. `Enabled` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.Enter.md b/api/Access.WebBrowserControl.Enter.md index a0cfa5bffea..2edd3f0106c 100644 --- a/api/Access.WebBrowserControl.Enter.md +++ b/api/Access.WebBrowserControl.Enter.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Enter Event (Access) +title: WebBrowserControl.Enter event (Access) keywords: vbaac10.chm143126 f1_keywords: - vbaac10.chm143126 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Enter Event (Access) +# WebBrowserControl.Enter event (Access) The **Enter** event occurs before a control actually receives the focus from a control on the same form or report. ## Syntax - _expression_. `Enter` +_expression_. `Enter` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.EventProcPrefix.md b/api/Access.WebBrowserControl.EventProcPrefix.md index cd3c39f443b..b5e6d6c18d1 100644 --- a/api/Access.WebBrowserControl.EventProcPrefix.md +++ b/api/Access.WebBrowserControl.EventProcPrefix.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.EventProcPrefix Property (Access) +title: WebBrowserControl.EventProcPrefix property (Access) keywords: vbaac10.chm14683 f1_keywords: - vbaac10.chm14683 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.EventProcPrefix Property (Access) +# WebBrowserControl.EventProcPrefix property (Access) Gets or sets the prefix portion of an event procedure name. Read/write **String**. ## Syntax - _expression_. `EventProcPrefix` +_expression_. `EventProcPrefix` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.Exit.md b/api/Access.WebBrowserControl.Exit.md index c589569a102..01da37e7a06 100644 --- a/api/Access.WebBrowserControl.Exit.md +++ b/api/Access.WebBrowserControl.Exit.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Exit Event (Access) +title: WebBrowserControl.Exit event (Access) keywords: vbaac10.chm143127 f1_keywords: - vbaac10.chm143127 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Exit Event (Access) +# WebBrowserControl.Exit event (Access) The **Exit** event occurs just before a control loses the focus to another control on the same form or report. ## Syntax - _expression_. `Exit`( ` _Cancel_`, ) +_expression_. `Exit`( ` _Cancel_`, ) - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.GotFocus.md b/api/Access.WebBrowserControl.GotFocus.md index 4a0fb99d437..e7b9a8f36a0 100644 --- a/api/Access.WebBrowserControl.GotFocus.md +++ b/api/Access.WebBrowserControl.GotFocus.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.GotFocus Event (Access) +title: WebBrowserControl.GotFocus event (Access) keywords: vbaac10.chm143130 f1_keywords: - vbaac10.chm143130 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.GotFocus Event (Access) +# WebBrowserControl.GotFocus event (Access) The **GotFocus** event occurs when the specified object receives the focus. ## Syntax - _expression_. `GotFocus` +_expression_. `GotFocus` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.GridlineColor.md b/api/Access.WebBrowserControl.GridlineColor.md index dab2f1294ed..a2d70938caa 100644 --- a/api/Access.WebBrowserControl.GridlineColor.md +++ b/api/Access.WebBrowserControl.GridlineColor.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.GridlineColor Property (Access) +title: WebBrowserControl.GridlineColor property (Access) keywords: vbaac10.chm143144 f1_keywords: - vbaac10.chm143144 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.GridlineColor Property (Access) +# WebBrowserControl.GridlineColor property (Access) Gets or sets the color of the gridline for the specified list box. Read/write **Long**. ## Syntax - _expression_. `GridlineColor` +_expression_. `GridlineColor` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.GridlineShade.md b/api/Access.WebBrowserControl.GridlineShade.md index e1513aad357..f5434eca395 100644 --- a/api/Access.WebBrowserControl.GridlineShade.md +++ b/api/Access.WebBrowserControl.GridlineShade.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.GridlineShade Property (Access) +title: WebBrowserControl.GridlineShade property (Access) keywords: vbaac10.chm14637 f1_keywords: - vbaac10.chm14637 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.GridlineShade Property (Access) +# WebBrowserControl.GridlineShade property (Access) Gets or sets the shade applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineShade` +_expression_. `GridlineShade` - _expression_ A variable that represents an [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents an [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.GridlineStyleBottom.md b/api/Access.WebBrowserControl.GridlineStyleBottom.md index a6678f8d0f8..e28a307242f 100644 --- a/api/Access.WebBrowserControl.GridlineStyleBottom.md +++ b/api/Access.WebBrowserControl.GridlineStyleBottom.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.GridlineStyleBottom Property (Access) +title: WebBrowserControl.GridlineStyleBottom property (Access) keywords: vbaac10.chm14397 f1_keywords: - vbaac10.chm14397 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.GridlineStyleBottom Property (Access) +# WebBrowserControl.GridlineStyleBottom property (Access) Gets or sets the bottom gridline style of the specified list box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleBottom` +_expression_. `GridlineStyleBottom` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.GridlineStyleLeft.md b/api/Access.WebBrowserControl.GridlineStyleLeft.md index aed338059d0..343d9da7165 100644 --- a/api/Access.WebBrowserControl.GridlineStyleLeft.md +++ b/api/Access.WebBrowserControl.GridlineStyleLeft.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.GridlineStyleLeft Property (Access) +title: WebBrowserControl.GridlineStyleLeft property (Access) keywords: vbaac10.chm14394 f1_keywords: - vbaac10.chm14394 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.GridlineStyleLeft Property (Access) +# WebBrowserControl.GridlineStyleLeft property (Access) Gets or sets the width of the bottom gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleLeft` +_expression_. `GridlineStyleLeft` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.GridlineStyleRight.md b/api/Access.WebBrowserControl.GridlineStyleRight.md index ee1f4356ee9..647b6fc4389 100644 --- a/api/Access.WebBrowserControl.GridlineStyleRight.md +++ b/api/Access.WebBrowserControl.GridlineStyleRight.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.GridlineStyleRight Property (Access) +title: WebBrowserControl.GridlineStyleRight property (Access) keywords: vbaac10.chm14396 f1_keywords: - vbaac10.chm14396 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.GridlineStyleRight Property (Access) +# WebBrowserControl.GridlineStyleRight property (Access) Gets or sets the right gridline style of the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleRight` +_expression_. `GridlineStyleRight` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.GridlineStyleTop.md b/api/Access.WebBrowserControl.GridlineStyleTop.md index 67d102a0905..b192126c025 100644 --- a/api/Access.WebBrowserControl.GridlineStyleTop.md +++ b/api/Access.WebBrowserControl.GridlineStyleTop.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.GridlineStyleTop Property (Access) +title: WebBrowserControl.GridlineStyleTop property (Access) keywords: vbaac10.chm14395 f1_keywords: - vbaac10.chm14395 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.GridlineStyleTop Property (Access) +# WebBrowserControl.GridlineStyleTop property (Access) Gets or sets the top gridline style of the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineStyleTop` +_expression_. `GridlineStyleTop` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.GridlineThemeColorIndex.md b/api/Access.WebBrowserControl.GridlineThemeColorIndex.md index c3741356790..582a9e14c51 100644 --- a/api/Access.WebBrowserControl.GridlineThemeColorIndex.md +++ b/api/Access.WebBrowserControl.GridlineThemeColorIndex.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.GridlineThemeColorIndex Property (Access) +title: WebBrowserControl.GridlineThemeColorIndex property (Access) keywords: vbaac10.chm14635 f1_keywords: - vbaac10.chm14635 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.GridlineThemeColorIndex Property (Access) +# WebBrowserControl.GridlineThemeColorIndex property (Access) Gets or sets the theme color index that represents a color in the applied color theme associated with the **GridlineColor** property of the specified object. Read/write **Long**. ## Syntax - _expression_. `GridlineThemeColorIndex` +_expression_. `GridlineThemeColorIndex` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.GridlineTint.md b/api/Access.WebBrowserControl.GridlineTint.md index b6de3ed6887..70b91729435 100644 --- a/api/Access.WebBrowserControl.GridlineTint.md +++ b/api/Access.WebBrowserControl.GridlineTint.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.GridlineTint Property (Access) +title: WebBrowserControl.GridlineTint property (Access) keywords: vbaac10.chm14636 f1_keywords: - vbaac10.chm14636 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.GridlineTint Property (Access) +# WebBrowserControl.GridlineTint property (Access) Gets or sets the tint applied to the theme color in the **GridlineColor** property of the specified object. Read/write **Single**. ## Syntax - _expression_. `GridlineTint` +_expression_. `GridlineTint` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.GridlineWidthBottom.md b/api/Access.WebBrowserControl.GridlineWidthBottom.md index 84e7ef44188..9e435d0e061 100644 --- a/api/Access.WebBrowserControl.GridlineWidthBottom.md +++ b/api/Access.WebBrowserControl.GridlineWidthBottom.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.GridlineWidthBottom Property (Access) +title: WebBrowserControl.GridlineWidthBottom property (Access) keywords: vbaac10.chm14401 f1_keywords: - vbaac10.chm14401 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.GridlineWidthBottom Property (Access) +# WebBrowserControl.GridlineWidthBottom property (Access) Gets or sets the width of the bottom gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthBottom` +_expression_. `GridlineWidthBottom` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.GridlineWidthLeft.md b/api/Access.WebBrowserControl.GridlineWidthLeft.md index 109c853172e..4e552955a10 100644 --- a/api/Access.WebBrowserControl.GridlineWidthLeft.md +++ b/api/Access.WebBrowserControl.GridlineWidthLeft.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.GridlineWidthLeft Property (Access) +title: WebBrowserControl.GridlineWidthLeft property (Access) keywords: vbaac10.chm14398 f1_keywords: - vbaac10.chm14398 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.GridlineWidthLeft Property (Access) +# WebBrowserControl.GridlineWidthLeft property (Access) Gets or sets the width of the left gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthLeft` +_expression_. `GridlineWidthLeft` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.GridlineWidthRight.md b/api/Access.WebBrowserControl.GridlineWidthRight.md index e8fc0a18b83..12c70a2fb9c 100644 --- a/api/Access.WebBrowserControl.GridlineWidthRight.md +++ b/api/Access.WebBrowserControl.GridlineWidthRight.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.GridlineWidthRight Property (Access) +title: WebBrowserControl.GridlineWidthRight property (Access) keywords: vbaac10.chm14400 f1_keywords: - vbaac10.chm14400 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.GridlineWidthRight Property (Access) +# WebBrowserControl.GridlineWidthRight property (Access) Gets or sets the width of the right gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthRight` +_expression_. `GridlineWidthRight` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.GridlineWidthTop.md b/api/Access.WebBrowserControl.GridlineWidthTop.md index 109e46c4931..6b476450aaf 100644 --- a/api/Access.WebBrowserControl.GridlineWidthTop.md +++ b/api/Access.WebBrowserControl.GridlineWidthTop.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.GridlineWidthTop Property (Access) +title: WebBrowserControl.GridlineWidthTop property (Access) keywords: vbaac10.chm14399 f1_keywords: - vbaac10.chm14399 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.GridlineWidthTop Property (Access) +# WebBrowserControl.GridlineWidthTop property (Access) Gets or sets the width of the top gridline for the specified text box. Read/write **Byte**. ## Syntax - _expression_. `GridlineWidthTop` +_expression_. `GridlineWidthTop` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.Height.md b/api/Access.WebBrowserControl.Height.md index c8fe5fff9f4..986ab0127e1 100644 --- a/api/Access.WebBrowserControl.Height.md +++ b/api/Access.WebBrowserControl.Height.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Height Property (Access) +title: WebBrowserControl.Height property (Access) keywords: vbaac10.chm14373 f1_keywords: - vbaac10.chm14373 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Height Property (Access) +# WebBrowserControl.Height property (Access) Gets or sets the height of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Height` +_expression_. `Height` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.HelpContextId.md b/api/Access.WebBrowserControl.HelpContextId.md index eabb4fc94e9..7b4ba45ce92 100644 --- a/api/Access.WebBrowserControl.HelpContextId.md +++ b/api/Access.WebBrowserControl.HelpContextId.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.HelpContextId Property (Access) +title: WebBrowserControl.HelpContextId property (Access) keywords: vbaac10.chm14684 f1_keywords: - vbaac10.chm14684 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.HelpContextId Property (Access) +# WebBrowserControl.HelpContextId property (Access) The **HelpContextID** property specifies the context ID of a topic in the custom Help file specified by the **HelpFile** property setting. Read/write **Long**. ## Syntax - _expression_. `HelpContextId` +_expression_. `HelpContextId` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.HorizontalAnchor.md b/api/Access.WebBrowserControl.HorizontalAnchor.md index 09e6b3cabb2..3f170351734 100644 --- a/api/Access.WebBrowserControl.HorizontalAnchor.md +++ b/api/Access.WebBrowserControl.HorizontalAnchor.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.HorizontalAnchor Property (Access) +title: WebBrowserControl.HorizontalAnchor property (Access) keywords: vbaac10.chm14402 f1_keywords: - vbaac10.chm14402 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.HorizontalAnchor Property (Access) +# WebBrowserControl.HorizontalAnchor property (Access) Gets or sets an [AcHorizontalAnchor](Access.AcHorizontalAnchor.md) constant that indicates how the text box is anchored horizontally within its layout. Read/write. ## Syntax - _expression_. `HorizontalAnchor` +_expression_. `HorizontalAnchor` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.Hyperlink.md b/api/Access.WebBrowserControl.Hyperlink.md index 410b0f91f65..c7947b28d9f 100644 --- a/api/Access.WebBrowserControl.Hyperlink.md +++ b/api/Access.WebBrowserControl.Hyperlink.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Hyperlink Property (Access) +title: WebBrowserControl.Hyperlink property (Access) keywords: vbaac10.chm14356 f1_keywords: - vbaac10.chm14356 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Hyperlink Property (Access) +# WebBrowserControl.Hyperlink property (Access) You can use the **Hyperlink** property to return a reference to a **Hyperlink** object. You can use the **Hyperlink** property to access the properties and methods of a control's hyperlink. Read-only. ## Syntax - _expression_. `Hyperlink` +_expression_. `Hyperlink` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Example diff --git a/api/Access.WebBrowserControl.InSelection.md b/api/Access.WebBrowserControl.InSelection.md index 2356ac68bb6..e822dfa2694 100644 --- a/api/Access.WebBrowserControl.InSelection.md +++ b/api/Access.WebBrowserControl.InSelection.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.InSelection Property (Access) +title: WebBrowserControl.InSelection property (Access) keywords: vbaac10.chm14529 f1_keywords: - vbaac10.chm14529 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.InSelection Property (Access) +# WebBrowserControl.InSelection property (Access) You can use the **InSelection** property to determine or specify whether a control on a form in Design view is selected. Read/write **Boolean**. ## Syntax - _expression_. `InSelection` +_expression_. `InSelection` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.KeyDown.md b/api/Access.WebBrowserControl.KeyDown.md index 37ba7be12ff..d599556a6fd 100644 --- a/api/Access.WebBrowserControl.KeyDown.md +++ b/api/Access.WebBrowserControl.KeyDown.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.KeyDown Event (Access) +title: WebBrowserControl.KeyDown event (Access) keywords: vbaac10.chm143137 f1_keywords: - vbaac10.chm143137 @@ -11,28 +11,28 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.KeyDown Event (Access) +# WebBrowserControl.KeyDown event (Access) The **KeyDown** event occurs when the user presses a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyDown`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|| | _Shift_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.KeyPress.md b/api/Access.WebBrowserControl.KeyPress.md index a57a79b424b..632c6e14d2a 100644 --- a/api/Access.WebBrowserControl.KeyPress.md +++ b/api/Access.WebBrowserControl.KeyPress.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.KeyPress Event (Access) +title: WebBrowserControl.KeyPress event (Access) keywords: vbaac10.chm143138 f1_keywords: - vbaac10.chm143138 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.KeyPress Event (Access) +# WebBrowserControl.KeyPress event (Access) The **KeyPress** event occurs when the user presses and releases a key or key combination that corresponds to an ANSI code while a form or control has the focus. This event also occurs if you send an ANSI keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyPress`( ` _KeyAscii_`, ) +_expression_. `KeyPress`( ` _KeyAscii_`, ) - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyAscii_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.KeyUp.md b/api/Access.WebBrowserControl.KeyUp.md index 3fe831f4574..cc01cb55492 100644 --- a/api/Access.WebBrowserControl.KeyUp.md +++ b/api/Access.WebBrowserControl.KeyUp.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.KeyUp Event (Access) +title: WebBrowserControl.KeyUp event (Access) keywords: vbaac10.chm143139 f1_keywords: - vbaac10.chm143139 @@ -11,28 +11,28 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.KeyUp Event (Access) +# WebBrowserControl.KeyUp event (Access) The **KeyUp** event occurs when the user releases a key while a form or control has the focus. This event also occurs if you send a keystroke to a form or control by using the SendKeys action in a macro or the **SendKeys** statement in Visual Basic. ## Syntax - _expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) +_expression_. `KeyUp`( ` _KeyCode_`, ` _Shift_` ) - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeyCode_|Required|**Integer**|| | _Shift_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.Layout.md b/api/Access.WebBrowserControl.Layout.md index e87562c336b..adc29187b45 100644 --- a/api/Access.WebBrowserControl.Layout.md +++ b/api/Access.WebBrowserControl.Layout.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Layout Property (Access) +title: WebBrowserControl.Layout property (Access) keywords: vbaac10.chm14389 f1_keywords: - vbaac10.chm14389 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Layout Property (Access) +# WebBrowserControl.Layout property (Access) Returns the type of layout for the specified text box. Read-only [AcLayoutType](Access.AcLayoutType.md). ## Syntax - _expression_. `Layout` +_expression_. `Layout` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## See also diff --git a/api/Access.WebBrowserControl.LayoutID.md b/api/Access.WebBrowserControl.LayoutID.md index bb208495667..ae6fc212681 100644 --- a/api/Access.WebBrowserControl.LayoutID.md +++ b/api/Access.WebBrowserControl.LayoutID.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.LayoutID Property (Access) +title: WebBrowserControl.LayoutID property (Access) keywords: vbaac10.chm14412 f1_keywords: - vbaac10.chm14412 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.LayoutID Property (Access) +# WebBrowserControl.LayoutID property (Access) Returns the unique identifier for the layout that contains the specified text box. Read-only **Long**. ## Syntax - _expression_. `LayoutID` +_expression_. `LayoutID` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.Left.md b/api/Access.WebBrowserControl.Left.md index 9a97f9b9078..d52988b3c9c 100644 --- a/api/Access.WebBrowserControl.Left.md +++ b/api/Access.WebBrowserControl.Left.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Left Property (Access) +title: WebBrowserControl.Left property (Access) keywords: vbaac10.chm14370 f1_keywords: - vbaac10.chm14370 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Left Property (Access) +# WebBrowserControl.Left property (Access) You can use the **Left** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Left` +_expression_. `Left` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.LeftPadding.md b/api/Access.WebBrowserControl.LeftPadding.md index 7696bf1844a..d5733f54611 100644 --- a/api/Access.WebBrowserControl.LeftPadding.md +++ b/api/Access.WebBrowserControl.LeftPadding.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.LeftPadding Property (Access) +title: WebBrowserControl.LeftPadding property (Access) keywords: vbaac10.chm14390 f1_keywords: - vbaac10.chm14390 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.LeftPadding Property (Access) +# WebBrowserControl.LeftPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its left gridline. Read/write **Integer**. ## Syntax - _expression_. `LeftPadding` +_expression_. `LeftPadding` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## See also diff --git a/api/Access.WebBrowserControl.LocationURL.md b/api/Access.WebBrowserControl.LocationURL.md index 110b8987c75..d3d3efa5bae 100644 --- a/api/Access.WebBrowserControl.LocationURL.md +++ b/api/Access.WebBrowserControl.LocationURL.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.LocationURL Property (Access) +title: WebBrowserControl.LocationURL property (Access) keywords: vbaac10.chm14368 f1_keywords: - vbaac10.chm14368 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.LocationURL Property (Access) +# WebBrowserControl.LocationURL property (Access) Gets the Uniform Resource Locator (URL) of the current document. Read-only **String**. ## Syntax - _expression_. `LocationURL` +_expression_. `LocationURL` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## See also diff --git a/api/Access.WebBrowserControl.LostFocus.md b/api/Access.WebBrowserControl.LostFocus.md index 4db5d3a7c7a..c4b00273f00 100644 --- a/api/Access.WebBrowserControl.LostFocus.md +++ b/api/Access.WebBrowserControl.LostFocus.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.LostFocus Event (Access) +title: WebBrowserControl.LostFocus event (Access) keywords: vbaac10.chm143131 f1_keywords: - vbaac10.chm143131 @@ -11,19 +11,19 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.LostFocus Event (Access) +# WebBrowserControl.LostFocus event (Access) The **LostFocus** event occurs when the specified object loses the focus. ## Syntax - _expression_. `LostFocus` +_expression_. `LostFocus` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.MouseDown.md b/api/Access.WebBrowserControl.MouseDown.md index a49012f535c..8d13bf268ed 100644 --- a/api/Access.WebBrowserControl.MouseDown.md +++ b/api/Access.WebBrowserControl.MouseDown.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.MouseDown Event (Access) +title: WebBrowserControl.MouseDown event (Access) keywords: vbaac10.chm143134 f1_keywords: - vbaac10.chm143134 @@ -11,30 +11,30 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.MouseDown Event (Access) +# WebBrowserControl.MouseDown event (Access) The **MouseDown** event occurs when the user presses a mouse button. ## Syntax - _expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseDown`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|| | _Shift_|Required|**Integer**|| | _X_|Required|**Single**|| | _Y_|Required|**Single**|| -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.MouseMove.md b/api/Access.WebBrowserControl.MouseMove.md index a4700097b18..b4932ca0448 100644 --- a/api/Access.WebBrowserControl.MouseMove.md +++ b/api/Access.WebBrowserControl.MouseMove.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.MouseMove Event (Access) +title: WebBrowserControl.MouseMove event (Access) keywords: vbaac10.chm143135 f1_keywords: - vbaac10.chm143135 @@ -11,30 +11,30 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.MouseMove Event (Access) +# WebBrowserControl.MouseMove event (Access) The **MouseMove** event occurs when the user moves the mouse. ## Syntax - _expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseMove`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|| | _Shift_|Required|**Integer**|| | _X_|Required|**Single**|| | _Y_|Required|**Single**|| -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.MouseUp.md b/api/Access.WebBrowserControl.MouseUp.md index 6ee0bb8f2de..74ce34b4420 100644 --- a/api/Access.WebBrowserControl.MouseUp.md +++ b/api/Access.WebBrowserControl.MouseUp.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.MouseUp Event (Access) +title: WebBrowserControl.MouseUp event (Access) keywords: vbaac10.chm143136 f1_keywords: - vbaac10.chm143136 @@ -11,30 +11,30 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.MouseUp Event (Access) +# WebBrowserControl.MouseUp event (Access) The **MouseUp** event occurs when the user releases a mouse button. ## Syntax - _expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) +_expression_. `MouseUp`( ` _Button_`, ` _Shift_`, ` _X_`, ` _Y_` ) - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required|**Integer**|| | _Shift_|Required|**Integer**|| | _X_|Required|**Single**|| | _Y_|Required|**Single**|| -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.Move.md b/api/Access.WebBrowserControl.Move.md index 1973dc55e60..09ba7b725a0 100644 --- a/api/Access.WebBrowserControl.Move.md +++ b/api/Access.WebBrowserControl.Move.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Move Method (Access) +title: WebBrowserControl.Move method (Access) keywords: vbaac10.chm14387 f1_keywords: - vbaac10.chm14387 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Move Method (Access) +# WebBrowserControl.Move method (Access) Moves the specified object to the coordinates specified by the argument values. ## Syntax - _expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) +_expression_. `Move`( ` _Left_`, ` _Top_`, ` _Width_`, ` _Height_` ) - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required|**Variant**|| | _Top_|Optional|**Variant**|| diff --git a/api/Access.WebBrowserControl.Name.md b/api/Access.WebBrowserControl.Name.md index dc7989a1fa1..cc0e59bfc9c 100644 --- a/api/Access.WebBrowserControl.Name.md +++ b/api/Access.WebBrowserControl.Name.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Name Property (Access) +title: WebBrowserControl.Name property (Access) keywords: vbaac10.chm14386 f1_keywords: - vbaac10.chm14386 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Name Property (Access) +# WebBrowserControl.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.NavigateError.md b/api/Access.WebBrowserControl.NavigateError.md index b8610dac958..5d15bbc2c07 100644 --- a/api/Access.WebBrowserControl.NavigateError.md +++ b/api/Access.WebBrowserControl.NavigateError.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.NavigateError Event (Access) +title: WebBrowserControl.NavigateError event (Access) keywords: vbaac10.chm143143 f1_keywords: - vbaac10.chm143143 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.NavigateError Event (Access) +# WebBrowserControl.NavigateError event (Access) Occurs when an error occurs during navigation. ## Syntax - _expression_. `NavigateError`( ` _pDisp_`, ` _URL_`, ` _TargetFrameName_`, ` _StatusCode_`, ` _Cancel_` ) +_expression_. `NavigateError`( ` _pDisp_`, ` _URL_`, ` _TargetFrameName_`, ` _StatusCode_`, ` _Cancel_` ) - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _pDisp_|Required|**Object**|A pointer to an **IDispatch** interface for the WebBrowser object that represents the window or frame in which the navigation error occurred.| | _URL_|Required|**Variant**|Contains the URL for which navigation failed.| @@ -35,7 +35,7 @@ Occurs when an error occurs during navigation. | _StatusCode_|Required|**Variant**|Contains an error status code, if available.| | _Cancel_|Required|**Boolean**|Specifies whether to cancel the navigation to an error page or to any further autosearch.| -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.Object.md b/api/Access.WebBrowserControl.Object.md index ce2514ecf1d..376550bc3d0 100644 --- a/api/Access.WebBrowserControl.Object.md +++ b/api/Access.WebBrowserControl.Object.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Object Property (Access) +title: WebBrowserControl.Object property (Access) keywords: vbaac10.chm14369 f1_keywords: - vbaac10.chm14369 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Object Property (Access) +# WebBrowserControl.Object property (Access) You can use the **Object** property in Visual Basic to return a reference to the ActiveX object that is associated with a linked or embedded OLE object in a control. By using this reference, you can access the properties or invoke the methods of the OLE object. Read-only **Object**. ## Syntax - _expression_. `Object` +_expression_. `Object` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.OldValue.md b/api/Access.WebBrowserControl.OldValue.md index bed87625e4f..3da02c877a6 100644 --- a/api/Access.WebBrowserControl.OldValue.md +++ b/api/Access.WebBrowserControl.OldValue.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.OldValue Property (Access) +title: WebBrowserControl.OldValue property (Access) keywords: vbaac10.chm14350 f1_keywords: - vbaac10.chm14350 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.OldValue Property (Access) +# WebBrowserControl.OldValue property (Access) You can use the **OldValue** property to determine the unedited value of a bound control. Read-only **Variant**. ## Syntax - _expression_. `OldValue` +_expression_. `OldValue` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.OnBeforeNavigate.md b/api/Access.WebBrowserControl.OnBeforeNavigate.md index a501e9e123c..35af8a0d033 100644 --- a/api/Access.WebBrowserControl.OnBeforeNavigate.md +++ b/api/Access.WebBrowserControl.OnBeforeNavigate.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.OnBeforeNavigate Property (Access) +title: WebBrowserControl.OnBeforeNavigate property (Access) keywords: vbaac10.chm14413 f1_keywords: - vbaac10.chm14413 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.OnBeforeNavigate Property (Access) +# WebBrowserControl.OnBeforeNavigate property (Access) Gets or sets the value of the **On Before Navigate** box in the property sheet os a Web Browser control. Read/write **String**. ## Syntax - _expression_. `OnBeforeNavigate` +_expression_. `OnBeforeNavigate` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.OnDocumentComplete.md b/api/Access.WebBrowserControl.OnDocumentComplete.md index af3c3b90e6b..1c50dac1a76 100644 --- a/api/Access.WebBrowserControl.OnDocumentComplete.md +++ b/api/Access.WebBrowserControl.OnDocumentComplete.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.OnDocumentComplete Property (Access) +title: WebBrowserControl.OnDocumentComplete property (Access) keywords: vbaac10.chm14414 f1_keywords: - vbaac10.chm14414 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.OnDocumentComplete Property (Access) +# WebBrowserControl.OnDocumentComplete property (Access) Gets or sets the value of the **On Document Complete** box in the property sheet os a Web Browser control. Read/write **String**. ## Syntax - _expression_. `OnDocumentComplete` +_expression_. `OnDocumentComplete` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.OnKeyDown.md b/api/Access.WebBrowserControl.OnKeyDown.md index 9c33df0b5d2..2de74eddc57 100644 --- a/api/Access.WebBrowserControl.OnKeyDown.md +++ b/api/Access.WebBrowserControl.OnKeyDown.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.OnKeyDown Property (Access) +title: WebBrowserControl.OnKeyDown property (Access) keywords: vbaac10.chm14383 f1_keywords: - vbaac10.chm14383 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.OnKeyDown Property (Access) +# WebBrowserControl.OnKeyDown property (Access) Sets or returns the value of the **On Key Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyDown` +_expression_. `OnKeyDown` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyDown** event occurs when a user presses a key while a form or control The **OnKeyDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.WebBrowserControl.OnKeyPress.md b/api/Access.WebBrowserControl.OnKeyPress.md index 810c752a226..c66ad6ed96e 100644 --- a/api/Access.WebBrowserControl.OnKeyPress.md +++ b/api/Access.WebBrowserControl.OnKeyPress.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.OnKeyPress Property (Access) +title: WebBrowserControl.OnKeyPress property (Access) keywords: vbaac10.chm14385 f1_keywords: - vbaac10.chm14385 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.OnKeyPress Property (Access) +# WebBrowserControl.OnKeyPress property (Access) Sets or returns the value of the **On Key Press** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyPress` +_expression_. `OnKeyPress` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyPress** event occurs when a user presses a key while a form or control The **OnKeyPress** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Press** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.WebBrowserControl.OnKeyUp.md b/api/Access.WebBrowserControl.OnKeyUp.md index 387cb1daa18..5eabc408142 100644 --- a/api/Access.WebBrowserControl.OnKeyUp.md +++ b/api/Access.WebBrowserControl.OnKeyUp.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.OnKeyUp Property (Access) +title: WebBrowserControl.OnKeyUp property (Access) keywords: vbaac10.chm14384 f1_keywords: - vbaac10.chm14384 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.OnKeyUp Property (Access) +# WebBrowserControl.OnKeyUp property (Access) Sets or returns the value of the **On Key Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnKeyUp` +_expression_. `OnKeyUp` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **KeyUp** event occurs when a user presses a key while a form or control ha The **OnKeyUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Key Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_ ", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_ ", where_expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.WebBrowserControl.OnMouseDown.md b/api/Access.WebBrowserControl.OnMouseDown.md index 07a39926686..bb732f693b7 100644 --- a/api/Access.WebBrowserControl.OnMouseDown.md +++ b/api/Access.WebBrowserControl.OnMouseDown.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.OnMouseDown Property (Access) +title: WebBrowserControl.OnMouseDown property (Access) keywords: vbaac10.chm14380 f1_keywords: - vbaac10.chm14380 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.OnMouseDown Property (Access) +# WebBrowserControl.OnMouseDown property (Access) Sets or returns the value of the **On Mouse Down** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseDown` +_expression_. `OnMouseDown` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseDown** event occurs when the user clicks the mouse button while the The **OnMouseDown** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Down** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.WebBrowserControl.OnMouseMove.md b/api/Access.WebBrowserControl.OnMouseMove.md index 95d6f8516a4..0335f4bf2d2 100644 --- a/api/Access.WebBrowserControl.OnMouseMove.md +++ b/api/Access.WebBrowserControl.OnMouseMove.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.OnMouseMove Property (Access) +title: WebBrowserControl.OnMouseMove property (Access) keywords: vbaac10.chm14381 f1_keywords: - vbaac10.chm14381 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.OnMouseMove Property (Access) +# WebBrowserControl.OnMouseMove property (Access) Sets or returns the value of the **On Mouse Move** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseMove` +_expression_. `OnMouseMove` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseMove** event occurs when the user moves the mouse over the object. The **OnMouseMove** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Move** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.WebBrowserControl.OnMouseUp.md b/api/Access.WebBrowserControl.OnMouseUp.md index d5bf026772a..557a7440315 100644 --- a/api/Access.WebBrowserControl.OnMouseUp.md +++ b/api/Access.WebBrowserControl.OnMouseUp.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.OnMouseUp Property (Access) +title: WebBrowserControl.OnMouseUp property (Access) keywords: vbaac10.chm14382 f1_keywords: - vbaac10.chm14382 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.OnMouseUp Property (Access) +# WebBrowserControl.OnMouseUp property (Access) Sets or returns the value of the **On Mouse Up** box in the **Properties** window. Read/write **String**. ## Syntax - _expression_. `OnMouseUp` +_expression_. `OnMouseUp` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks @@ -32,7 +32,7 @@ The **MouseUp** event occurs when the user releases a mouse button. The **OnMouseUp** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Mouse Up** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.WebBrowserControl.OnNavigateError.md b/api/Access.WebBrowserControl.OnNavigateError.md index ce95eb23920..66ec7f41824 100644 --- a/api/Access.WebBrowserControl.OnNavigateError.md +++ b/api/Access.WebBrowserControl.OnNavigateError.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.OnNavigateError Property (Access) +title: WebBrowserControl.OnNavigateError property (Access) keywords: vbaac10.chm14415,vbaac10.chm5906 f1_keywords: - vbaac10.chm14415,vbaac10.chm5906 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.OnNavigateError Property (Access) +# WebBrowserControl.OnNavigateError property (Access) Gets or sets the value of the **On Navigate Error** box in the property sheet os a Web Browser control. Read/write **String**. ## Syntax - _expression_. `OnNavigateError` +_expression_. `OnNavigateError` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.OnProgressChange.md b/api/Access.WebBrowserControl.OnProgressChange.md index 96ef2e91ebc..d4744dfbbe9 100644 --- a/api/Access.WebBrowserControl.OnProgressChange.md +++ b/api/Access.WebBrowserControl.OnProgressChange.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.OnProgressChange Property (Access) +title: WebBrowserControl.OnProgressChange property (Access) keywords: vbaac10.chm14416 f1_keywords: - vbaac10.chm14416 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.OnProgressChange Property (Access) +# WebBrowserControl.OnProgressChange property (Access) Gets or sets the value of the **On Progress Change** box in the property sheet os a Web Browser control. Read/write **String**. ## Syntax - _expression_. `OnProgressChange` +_expression_. `OnProgressChange` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.OnUpdated.md b/api/Access.WebBrowserControl.OnUpdated.md index 66020dd41af..3a15dedbdb9 100644 --- a/api/Access.WebBrowserControl.OnUpdated.md +++ b/api/Access.WebBrowserControl.OnUpdated.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.OnUpdated Property (Access) +title: WebBrowserControl.OnUpdated property (Access) keywords: vbaac10.chm14417 f1_keywords: - vbaac10.chm14417 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.OnUpdated Property (Access) +# WebBrowserControl.OnUpdated property (Access) Sets or returns the value of the **On Updated** box in the **Properties** window of a form or report. Read/write **String**. ## Syntax - _expression_. `OnUpdated` +_expression_. `OnUpdated` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks @@ -30,7 +30,7 @@ This property is helpful for programmatically changing the action Microsoft Acce The **OnUpdated** value will be one of the following, depending on the selection chosen in the **Choose Builder** window (accessed by clicking the **Build** button next to the **On Updated** box in the object's **Properties** window): -- If Expression Builder is chosen, the value will be "= _expression_", where _expression_ is the expression from the Expression Builder window. +- If Expression Builder is chosen, the value will be "=_expression_", where _expression_ is the expression from the Expression Builder window. - If Macro Builder is chosen, the value is the name of the macro. diff --git a/api/Access.WebBrowserControl.Parent.md b/api/Access.WebBrowserControl.Parent.md index 9167361ed7b..2f400b6b901 100644 --- a/api/Access.WebBrowserControl.Parent.md +++ b/api/Access.WebBrowserControl.Parent.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Parent Property (Access) +title: WebBrowserControl.Parent property (Access) keywords: vbaac10.chm14348 f1_keywords: - vbaac10.chm14348 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Parent Property (Access) +# WebBrowserControl.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## See also diff --git a/api/Access.WebBrowserControl.Progress.md b/api/Access.WebBrowserControl.Progress.md index 6d2c60a12c6..15f385afce2 100644 --- a/api/Access.WebBrowserControl.Progress.md +++ b/api/Access.WebBrowserControl.Progress.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Progress Property (Access) +title: WebBrowserControl.Progress property (Access) keywords: vbaac10.chm14363 f1_keywords: - vbaac10.chm14363 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Progress Property (Access) +# WebBrowserControl.Progress property (Access) Specifies the amount of total progress of a download operation. Read-only **Long**. ## Syntax - _expression_. `Progress` +_expression_. `Progress` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.ProgressChange.md b/api/Access.WebBrowserControl.ProgressChange.md index fd6aae5cb6f..16e514a47d3 100644 --- a/api/Access.WebBrowserControl.ProgressChange.md +++ b/api/Access.WebBrowserControl.ProgressChange.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.ProgressChange Event (Access) +title: WebBrowserControl.ProgressChange event (Access) keywords: vbaac10.chm143142 f1_keywords: - vbaac10.chm143142 @@ -11,28 +11,28 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.ProgressChange Event (Access) +# WebBrowserControl.ProgressChange event (Access) Occurs when the progress of a download operation is updated. ## Syntax - _expression_. `ProgressChange`( ` _Progress_`, ` _ProgressMax_` ) +_expression_. `ProgressChange`( ` _Progress_`, ` _ProgressMax_` ) - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Progress_|Required|**Long**|Specifies the amount of total progress to show, or -1 when progress is complete.| | _ProgressMax_|Required|**Long**|Specifies the maximum progress value. | -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.Properties.md b/api/Access.WebBrowserControl.Properties.md index 2fa4652d6f7..2def179f785 100644 --- a/api/Access.WebBrowserControl.Properties.md +++ b/api/Access.WebBrowserControl.Properties.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Properties Property (Access) +title: WebBrowserControl.Properties property (Access) keywords: vbaac10.chm14351 f1_keywords: - vbaac10.chm14351 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Properties Property (Access) +# WebBrowserControl.Properties property (Access) Returns a reference to a control's[Properties](Access.Properties.md)collection object. Read-only. ## Syntax - _expression_. `Properties` +_expression_. `Properties` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.ReadyState.md b/api/Access.WebBrowserControl.ReadyState.md index 29d437ef5d8..6538706b478 100644 --- a/api/Access.WebBrowserControl.ReadyState.md +++ b/api/Access.WebBrowserControl.ReadyState.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.ReadyState Property (Access) +title: WebBrowserControl.ReadyState property (Access) keywords: vbaac10.chm14362 f1_keywords: - vbaac10.chm14362 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.ReadyState Property (Access) +# WebBrowserControl.ReadyState property (Access) Gets the status of the specified Web Browser control. Read-only [AcWebBrowserState](Access.AcWebBrowserState.md). ## Syntax - _expression_. `ReadyState` +_expression_. `ReadyState` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.Requery.md b/api/Access.WebBrowserControl.Requery.md index 723c5f437b4..fee27498b00 100644 --- a/api/Access.WebBrowserControl.Requery.md +++ b/api/Access.WebBrowserControl.Requery.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Requery Method (Access) +title: WebBrowserControl.Requery method (Access) keywords: vbaac10.chm14353 f1_keywords: - vbaac10.chm14353 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Requery Method (Access) +# WebBrowserControl.Requery method (Access) The **Requery** method updates the data underlying a specified control that's on the active form by requerying the source of data for the control. ## Syntax - _expression_. `Requery` +_expression_. `Requery` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.RightPadding.md b/api/Access.WebBrowserControl.RightPadding.md index c676f2a0be9..5e4a9c4f3d1 100644 --- a/api/Access.WebBrowserControl.RightPadding.md +++ b/api/Access.WebBrowserControl.RightPadding.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.RightPadding Property (Access) +title: WebBrowserControl.RightPadding property (Access) keywords: vbaac10.chm14392 f1_keywords: - vbaac10.chm14392 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.RightPadding Property (Access) +# WebBrowserControl.RightPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its right gridline. Read/write **Integer**. ## Syntax - _expression_. `RightPadding` +_expression_. `RightPadding` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## See also diff --git a/api/Access.WebBrowserControl.ScrollBars.md b/api/Access.WebBrowserControl.ScrollBars.md index 396e5a37b2b..43df96e1902 100644 --- a/api/Access.WebBrowserControl.ScrollBars.md +++ b/api/Access.WebBrowserControl.ScrollBars.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.ScrollBars Property (Access) +title: WebBrowserControl.ScrollBars property (Access) keywords: vbaac10.chm14364 f1_keywords: - vbaac10.chm14364 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.ScrollBars Property (Access) +# WebBrowserControl.ScrollBars property (Access) You can use the **ScrollBars** property to specify whether scroll bars appear on a text box control. Read/write **Byte**. ## Syntax - _expression_. `ScrollBars` +_expression_. `ScrollBars` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.ScrollLeft.md b/api/Access.WebBrowserControl.ScrollLeft.md index 3fcd6a4575e..0cc492a56fd 100644 --- a/api/Access.WebBrowserControl.ScrollLeft.md +++ b/api/Access.WebBrowserControl.ScrollLeft.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.ScrollLeft Property (Access) +title: WebBrowserControl.ScrollLeft property (Access) keywords: vbaac10.chm14366 f1_keywords: - vbaac10.chm14366 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.ScrollLeft Property (Access) +# WebBrowserControl.ScrollLeft property (Access) Gets or sets the distance, in pixels, between the left edge of the **WebBrowser** object and the leftmost portion of the content currently visible in the control. Read/write **Long**. ## Syntax - _expression_. `ScrollLeft` +_expression_. `ScrollLeft` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.ScrollTop.md b/api/Access.WebBrowserControl.ScrollTop.md index 888971b491d..14180b78ab9 100644 --- a/api/Access.WebBrowserControl.ScrollTop.md +++ b/api/Access.WebBrowserControl.ScrollTop.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.ScrollTop Property (Access) +title: WebBrowserControl.ScrollTop property (Access) keywords: vbaac10.chm14365,vbaac10.chm5909 f1_keywords: - vbaac10.chm14365,vbaac10.chm5909 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.ScrollTop Property (Access) +# WebBrowserControl.ScrollTop property (Access) Gets or sets the distance, in pixels, between the top edge of the **WebBrowser** object and the topmost portion of the content currently visible in the control. Read/write **Long**. ## Syntax - _expression_. `ScrollTop` +_expression_. `ScrollTop` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.Section.md b/api/Access.WebBrowserControl.Section.md index 4e643cb0fb0..f062d3f7b0a 100644 --- a/api/Access.WebBrowserControl.Section.md +++ b/api/Access.WebBrowserControl.Section.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Section Property (Access) +title: WebBrowserControl.Section property (Access) keywords: vbaac10.chm14379 f1_keywords: - vbaac10.chm14379 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Section Property (Access) +# WebBrowserControl.Section property (Access) You can identify these controls by the section of a form or report where the control appears. Read/write **Integer**. ## Syntax - _expression_. `Section` +_expression_. `Section` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.SetFocus.md b/api/Access.WebBrowserControl.SetFocus.md index 9424175634c..be8bf2e88c9 100644 --- a/api/Access.WebBrowserControl.SetFocus.md +++ b/api/Access.WebBrowserControl.SetFocus.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.SetFocus Method (Access) +title: WebBrowserControl.SetFocus method (Access) keywords: vbaac10.chm14354 f1_keywords: - vbaac10.chm14354 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.SetFocus Method (Access) +# WebBrowserControl.SetFocus method (Access) The **SetFocus** method moves the focus to the specified form, the specified control on the active form, or the specified field on the active datasheet. ## Syntax - _expression_. `SetFocus` +_expression_. `SetFocus` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.SizeToFit.md b/api/Access.WebBrowserControl.SizeToFit.md index f234be07573..8aa4d5be09a 100644 --- a/api/Access.WebBrowserControl.SizeToFit.md +++ b/api/Access.WebBrowserControl.SizeToFit.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.SizeToFit Method (Access) +title: WebBrowserControl.SizeToFit method (Access) keywords: vbaac10.chm14352 f1_keywords: - vbaac10.chm14352 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.SizeToFit Method (Access) +# WebBrowserControl.SizeToFit method (Access) You can use the **SizeToFit** method to size a control so it fits the text or image that it contains. ## Syntax - _expression_. `SizeToFit` +_expression_. `SizeToFit` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.SpecialEffect.md b/api/Access.WebBrowserControl.SpecialEffect.md index 1eed615b36f..7166d828976 100644 --- a/api/Access.WebBrowserControl.SpecialEffect.md +++ b/api/Access.WebBrowserControl.SpecialEffect.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.SpecialEffect Property (Access) +title: WebBrowserControl.SpecialEffect property (Access) keywords: vbaac10.chm14374 f1_keywords: - vbaac10.chm14374 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.SpecialEffect Property (Access) +# WebBrowserControl.SpecialEffect property (Access) You can use the **SpecialEffect** property to specify whether special formatting will apply to the specified object. Read/write **Byte**. ## Syntax - _expression_. `SpecialEffect` +_expression_. `SpecialEffect` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.StatusBarText.md b/api/Access.WebBrowserControl.StatusBarText.md index fae3c48e549..6a540deaec4 100644 --- a/api/Access.WebBrowserControl.StatusBarText.md +++ b/api/Access.WebBrowserControl.StatusBarText.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.StatusBarText Property (Access) +title: WebBrowserControl.StatusBarText property (Access) keywords: vbaac10.chm14681 f1_keywords: - vbaac10.chm14681 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.StatusBarText Property (Access) +# WebBrowserControl.StatusBarText property (Access) You can use the **StatusBarText** property to specify the text that is displayed in the status bar when a control is selected. Read/write **String**. ## Syntax - _expression_. `StatusBarText` +_expression_. `StatusBarText` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.TabIndex.md b/api/Access.WebBrowserControl.TabIndex.md index 5561561416f..6083ad9af97 100644 --- a/api/Access.WebBrowserControl.TabIndex.md +++ b/api/Access.WebBrowserControl.TabIndex.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.TabIndex Property (Access) +title: WebBrowserControl.TabIndex property (Access) keywords: vbaac10.chm143146 f1_keywords: - vbaac10.chm143146 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.TabIndex Property (Access) +# WebBrowserControl.TabIndex property (Access) You can use the **TabIndex** property to specify a control's place in the tab order on a form or report. Read/write **Integer**. ## Syntax - _expression_. `TabIndex` +_expression_. `TabIndex` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.TabStop.md b/api/Access.WebBrowserControl.TabStop.md index 816c0f9a10c..18c1457deb0 100644 --- a/api/Access.WebBrowserControl.TabStop.md +++ b/api/Access.WebBrowserControl.TabStop.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.TabStop Property (Access) +title: WebBrowserControl.TabStop property (Access) keywords: vbaac10.chm143145 f1_keywords: - vbaac10.chm143145 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.TabStop Property (Access) +# WebBrowserControl.TabStop property (Access) You can use the **TabStop** property to specify whether you can use the TAB key to move the focus to a control. Read/write **Boolean**. ## Syntax - _expression_. `TabStop` +_expression_. `TabStop` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.Tag.md b/api/Access.WebBrowserControl.Tag.md index 5d6789f3fa6..5c01ec9bf94 100644 --- a/api/Access.WebBrowserControl.Tag.md +++ b/api/Access.WebBrowserControl.Tag.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Tag Property (Access) +title: WebBrowserControl.Tag property (Access) keywords: vbaac10.chm14685 f1_keywords: - vbaac10.chm14685 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Tag Property (Access) +# WebBrowserControl.Tag property (Access) Stores extra information about a form, report, section, or control needed by a Microsoft Access application. Read/write **String**. ## Syntax - _expression_. `Tag` +_expression_. `Tag` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.Top.md b/api/Access.WebBrowserControl.Top.md index ae77fa7f186..21646fbfe7c 100644 --- a/api/Access.WebBrowserControl.Top.md +++ b/api/Access.WebBrowserControl.Top.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Top Property (Access) +title: WebBrowserControl.Top property (Access) keywords: vbaac10.chm14371 f1_keywords: - vbaac10.chm14371 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Top Property (Access) +# WebBrowserControl.Top property (Access) You can use the **Top** property to specify an object's location on a form or report. Read/write **Integer**. ## Syntax - _expression_. `Top` +_expression_. `Top` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.TopPadding.md b/api/Access.WebBrowserControl.TopPadding.md index 9b609c4321d..425f8bc7a07 100644 --- a/api/Access.WebBrowserControl.TopPadding.md +++ b/api/Access.WebBrowserControl.TopPadding.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.TopPadding Property (Access) +title: WebBrowserControl.TopPadding property (Access) keywords: vbaac10.chm14391 f1_keywords: - vbaac10.chm14391 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.TopPadding Property (Access) +# WebBrowserControl.TopPadding property (Access) Gets or sets the amount of space (in inches) between the text box and its top gridline. Read/write **Integer**. ## Syntax - _expression_. `TopPadding` +_expression_. `TopPadding` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## See also diff --git a/api/Access.WebBrowserControl.Transform.md b/api/Access.WebBrowserControl.Transform.md index cbea8b7822c..3d6b2b1065e 100644 --- a/api/Access.WebBrowserControl.Transform.md +++ b/api/Access.WebBrowserControl.Transform.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Transform Property (Access) +title: WebBrowserControl.Transform property (Access) keywords: vbaac10.chm14367,vbaac10.chm5911 f1_keywords: - vbaac10.chm14367,vbaac10.chm5911 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Transform Property (Access) +# WebBrowserControl.Transform property (Access) Read/write ## Syntax - _expression_. `Transform` +_expression_. `Transform` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## See also diff --git a/api/Access.WebBrowserControl.Undo.md b/api/Access.WebBrowserControl.Undo.md index b854df6f5e1..a72ff8f1443 100644 --- a/api/Access.WebBrowserControl.Undo.md +++ b/api/Access.WebBrowserControl.Undo.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Undo Method (Access) +title: WebBrowserControl.Undo method (Access) keywords: vbaac10.chm14349 f1_keywords: - vbaac10.chm14349 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Undo Method (Access) +# WebBrowserControl.Undo method (Access) You can use the **Undo** method to reset a control or form when its value has been changed. ## Syntax - _expression_. `Undo` +_expression_. `Undo` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.Updated.md b/api/Access.WebBrowserControl.Updated.md index 86064cefa49..3af272cde9d 100644 --- a/api/Access.WebBrowserControl.Updated.md +++ b/api/Access.WebBrowserControl.Updated.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Updated Event (Access) +title: WebBrowserControl.Updated event (Access) keywords: vbaac10.chm143123 f1_keywords: - vbaac10.chm143123 @@ -11,27 +11,27 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Updated Event (Access) +# WebBrowserControl.Updated event (Access) The **Updated** event occurs when an OLE object's data has been modified. ## Syntax - _expression_. `Updated`( ` _Code_`, ) +_expression_. `Updated`( ` _Code_`, ) - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Code_|Required|**Integer**|| -### Return Value +### Return value nothing diff --git a/api/Access.WebBrowserControl.Value.md b/api/Access.WebBrowserControl.Value.md index 38b7c025cb1..06906e86c04 100644 --- a/api/Access.WebBrowserControl.Value.md +++ b/api/Access.WebBrowserControl.Value.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Value Property (Access) +title: WebBrowserControl.Value property (Access) keywords: vbaac10.chm14358 f1_keywords: - vbaac10.chm14358 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Value Property (Access) +# WebBrowserControl.Value property (Access) Determines or specifies the text in the text box. Read/write **Variant**. ## Syntax - _expression_. `Value` +_expression_. `Value` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.VerticalAnchor.md b/api/Access.WebBrowserControl.VerticalAnchor.md index c5688374336..512fb2a2458 100644 --- a/api/Access.WebBrowserControl.VerticalAnchor.md +++ b/api/Access.WebBrowserControl.VerticalAnchor.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.VerticalAnchor Property (Access) +title: WebBrowserControl.VerticalAnchor property (Access) keywords: vbaac10.chm14403 f1_keywords: - vbaac10.chm14403 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.VerticalAnchor Property (Access) +# WebBrowserControl.VerticalAnchor property (Access) Gets or sets an [AcVerticalAnchor](Access.AcVerticalAnchor.md) constant that indicates how the specified text box is anchored vertically within its layout. Read/write. ## Syntax - _expression_. `VerticalAnchor` +_expression_. `VerticalAnchor` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.Visible.md b/api/Access.WebBrowserControl.Visible.md index 5a767414801..11e0b3f4ce9 100644 --- a/api/Access.WebBrowserControl.Visible.md +++ b/api/Access.WebBrowserControl.Visible.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Visible Property (Access) +title: WebBrowserControl.Visible property (Access) keywords: vbaac10.chm14528 f1_keywords: - vbaac10.chm14528 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Visible Property (Access) +# WebBrowserControl.Visible property (Access) Returns or sets whether the object is visible. Read/write **Boolean**. ## Syntax - _expression_. `Visible` +_expression_. `Visible` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.Width.md b/api/Access.WebBrowserControl.Width.md index 028172a4f2b..2355a9ea6b8 100644 --- a/api/Access.WebBrowserControl.Width.md +++ b/api/Access.WebBrowserControl.Width.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl.Width Property (Access) +title: WebBrowserControl.Width property (Access) keywords: vbaac10.chm14372 f1_keywords: - vbaac10.chm14372 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebBrowserControl.Width Property (Access) +# WebBrowserControl.Width property (Access) Gets or sets the width of the specified object in twips. Read/write **Integer**. ## Syntax - _expression_. `Width` +_expression_. `Width` - _expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. +_expression_ A variable that represents a [WebBrowserControl](Access.WebBrowserControl.md) object. ## Remarks diff --git a/api/Access.WebBrowserControl.md b/api/Access.WebBrowserControl.md index 08e83617deb..f31f5fb1a33 100644 --- a/api/Access.WebBrowserControl.md +++ b/api/Access.WebBrowserControl.md @@ -1,5 +1,5 @@ --- -title: WebBrowserControl Object (Access) +title: WebBrowserControl object (Access) keywords: vbaac10.chm14346 f1_keywords: - vbaac10.chm14346 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# WebBrowserControl Object (Access) +# WebBrowserControl object (Access) Represents a Web browser control on a form. diff --git a/api/Access.WebService.Entities.md b/api/Access.WebService.Entities.md index c3945ad8a37..e9d8f4ce96a 100644 --- a/api/Access.WebService.Entities.md +++ b/api/Access.WebService.Entities.md @@ -1,5 +1,5 @@ --- -title: WebService.Entities Property (Access) +title: WebService.Entities property (Access) keywords: vbaac10.chm14559 f1_keywords: - vbaac10.chm14559 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebService.Entities Property (Access) +# WebService.Entities property (Access) Gets the collection of entities defined for the specified Data Service data connection. Read-only [Entities](Access.WebService.Entities.md). ## Syntax - _expression_. `Entities` +_expression_. `Entities` - _expression_ A variable that represents a [WebService](Access.WebService.md) object. +_expression_ A variable that represents a [WebService](Access.WebService.md) object. ## See also diff --git a/api/Access.WebService.Name.md b/api/Access.WebService.Name.md index a89083e429a..9a7630a6d50 100644 --- a/api/Access.WebService.Name.md +++ b/api/Access.WebService.Name.md @@ -1,5 +1,5 @@ --- -title: WebService.Name Property (Access) +title: WebService.Name property (Access) keywords: vbaac10.chm14558 f1_keywords: - vbaac10.chm14558 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebService.Name Property (Access) +# WebService.Name property (Access) You can use the **Name** property to specify or determine the string expression that identifies the name of an object. Read/write **String**. ## Syntax - _expression_. `Name` +_expression_. `Name` - _expression_ A variable that represents a [WebService](Access.WebService.md) object. +_expression_ A variable that represents a [WebService](Access.WebService.md) object. ## Remarks diff --git a/api/Access.WebService.Parent.md b/api/Access.WebService.Parent.md index cc50b1d0b21..23e6c2aa998 100644 --- a/api/Access.WebService.Parent.md +++ b/api/Access.WebService.Parent.md @@ -1,5 +1,5 @@ --- -title: WebService.Parent Property (Access) +title: WebService.Parent property (Access) keywords: vbaac10.chm14557 f1_keywords: - vbaac10.chm14557 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebService.Parent Property (Access) +# WebService.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [WebService](Access.WebService.md) object. +_expression_ A variable that represents a [WebService](Access.WebService.md) object. ## See also diff --git a/api/Access.WebService.md b/api/Access.WebService.md index 8a796c35fd5..6e47e823503 100644 --- a/api/Access.WebService.md +++ b/api/Access.WebService.md @@ -1,5 +1,5 @@ --- -title: WebService Object (Access) +title: WebService object (Access) keywords: vbaac10.chm14556 f1_keywords: - vbaac10.chm14556 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# WebService Object (Access) +# WebService object (Access) Represents a Data Service data connection. diff --git a/api/Access.WebServices.Application.md b/api/Access.WebServices.Application.md index b6ad6b65b3d..fe7db294cde 100644 --- a/api/Access.WebServices.Application.md +++ b/api/Access.WebServices.Application.md @@ -1,5 +1,5 @@ --- -title: WebServices.Application Property (Access) +title: WebServices.Application property (Access) keywords: vbaac10.chm14551 f1_keywords: - vbaac10.chm14551 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebServices.Application Property (Access) +# WebServices.Application property (Access) You can use the **Application** property to access the active Microsoft Access[Application](Access.Application.md)object and its related properties. Read-only **Application** object. ## Syntax - _expression_. `Application` +_expression_. `Application` - _expression_ A variable that represents a [WebServices](Access.WebServices.md) object. +_expression_ A variable that represents a [WebServices](Access.WebServices.md) object. ## Remarks diff --git a/api/Access.WebServices.Count.md b/api/Access.WebServices.Count.md index d0a4457b955..1c04b313c80 100644 --- a/api/Access.WebServices.Count.md +++ b/api/Access.WebServices.Count.md @@ -1,5 +1,5 @@ --- -title: WebServices.Count Property (Access) +title: WebServices.Count property (Access) keywords: vbaac10.chm14554 f1_keywords: - vbaac10.chm14554 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebServices.Count Property (Access) +# WebServices.Count property (Access) You can use the **Count** property to determine the number of items in a specified collection. Read-only **Long**. ## Syntax - _expression_. `Count` +_expression_. `Count` - _expression_ A variable that represents a [WebServices](Access.WebServices.md) object. +_expression_ A variable that represents a [WebServices](Access.WebServices.md) object. ## See also diff --git a/api/Access.WebServices.Item.md b/api/Access.WebServices.Item.md index 891e9698ce1..d845aa1cb07 100644 --- a/api/Access.WebServices.Item.md +++ b/api/Access.WebServices.Item.md @@ -1,5 +1,5 @@ --- -title: WebServices.Item Property (Access) +title: WebServices.Item property (Access) keywords: vbaac10.chm14553 f1_keywords: - vbaac10.chm14553 @@ -11,23 +11,23 @@ ms.date: 06/08/2017 --- -# WebServices.Item Property (Access) +# WebServices.Item property (Access) The **Item** property returns a specific member of a collection either by position or by index. Read-only **Object**. ## Syntax - _expression_. `Item`( ` _Index_` ) +_expression_. `Item`( ` _Index_` ) - _expression_ A variable that represents a [WebServices](Access.WebServices.md) object. +_expression_ A variable that represents a [WebServices](Access.WebServices.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required|**Variant**|| diff --git a/api/Access.WebServices.Parent.md b/api/Access.WebServices.Parent.md index c8b43a8a8d5..b677c109d8a 100644 --- a/api/Access.WebServices.Parent.md +++ b/api/Access.WebServices.Parent.md @@ -1,5 +1,5 @@ --- -title: WebServices.Parent Property (Access) +title: WebServices.Parent property (Access) keywords: vbaac10.chm14552 f1_keywords: - vbaac10.chm14552 @@ -11,16 +11,16 @@ ms.date: 06/08/2017 --- -# WebServices.Parent Property (Access) +# WebServices.Parent property (Access) Returns the parent object for the specified object. Read-only. ## Syntax - _expression_. `Parent` +_expression_. `Parent` - _expression_ A variable that represents a [WebServices](Access.WebServices.md) object. +_expression_ A variable that represents a [WebServices](Access.WebServices.md) object. ## See also diff --git a/api/Access.WebServices.md b/api/Access.WebServices.md index 0d0059854eb..c572c6ce8bf 100644 --- a/api/Access.WebServices.md +++ b/api/Access.WebServices.md @@ -1,5 +1,5 @@ --- -title: WebServices Object (Access) +title: WebServices object (Access) keywords: vbaac10.chm14550 f1_keywords: - vbaac10.chm14550 @@ -11,7 +11,7 @@ ms.date: 06/08/2017 --- -# WebServices Object (Access) +# WebServices object (Access) Represents the collection of Data Services data connections installed in the database. diff --git a/api/Access.allmacros.md b/api/Access.allmacros.md index bd0f25e2a13..63e745dd832 100644 --- a/api/Access.allmacros.md +++ b/api/Access.allmacros.md @@ -1,5 +1,5 @@ --- -title: AllMacros Object (Access) +title: AllMacros object (Access) keywords: vbaac10.chm12685 f1_keywords: - vbaac10.chm12685 @@ -9,7 +9,7 @@ ms.date: 06/08/2017 --- -# AllMacros Object (Access) +# AllMacros object (Access) The **AllMacros** collection contains an **[AccessObject](Access.AccessObject.md)** for each macro in the **[CurrentProject](Access.CurrentProject.md)** or **[CodeProject](Access.CodeProject.md)** object. diff --git a/api/Access.application.davg.md b/api/Access.application.davg.md index 2c12cf0bc3c..21317a9d0c4 100644 --- a/api/Access.application.davg.md +++ b/api/Access.application.davg.md @@ -1,5 +1,5 @@ --- -title: Application.DAvg Method (Access) +title: Application.DAvg method (Access) keywords: vbaac10.chm12528 f1_keywords: - vbaac10.chm12528 @@ -9,29 +9,29 @@ ms.date: 06/08/2017 --- -# Application.DAvg Method (Access) +# Application.DAvg method (Access) You can use the **DAvg** function to calculate the average of a set of values in a specified set of records (a domain). ## Syntax - _expression_. `DAvg`( ` _Expr_`, ` _Domain_`, ` _Criteria_` ) +_expression_. `DAvg`( ` _Expr_`, ` _Domain_`, ` _Criteria_` ) - _expression_ A variable that represents an [Application](Access.Application.md) object. +_expression_ A variable that represents an [Application](Access.Application.md) object. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Expr_|Required|**String**|An expression that identifies the field containing the numeric data you want to average. It can be a string expression identifying a field in a table or query, or it can be an expression that performs a calculation on data in that field. In _expr_, you can include the name of a field in a table, a control on a form, a constant, or a function. If _expr_ includes a function, it can be either built-in or user-defined, but not another domain aggregate or SQL aggregate function.| | _Domain_|Required|**String**|A string expression identifying the set of records that constitutes the domain. It can be a table name or a query name for a query that does not require a parameter.| | _Criteria_|Optional|**Variant**|An optional string expression used to restrict the range of data on which the **DAvg** function is performed. For example, _criteria_ is often equivalent to the WHERE clause in an SQL expression, without the word WHERE. If _criteria_ is omitted, the **DAvg** function evaluates _expr_ against the entire domain. Any field that is included in _criteria_ must also be a field in _domain_; otherwise the **DAvg** function returns a **Null**.| -### Return Value +### Return value Variant diff --git a/api/Access.application.returnvars.md b/api/Access.application.returnvars.md index 1e379c1d38a..0eb2f170514 100644 --- a/api/Access.application.returnvars.md +++ b/api/Access.application.returnvars.md @@ -1,5 +1,5 @@ --- -title: Application.ReturnVars Property (Access) +title: Application.ReturnVars property (Access) keywords: vbaac10.chm14688 f1_keywords: - vbaac10.chm14688 @@ -9,16 +9,16 @@ ms.date: 06/08/2017 --- -# Application.ReturnVars Property (Access) +# Application.ReturnVars property (Access) Returns the **[ReturnVars](Access.ReturnVars.md)** collection representing all the available **ReturnVar** variables. Read-only **ReturnVars** collection. ## Syntax - _expression_. `ReturnVars` +_expression_. `ReturnVars` - _expression_ A variable that represents an [Application](Access.Application.md) object. +_expression_ A variable that represents an [Application](Access.Application.md) object. ## Property value diff --git a/api/Access.commandbutton.quickstylemask.md b/api/Access.commandbutton.quickstylemask.md index 982179fdd86..03b00688d8e 100644 --- a/api/Access.commandbutton.quickstylemask.md +++ b/api/Access.commandbutton.quickstylemask.md @@ -1,5 +1,5 @@ --- -title: CommandButton.QuickStyleMask Property (Access) +title: CommandButton.QuickStyleMask property (Access) keywords: vbaac10.chm14647 f1_keywords: - vbaac10.chm14647 @@ -9,16 +9,16 @@ ms.date: 06/08/2017 --- -# CommandButton.QuickStyleMask Property (Access) +# CommandButton.QuickStyleMask property (Access) Gets or sets modifications to the Quick Style that is applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `QuickStyle` +_expression_. `QuickStyle` - _expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. +_expression_ A variable that represents a [CommandButton](Access.CommandButton.md) object. ## Remarks diff --git a/api/Access.form.recordsettype.md b/api/Access.form.recordsettype.md index 24097f9fea8..f621948cd60 100644 --- a/api/Access.form.recordsettype.md +++ b/api/Access.form.recordsettype.md @@ -1,5 +1,5 @@ --- -title: Form.RecordsetType Property (Access) +title: Form.RecordsetType property (Access) keywords: vbaac10.chm13361 f1_keywords: - vbaac10.chm13361 @@ -9,16 +9,16 @@ ms.date: 06/08/2017 --- -# Form.RecordsetType Property (Access) +# Form.RecordsetType property (Access) You can use the **RecordsetType** property to specify what kind of recordset is made available to a form. Read/write **Byte**. ## Syntax - _expression_. `RecordsetType` +_expression_. `RecordsetType` - _expression_ A variable that represents an [Form](Access.Form.md) object. +_expression_ A variable that represents an [Form](Access.Form.md) object. ## Remarks diff --git a/api/Access.md b/api/Access.md index 06310f379dd..9d9797bddae 100644 --- a/api/Access.md +++ b/api/Access.md @@ -43,7 +43,7 @@ This section contains documentation for the enumerations in the Access object mo | [AcHyperlinkPart](Access.AcHyperlinkPart.md)|Specifies the the information you want returned by the **HyperlinkPart** method.| | [AcImeMode](Access.AcImeMode.md)|Specifies the default startup mode for the Japanese Input Method Editor (IME). | | [AcImeSentenceMode](Access.AcImeSentenceMode.md)|Used with the [IMESentenceMode](overview/Access.md) property to specify the IME sentence mode for the IMM.| -| [AcImportXMLOption](Access.AcImportXMLOption.md)|Specifies the action to take when using the [Application.ImportXML Method (Access)](Access.Application.ImportXML.md) method to import data from an XML file.| +| [AcImportXMLOption](Access.AcImportXMLOption.md)|Specifies the action to take when using the [Application.ImportXML method (Access)](Access.Application.ImportXML.md) method to import data from an XML file.| | [AcLayoutType](Access.AcLayoutType.md)|Specifies the type of layout that the control is part of.| | [AcModuleType](Access.AcModuleType.md)|Returns the type of the specified Visual Basic module.| | [AcNavigationSpan](Access.AcNavigationSpan.md)|Specifies the orientation of navigation buttons.| @@ -66,19 +66,19 @@ This section contains documentation for the enumerations in the Access object mo | [AcQuitOption](Access.AcQuitOption.md)|Used with the [Quit](Access.Application.Quit.md) method to specify whether or not to save changes to the database when quitting Microsoft Access.| | [AcRecord](Access.AcRecord.md)|Used with the [GoToRecord](Access.DoCmd.GoToRecord.md) method to specify which record to make the current record.| | [AcResourceType](Access.AcResourceType.md)|Specifies the type of a [SharedResource](Access.SharedResource.md) object.| -| [AcSearchDirection](Access.AcSearchDirection.md)|Used with the [DoCmd.FindRecord Method (Access)](Access.DoCmd.FindRecord.md) method to specify the direction to search.| +| [AcSearchDirection](Access.AcSearchDirection.md)|Used with the [DoCmd.FindRecord method (Access)](Access.DoCmd.FindRecord.md) method to specify the direction to search.| | [AcSection](Access.AcSection.md)|Specifies the section that will contain the new control.| -| [AcSendObjectType](Access.AcSendObjectType.md)|Used with the [DoCmd.SendObject Method (Access)](Access.docmd.sendobject.md) method to specify the type of object to send.| -| [AcSeparatorCharacters](Access.AcSeparatorCharacters.md)|Used with the [ComboBox.SeparatorCharacters Property (Access)](Access.combobox.separatorcharacters.md) property to specify the separator displayed between values in combo boxes that are linked to multi-valued fields.| -| [AcSharePointListTransferType](Access.AcSharePointListTransferType.md)|Used with the [DoCmd.TransferSharePointList Method (Access)](Access.docmd.transfersharepointlist.md) method to specify whether to import or link to a SharePoint list.| -| [AcShowToolbar](Access.AcShowToolbar.md)|Used with the [DoCmd.ShowToolbar Method (Access)](Access.docmd.showtoolbar.md) method to specify whether to display a particular custom toolbar.| -| [AcSplitFormDatasheet](Access.AcSplitFormDatasheet.md)|Used with the [Form.SplitFormDatasheet Property (Access)](Access.form.splitformdatasheet.md) property to specify whether the user can edit contents of the datasheet while a form is displayed in Split Form view.| +| [AcSendObjectType](Access.AcSendObjectType.md)|Used with the [DoCmd.SendObject method (Access)](Access.docmd.sendobject.md) method to specify the type of object to send.| +| [AcSeparatorCharacters](Access.AcSeparatorCharacters.md)|Used with the [ComboBox.SeparatorCharacters property (Access)](Access.combobox.separatorcharacters.md) property to specify the separator displayed between values in combo boxes that are linked to multi-valued fields.| +| [AcSharePointListTransferType](Access.AcSharePointListTransferType.md)|Used with the [DoCmd.TransferSharePointList method (Access)](Access.docmd.transfersharepointlist.md) method to specify whether to import or link to a SharePoint list.| +| [AcShowToolbar](Access.AcShowToolbar.md)|Used with the [DoCmd.ShowToolbar method (Access)](Access.docmd.showtoolbar.md) method to specify whether to display a particular custom toolbar.| +| [AcSplitFormDatasheet](Access.AcSplitFormDatasheet.md)|Used with the [Form.SplitFormDatasheet property (Access)](Access.form.splitformdatasheet.md) property to specify whether the user can edit contents of the datasheet while a form is displayed in Split Form view.| | [AcSplitFormOrientation](Access.AcSplitFormOrientation.md)|Used with the [SplitFormOrientation](Access.Form.SplitFormOrientation.md) property to specify the orientation of the datasheet in relation to the form while in Split Form view.| | [AcSplitFormPrinting](Access.AcSplitFormPrinting.md)|Used with the [SplitFormPrinting](Access.Form.SplitFormPrinting.md) property to specify what to print when a form is in Split Form view.| | [AcSpreadSheetType](Access.AcSpreadSheetType.md)|Used with the [TransferSpreadsheet](Access.DoCmd.TransferSpreadsheet.md) method to specify the type of spreadsheet to import from, export to, or link to.| | [AcSysCmdAction](Access.AcSysCmdAction.md)|Used with the **SysCmd** method to specify an action to take.| | [AcTextFormat](Access.AcTextFormat.md)|Used with the [TextFormat](Access.TextBox.TextFormat.md) property to specify whether or not rich text is displayed in a Text Box.| -| [AcTextTransferType](Access.AcTextTransferType.md)|Used with the [DoCmd.TransferText Method (Access)](Access.docmd.transfertext.md) method to specify the type of transfer you want to make.| +| [AcTextTransferType](Access.AcTextTransferType.md)|Used with the [DoCmd.TransferText method (Access)](Access.docmd.transfertext.md) method to specify the type of transfer you want to make.| | [AcTransformXMLScriptOption](Access.AcTransformXMLScriptOption.md)|Used with the [TransformXML](Access.Application.TransformXML.md) method to specify the action taken if the XSL file contains scripting code.| | [AcVerticalAnchor](Access.AcVerticalAnchor.md)|Used with the **VerticalAnchor** property to specify how a control is anchored vertically within its layout.| | [AcView](Access.AcView.md)|Specifies an object's view.| diff --git a/api/Access.navigationbutton.quickstylemask.md b/api/Access.navigationbutton.quickstylemask.md index 2bd21dc3486..2b5f6960733 100644 --- a/api/Access.navigationbutton.quickstylemask.md +++ b/api/Access.navigationbutton.quickstylemask.md @@ -1,5 +1,5 @@ --- -title: NavigationButton.QuickStyleMask Property (Access) +title: NavigationButton.QuickStyleMask property (Access) keywords: vbaac10.chm14647 f1_keywords: - vbaac10.chm14647 @@ -9,16 +9,16 @@ ms.date: 06/08/2017 --- -# NavigationButton.QuickStyleMask Property (Access) +# NavigationButton.QuickStyleMask property (Access) Gets or sets modifications to the Quick Style that is applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `QuickStyle` +_expression_. `QuickStyle` - _expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. +_expression_ A variable that represents a [NavigationButton](Access.NavigationButton.md) object. ## Remarks diff --git a/api/Access.oldconstants.md b/api/Access.oldconstants.md index 975ea7cfd7b..8144230c995 100644 --- a/api/Access.oldconstants.md +++ b/api/Access.oldconstants.md @@ -1,5 +1,5 @@ --- -title: OldConstants Enumeration (Access) +title: OldConstants enumeration (Access) keywords: vbaac10.chm10005 f1_keywords: - vbaac10.chm10005 @@ -9,13 +9,13 @@ ms.prod: access --- -# OldConstants Enumeration (Access) +# OldConstants enumeration (Access) ## Members -|**Name**|**Value**|**Description**| +|Name|Value|Description| |:-----|:-----|:-----| |||| |**A_ADD**|**0**|| diff --git a/api/Access.report.shape.md b/api/Access.report.shape.md index 0642c147b09..702d983d208 100644 --- a/api/Access.report.shape.md +++ b/api/Access.report.shape.md @@ -1,5 +1,5 @@ --- -title: Report.Shape Property (Access) +title: Report.Shape property (Access) keywords: vbaac10.chm13815 f1_keywords: - vbaac10.chm13815 @@ -9,16 +9,16 @@ ms.date: 06/08/2017 --- -# Report.Shape Property (Access) +# Report.Shape property (Access) Returns a **String** representing the shape command corresponding to the sorting and grouping of the specified report. Read-only. ## Syntax - _expression_. `Shape` +_expression_. `Shape` - _expression_ A variable that represents a [Report](Access.Report.md) object. +_expression_ A variable that represents a [Report](Access.Report.md) object. ## Remarks diff --git a/api/Access.togglebutton.quickstylemask.md b/api/Access.togglebutton.quickstylemask.md index 513869a3428..c6db8a30b0e 100644 --- a/api/Access.togglebutton.quickstylemask.md +++ b/api/Access.togglebutton.quickstylemask.md @@ -1,5 +1,5 @@ --- -title: ToggleButton.QuickStyleMask Property (Access) +title: ToggleButton.QuickStyleMask property (Access) keywords: vbaac10.chm14647 f1_keywords: - vbaac10.chm14647 @@ -9,16 +9,16 @@ ms.date: 06/08/2017 --- -# ToggleButton.QuickStyleMask Property (Access) +# ToggleButton.QuickStyleMask property (Access) Gets or sets modifications to the Quick Style that is applied to the specified object. Read/write **Long**. ## Syntax - _expression_. `QuickStyle` +_expression_. `QuickStyle` - _expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. +_expression_ A variable that represents a [ToggleButton](Access.ToggleButton.md) object. ## Remarks diff --git a/api/Excel.AboveAverage.ModifyAppliesToRange.md b/api/Excel.AboveAverage.ModifyAppliesToRange.md index 308c074f103..09b662b069c 100644 --- a/api/Excel.AboveAverage.ModifyAppliesToRange.md +++ b/api/Excel.AboveAverage.ModifyAppliesToRange.md @@ -27,7 +27,7 @@ Sets the cell range to which this formatting rule applies. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Range_|Required| **[Range](Excel.Range(object).md)**|The range to which this formatting rule will be applied.| diff --git a/api/Excel.Action.Creator.md b/api/Excel.Action.Creator.md index 170cf5560e5..5559ad9bd22 100644 --- a/api/Excel.Action.Creator.md +++ b/api/Excel.Action.Creator.md @@ -23,7 +23,7 @@ Returns a 32-bit integer that indicates the application in which this object was _expression_ An expression that returns a [Action](Excel.Action.md) object. -### Return Value +### Return value XlCreator diff --git a/api/Excel.Actions.Creator.md b/api/Excel.Actions.Creator.md index 47ae473d799..57a69c43da4 100644 --- a/api/Excel.Actions.Creator.md +++ b/api/Excel.Actions.Creator.md @@ -23,7 +23,7 @@ Returns a 32-bit integer that indicates the application in which this object was _expression_ An expression that returns a [Actions](Excel.Actions.md) object. -### Return Value +### Return value XlCreator diff --git a/api/Excel.Actions.Item.md b/api/Excel.Actions.Item.md index f2ad30c21ac..dd1d502a4ab 100644 --- a/api/Excel.Actions.Item.md +++ b/api/Excel.Actions.Item.md @@ -27,7 +27,7 @@ Returns a **Actions** object that represents a collection of actions in a workb -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|Index value of the action.| diff --git a/api/Excel.AddIn.Creator.md b/api/Excel.AddIn.Creator.md index 1fd294805d7..c47129d5946 100644 --- a/api/Excel.AddIn.Creator.md +++ b/api/Excel.AddIn.Creator.md @@ -23,7 +23,7 @@ Returns a 32-bit integer that indicates the application in which this object was _expression_ An expression that returns a [AddIn](Excel.AddIn.md) object. -### Return Value +### Return value XlCreator diff --git a/api/Excel.AddIns.Add.md b/api/Excel.AddIns.Add.md index 855d8a901fd..e06f4a0fe91 100644 --- a/api/Excel.AddIns.Add.md +++ b/api/Excel.AddIns.Add.md @@ -27,12 +27,12 @@ Adds a new add-in file to the list of add-ins. Returns an **[AddIn](Excel.AddIn -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|The name of the file that contains the add-in or the ProgID of the automation add-in that you want to add to the list in the add-in manager.| | _CopyFile_|Optional| **Variant**|Ignored if the add-in file is on a hard disk. **True** to copy the add-in to your hard disk, if the add-in is on a removable medium (a floppy disk or compact disc). **False** to have the add-in remain on the removable medium. If this argument is omitted, Microsoft Excel displays a dialog box and asks you to choose.| -### Return Value +### Return value An **AddIn** object that represents the new add-in. diff --git a/api/Excel.AddIns.Creator.md b/api/Excel.AddIns.Creator.md index a372193490e..500e91f804e 100644 --- a/api/Excel.AddIns.Creator.md +++ b/api/Excel.AddIns.Creator.md @@ -23,7 +23,7 @@ Returns a 32-bit integer that indicates the application in which this object was _expression_ An expression that returns a [AddIns](Excel.AddIns.md) object. -### Return Value +### Return value XlCreator diff --git a/api/Excel.AddIns.Item.md b/api/Excel.AddIns.Item.md index 7fc0deefc39..552447a66ac 100644 --- a/api/Excel.AddIns.Item.md +++ b/api/Excel.AddIns.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| diff --git a/api/Excel.AddIns2.Add.md b/api/Excel.AddIns2.Add.md index 9c83e6a57df..a3735ab7aaf 100644 --- a/api/Excel.AddIns2.Add.md +++ b/api/Excel.AddIns2.Add.md @@ -27,12 +27,12 @@ Adds a new add-in to the list of add-ins. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|The name of the file that contains the add-in to add to the list in the **Add-Ins** dialog box.| | _CopyFile_|Optional| **Variant**| If the add-in file is on a removable medium, specifies whether to copy the add-in to the local hard disk. Specify **True** to copy the add-in to your hard disk. Specify **False** to keep the add-in on the removable medium. If this argument is omitted, Microsoft Excel displays a dialog box and asks the user to choose whether to copy the add-in file. This parameter is ignored if the add-in file is already on the hard disk.| -### Return Value +### Return value AddIn diff --git a/api/Excel.AddIns2.Item.md b/api/Excel.AddIns2.Item.md index 546879193b3..fe9b49376af 100644 --- a/api/Excel.AddIns2.Item.md +++ b/api/Excel.AddIns2.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| diff --git a/api/Excel.Adjustments.Item.md b/api/Excel.Adjustments.Item.md index a091fb30292..25d3b5c13c9 100644 --- a/api/Excel.Adjustments.Item.md +++ b/api/Excel.Adjustments.Item.md @@ -27,7 +27,7 @@ Returns or sets the adjustment value specified by the **Index** argument. Read/ -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **[INT]**| **Long** . The index number of the adjustment.| diff --git a/api/Excel.AllowEditRange.ChangePassword.md b/api/Excel.AllowEditRange.ChangePassword.md index be5610d8bac..e7dc2798632 100644 --- a/api/Excel.AllowEditRange.ChangePassword.md +++ b/api/Excel.AllowEditRange.ChangePassword.md @@ -27,7 +27,7 @@ Changes the password for a range that can be edited on a protected worksheet. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Password_|Required| **String**|The new password.| diff --git a/api/Excel.AllowEditRange.Unprotect.md b/api/Excel.AllowEditRange.Unprotect.md index b4b6c032112..fdd919eaa2a 100644 --- a/api/Excel.AllowEditRange.Unprotect.md +++ b/api/Excel.AllowEditRange.Unprotect.md @@ -27,7 +27,7 @@ Removes protection from a sheet or workbook. This method has no effect if the sh -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Password_|Optional| **Variant**|A string that denotes the case-sensitive password to use to unprotect the range of cells. If the range isn't protected with a password, this argument is ignored.| diff --git a/api/Excel.AllowEditRanges.Add.md b/api/Excel.AllowEditRanges.Add.md index 750f020aa2a..5135ab8a298 100644 --- a/api/Excel.AllowEditRanges.Add.md +++ b/api/Excel.AllowEditRanges.Add.md @@ -27,13 +27,13 @@ Adds a range that can be edited on a protected worksheet. Returns a **[AllowEdi -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Title_|Required| **String**|The title of range.| | _Range_|Required| **Range**| **Range** object. The range allowed to be edited.| | _Password_|Optional| **Variant**|The password for the range.| -### Return Value +### Return value An **AllowEditRange** object that represents the range. diff --git a/api/Excel.AllowEditRanges.Item.md b/api/Excel.AllowEditRanges.Item.md index 93e675f1d39..b2fe272b2e9 100644 --- a/api/Excel.AllowEditRanges.Item.md +++ b/api/Excel.AllowEditRanges.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| diff --git a/api/Excel.Application.ActivateMicrosoftApp.md b/api/Excel.Application.ActivateMicrosoftApp.md index ac550173975..72bcd59f2f2 100644 --- a/api/Excel.Application.ActivateMicrosoftApp.md +++ b/api/Excel.Application.ActivateMicrosoftApp.md @@ -27,7 +27,7 @@ Activates a Microsoft application. If the application is already running, this m -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **[XlMSApplication](Excel.XlMSApplication.md)**|Specifies the Microsoft application to activate.| diff --git a/api/Excel.Application.ActiveEncryptionSession.md b/api/Excel.Application.ActiveEncryptionSession.md index e6d9298e7be..768843adb8e 100644 --- a/api/Excel.Application.ActiveEncryptionSession.md +++ b/api/Excel.Application.ActiveEncryptionSession.md @@ -23,7 +23,7 @@ Returns a **Long** that represents the encryption session associated with the a _expression_ An expression that returns a [Application](Excel.Application(Graph property).md) object. -### Return Value +### Return value Long diff --git a/api/Excel.Application.AddCustomList.md b/api/Excel.Application.AddCustomList.md index 74889c55d61..9e13f016a41 100644 --- a/api/Excel.Application.AddCustomList.md +++ b/api/Excel.Application.AddCustomList.md @@ -27,7 +27,7 @@ Adds a custom list for custom autofill and/or custom sort. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ListArray_|Required| **Variant**|Specifies the source data, as either an array of strings or a **Range** object.| | _ByRow_|Optional| **Variant**|Only used if _ListArray_ is a **Range** object. **True** to create a custom list from each row in the range. **False** to create a custom list from each column in the range. If this argument is omitted and there are more rows than columns (or an equal number of rows and columns) in the range, Microsoft Excel creates a custom list from each column in the range. If this argument is omitted and there are more columns than rows in the range, Microsoft Excel creates a custom list from each row in the range.| diff --git a/api/Excel.Application.Caller.md b/api/Excel.Application.Caller.md index 1d98b61faf5..5827616e1db 100644 --- a/api/Excel.Application.Caller.md +++ b/api/Excel.Application.Caller.md @@ -27,7 +27,7 @@ Returns information about how Visual Basic was called (for more information, see -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|An index to the array. This argument is used only when the property returns an array (for more information, see the Remarks section).| diff --git a/api/Excel.Application.CentimetersToPoints.md b/api/Excel.Application.CentimetersToPoints.md index 238ea8b4267..ae71e31f971 100644 --- a/api/Excel.Application.CentimetersToPoints.md +++ b/api/Excel.Application.CentimetersToPoints.md @@ -27,11 +27,11 @@ Converts a measurement from centimeters to points (one point equals 0.035 centim -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Centimeters_|Required| **Double**|Specifies the centimeter value to be converted to points.| -### Return Value +### Return value Double diff --git a/api/Excel.Application.CheckAbort.md b/api/Excel.Application.CheckAbort.md index 12f79ed3262..27512c4a6c6 100644 --- a/api/Excel.Application.CheckAbort.md +++ b/api/Excel.Application.CheckAbort.md @@ -27,7 +27,7 @@ Stops recalculation in a Microsoft Excel application. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _KeepAbort_|Optional| **Boolean**|Allows recalculation to be performed for a Range.| diff --git a/api/Excel.Application.CheckSpelling.md b/api/Excel.Application.CheckSpelling.md index 380b43c6af2..485ce1d75e4 100644 --- a/api/Excel.Application.CheckSpelling.md +++ b/api/Excel.Application.CheckSpelling.md @@ -27,13 +27,13 @@ Checks the spelling of a single word. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Word_|Required| **String**| (used only with **Application** object). The word you want to check.| | _CustomDictionary_|Optional| **Variant**|A string that indicates the file name of the custom dictionary to be examined if the word isn't found in the main dictionary. If this argument is omitted, the currently specified dictionary is used.| | _IgnoreUppercase_|Optional| **Variant**| **True** to have Microsoft Excel ignore words that are all uppercase. **False** to have Microsoft Excel check words that are all uppercase. If this argument is omitted, the current setting will be used.| -### Return Value +### Return value **True** if the word is found in one of the dictionaries; otherwise **False** . diff --git a/api/Excel.Application.ClipboardFormats.md b/api/Excel.Application.ClipboardFormats.md index 3bbe3855817..3492e1433a3 100644 --- a/api/Excel.Application.ClipboardFormats.md +++ b/api/Excel.Application.ClipboardFormats.md @@ -27,7 +27,7 @@ Returns the formats that are currently on the Clipboard, as an array of numeric -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The array element to be returned. If this argument is omitted, the property returns the entire array of formats that are currently on the Clipboard. For more information, see the Remarks section.| diff --git a/api/Excel.Application.ClusterConnector.md b/api/Excel.Application.ClusterConnector.md index b0e46b67867..2766242c8a2 100644 --- a/api/Excel.Application.ClusterConnector.md +++ b/api/Excel.Application.ClusterConnector.md @@ -23,7 +23,7 @@ Returns or sets the name of the High Performance Computing (HPC) Cluster Connect _expression_ A variable that represents an '[Application](Excel.Application(object).md)' object. -### Return Value +### Return value **String** diff --git a/api/Excel.Application.ConvertFormula.md b/api/Excel.Application.ConvertFormula.md index d31e2973cd1..4618af9f807 100644 --- a/api/Excel.Application.ConvertFormula.md +++ b/api/Excel.Application.ConvertFormula.md @@ -27,7 +27,7 @@ Converts cell references in a formula between the A1 and R1C1 reference styles, -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Formula_|Required| **Variant**|A string that containis the formula you want to convert. This must be a valid formula, and it must begin with an equal sign.| | _FromReferenceStyle_|Required| **[XlReferenceStyle](Excel.XlReferenceStyle.md)**|The reference style of the formula.| @@ -35,7 +35,7 @@ Converts cell references in a formula between the A1 and R1C1 reference styles, | _ToAbsolute_|Optional| **Variant**|A constant of **[XlReferenceType](Excel.XlReferenceType.md)** which specifies the converted reference type. If this argument is omitted, the reference type isn't changed.| | _RelativeTo_|Optional| **Variant**|A **Range** object that contains one cell. Relative references relate to this cell.| -### Return Value +### Return value Variant diff --git a/api/Excel.Application.Creator.md b/api/Excel.Application.Creator.md index cade5a72271..255d9a73ffa 100644 --- a/api/Excel.Application.Creator.md +++ b/api/Excel.Application.Creator.md @@ -23,7 +23,7 @@ Returns a 32-bit integer that indicates the application in which this object was _expression_ An expression that returns a [Application](Excel.Application(Graph property).md) object. -### Return Value +### Return value XlCreator diff --git a/api/Excel.Application.DDEExecute.md b/api/Excel.Application.DDEExecute.md index 77d0aa289ce..213b7f8766d 100644 --- a/api/Excel.Application.DDEExecute.md +++ b/api/Excel.Application.DDEExecute.md @@ -27,7 +27,7 @@ Runs a command or performs some other action or actions in another application b -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Channel_|Required| **Long**|The channel number returned by the **[DDEInitiate](Excel.Application.DDEInitiate.md)** method.| | _String_|Required| **String**|The message defined in the receiving application.| diff --git a/api/Excel.Application.DDEInitiate.md b/api/Excel.Application.DDEInitiate.md index c82014d2f6e..7187c753372 100644 --- a/api/Excel.Application.DDEInitiate.md +++ b/api/Excel.Application.DDEInitiate.md @@ -27,12 +27,12 @@ Opens a DDE channel to an application. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _App_|Required| **String**|The application name.| | _Topic_|Required| **String**|Describes something in the application to which you're opening a channel ? usually a document of that application.| -### Return Value +### Return value Long diff --git a/api/Excel.Application.DDEPoke.md b/api/Excel.Application.DDEPoke.md index 2ad77c89802..b525fddb081 100644 --- a/api/Excel.Application.DDEPoke.md +++ b/api/Excel.Application.DDEPoke.md @@ -27,7 +27,7 @@ Sends data to an application. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Channel_|Required| **Long**|The channel number returned by the **[DDEInitiate](Excel.Application.DDEInitiate.md)** method.| | _Item_|Required| **Variant**|The item to which the data is to be sent.| diff --git a/api/Excel.Application.DDERequest.md b/api/Excel.Application.DDERequest.md index 1e4cd84452a..1400d2dc0a7 100644 --- a/api/Excel.Application.DDERequest.md +++ b/api/Excel.Application.DDERequest.md @@ -27,12 +27,12 @@ Requests information from the specified application. This method always returns -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Channel_|Required| **Long**|The channel number returned by the **[DDEInitiate](Excel.Application.DDEInitiate.md)** method.| | _Item_|Required| **String**|The item to be requested.| -### Return Value +### Return value Variant diff --git a/api/Excel.Application.DDETerminate.md b/api/Excel.Application.DDETerminate.md index fc2e9bb2350..b16b947778d 100644 --- a/api/Excel.Application.DDETerminate.md +++ b/api/Excel.Application.DDETerminate.md @@ -27,7 +27,7 @@ Closes a channel to another application. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Channel_|Required| **Long**|The channel number returned by the **[DDEInitiate](Excel.Application.DDEInitiate.md)** method.| diff --git a/api/Excel.Application.DeleteCustomList.md b/api/Excel.Application.DeleteCustomList.md index 97599c886aa..bf0873730dc 100644 --- a/api/Excel.Application.DeleteCustomList.md +++ b/api/Excel.Application.DeleteCustomList.md @@ -27,7 +27,7 @@ Deletes a custom list. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ListNum_|Required| **Long**|The custom list number. This number must be greater than or equal to 5 (Microsoft Excel has four built-in custom lists that cannot be deleted).| diff --git a/api/Excel.Application.DisplayXMLSourcePane.md b/api/Excel.Application.DisplayXMLSourcePane.md index 47d147741a2..16f16130495 100644 --- a/api/Excel.Application.DisplayXMLSourcePane.md +++ b/api/Excel.Application.DisplayXMLSourcePane.md @@ -27,7 +27,7 @@ Opens the **XML Source** task pane and displays the XML map specified by the _X -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _XmlMap_|Optional| **Variant**|The XML map to display in the task pane.| diff --git a/api/Excel.Application.Evaluate.md b/api/Excel.Application.Evaluate.md index 45b886e9081..65e2a232f93 100644 --- a/api/Excel.Application.Evaluate.md +++ b/api/Excel.Application.Evaluate.md @@ -27,11 +27,11 @@ Converts a Microsoft Excel name to an object or a value. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **Variant**|A formula or the name of the object, using the naming convention of Microsoft Excel. The length of the name must be less than or equal to 255 characters.| -### Return Value +### Return value Variant diff --git a/api/Excel.Application.ExecuteExcel4Macro.md b/api/Excel.Application.ExecuteExcel4Macro.md index 6e526f6e0b3..22125bcc7f7 100644 --- a/api/Excel.Application.ExecuteExcel4Macro.md +++ b/api/Excel.Application.ExecuteExcel4Macro.md @@ -27,11 +27,11 @@ Runs a Microsoft Excel 4.0 macro function and then returns the result of the fun -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _String_|Required| **String**|A Microsoft Excel 4.0 macro language function without the equal sign. All references must be given as R1C1 strings. If _String_ contains embedded double quotation marks, you must double them. For example, to run the macro function =MID("sometext",1,4), _String_ would have to be "MID(""sometext"",1,4)".| -### Return Value +### Return value Variant diff --git a/api/Excel.Application.FileConverters.md b/api/Excel.Application.FileConverters.md index 244f6a15376..8c09e7baa65 100644 --- a/api/Excel.Application.FileConverters.md +++ b/api/Excel.Application.FileConverters.md @@ -27,7 +27,7 @@ Returns information about installed file converters. Returns **null** if there -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index1_|Optional| **Variant**|The long name of the converter, including the file-type search string in Windows (for example, "Lotus 1-2-3 Files (*.wk*)").| | _Index2_|Optional| **Variant**|The path of the converter DLL or code resource.| diff --git a/api/Excel.Application.FileDialog.md b/api/Excel.Application.FileDialog.md index 4095eee80f2..162c6f4635d 100644 --- a/api/Excel.Application.FileDialog.md +++ b/api/Excel.Application.FileDialog.md @@ -27,7 +27,7 @@ Returns a **[FileDialog](Office.FileDialog.md)** object representing an instanc -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _fileDialogType_|Required| **[MsoFileDialogType](Office.MsoFileDialogType.md)**|The type of file dialog.| diff --git a/api/Excel.Application.FileValidation.md b/api/Excel.Application.FileValidation.md index 2a1cd90f71d..c3b0bc00ed9 100644 --- a/api/Excel.Application.FileValidation.md +++ b/api/Excel.Application.FileValidation.md @@ -23,7 +23,7 @@ Returns or sets how Excel will validate files before opening them. Read/write _expression_ A variable that represents an '[Application](Excel.Application(object).md)' object. -### Return Value +### Return value **[MsoFileValidationMode](Office.MsoFileValidationMode.md)** diff --git a/api/Excel.Application.FileValidationPivot.md b/api/Excel.Application.FileValidationPivot.md index f3ad605c888..6a98ef479bd 100644 --- a/api/Excel.Application.FileValidationPivot.md +++ b/api/Excel.Application.FileValidationPivot.md @@ -23,7 +23,7 @@ Returns or sets how Excel will validate the contents of the data caches for Pivo _expression_ A variable that represents an '[Application](Excel.Application(object).md)' object. -### Return Value +### Return value **[XlFileValidationPivotMode](Excel.XlFileValidationPivotMode.md)** diff --git a/api/Excel.Application.FindFile.md b/api/Excel.Application.FindFile.md index b6754834bdd..04840abff21 100644 --- a/api/Excel.Application.FindFile.md +++ b/api/Excel.Application.FindFile.md @@ -23,7 +23,7 @@ Displays the **Open** dialog box. _expression_ A variable that represents an [Application](Excel.Application(Graph property).md) object. -### Return Value +### Return value Boolean diff --git a/api/Excel.Application.GetCustomListContents.md b/api/Excel.Application.GetCustomListContents.md index 137615ce99d..a8bfb391cc1 100644 --- a/api/Excel.Application.GetCustomListContents.md +++ b/api/Excel.Application.GetCustomListContents.md @@ -27,11 +27,11 @@ Returns a custom list (an array of strings). -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ListNum_|Required| **Long**|The list number.| -### Return Value +### Return value Variant diff --git a/api/Excel.Application.GetCustomListNum.md b/api/Excel.Application.GetCustomListNum.md index 449a81db8a0..7c94a6b4ae8 100644 --- a/api/Excel.Application.GetCustomListNum.md +++ b/api/Excel.Application.GetCustomListNum.md @@ -27,11 +27,11 @@ Returns the custom list number for an array of strings. You can use this method -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ListArray_|Required| **Variant**|An array of strings.| -### Return Value +### Return value Long diff --git a/api/Excel.Application.GetOpenFilename.md b/api/Excel.Application.GetOpenFilename.md index 5af6d162112..6a4c513d455 100644 --- a/api/Excel.Application.GetOpenFilename.md +++ b/api/Excel.Application.GetOpenFilename.md @@ -27,7 +27,7 @@ Displays the standard **Open** dialog box and gets a file name from the user wi -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _FileFilter_|Optional| **Variant**|A string specifying file filtering criteria.| | _FilterIndex_|Optional| **Variant**|Specifies the index numbers of the default file filtering criteria, from 1 to the number of filters specified in _FileFilter_. If this argument is omitted or greater than the number of filters present, the first file filter is used.| @@ -35,7 +35,7 @@ Displays the standard **Open** dialog box and gets a file name from the user wi | _ButtonText_|Optional| **Variant**|Macintosh only.| | _MultiSelect_|Optional| **Variant**| **True** to allow multiple file names to be selected. **False** to allow only one file name to be selected. The default value is **False** .| -### Return Value +### Return value Variant diff --git a/api/Excel.Application.GetPhonetic.md b/api/Excel.Application.GetPhonetic.md index e07f484de33..d8e4ac73585 100644 --- a/api/Excel.Application.GetPhonetic.md +++ b/api/Excel.Application.GetPhonetic.md @@ -27,11 +27,11 @@ Returns the Japanese phonetic text of the specified text string. This method is -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Text_|Optional| **Variant**|Specifies the text to be converted to phonetic text. If you omit this argument, the next possible phonetic text string (if any) of the previously specified _Text_ is returned. If there are no more possible phonetic text strings, an empty string is returned.| -### Return Value +### Return value String diff --git a/api/Excel.Application.GetSaveAsFilename.md b/api/Excel.Application.GetSaveAsFilename.md index d344f0d77e2..4618baf9b33 100644 --- a/api/Excel.Application.GetSaveAsFilename.md +++ b/api/Excel.Application.GetSaveAsFilename.md @@ -27,7 +27,7 @@ Displays the standard **Save As** dialog box and gets a file name from the user -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _InitialFilename_|Optional| **Variant**|Specifies the suggested file name. If this argument is omitted, Microsoft Excel uses the active workbook's name.| | _FileFilter_|Optional| **Variant**|A string specifying file filtering criteria.| @@ -35,7 +35,7 @@ Displays the standard **Save As** dialog box and gets a file name from the user | _Title_|Optional| **Variant**|Specifies the title of the dialog box. If this argument is omitted, the default title is used.| | _ButtonText_|Optional| **Variant**|Macintosh only.| -### Return Value +### Return value Variant diff --git a/api/Excel.Application.Goto.md b/api/Excel.Application.Goto.md index c5fa2d7dd87..2a76f8a1f8f 100644 --- a/api/Excel.Application.Goto.md +++ b/api/Excel.Application.Goto.md @@ -27,7 +27,7 @@ Selects any range or Visual Basic procedure in any workbook, and activates that -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Reference_|Optional| **Variant**|The destination. Can be a **[Range](Excel.Range(object).md)** object, a string that contains a cell reference in R1C1-style notation, or a string that contains a Visual Basic procedure name. If this argument is omitted, the destination is the last range you used the **Goto** method to select.| | _Scroll_|Optional| **Variant**| **True** to scroll through the window so that the upper-left corner of the range appears in the upper-left corner of the window. **False** to not scroll through the window. The default is **False** .| diff --git a/api/Excel.Application.Help.md b/api/Excel.Application.Help.md index b37f72f0f15..31a8091b8b3 100644 --- a/api/Excel.Application.Help.md +++ b/api/Excel.Application.Help.md @@ -27,7 +27,7 @@ Displays a Help topic. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _HelpFile_|Optional| **Variant**|The name of the online Help file you want to display. If this argument isn't specified, Microsoft Excel Help is used.| | _HelpContextID_|Optional| **Variant**|Specifies the context ID number for the Help topic. If this argument isn't specified, the **Help Topics** dialog box is displayed.| diff --git a/api/Excel.Application.InchesToPoints.md b/api/Excel.Application.InchesToPoints.md index 7ad96585cdc..7fb807715e9 100644 --- a/api/Excel.Application.InchesToPoints.md +++ b/api/Excel.Application.InchesToPoints.md @@ -27,11 +27,11 @@ Converts a measurement from inches to points. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Inches_|Required| **Double**|Specifies the inch value to be converted to points.| -### Return Value +### Return value Double diff --git a/api/Excel.Application.InputBox.md b/api/Excel.Application.InputBox.md index 60713a5ae41..8948ac8cc8b 100644 --- a/api/Excel.Application.InputBox.md +++ b/api/Excel.Application.InputBox.md @@ -25,7 +25,7 @@ Displays a dialog box for user input. Returns the information entered in the dia ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Prompt_|Required| **String**|The message to be displayed in the dialog box. This can be a string, a number, a date, or a Boolean value (Microsoft Excel automatically coerces the value to a **String** before it is displayed).| | _Title_|Optional| **Variant**|The title for the input box. If this argument is omitted, the default title is "Input."| diff --git a/api/Excel.Application.International.md b/api/Excel.Application.International.md index 4a0b55c6b0e..2a574a1d340 100644 --- a/api/Excel.Application.International.md +++ b/api/Excel.Application.International.md @@ -27,7 +27,7 @@ Returns information about the current country/region and international settings. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The setting to be returned. Can be one of the **XlApplicationInternational** constants listed in the following tables.| diff --git a/api/Excel.Application.Intersect.md b/api/Excel.Application.Intersect.md index e69f3219c1d..87c508a4ae3 100644 --- a/api/Excel.Application.Intersect.md +++ b/api/Excel.Application.Intersect.md @@ -26,7 +26,7 @@ Returns a [Range](Excel.Range(object).md) object that represents the rectangular ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Arg1_|Required| **Range**|The intersecting ranges. At least two **Range** objects must be specified.| | _Arg2_|Required| **Range**|The intersecting ranges. At least two **Range** objects must be specified.| @@ -59,7 +59,7 @@ Returns a [Range](Excel.Range(object).md) object that represents the rectangular | _Arg29_|Optional| **Variant**|An intersecting range.| | _Arg30_|Optional| **Variant**|An intersecting range.| -### Return Value +### Return value Range diff --git a/api/Excel.Application.IsSandboxed.md b/api/Excel.Application.IsSandboxed.md index 0eb4207c44b..a6c69901d7f 100644 --- a/api/Excel.Application.IsSandboxed.md +++ b/api/Excel.Application.IsSandboxed.md @@ -23,7 +23,7 @@ Returns **True** if the specified workbook is open in a **Protected View** wind _expression_ A variable that represents an '[Application](Excel.Application(object).md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.Application.MacroOptions.md b/api/Excel.Application.MacroOptions.md index a0a43fceb19..bd3d9e1afde 100644 --- a/api/Excel.Application.MacroOptions.md +++ b/api/Excel.Application.MacroOptions.md @@ -27,7 +27,7 @@ Corresponds to options in the **Macro Options** dialog box. You can also use th -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Macro_|Optional| **Variant**|The macro name or the name of a user defined function (UDF).| | _Description_|Optional| **Variant**|The macro description.| diff --git a/api/Excel.Application.MailLogon.md b/api/Excel.Application.MailLogon.md index 495fdeab4cf..d17941c59ee 100644 --- a/api/Excel.Application.MailLogon.md +++ b/api/Excel.Application.MailLogon.md @@ -27,7 +27,7 @@ Logs in to MAPI Mail or Microsoft Exchange and establishes a mail session. If Mi -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Optional| **Variant**|The mail account name or Microsoft Exchange profile name. If this argument is omitted, the default mail account name is used.| | _Password_|Optional| **Variant**|The mail account password. This argument is ignored in Microsoft Exchange.| diff --git a/api/Excel.Application.NewWorkbook(even).md b/api/Excel.Application.NewWorkbook(even).md index 3fe59f74bcb..ef7f6f6658c 100644 --- a/api/Excel.Application.NewWorkbook(even).md +++ b/api/Excel.Application.NewWorkbook(even).md @@ -27,7 +27,7 @@ Occurs when a new workbook is created. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The new workbook.| diff --git a/api/Excel.Application.NewWorkbook(property).md b/api/Excel.Application.NewWorkbook(property).md index d8c731b63f6..a6043e25b5f 100644 --- a/api/Excel.Application.NewWorkbook(property).md +++ b/api/Excel.Application.NewWorkbook(property).md @@ -23,7 +23,7 @@ Returns a **[NewFile](Office.NewFile.md)** object. _expression_ An expression that returns a [Application](Excel.Application(Graph property).md) object. -### Return Value +### Return value NewFile diff --git a/api/Excel.Application.NextLetter.md b/api/Excel.Application.NextLetter.md index 3244f9e7e93..577dc06cb5d 100644 --- a/api/Excel.Application.NextLetter.md +++ b/api/Excel.Application.NextLetter.md @@ -23,7 +23,7 @@ You have requested Help for a Visual Basic keyword used only on the Macintosh. F _expression_ A variable that represents an [Application](Excel.Application(Graph property).md) object. -### Return Value +### Return value Workbook diff --git a/api/Excel.Application.OnKey.md b/api/Excel.Application.OnKey.md index fa502b0f455..0a9d2746952 100644 --- a/api/Excel.Application.OnKey.md +++ b/api/Excel.Application.OnKey.md @@ -27,7 +27,7 @@ Runs a specified procedure when a particular key or key combination is pressed. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Key_|Required| **String**|A string indicating the key to be pressed.| | _Procedure_|Optional| **Variant**|A string indicating the name of the procedure to be run. If _Procedure_ is "" (empty text), nothing happens when _Key_ is pressed. This form of **OnKey** changes the normal result of keystrokes in Microsoft Excel. If _Procedure_ is omitted, _Key_ reverts to its normal result in Microsoft Excel, and any special key assignments made with previous **OnKey** methods are cleared.| diff --git a/api/Excel.Application.OnRepeat.md b/api/Excel.Application.OnRepeat.md index 8a420531bbd..23629041911 100644 --- a/api/Excel.Application.OnRepeat.md +++ b/api/Excel.Application.OnRepeat.md @@ -27,7 +27,7 @@ Sets the **Repeat** item and the name of the procedure that will run if you cho -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Text_|Required| **String**|The text that appears with the **Repeat** command.| | _Procedure_|Required| **String**|The name of the procedure that will be run when you choose the **Repeat** command.| diff --git a/api/Excel.Application.OnTime.md b/api/Excel.Application.OnTime.md index d011a41fc18..55d1f805666 100644 --- a/api/Excel.Application.OnTime.md +++ b/api/Excel.Application.OnTime.md @@ -27,7 +27,7 @@ Schedules a procedure to be run at a specified time in the future (either at a s -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _EarliestTime_|Required| **Variant**|The time when you want this procedure to be run.| | _Procedure_|Required| **String**|The name of the procedure to be run.| diff --git a/api/Excel.Application.OnUndo.md b/api/Excel.Application.OnUndo.md index fc5f27e91f9..2bab0cd7ea7 100644 --- a/api/Excel.Application.OnUndo.md +++ b/api/Excel.Application.OnUndo.md @@ -27,7 +27,7 @@ Sets the text of the **Undo** command and the name of the procedure that's run -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Text_|Required| **String**|The text that appears with the **Undo** command.| | _Procedure_|Required| **String**|The name of the procedure that's run when you choose the **Undo** command.| diff --git a/api/Excel.Application.PreviousSelections.md b/api/Excel.Application.PreviousSelections.md index c92ce5889ca..c336d775e2b 100644 --- a/api/Excel.Application.PreviousSelections.md +++ b/api/Excel.Application.PreviousSelections.md @@ -27,7 +27,7 @@ Returns an array of the last four ranges or names selected. Each element in the -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The index number (from 1 to 4) of the previous range or name.| diff --git a/api/Excel.Application.PrintCommunication.md b/api/Excel.Application.PrintCommunication.md index a74106d2f9a..076e8e753b0 100644 --- a/api/Excel.Application.PrintCommunication.md +++ b/api/Excel.Application.PrintCommunication.md @@ -23,7 +23,7 @@ Specifies whether communication with the printer is turned on. **Boolean** Read _expression_ A variable that returns an [Application](Excel.Application(Graph property).md) object. -### Return Value +### Return value **True** , if communication with the printer is turned on; otherwise **False** . diff --git a/api/Excel.Application.ProtectedViewWindowActivate.md b/api/Excel.Application.ProtectedViewWindowActivate.md index f75c8905e79..483e1e597c4 100644 --- a/api/Excel.Application.ProtectedViewWindowActivate.md +++ b/api/Excel.Application.ProtectedViewWindowActivate.md @@ -27,11 +27,11 @@ Occurs when a **Protected View** window is activated. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Pvw_|Required| **[ProtectedViewWindow](Excel.ProtectedViewWindow.md)**| The activated **Protected View** window.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.ProtectedViewWindowBeforeClose.md b/api/Excel.Application.ProtectedViewWindowBeforeClose.md index 5eed46a342a..838eb2e1cbf 100644 --- a/api/Excel.Application.ProtectedViewWindowBeforeClose.md +++ b/api/Excel.Application.ProtectedViewWindowBeforeClose.md @@ -27,13 +27,13 @@ Occurs immediately before a **Protected View** window or a workbook in a **Prot -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Pvw_|Required| **[ProtectedViewWindow](Excel.ProtectedViewWindow.md)**|An object that represents the **Protected View** window that is closed.| | _Reason_|Required| **[XlProtectedViewCloseReason](Excel.XlProtectedViewCloseReason.md)**|A constant that specifies the reason the **Protected View** window is closed.| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the window does not close when the procedure is finished.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.ProtectedViewWindowBeforeEdit.md b/api/Excel.Application.ProtectedViewWindowBeforeEdit.md index f8ff2752e3d..e00ae6f33a0 100644 --- a/api/Excel.Application.ProtectedViewWindowBeforeEdit.md +++ b/api/Excel.Application.ProtectedViewWindowBeforeEdit.md @@ -27,12 +27,12 @@ Occurs immediately before editing is enabled on the workbook in the specified * -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Pvw_|Required| **[ProtectedViewWindow](Excel.ProtectedViewWindow.md)**|The **Protected View** window that contains the workbook that is enabled for editing.| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , editing is not enabled on the workbook.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.ProtectedViewWindowDeactivate.md b/api/Excel.Application.ProtectedViewWindowDeactivate.md index 30fc1caa9fd..137e4bb66b0 100644 --- a/api/Excel.Application.ProtectedViewWindowDeactivate.md +++ b/api/Excel.Application.ProtectedViewWindowDeactivate.md @@ -27,11 +27,11 @@ Occurs when a **Protected View** window is deactivated. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Pvw_|Required| **[ProtectedViewWindow](Excel.ProtectedViewWindow.md)**|An object that represents the deactivated **Protected View** window.| -### Return Value +### Return value **Nothing** diff --git a/api/Excel.Application.ProtectedViewWindowOpen.md b/api/Excel.Application.ProtectedViewWindowOpen.md index 0f140d77e46..b4e6d1c4600 100644 --- a/api/Excel.Application.ProtectedViewWindowOpen.md +++ b/api/Excel.Application.ProtectedViewWindowOpen.md @@ -27,11 +27,11 @@ Occurs when a workbook is opened in a **Protected View** window. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Pvw_|Required| **[ProtectedViewWindow](Excel.ProtectedViewWindow.md)**|An object that represents the **Protected View** window that is opened.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.ProtectedViewWindowResize.md b/api/Excel.Application.ProtectedViewWindowResize.md index a831c73b163..3f876c963f8 100644 --- a/api/Excel.Application.ProtectedViewWindowResize.md +++ b/api/Excel.Application.ProtectedViewWindowResize.md @@ -27,11 +27,11 @@ Occurs when any **Protected View** window is resized. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Pvw_|Required| **[ProtectedViewWindow](Excel.ProtectedViewWindow.md)**|An object that represents the resized **Protected View** window.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.RTD.md b/api/Excel.Application.RTD.md index aa3d2c5d311..269eb8eba59 100644 --- a/api/Excel.Application.RTD.md +++ b/api/Excel.Application.RTD.md @@ -23,7 +23,7 @@ Returns an **[RTD](Excel.RTD.md)** object. _expression_ An expression that returns a [Application](Excel.Application(Graph property).md) object. -### Return Value +### Return value RTD diff --git a/api/Excel.Application.Range.md b/api/Excel.Application.Range.md index b26a5976eb8..9bfca06d4a2 100644 --- a/api/Excel.Application.Range.md +++ b/api/Excel.Application.Range.md @@ -27,7 +27,7 @@ Returns a **[Range](Excel.Range(object).md)** object that represents a cell or -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cell1_|Required| **Variant**|The name of the range. This must be an A1-style reference in the language of the macro. It can include the range operator (a colon), the intersection operator (a space), or the union operator (a comma). It can also include dollar signs, but they?re ignored. You can use a local defined name in any part of the range. If you use a name, the name is assumed to be in the language of the macro.| | _Cell2_|Optional| **Variant**|The cell in the upper-left and lower-right corner of the range. Can be a **Range** object that contains a single cell, an entire column, or entire row, or it can be a string that names a single cell in the language of the macro.| diff --git a/api/Excel.Application.RecordMacro.md b/api/Excel.Application.RecordMacro.md index 77109d008ba..1507a57206c 100644 --- a/api/Excel.Application.RecordMacro.md +++ b/api/Excel.Application.RecordMacro.md @@ -27,7 +27,7 @@ Records code if the macro recorder is on. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _BasicCode_|Optional| **Variant**|A string that specifies the Visual Basic code that will be recorded if the macro recorder is recording into a Visual Basic module. The string will be recorded on one line. If the string contains a carriage return (ASCII character 10, or Chr$(10) in code), it will be recorded on more than one line.| | _XlmCode_|Optional| **Variant**|This argument is ignored.| diff --git a/api/Excel.Application.RegisterXLL.md b/api/Excel.Application.RegisterXLL.md index 5018660a387..41c6069f6e7 100644 --- a/api/Excel.Application.RegisterXLL.md +++ b/api/Excel.Application.RegisterXLL.md @@ -27,11 +27,11 @@ Loads an XLL code resource and automatically registers the functions and command -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|Specifies the name of the XLL to be loaded.| -### Return Value +### Return value Boolean diff --git a/api/Excel.Application.RegisteredFunctions.md b/api/Excel.Application.RegisteredFunctions.md index 0fa0f6ee746..9bf16a1cd64 100644 --- a/api/Excel.Application.RegisteredFunctions.md +++ b/api/Excel.Application.RegisteredFunctions.md @@ -27,7 +27,7 @@ Returns information about functions in either dynamic-link libraries (DLLs) or c -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index1_|Optional| **Variant**|The name of the DLL or code resource.| | _Index2_|Optional| **Variant**|The name of the function.| diff --git a/api/Excel.Application.Run.md b/api/Excel.Application.Run.md index 28089fa72c4..e75bfaddd01 100644 --- a/api/Excel.Application.Run.md +++ b/api/Excel.Application.Run.md @@ -27,12 +27,12 @@ Runs a macro or calls a function. This can be used to run a macro written in Vis -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Macro_|Optional| **Variant**|The macro to run. This can be either a string with the macro name, a **[Range](Excel.Range(object).md)** object indicating where the function is, or a register ID for a registered DLL (XLL) function. If a string is used, the string will be evaluated in the context of the active sheet.| | _Arg1-Arg30_|Optional| **Variant**|An argument that should be passed to the function.| -### Return Value +### Return value Variant diff --git a/api/Excel.Application.SaveWorkspace.md b/api/Excel.Application.SaveWorkspace.md index 98210453fec..3ea6d4d201d 100644 --- a/api/Excel.Application.SaveWorkspace.md +++ b/api/Excel.Application.SaveWorkspace.md @@ -27,7 +27,7 @@ This object, member, or enumeration is deprecated and is not intended to be used -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Optional| **Variant**|| diff --git a/api/Excel.Application.SendKeys.md b/api/Excel.Application.SendKeys.md index a0b57d56ac0..18f5b171399 100644 --- a/api/Excel.Application.SendKeys.md +++ b/api/Excel.Application.SendKeys.md @@ -27,7 +27,7 @@ Sends keystrokes to the active application. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Keys_|Required| **Variant**|The key or key combination you want to send to the application, as text.| | _Wait_|Optional| **Variant**| **True** to have Microsoft Excel wait for the keys to be processed before returning control to the macro. **False** (or omitted) to continue running the macro without waiting for the keys to be processed.| diff --git a/api/Excel.Application.SharePointVersion.md b/api/Excel.Application.SharePointVersion.md index 3636772450e..5db66864885 100644 --- a/api/Excel.Application.SharePointVersion.md +++ b/api/Excel.Application.SharePointVersion.md @@ -27,11 +27,11 @@ Returns the version number of SharePoint Foundation instances running at site fo -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _bstrUrl_|Required| **String**|The URL of site to check.| -### Return Value +### Return value Long diff --git a/api/Excel.Application.SheetActivate.md b/api/Excel.Application.SheetActivate.md index d4452ff11aa..29e78761310 100644 --- a/api/Excel.Application.SheetActivate.md +++ b/api/Excel.Application.SheetActivate.md @@ -27,7 +27,7 @@ Occurs when any sheet is activated. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The activated sheet. Can be a **[Chart](Excel.Chart(object).md)** or **[Worksheet](Excel.Worksheet.md)** object.| diff --git a/api/Excel.Application.SheetBeforeDoubleClick.md b/api/Excel.Application.SheetBeforeDoubleClick.md index 056eb7c8edc..62d66c54b2e 100644 --- a/api/Excel.Application.SheetBeforeDoubleClick.md +++ b/api/Excel.Application.SheetBeforeDoubleClick.md @@ -27,7 +27,7 @@ Occurs when any worksheet is double-clicked, before the default double-click act -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**| A **[Worksheet](Excel.Worksheet.md)** object that represents the sheet.| | _Target_|Required| **Range**|The cell nearest to the mouse pointer when the double-click occurred.| diff --git a/api/Excel.Application.SheetBeforeRightClick.md b/api/Excel.Application.SheetBeforeRightClick.md index 1200945f9b9..28c8992f725 100644 --- a/api/Excel.Application.SheetBeforeRightClick.md +++ b/api/Excel.Application.SheetBeforeRightClick.md @@ -27,7 +27,7 @@ Occurs when any worksheet is right-clicked, before the default right-click actio -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|A **[Worksheet](Excel.Worksheet.md)** object that represents the sheet.| | _Target_|Required| **Range**|The cell nearest to the mouse pointer when the right-click occurred.| diff --git a/api/Excel.Application.SheetCalculate.md b/api/Excel.Application.SheetCalculate.md index 1f6f7d76e9b..3f71bf10076 100644 --- a/api/Excel.Application.SheetCalculate.md +++ b/api/Excel.Application.SheetCalculate.md @@ -27,7 +27,7 @@ Occurs after any worksheet is recalculated or after any changed data is plotted -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|Can be a **[Chart](Excel.Chart(object).md)** or **[Worksheet](Excel.Worksheet.md)** object.| diff --git a/api/Excel.Application.SheetChange.md b/api/Excel.Application.SheetChange.md index 093b1fff7dd..0a57cce422b 100644 --- a/api/Excel.Application.SheetChange.md +++ b/api/Excel.Application.SheetChange.md @@ -27,7 +27,7 @@ Occurs when cells in any worksheet are changed by the user or by an external lin -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|A **[Worksheet](Excel.Worksheet.md)** object that represents the sheet.| | _Target_|Required| **Range**|The changed range.| diff --git a/api/Excel.Application.SheetDeactivate.md b/api/Excel.Application.SheetDeactivate.md index 89ebc7e025a..b5cce412a4c 100644 --- a/api/Excel.Application.SheetDeactivate.md +++ b/api/Excel.Application.SheetDeactivate.md @@ -27,7 +27,7 @@ Occurs when any sheet is deactivated. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The sheet. Can be a **[Chart](Excel.Chart(object).md)** or **[Worksheet](Excel.Worksheet.md)** object.| diff --git a/api/Excel.Application.SheetFollowHyperlink.md b/api/Excel.Application.SheetFollowHyperlink.md index 1e741baf1e5..0dd6d863178 100644 --- a/api/Excel.Application.SheetFollowHyperlink.md +++ b/api/Excel.Application.SheetFollowHyperlink.md @@ -27,7 +27,7 @@ Occurs when you click any hyperlink in Microsoft Excel. For worksheet-level even -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The **[Worksheet](Excel.Worksheet.md)** object that contains the hyperlink.| | _Target_|Required| **Hyperlink**|The **Hyperlink** object that represents the destination of the hyperlink.| diff --git a/api/Excel.Application.SheetPivotTableAfterValueChange.md b/api/Excel.Application.SheetPivotTableAfterValueChange.md index b1e1e45c803..4574902ff09 100644 --- a/api/Excel.Application.SheetPivotTableAfterValueChange.md +++ b/api/Excel.Application.SheetPivotTableAfterValueChange.md @@ -27,13 +27,13 @@ Occurs after a cell or range of cells inside a PivotTable are edited or recalcul -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The worksheet that contains the PivotTable| | _TargetPivotTable_|Required| **[PivotTable](Excel.PivotTable.md)**|The PivotTable that contains the edited or recalculated cells.| | _TargetRange_|Required| **[Range](Excel.Range(object).md)**|The range that contains all the edited or recalcuated cells.| -### Return Value +### Return value **Nothing** diff --git a/api/Excel.Application.SheetPivotTableBeforeAllocateChanges.md b/api/Excel.Application.SheetPivotTableBeforeAllocateChanges.md index 2c0f4165140..0ffaa50d60f 100644 --- a/api/Excel.Application.SheetPivotTableBeforeAllocateChanges.md +++ b/api/Excel.Application.SheetPivotTableBeforeAllocateChanges.md @@ -27,7 +27,7 @@ Occurs before changes are applied to a PivotTable. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The worksheet that contains the PivotTable.| | _TargetPivotTable_|Required| **[PivotTable](Excel.PivotTable.md)**|The PivotTable that contains the changes to apply.| @@ -35,7 +35,7 @@ Occurs before changes are applied to a PivotTable. | _ValueChangeEnd_|Required| **Long**|The index to the last change in the associated **PivotTableChangeList** collection. The index is specified by the **Order** property of the **ValueChange** object in the **PivotTableChangeList** collection.| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the changes are not applied to the PivotTable and all edits are lost.| -### Return Value +### Return value **Nothing** diff --git a/api/Excel.Application.SheetPivotTableBeforeCommitChanges.md b/api/Excel.Application.SheetPivotTableBeforeCommitChanges.md index d3332336332..a1ac56c3107 100644 --- a/api/Excel.Application.SheetPivotTableBeforeCommitChanges.md +++ b/api/Excel.Application.SheetPivotTableBeforeCommitChanges.md @@ -27,7 +27,7 @@ Occurs before changes are committed against the OLAP data source for a PivotTabl -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The worksheet that contains the PivotTable.| | _TargetPivotTable_|Required| **[PivotTable](Excel.PivotTable.md)**|The PivotTable that contains the changes to commit.| @@ -35,7 +35,7 @@ Occurs before changes are committed against the OLAP data source for a PivotTabl | _ValueChangeEnd_|Required| **Long**|The index to the last change in the associated **PivotTableChangeList** object. The index is specified by the **Order** property of the **ValueChange** object in the **PivotTableChangeList** collection.| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the changes are not committed against the OLAP data source of the PivotTable.| -### Return Value +### Return value **Nothing** diff --git a/api/Excel.Application.SheetPivotTableBeforeDiscardChanges.md b/api/Excel.Application.SheetPivotTableBeforeDiscardChanges.md index 173d993b760..78cfffb049c 100644 --- a/api/Excel.Application.SheetPivotTableBeforeDiscardChanges.md +++ b/api/Excel.Application.SheetPivotTableBeforeDiscardChanges.md @@ -27,14 +27,14 @@ Occurs before changes to a PivotTable are discarded. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|| | _TargetPivotTable_|Required| **[PivotTable](Excel.PivotTable.md)**|The PivotTable that contains the changes to discard.| | _ValueChangeStart_|Required| **Long**|The index to the first change in the associated **[PivotTableChangeList](Excel.PivotTableChangeList.md)** object. The index is specified by the **[Order](Excel.ValueChange.Order.md)** property of the **[ValueChange](Excel.ValueChange.md)** object in the **PivotTableChangeList** collection.| | _ValueChangeEnd_|Required| **Long**|The index to the last change in the associated **PivotTableChangeList** object. The index is specified by the **Order** property of the **ValueChange** object in the **PivotTableChangeList** collection.| -### Return Value +### Return value **Nothing** diff --git a/api/Excel.Application.SheetPivotTableUpdate.md b/api/Excel.Application.SheetPivotTableUpdate.md index 98ca52940df..000517020e0 100644 --- a/api/Excel.Application.SheetPivotTableUpdate.md +++ b/api/Excel.Application.SheetPivotTableUpdate.md @@ -27,7 +27,7 @@ Occurs after the sheet of the PivotTable report has been updated. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The selected sheet.| | _Target_|Required| **PivotTable**|The selected PivotTable report.| diff --git a/api/Excel.Application.SheetSelectionChange.md b/api/Excel.Application.SheetSelectionChange.md index 49e518e9412..625c1b97d12 100644 --- a/api/Excel.Application.SheetSelectionChange.md +++ b/api/Excel.Application.SheetSelectionChange.md @@ -27,7 +27,7 @@ Occurs when the selection changes on any worksheet (doesn't occur if the selecti -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The worksheet that contains the new selection.| | _Target_|Required| **Range**|The new selected range.| diff --git a/api/Excel.Application.SmartArtColors.md b/api/Excel.Application.SmartArtColors.md index 529b212c331..d58b73e0668 100644 --- a/api/Excel.Application.SmartArtColors.md +++ b/api/Excel.Application.SmartArtColors.md @@ -23,7 +23,7 @@ Returns the set of color styles that are currently loaded in the application. Re _expression_ A variable that represents an '[Application](Excel.Application(object).md)' object. -### Return Value +### Return value **[SmartArtColors](Office.SmartArtColors.md)** diff --git a/api/Excel.Application.SmartArtLayouts.md b/api/Excel.Application.SmartArtLayouts.md index c4fc96642d9..f8cb8ea7a9b 100644 --- a/api/Excel.Application.SmartArtLayouts.md +++ b/api/Excel.Application.SmartArtLayouts.md @@ -23,7 +23,7 @@ Returns the set of SmartArt layouts that are currently loaded in the application _expression_ A variable that represents an '[Application](Excel.Application(object).md)' object. -### Return Value +### Return value **[SmartArtLayouts](Office.SmartArtLayouts.md)** diff --git a/api/Excel.Application.SmartArtQuickStyles.md b/api/Excel.Application.SmartArtQuickStyles.md index ba2566fc644..c1a159deada 100644 --- a/api/Excel.Application.SmartArtQuickStyles.md +++ b/api/Excel.Application.SmartArtQuickStyles.md @@ -23,7 +23,7 @@ Returns the set of SmartArt quick styles which are currently loaded in the appli _expression_ A variable that represents an '[Application](Excel.Application(object).md)' object. -### Return Value +### Return value **[SmartArtQuickStyles](Office.SmartArtQuickStyles.md)** diff --git a/api/Excel.Application.Union.md b/api/Excel.Application.Union.md index 97cc4e5488b..fc52ba11e88 100644 --- a/api/Excel.Application.Union.md +++ b/api/Excel.Application.Union.md @@ -27,7 +27,7 @@ Returns the union of two or more ranges. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Arg1_|Required| **Range**|At least two **[Range](Excel.Range(object).md)** objects must be specified.| | _Arg2_|Required| **Range**|At least two **Range** objects must be specified.| @@ -60,7 +60,7 @@ Returns the union of two or more ranges. | _Arg29_|Optional| **Variant**|A range.| | _Arg30_|Optional| **Variant**|A range.| -### Return Value +### Return value Range diff --git a/api/Excel.Application.UseClusterConnector.md b/api/Excel.Application.UseClusterConnector.md index 98f4704be3d..9f1f43e6596 100644 --- a/api/Excel.Application.UseClusterConnector.md +++ b/api/Excel.Application.UseClusterConnector.md @@ -23,7 +23,7 @@ Returns or sets whether Excel allows user-defined functions in XLL add-ins to be _expression_ A variable that represents an '[Application](Excel.Application(object).md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.Application.Volatile.md b/api/Excel.Application.Volatile.md index 2469965f08a..0be81ba643f 100644 --- a/api/Excel.Application.Volatile.md +++ b/api/Excel.Application.Volatile.md @@ -27,7 +27,7 @@ Marks a user-defined function as volatile. A volatile function must be recalcula -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Volatile_|Optional| **Variant**| **True** to mark the function as volatile. **False** to mark the function as nonvolatile. The default value is **True**| diff --git a/api/Excel.Application.Wait.md b/api/Excel.Application.Wait.md index cf977a4a80f..a023817d3a2 100644 --- a/api/Excel.Application.Wait.md +++ b/api/Excel.Application.Wait.md @@ -27,11 +27,11 @@ Pauses a running macro until a specified time. Returns **True** if the specifie -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Time_|Required| **Variant**|The time at which you want the macro to resume, in Microsoft Excel date format.| -### Return Value +### Return value Boolean diff --git a/api/Excel.Application.WindowActivate.md b/api/Excel.Application.WindowActivate.md index 2cb0c678b52..a7ca5c9d2f7 100644 --- a/api/Excel.Application.WindowActivate.md +++ b/api/Excel.Application.WindowActivate.md @@ -27,7 +27,7 @@ Occurs when any workbook window is activated. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **Window**| The workbook displayed in the activated window.| | _Wn_|Required| **Window**| The activated window.| diff --git a/api/Excel.Application.WindowDeactivate.md b/api/Excel.Application.WindowDeactivate.md index 07737ffa960..8ff37d0e39c 100644 --- a/api/Excel.Application.WindowDeactivate.md +++ b/api/Excel.Application.WindowDeactivate.md @@ -27,7 +27,7 @@ Occurs when any workbook window is deactivated. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **Workbook**|The workbook displayed in the deactivated window.| | _Wn_|Required| **Window**|The deactivated window.| diff --git a/api/Excel.Application.WindowResize.md b/api/Excel.Application.WindowResize.md index 1902632b565..31972704f50 100644 --- a/api/Excel.Application.WindowResize.md +++ b/api/Excel.Application.WindowResize.md @@ -27,7 +27,7 @@ Occurs when any workbook window is resized. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **Window**|The workbook displayed in the resized window.| | _Wn_|Required| **Window**|The resized window.| diff --git a/api/Excel.Application.WorkbookActivate.md b/api/Excel.Application.WorkbookActivate.md index 417735978f0..8687323ee2e 100644 --- a/api/Excel.Application.WorkbookActivate.md +++ b/api/Excel.Application.WorkbookActivate.md @@ -27,11 +27,11 @@ Occurs when any workbook is activated. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The activated workbook.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookAddinInstall.md b/api/Excel.Application.WorkbookAddinInstall.md index dd1ca4d9fcc..c9795a0ddae 100644 --- a/api/Excel.Application.WorkbookAddinInstall.md +++ b/api/Excel.Application.WorkbookAddinInstall.md @@ -27,11 +27,11 @@ Occurs when a workbook is installed as an add-in. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The installed workbook.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookAddinUninstall.md b/api/Excel.Application.WorkbookAddinUninstall.md index f9668671402..ea017e69c37 100644 --- a/api/Excel.Application.WorkbookAddinUninstall.md +++ b/api/Excel.Application.WorkbookAddinUninstall.md @@ -27,11 +27,11 @@ Occurs when any add-in workbook is uninstalled. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The uninstalled workbook.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookAfterSave.md b/api/Excel.Application.WorkbookAfterSave.md index 876e6fe40df..4257c5c20d0 100644 --- a/api/Excel.Application.WorkbookAfterSave.md +++ b/api/Excel.Application.WorkbookAfterSave.md @@ -27,12 +27,12 @@ Occurs after the workbook is saved. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The workbook being saved.| | _Success_|Required| **Boolean**|Returns **True** if the save operation was successful; otherwise **False** .| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookAfterXmlExport.md b/api/Excel.Application.WorkbookAfterXmlExport.md index d339c73441a..95a8e31d525 100644 --- a/api/Excel.Application.WorkbookAfterXmlExport.md +++ b/api/Excel.Application.WorkbookAfterXmlExport.md @@ -27,14 +27,14 @@ Occurs after Microsoft Excel saves or exports XML data from the specified workbo -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The target workbook.| | _Map_|Required| **[XmlMap](Excel.XmlMap.md)**|The XML map that was used to save or export data.| | _Url_|Required| **String**|The location of the XML file that was exported.| | _Result_|Required| **[XlXmlExportResult](Excel.XlXmlExportResult.md)**| Indicates the results of the save or export operation.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookAfterXmlImport.md b/api/Excel.Application.WorkbookAfterXmlImport.md index 590785a3d21..42e44cd595f 100644 --- a/api/Excel.Application.WorkbookAfterXmlImport.md +++ b/api/Excel.Application.WorkbookAfterXmlImport.md @@ -27,14 +27,14 @@ Occurs after an existing XML data connection is refreshed, or new XML data is im -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The target workbook.| | _Map_|Required| **[XmlMap](Excel.XmlMap.md)**|The XML map that was used to import data.| | _IsRefresh_|Required| **Boolean**| **True** if the event was triggered by refreshing an existing connection to XML data, **False** if a new mapping was created.| | _Result_|Required| **[XlXmlImportResult](Excel.XlXmlImportResult.md)**|Indicates the results of the refresh or import operation.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookBeforeClose.md b/api/Excel.Application.WorkbookBeforeClose.md index 4eae7292199..eec548ebdea 100644 --- a/api/Excel.Application.WorkbookBeforeClose.md +++ b/api/Excel.Application.WorkbookBeforeClose.md @@ -27,12 +27,12 @@ Occurs immediately before any open workbook closes. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The workbook that's being closed| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the workbook doesn't close when the procedure is finished.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookBeforePrint.md b/api/Excel.Application.WorkbookBeforePrint.md index c46ebd6f865..9e94d201dd0 100644 --- a/api/Excel.Application.WorkbookBeforePrint.md +++ b/api/Excel.Application.WorkbookBeforePrint.md @@ -27,12 +27,12 @@ Occurs before any open workbook is printed. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The workbook.| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the workbook isn't printed when the procedure is finished.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookBeforeSave.md b/api/Excel.Application.WorkbookBeforeSave.md index 02d55a944f3..51154421ed0 100644 --- a/api/Excel.Application.WorkbookBeforeSave.md +++ b/api/Excel.Application.WorkbookBeforeSave.md @@ -28,13 +28,13 @@ Occurs before any open workbook is saved. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The workbook.| | _SaveAsUI_|Required| **Boolean**| **True** if the **Save As** dialog box will be displayed due to changes made that need to be saved in the workbook.| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the workbook isn't saved when the procedure is finished.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookBeforeXmlExport.md b/api/Excel.Application.WorkbookBeforeXmlExport.md index cb9b75b3159..ad439fd38eb 100644 --- a/api/Excel.Application.WorkbookBeforeXmlExport.md +++ b/api/Excel.Application.WorkbookBeforeXmlExport.md @@ -27,14 +27,14 @@ Occurs before Microsoft Excel saves or exports XML data from the specified workb -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The target workbook.| | _Map_|Required| **[XmlMap](Excel.XmlMap.md)**|The XML map that will be used to save or export data.| | _Url_|Required| **String**|The location of the XML file to be exported.| | _Cancel_|Required| **Boolean**|Set to **True** to cancel the save or export operation.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookBeforeXmlImport.md b/api/Excel.Application.WorkbookBeforeXmlImport.md index 7d3be956359..9c53954d42d 100644 --- a/api/Excel.Application.WorkbookBeforeXmlImport.md +++ b/api/Excel.Application.WorkbookBeforeXmlImport.md @@ -27,7 +27,7 @@ Occurs before an existing XML data connection is refreshed, or new XML data is i -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The target workbook.| | _Map_|Required| **[XmlMap](Excel.XmlMap.md)**|The XML map that will be used to import data.| @@ -35,7 +35,7 @@ Occurs before an existing XML data connection is refreshed, or new XML data is i | _IsRefresh_|Required| **Boolean**| **True** if the event was triggered by refreshing an existing connection to XML data, **False** if a new mapping will be created.| | _Cancel_|Required| **Boolean**|Set to **True** to cancel the import or refresh operation.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookDeactivate.md b/api/Excel.Application.WorkbookDeactivate.md index 448553c14c2..602e60f01dd 100644 --- a/api/Excel.Application.WorkbookDeactivate.md +++ b/api/Excel.Application.WorkbookDeactivate.md @@ -27,11 +27,11 @@ Occurs when any open workbook is deactivated. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The workbook.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookNewChart.md b/api/Excel.Application.WorkbookNewChart.md index 3568f3d6d17..888d13bb312 100644 --- a/api/Excel.Application.WorkbookNewChart.md +++ b/api/Excel.Application.WorkbookNewChart.md @@ -27,12 +27,12 @@ Occurs when a new chart is created in any open workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The workbook.| | _Ch_|Required| **[Chart](Excel.Chart(object).md)**|The new chart.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookNewSheet.md b/api/Excel.Application.WorkbookNewSheet.md index 372b0d54f10..59f7c052dda 100644 --- a/api/Excel.Application.WorkbookNewSheet.md +++ b/api/Excel.Application.WorkbookNewSheet.md @@ -27,12 +27,12 @@ Occurs when a new sheet is created in any open workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The workbook.| | _Sh_|Required| **Object**|The new sheet.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookOpen.md b/api/Excel.Application.WorkbookOpen.md index a787cb9356d..18d61865770 100644 --- a/api/Excel.Application.WorkbookOpen.md +++ b/api/Excel.Application.WorkbookOpen.md @@ -27,11 +27,11 @@ Occurs when a workbook is opened. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The workbook.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookPivotTableCloseConnection.md b/api/Excel.Application.WorkbookPivotTableCloseConnection.md index 1c3825b5900..7ac28851701 100644 --- a/api/Excel.Application.WorkbookPivotTableCloseConnection.md +++ b/api/Excel.Application.WorkbookPivotTableCloseConnection.md @@ -27,12 +27,12 @@ Occurs after a PivotTable report connection has been closed. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The selected workbook.| | _Target_|Required| **[PivotTable](Excel.PivotTable.md)**|The selected PivotTable report.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookPivotTableOpenConnection.md b/api/Excel.Application.WorkbookPivotTableOpenConnection.md index 1621dc894ee..94dbe75d683 100644 --- a/api/Excel.Application.WorkbookPivotTableOpenConnection.md +++ b/api/Excel.Application.WorkbookPivotTableOpenConnection.md @@ -27,12 +27,12 @@ Occurs after a PivotTable report connection has been opened. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **[Workbook](Excel.Workbook.md)**|The selected workbook.| | _Target_|Required| **[PivotTable](Excel.PivotTable.md)**|The selected PivotTable report.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Application.WorkbookRowsetComplete.md b/api/Excel.Application.WorkbookRowsetComplete.md index 6dbc75cc6a2..e57d3d5b6d0 100644 --- a/api/Excel.Application.WorkbookRowsetComplete.md +++ b/api/Excel.Application.WorkbookRowsetComplete.md @@ -27,7 +27,7 @@ The **WorkbookRowsetComplete** event occurs when the user either drills through -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wb_|Required| **Workbook**|The workbook for which the event occurs.| | _Description_|Required| **String**|A brief description of the event.| diff --git a/api/Excel.Areas.Item.md b/api/Excel.Areas.Item.md index 5c899a088f3..f1a43c363e4 100644 --- a/api/Excel.Areas.Item.md +++ b/api/Excel.Areas.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Long**|The index number of the object.| diff --git a/api/Excel.AutoCorrect.AddReplacement.md b/api/Excel.AutoCorrect.AddReplacement.md index ff7075eccfe..9a3441aaaaa 100644 --- a/api/Excel.AutoCorrect.AddReplacement.md +++ b/api/Excel.AutoCorrect.AddReplacement.md @@ -27,12 +27,12 @@ Adds an entry to the array of AutoCorrect replacements. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _What_|Required| **String**|The text to be replaced. If this string already exists in the array of AutoCorrect replacements, the existing substitute text is replaced by the new text.| | _Replacement_|Required| **String**|The replacement text.| -### Return Value +### Return value Variant diff --git a/api/Excel.AutoCorrect.DeleteReplacement.md b/api/Excel.AutoCorrect.DeleteReplacement.md index 85440a9a2fc..be29fb70c8c 100644 --- a/api/Excel.AutoCorrect.DeleteReplacement.md +++ b/api/Excel.AutoCorrect.DeleteReplacement.md @@ -27,11 +27,11 @@ Deletes an entry from the array of AutoCorrect replacements. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _What_|Required| **String**|The text to be replaced, as it appears in the row to be deleted from the array of AutoCorrect replacements. If this string doesn't exist in the array of AutoCorrect replacements, this method fails.| -### Return Value +### Return value Variant diff --git a/api/Excel.AutoCorrect.ReplacementList.md b/api/Excel.AutoCorrect.ReplacementList.md index 7222c9e85a8..df77786ca72 100644 --- a/api/Excel.AutoCorrect.ReplacementList.md +++ b/api/Excel.AutoCorrect.ReplacementList.md @@ -27,7 +27,7 @@ Returns the array of AutoCorrect replacements. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The row index of the array of AutoCorrect replacements to be returned. The row is returned as a one-dimensional array with two elements: The first element is the text in column 1, and the second element is the text in column 2.| diff --git a/api/Excel.Axes.Item.md b/api/Excel.Axes.Item.md index e003d77caf9..f943eaf13c4 100644 --- a/api/Excel.Axes.Item.md +++ b/api/Excel.Axes.Item.md @@ -27,12 +27,12 @@ Returns a single **[Axis](Excel.Axis(object).md)** object from an **Axes** coll -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Required| **[XlAxisType](Excel.XlAxisType.md)**|The axis type.| | _AxisGroup_|Optional| **[XlAxisGroup](Excel.XlAxisGroup.md)**|The axis.| -### Return Value +### Return value Axis diff --git a/api/Excel.Axis.AxisGroup.md b/api/Excel.Axis.AxisGroup.md index fd101ba55f2..22c7ea88339 100644 --- a/api/Excel.Axis.AxisGroup.md +++ b/api/Excel.Axis.AxisGroup.md @@ -23,7 +23,7 @@ Returns the group for the specified axis. Read-only _expression_ A variable that represents an '[Axis](Excel.Axis(object).md)' object. -### Return Value +### Return value **[XlAxisGroup](Excel.XlAxisGroup.md)** diff --git a/api/Excel.Axis.Delete.md b/api/Excel.Axis.Delete.md index bdeca20895a..a8bca339ed0 100644 --- a/api/Excel.Axis.Delete.md +++ b/api/Excel.Axis.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents an [Axis](Excel.Axis(Graph object).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Axis.Select.md b/api/Excel.Axis.Select.md index 06edc28fc97..fc132ce8dc3 100644 --- a/api/Excel.Axis.Select.md +++ b/api/Excel.Axis.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents an [Axis](Excel.Axis(Graph object).md) object. -### Return Value +### Return value A Variant value that represents the selected object. diff --git a/api/Excel.AxisTitle.Characters.md b/api/Excel.AxisTitle.Characters.md index 9ca11376b3c..d93346b648d 100644 --- a/api/Excel.AxisTitle.Characters.md +++ b/api/Excel.AxisTitle.Characters.md @@ -27,7 +27,7 @@ Returns a **[Characters](Excel.Characters.md)** object that represents a range -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Start_|Optional| **Variant**|The first character to be returned. If this argument is either 1 or omitted, this property returns a range of characters starting with the first character.| | _Length_|Optional| **Variant**|The number of characters to be returned. If this argument is omitted, this property returns the remainder of the string (everything after the _Start_ character).| diff --git a/api/Excel.AxisTitle.Delete.md b/api/Excel.AxisTitle.Delete.md index b2946b77515..95bb6ca4c71 100644 --- a/api/Excel.AxisTitle.Delete.md +++ b/api/Excel.AxisTitle.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents an [AxisTitle](Excel.AxisTitle(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.AxisTitle.Formula.md b/api/Excel.AxisTitle.Formula.md index 7a1ab8ca550..db26c7ee9ad 100644 --- a/api/Excel.AxisTitle.Formula.md +++ b/api/Excel.AxisTitle.Formula.md @@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using _expression_ A variable that represents an [AxisTitle](Excel.AxisTitle(Graph property).md) object. -### Return Value +### Return value String diff --git a/api/Excel.AxisTitle.FormulaLocal.md b/api/Excel.AxisTitle.FormulaLocal.md index f54e5774999..a5573b0599d 100644 --- a/api/Excel.AxisTitle.FormulaLocal.md +++ b/api/Excel.AxisTitle.FormulaLocal.md @@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using _expression_ A variable that represents an [AxisTitle](Excel.AxisTitle(Graph property).md) object. -### Return Value +### Return value String diff --git a/api/Excel.AxisTitle.FormulaR1C1.md b/api/Excel.AxisTitle.FormulaR1C1.md index 8dd726b20c6..debac375831 100644 --- a/api/Excel.AxisTitle.FormulaR1C1.md +++ b/api/Excel.AxisTitle.FormulaR1C1.md @@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using _expression_ A variable that represents an [AxisTitle](Excel.AxisTitle(Graph property).md) object. -### Return Value +### Return value String diff --git a/api/Excel.AxisTitle.FormulaR1C1Local.md b/api/Excel.AxisTitle.FormulaR1C1Local.md index 01c9708afd5..a9f0f75d24c 100644 --- a/api/Excel.AxisTitle.FormulaR1C1Local.md +++ b/api/Excel.AxisTitle.FormulaR1C1Local.md @@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using _expression_ A variable that represents an [AxisTitle](Excel.AxisTitle(Graph property).md) object. -### Return Value +### Return value String diff --git a/api/Excel.AxisTitle.Height.md b/api/Excel.AxisTitle.Height.md index 03a9fa3756d..5f8f867f5d1 100644 --- a/api/Excel.AxisTitle.Height.md +++ b/api/Excel.AxisTitle.Height.md @@ -23,7 +23,7 @@ Returns the height, in points, of the object. Read-only. _expression_ A variable that represents an [AxisTitle](Excel.AxisTitle(Graph property).md) object. -### Return Value +### Return value Double diff --git a/api/Excel.AxisTitle.Select.md b/api/Excel.AxisTitle.Select.md index bf17d6e5f15..4ab6e3cd693 100644 --- a/api/Excel.AxisTitle.Select.md +++ b/api/Excel.AxisTitle.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents an [AxisTitle](Excel.AxisTitle(Graph property).md) object. -### Return Value +### Return value A Variant value representing the selected object. diff --git a/api/Excel.AxisTitle.Width.md b/api/Excel.AxisTitle.Width.md index 20461805b8b..be1a834c40d 100644 --- a/api/Excel.AxisTitle.Width.md +++ b/api/Excel.AxisTitle.Width.md @@ -23,7 +23,7 @@ Returns the width, in points, of the object. Read-only. _expression_ A variable that represents an [AxisTitle](Excel.AxisTitle(Graph property).md) object. -### Return Value +### Return value Double diff --git a/api/Excel.Borders.Item.md b/api/Excel.Borders.Item.md index 2993162ee46..f63651ac6f6 100644 --- a/api/Excel.Borders.Item.md +++ b/api/Excel.Borders.Item.md @@ -27,7 +27,7 @@ Returns a **[Border](Excel.Border(object).md)** object that represents one of t -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **XlBordersIndex**|One of the constants of **XlBordersIndex** .| diff --git a/api/Excel.CalculatedFields.Add.md b/api/Excel.CalculatedFields.Add.md index a6413a91b50..c81896e242a 100644 --- a/api/Excel.CalculatedFields.Add.md +++ b/api/Excel.CalculatedFields.Add.md @@ -27,13 +27,13 @@ Creates a new calculated field. Returns a **[PivotField](Excel.PivotField.md)** -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **String**|The name of the field.| | _Formula_|Required| **String**|The formula for the field.| | _UseStandardFormula_|Optional| **Variant**| **False** (default) for upward compatibility. **True** for strings contained in any arguments that are field names, will be interpreted as having been formatted in standard U.S. English instead of local settings.| -### Return Value +### Return value A **PivotField** that represents the new calculated field. diff --git a/api/Excel.CalculatedFields.Item.md b/api/Excel.CalculatedFields.Item.md index 42534543149..0458ee326db 100644 --- a/api/Excel.CalculatedFields.Item.md +++ b/api/Excel.CalculatedFields.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number for the object.| -### Return Value +### Return value A **PivotField** object contained by the collection. diff --git a/api/Excel.CalculatedItems.Add.md b/api/Excel.CalculatedItems.Add.md index 492a3e6048b..d476ffa1d09 100644 --- a/api/Excel.CalculatedItems.Add.md +++ b/api/Excel.CalculatedItems.Add.md @@ -27,13 +27,13 @@ Creates a new calculated item. Returns a **[PivotItem](Excel.PivotItem.md)** ob -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **String**|The name of the item.| | _Formula_|Required| **String**|The formula for the item.| | _UseStandardFormula_|Optional| **Variant**| **False** (default) for upward compatibility. **True** for strings contained in any arguments that are item names, will be interpreted as having been formatted in standard U.S. English instead of local settings.| -### Return Value +### Return value A **PivotItem** object that represents the new calculated item. diff --git a/api/Excel.CalculatedItems.Item.md b/api/Excel.CalculatedItems.Item.md index 3fe37d3501f..b49bd5957fc 100644 --- a/api/Excel.CalculatedItems.Item.md +++ b/api/Excel.CalculatedItems.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number for the object.| -### Return Value +### Return value A **PivotItem** object contained by the collection. diff --git a/api/Excel.CalculatedMember.DisplayFolder.md b/api/Excel.CalculatedMember.DisplayFolder.md index 1a729f6b4b4..c39d0211007 100644 --- a/api/Excel.CalculatedMember.DisplayFolder.md +++ b/api/Excel.CalculatedMember.DisplayFolder.md @@ -23,7 +23,7 @@ Returns the display folder name for a named set. Read-only _expression_ A variable that returns a '[CalculatedMember](Excel.CalculatedMember.md)' object. -### Return Value +### Return value **String** diff --git a/api/Excel.CalculatedMember.Dynamic.md b/api/Excel.CalculatedMember.Dynamic.md index b7a9a65c258..a7d045f826c 100644 --- a/api/Excel.CalculatedMember.Dynamic.md +++ b/api/Excel.CalculatedMember.Dynamic.md @@ -23,7 +23,7 @@ Returns whether the specified named set is recalculated with every update. Read- _expression_ A variable that returns a '[CalculatedMember](Excel.CalculatedMember.md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.CalculatedMember.FlattenHierarchies.md b/api/Excel.CalculatedMember.FlattenHierarchies.md index d8b0b6649c1..abb252a0600 100644 --- a/api/Excel.CalculatedMember.FlattenHierarchies.md +++ b/api/Excel.CalculatedMember.FlattenHierarchies.md @@ -23,7 +23,7 @@ Returns or sets whether items from all levels of the hierarchy of the specified _expression_ A variable that represents a '[CalculatedMember](Excel.CalculatedMember.md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.CalculatedMember.HierarchizeDistinct.md b/api/Excel.CalculatedMember.HierarchizeDistinct.md index 6a3c8c6d915..fa8b3635324 100644 --- a/api/Excel.CalculatedMember.HierarchizeDistinct.md +++ b/api/Excel.CalculatedMember.HierarchizeDistinct.md @@ -23,7 +23,7 @@ Returns or sets whether to order and remove duplicates when displaying the hiera _expression_ A variable that returns a '[CalculatedMember](Excel.CalculatedMember.md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.CalculatedMembers.Add.md b/api/Excel.CalculatedMembers.Add.md index e74de39dc0c..98770c11605 100644 --- a/api/Excel.CalculatedMembers.Add.md +++ b/api/Excel.CalculatedMembers.Add.md @@ -27,7 +27,7 @@ Adds a calculated field or calculated item to a PivotTable. Returns a **[Calcul -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **String**|The name of the calculated member.| | _Formula_|Required| **String**|The formula of the calculated member.| @@ -37,7 +37,7 @@ Adds a calculated field or calculated item to a PivotTable. Returns a **[Calcul | _DisplayFolder_|Optional| **String**|The name of the display folder for the calculated member.| | _HierarchizeDistinct_|Optional| **Boolean**|Specifies whether to order and remove duplicates when displaying the hierarchy of the calculated member in a PivotTable report based on an OLAP cube.| -### Return Value +### Return value A **CalculatedMember** object that represents the new calculated field or calculated item. diff --git a/api/Excel.CalculatedMembers.Item.md b/api/Excel.CalculatedMembers.Item.md index ea3e5561244..5dd28f8ce99 100644 --- a/api/Excel.CalculatedMembers.Item.md +++ b/api/Excel.CalculatedMembers.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| diff --git a/api/Excel.CalloutFormat.CustomDrop.md b/api/Excel.CalloutFormat.CustomDrop.md index f20c9cf113c..eb50693b71e 100644 --- a/api/Excel.CalloutFormat.CustomDrop.md +++ b/api/Excel.CalloutFormat.CustomDrop.md @@ -27,7 +27,7 @@ Sets the vertical distance (in points) from the edge of the text bounding box to -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Drop_|Required| **Single**|The drop distance, in points.| diff --git a/api/Excel.CalloutFormat.CustomLength.md b/api/Excel.CalloutFormat.CustomLength.md index be106d3944d..2b764c3e971 100644 --- a/api/Excel.CalloutFormat.CustomLength.md +++ b/api/Excel.CalloutFormat.CustomLength.md @@ -27,7 +27,7 @@ Specifies that the first segment of the callout line (the segment attached to th -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Length_|Required| **Single**|The length of the first segment of the callout, in points.| diff --git a/api/Excel.CalloutFormat.PresetDrop.md b/api/Excel.CalloutFormat.PresetDrop.md index 55cab0c86df..82af20a5426 100644 --- a/api/Excel.CalloutFormat.PresetDrop.md +++ b/api/Excel.CalloutFormat.PresetDrop.md @@ -27,7 +27,7 @@ Specifies whether the callout line attaches to the top, bottom, or center of the -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _DropType_|Required| **[MsoCalloutDropType](Office.MsoCalloutDropType.md)**|The starting position of the callout line relative to the text bounding box.| diff --git a/api/Excel.Characters.Delete.md b/api/Excel.Characters.Delete.md index 296619d838c..e63970414a7 100644 --- a/api/Excel.Characters.Delete.md +++ b/api/Excel.Characters.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [Characters](Excel.Characters.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Characters.Insert.md b/api/Excel.Characters.Insert.md index 5064986e8b0..0433e5234d1 100644 --- a/api/Excel.Characters.Insert.md +++ b/api/Excel.Characters.Insert.md @@ -27,11 +27,11 @@ Inserts a string preceding the selected characters. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _String_|Required| **String**|The string to insert.| -### Return Value +### Return value Variant diff --git a/api/Excel.Chart.ApplyChartTemplate.md b/api/Excel.Chart.ApplyChartTemplate.md index b17105c9786..c5844f9f8cb 100644 --- a/api/Excel.Chart.ApplyChartTemplate.md +++ b/api/Excel.Chart.ApplyChartTemplate.md @@ -27,7 +27,7 @@ Applies a standard or custom chart type to a chart. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|The file name for a chart template.| diff --git a/api/Excel.Chart.ApplyDataLabels.md b/api/Excel.Chart.ApplyDataLabels.md index 86028d56962..f0d40dea86b 100644 --- a/api/Excel.Chart.ApplyDataLabels.md +++ b/api/Excel.Chart.ApplyDataLabels.md @@ -27,7 +27,7 @@ Applies data labels to all the series in a chart. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Optional| **[XlDataLabelsType](Excel.XlDataLabelsType.md)**|The type of data label to apply.| | _LegendKey_|Optional| **Variant**| **True** to show the legend key next to the point. The default value is **False** .| diff --git a/api/Excel.Chart.ApplyLayout.md b/api/Excel.Chart.ApplyLayout.md index 5437afd98ad..ff2122b5089 100644 --- a/api/Excel.Chart.ApplyLayout.md +++ b/api/Excel.Chart.ApplyLayout.md @@ -27,7 +27,7 @@ Applies the layouts shown in the ribbon. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Layout_|Required| **Long**|Specifies the type of layout. The type of layout is denoted by a number from 1 to 10.| | _ChartType_|Optional| **[XlChartType](Excel.XlChartType.md)**|The type of chart.| diff --git a/api/Excel.Chart.Axes.md b/api/Excel.Chart.Axes.md index 368483b006b..11cd210319a 100644 --- a/api/Excel.Chart.Axes.md +++ b/api/Excel.Chart.Axes.md @@ -27,12 +27,12 @@ Returns an object that represents either a single axis or a collection of the ax -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Optional| **Variant**|Specifies the axis to return. Can be one of the following **[XlAxisType](Excel.XlAxisType.md)** constants: **xlValue** , **xlCategory** , or **xlSeriesAxis** (**xlSeriesAxis** is valid only for 3-D charts).| | _AxisGroup_|Optional| **[XlAxisGroup](Excel.XlAxisGroup.md)**|Specifies the axis group. If this argument is omitted, the primary group is used. 3-D charts have only one axis group.| -### Return Value +### Return value Object diff --git a/api/Excel.Chart.BeforeDoubleClick.md b/api/Excel.Chart.BeforeDoubleClick.md index 19f50e3769f..de51a9de396 100644 --- a/api/Excel.Chart.BeforeDoubleClick.md +++ b/api/Excel.Chart.BeforeDoubleClick.md @@ -27,7 +27,7 @@ Occurs when a chart element is double-clicked, before the default double-click a -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the default double-click action isn't performed when the procedure is finished.| | _Arg1_|Required| **Long**|Additional event information, depending on the value of _ElementID_. For more information about this parameter, see the Remarks section.| diff --git a/api/Excel.Chart.BeforeRightClick.md b/api/Excel.Chart.BeforeRightClick.md index dcd863be6b6..6a8d2e3c288 100644 --- a/api/Excel.Chart.BeforeRightClick.md +++ b/api/Excel.Chart.BeforeRightClick.md @@ -27,7 +27,7 @@ Occurs when a chart element is right-clicked, before the default right-click act -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the default right-click action isn't performed when the procedure is finished.| diff --git a/api/Excel.Chart.Calculate.md b/api/Excel.Chart.Calculate.md index 60fc94697c0..65f24cd2762 100644 --- a/api/Excel.Chart.Calculate.md +++ b/api/Excel.Chart.Calculate.md @@ -23,7 +23,7 @@ Occurs after the chart plots new or changed data, for the **Chart** object. _expression_ A variable that represents a [Chart](Excel.Chart(Graph object).md) object. -### Return Value +### Return value nothing diff --git a/api/Excel.Chart.ChartGroups.md b/api/Excel.Chart.ChartGroups.md index f38ec83940a..df5cf30f67e 100644 --- a/api/Excel.Chart.ChartGroups.md +++ b/api/Excel.Chart.ChartGroups.md @@ -27,11 +27,11 @@ Returns an object that represents either a single chart group (a **[ChartGroup] -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The chart group number.| -### Return Value +### Return value Object diff --git a/api/Excel.Chart.ChartObjects.md b/api/Excel.Chart.ChartObjects.md index cd4f977fafa..d29685296ad 100644 --- a/api/Excel.Chart.ChartObjects.md +++ b/api/Excel.Chart.ChartObjects.md @@ -27,11 +27,11 @@ Returns an object that represents either a single embedded chart (a **[ChartObj -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The name or number of the chart. This argument can be an array, to specify more than one chart.| -### Return Value +### Return value Object diff --git a/api/Excel.Chart.ChartWizard.md b/api/Excel.Chart.ChartWizard.md index 0c7ee604046..a07bd043cfe 100644 --- a/api/Excel.Chart.ChartWizard.md +++ b/api/Excel.Chart.ChartWizard.md @@ -27,7 +27,7 @@ Modifies the properties of the given chart. You can use this method to quickly f -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Source_|Optional| **Variant**|The range that contains the source data for the new chart. If this argument is omitted, Microsoft Excel edits the active chart sheet or the selected chart on the active worksheet.| | _Gallery_|Optional| **Variant**|One of the constants of **[XlChartType](Excel.XlChartType.md)** specifying the chart type.| diff --git a/api/Excel.Chart.CheckSpelling.md b/api/Excel.Chart.CheckSpelling.md index 8c87a98d4b9..e8acfb77fd3 100644 --- a/api/Excel.Chart.CheckSpelling.md +++ b/api/Excel.Chart.CheckSpelling.md @@ -27,7 +27,7 @@ Checks the spelling of an object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _CustomDictionary_|Optional| **Variant**|A string that indicates the file name of the custom dictionary to be examined if the word isn't found in the main dictionary. If this argument is omitted, the currently specified dictionary is used.| | _IgnoreUppercase_|Optional| **Variant**| **True** to have Microsoft Excel ignore words that are all uppercase. **False** to have Microsoft Excel check words that are all uppercase. If this argument is omitted, the current setting will be used.| diff --git a/api/Excel.Chart.Copy.md b/api/Excel.Chart.Copy.md index 3989a4b4eaf..1df61004615 100644 --- a/api/Excel.Chart.Copy.md +++ b/api/Excel.Chart.Copy.md @@ -27,7 +27,7 @@ Copies the sheet to another location in the workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Before_|Optional| **Variant**|The sheet before which the copied sheet will be placed. You cannot specify _Before_ if you specify _After_.| | _After_|Optional| **Variant**|The sheet after which the copied sheet will be placed. You cannot specify _After_ if you specify _Before_.| diff --git a/api/Excel.Chart.CopyPicture.md b/api/Excel.Chart.CopyPicture.md index a538b99d7c9..ecdbc8a7638 100644 --- a/api/Excel.Chart.CopyPicture.md +++ b/api/Excel.Chart.CopyPicture.md @@ -27,7 +27,7 @@ Copies the selected object to the Clipboard as a picture. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Appearance_|Optional| **[XlPictureAppearance](Excel.XlPictureAppearance.md)**|. Specifies how the picture should be copied. The default value is **xlScreen** .| | _Format_|Optional| **[XlCopyPictureFormat](Excel.XlCopyPictureFormat.md)**|. The format of the picture. The default value is **xlPicture** .| diff --git a/api/Excel.Chart.Evaluate.md b/api/Excel.Chart.Evaluate.md index 157706a4687..49424cc1ba8 100644 --- a/api/Excel.Chart.Evaluate.md +++ b/api/Excel.Chart.Evaluate.md @@ -27,11 +27,11 @@ Converts a Microsoft Excel name to an object or a value. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **Variant**|The name of the object, using the naming convention of Microsoft Excel.| -### Return Value +### Return value Variant diff --git a/api/Excel.Chart.Export.md b/api/Excel.Chart.Export.md index e291ccd5b84..d9151ebf569 100644 --- a/api/Excel.Chart.Export.md +++ b/api/Excel.Chart.Export.md @@ -27,13 +27,13 @@ Exports the chart in a graphic format. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|The name of the exported file.| | _FilterName_|Optional| **Variant**|The language-independent name of the graphic filter as it appears in the registry.| | _Interactive_|Optional| **Variant**| **True** to display the dialog box that contains the filter-specific options. If this argument is **False** , Microsoft Excel uses the default values for the filter. The default value is **False** .| -### Return Value +### Return value Boolean diff --git a/api/Excel.Chart.ExportAsFixedFormat.md b/api/Excel.Chart.ExportAsFixedFormat.md index 9e1c6ea4054..b5400ee1d7e 100644 --- a/api/Excel.Chart.ExportAsFixedFormat.md +++ b/api/Excel.Chart.ExportAsFixedFormat.md @@ -27,7 +27,7 @@ Exports to a file of the specified format. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Required| **XlFixedFormatType**|The type of file format to export to.| | _Filename_|Optional| **Variant**|The file name of the file to be saved. You can include a full path, or Microsoft Excel saves the file in the current folder.| diff --git a/api/Excel.Chart.Floor.md b/api/Excel.Chart.Floor.md index d0e1a9d8f6a..1bd41aadfe6 100644 --- a/api/Excel.Chart.Floor.md +++ b/api/Excel.Chart.Floor.md @@ -23,7 +23,7 @@ Returns a **[Floor](Excel.Floor(object).md)** object that represents the floor _expression_ An expression that returns a [Chart](Excel.Chart(Graph object).md) object. -### Return Value +### Return value Floor diff --git a/api/Excel.Chart.GetChartElement.md b/api/Excel.Chart.GetChartElement.md index 275a307da3a..cf76204584e 100644 --- a/api/Excel.Chart.GetChartElement.md +++ b/api/Excel.Chart.GetChartElement.md @@ -27,7 +27,7 @@ Returns information about the chart element at specified X and Y coordinates. Th -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _x_|Required| **Long**|The X coordinate of the chart element.| | _y_|Required| **Long**|The Y coordinate of the chart element.| diff --git a/api/Excel.Chart.HasAxis.md b/api/Excel.Chart.HasAxis.md index 70b224207eb..8be28391b76 100644 --- a/api/Excel.Chart.HasAxis.md +++ b/api/Excel.Chart.HasAxis.md @@ -27,7 +27,7 @@ Returns or sets which axes exist on the chart. Read/write **Variant** . -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index1_|Required| **Variant**|The axis type. Series axes apply only to 3-D charts. Can be one of the **[XlAxisType](Excel.XlAxisType.md)** constants.| | _Index2_|Optional| **Variant**|The axis group. 3-D charts have only one set of axes. Can be one of the **[XlAxisGroup](Excel.XlAxisGroup.md)** constants.| diff --git a/api/Excel.Chart.Location.md b/api/Excel.Chart.Location.md index a7d2a709575..5b009ae4e1b 100644 --- a/api/Excel.Chart.Location.md +++ b/api/Excel.Chart.Location.md @@ -27,12 +27,12 @@ Moves the chart to a new location. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Where_|Required| **[XlChartLocation](Excel.XlChartLocation.md)**|Where to move the chart.| | _Name_|Optional| **Variant**|Required if _Where_ is **xlLocationAsObject** . The name of the sheet where the chart will be embedded if _Where_ is **xlLocationAsObject** or the name of the new sheet if _Where_ is **xlLocationAsNewSheet** .| -### Return Value +### Return value Chart diff --git a/api/Excel.Chart.MouseDown.md b/api/Excel.Chart.MouseDown.md index cbd9fe25f24..cd2719bdeb9 100644 --- a/api/Excel.Chart.MouseDown.md +++ b/api/Excel.Chart.MouseDown.md @@ -27,14 +27,14 @@ Occurs when a mouse button is pressed while the pointer is over a chart. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required| **Long**|The mouse button that was released. Can be one of the following **[XlMouseButton](Excel.XlMouseButton.md)** constants: **xlNoButton** , **xlPrimaryButton** , or **xlSecondaryButton** .| | _Shift_|Required| **Long**|The state of the SHIFT, CTRL, and ALT keys when the event occurred. Can be one of or a sum of values.| | _x_|Required| **Long**|The X coordinate of the mouse pointer in chart object client coordinates.| | _y_|Required| **Long**|The Y coordinate of the mouse pointer in chart object client coordinates.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Chart.MouseMove.md b/api/Excel.Chart.MouseMove.md index c52b8833459..732cc0f6fa3 100644 --- a/api/Excel.Chart.MouseMove.md +++ b/api/Excel.Chart.MouseMove.md @@ -27,14 +27,14 @@ Occurs when the position of the mouse pointer changes over a chart. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required| **Long**|The mouse button that was released. Can be one of the following **[XlMouseButton](Excel.XlMouseButton.md)** constants: **xlNoButton** , **xlPrimaryButton** , or **xlSecondaryButton** .| | _Shift_|Required| **Long**|The state of the SHIFT, CTRL, and ALT keys when the event occurred. Can be one of or a sum of values.| | _x_|Required| **Long**|The X coordinate of the mouse pointer in chart object client coordinates.| | _y_|Required| **Long**|The Y coordinate of the mouse pointer in chart object client coordinates.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Chart.MouseUp.md b/api/Excel.Chart.MouseUp.md index 93e3dbd3b8a..9125e0e0524 100644 --- a/api/Excel.Chart.MouseUp.md +++ b/api/Excel.Chart.MouseUp.md @@ -27,14 +27,14 @@ Occurs when a mouse button is released while the pointer is over a chart. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Button_|Required| **Long**|The mouse button that was released. Can be one of the following **[XlMouseButton](Excel.XlMouseButton.md)** constants: **xlNoButton** , **xlPrimaryButton** , or **xlSecondaryButton** .| | _Shift_|Required| **Long**|The state of the SHIFT, CTRL, and ALT keys when the event occurred. Can be one of or a sum of values.| | _x_|Required| **Long**|The X coordinate of the mouse pointer in chart object client coordinates.| | _y_|Required| **Long**|The Y coordinate of the mouse pointer in chart object client coordinates.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Chart.Move.md b/api/Excel.Chart.Move.md index dfbef869517..fdbf4793375 100644 --- a/api/Excel.Chart.Move.md +++ b/api/Excel.Chart.Move.md @@ -27,7 +27,7 @@ Moves the chart to another location in the workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Before_|Optional| **Variant**|The sheet before which the moved chart will be placed. You cannot specify _Before_ if you specify _After_.| | _After_|Optional| **Variant**| The sheet after which the moved chart will be placed. You cannot specify _After_ if you specify _Before_.| diff --git a/api/Excel.Chart.OLEObjects.md b/api/Excel.Chart.OLEObjects.md index 93709aba037..efdb90eb295 100644 --- a/api/Excel.Chart.OLEObjects.md +++ b/api/Excel.Chart.OLEObjects.md @@ -27,11 +27,11 @@ Returns an object that represents either a single OLE object (an **[OLEObject]( -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The name or number of the OLE object.| -### Return Value +### Return value Object diff --git a/api/Excel.Chart.Paste.md b/api/Excel.Chart.Paste.md index 28d560c1f70..b76af948fb4 100644 --- a/api/Excel.Chart.Paste.md +++ b/api/Excel.Chart.Paste.md @@ -27,7 +27,7 @@ Pastes chart data from the Clipboard into the specified chart. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Optional| **Variant**|Specifies the chart information to paste if a chart is on the Clipboard. Can be one of the following **[XlPasteType](Excel.XlPasteType.md)** constants: **xlPasteFormats** , **xlPasteFormulas** , or **xlPasteAll** . The default value is **xlPasteAll** . If there?s data other than a chart on the Clipboard, this argument cannot be used.| diff --git a/api/Excel.Chart.PrintOut.md b/api/Excel.Chart.PrintOut.md index f27fdfddd66..013a9db5f0e 100644 --- a/api/Excel.Chart.PrintOut.md +++ b/api/Excel.Chart.PrintOut.md @@ -27,7 +27,7 @@ Prints the object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _From_|Optional| **Variant**|The number of the page at which to start printing. If this argument is omitted, printing starts at the beginning.| | _To_|Optional| **Variant**|The number of the last page to print. If this argument is omitted, printing ends with the last page.| @@ -38,7 +38,7 @@ Prints the object. | _Collate_|Optional| **Variant**| **True** to collate multiple copies.| | _PrToFileName_|Optional| **Variant**|If _PrintToFile_ is set to **True** , this argument specifies the name of the file you want to print to.| -### Return Value +### Return value Variant diff --git a/api/Excel.Chart.PrintPreview.md b/api/Excel.Chart.PrintPreview.md index 6c47815c3f5..27510e96d3a 100644 --- a/api/Excel.Chart.PrintPreview.md +++ b/api/Excel.Chart.PrintPreview.md @@ -27,7 +27,7 @@ Shows a preview of the object as it would look when printed. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _EnableChanges_|Optional| **Variant**|Pass a **Boolean** value to specify if the user can change the margins and other page setup options available in print preview.| diff --git a/api/Excel.Chart.PrintedCommentPages.md b/api/Excel.Chart.PrintedCommentPages.md index a1e8ce7672b..e10e83ad05a 100644 --- a/api/Excel.Chart.PrintedCommentPages.md +++ b/api/Excel.Chart.PrintedCommentPages.md @@ -23,7 +23,7 @@ Returns the number of comment pages that will be printed for the current chart. _expression_ A variable that returns a '[Chart](Excel.Chart(object).md)' object. -### Return Value +### Return value **Long** diff --git a/api/Excel.Chart.Protect.md b/api/Excel.Chart.Protect.md index e66012d4017..1a289f77999 100644 --- a/api/Excel.Chart.Protect.md +++ b/api/Excel.Chart.Protect.md @@ -27,7 +27,7 @@ Protects a chart so that it cannot be modified. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Password_|Optional| **Variant**|A string that specifies a case-sensitive password for the worksheet or workbook. If this argument is omitted, you can unprotect the worksheet or workbook without using a password. Otherwise, you must specify the password to unprotect the worksheet or workbook. If you forget the password, you cannot unprotect the worksheet or workbook. Use strong passwords that combine uppercase and lowercase letters, numbers, and symbols. Weak passwords don't mix these elements. Strong password: Y6dh!et5. Weak password: House27. Passwords should be 8 or more characters in length. A pass phrase that uses 14 or more characters is better. For more information, see Help protect your personal information with strong passwords. It is critical that you remember your password. If you forget your password, Microsoft cannot retrieve it. Store the passwords that you write down in a secure place away from the information that they help protect. | | _DrawingObjects_|Optional| **Variant**| **True** to protect shapes. The default value is **True** .| diff --git a/api/Excel.Chart.SaveAs.md b/api/Excel.Chart.SaveAs.md index 7cac57007e5..f7e632b0364 100644 --- a/api/Excel.Chart.SaveAs.md +++ b/api/Excel.Chart.SaveAs.md @@ -27,7 +27,7 @@ Saves changes to the chart or worksheet in a different file. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**| **Variant** . A string that indicates the name of the file to be saved. You can include a full path; if you don't, Microsoft Excel saves the file in the current folder.| | _FileFormat_|Optional| **Variant**|The file format to use when you save the file. For a list of valid choices, see the **[FileFormat](Excel.Workbook.FileFormat.md)** property. For an existing file, the default format is the last file format specified; for a new file, the default is the format of the version of Excel being used.| diff --git a/api/Excel.Chart.SaveChartTemplate.md b/api/Excel.Chart.SaveChartTemplate.md index 104e56d51fc..401322a752a 100644 --- a/api/Excel.Chart.SaveChartTemplate.md +++ b/api/Excel.Chart.SaveChartTemplate.md @@ -27,7 +27,7 @@ Saves a custom chart template to the list of available chart templates. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|The name of the chart template.| diff --git a/api/Excel.Chart.Select(even).md b/api/Excel.Chart.Select(even).md index 6e24c9db63f..71170447a50 100644 --- a/api/Excel.Chart.Select(even).md +++ b/api/Excel.Chart.Select(even).md @@ -27,7 +27,7 @@ Occurs when a chart element is selected. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ElementID_|Required| **Long**|The selected chart element. For more information about these arguments, see the **[BeforeDoubleClick](Excel.Chart.BeforeDoubleClick.md)** event.| | _Arg1_|Required| **Long**|The selected chart element. For more information about these arguments, see the **BeforeDoubleClick** event.| diff --git a/api/Excel.Chart.Select(method).md b/api/Excel.Chart.Select(method).md index c27b2ce9bd7..f87284536d3 100644 --- a/api/Excel.Chart.Select(method).md +++ b/api/Excel.Chart.Select(method).md @@ -27,7 +27,7 @@ Selects the object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Replace_|Optional| **Variant**| (used only with sheets). **True** to replace the current selection with the specified object. **False** to extend the current selection to include any previously selected objects and the specified object.| diff --git a/api/Excel.Chart.SeriesChange.md b/api/Excel.Chart.SeriesChange.md index b302aed7b48..c2719027a11 100644 --- a/api/Excel.Chart.SeriesChange.md +++ b/api/Excel.Chart.SeriesChange.md @@ -30,12 +30,12 @@ Occurs when the user changes the value of a chart data point by clicking a bar i -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SeriesIndex_|Required| **Long**| The offset within the **[Series](Excel.Series(object).md)** collection for the changed series.| | _PointIndex_|Required| **Long**|The offset within the **[Points](Excel.Points(object).md)** collection for the changed point.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Chart.SeriesCollection.md b/api/Excel.Chart.SeriesCollection.md index 2020d8e2405..2a760f4fde9 100644 --- a/api/Excel.Chart.SeriesCollection.md +++ b/api/Excel.Chart.SeriesCollection.md @@ -27,11 +27,11 @@ Returns an object that represents either a single series (a **[Series](Excel.Se -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The name or number of the series.| -### Return Value +### Return value Object diff --git a/api/Excel.Chart.SetBackgroundPicture.md b/api/Excel.Chart.SetBackgroundPicture.md index 1d129da7f9e..52b5d2152d2 100644 --- a/api/Excel.Chart.SetBackgroundPicture.md +++ b/api/Excel.Chart.SetBackgroundPicture.md @@ -27,7 +27,7 @@ Sets the background graphic for a chart. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|The name of the graphic file.| diff --git a/api/Excel.Chart.SetDefaultChart.md b/api/Excel.Chart.SetDefaultChart.md index 7b969af47f5..5e480b81378 100644 --- a/api/Excel.Chart.SetDefaultChart.md +++ b/api/Excel.Chart.SetDefaultChart.md @@ -27,7 +27,7 @@ Specifies the name of the chart template that Microsoft Excel uses when creating -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **Variant**|Specifies the name of the default chart template that will be used when creating new charts. This name can be a string naming a chart in the gallery for a user-defined template or it can be a special constant **xlBuiltIn** to specify a built-in chart template.| diff --git a/api/Excel.Chart.SetElement.md b/api/Excel.Chart.SetElement.md index 6ccc2031b2e..bb274e73f3c 100644 --- a/api/Excel.Chart.SetElement.md +++ b/api/Excel.Chart.SetElement.md @@ -27,11 +27,11 @@ Sets chart elements on a chart. Read/write **MsoChartElementType** . -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Element_|Required| **MsoChartElementType**|Specifies the chart element type.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Chart.SetSourceData.md b/api/Excel.Chart.SetSourceData.md index 68088e5991b..52143baaa16 100644 --- a/api/Excel.Chart.SetSourceData.md +++ b/api/Excel.Chart.SetSourceData.md @@ -27,7 +27,7 @@ Sets the source data range for the chart. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Source_|Required| **Range**|The range that contains the source data.| | _PlotBy_|Optional| **Variant**|Specifies the way the data is to be plotted. Can be either of the following **[XlRowCol](Excel.XlRowCol.md)** constants: **xlColumns** or **xlRows** .| diff --git a/api/Excel.Chart.ShowAllFieldButtons.md b/api/Excel.Chart.ShowAllFieldButtons.md index c567fc260f4..2c8e04cbfca 100644 --- a/api/Excel.Chart.ShowAllFieldButtons.md +++ b/api/Excel.Chart.ShowAllFieldButtons.md @@ -23,7 +23,7 @@ Returns or sets whether to display all field buttons on a PivotChart. Read/write _expression_ A variable that represents a '[Chart](Excel.Chart(object).md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.Chart.ShowAxisFieldButtons.md b/api/Excel.Chart.ShowAxisFieldButtons.md index 214d37d26bc..3aef413d394 100644 --- a/api/Excel.Chart.ShowAxisFieldButtons.md +++ b/api/Excel.Chart.ShowAxisFieldButtons.md @@ -23,7 +23,7 @@ Returns or sets whether to display axis field buttons on a PivotChart. Read/writ _expression_ A variable that represents a '[Chart](Excel.Chart(object).md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.Chart.ShowLegendFieldButtons.md b/api/Excel.Chart.ShowLegendFieldButtons.md index 16054c6bcc4..ed44c155504 100644 --- a/api/Excel.Chart.ShowLegendFieldButtons.md +++ b/api/Excel.Chart.ShowLegendFieldButtons.md @@ -23,7 +23,7 @@ Returns or sets whether to display legend field buttons on a PivotChart. Read/wr _expression_ A variable that represents a '[Chart](Excel.Chart(object).md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.Chart.ShowReportFilterFieldButtons.md b/api/Excel.Chart.ShowReportFilterFieldButtons.md index 269f2972c09..80d7e674265 100644 --- a/api/Excel.Chart.ShowReportFilterFieldButtons.md +++ b/api/Excel.Chart.ShowReportFilterFieldButtons.md @@ -23,7 +23,7 @@ Returns or sets whether to display the report filter field buttons on a PivotCha _expression_ A variable that represents a '[Chart](Excel.Chart(object).md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.Chart.ShowValueFieldButtons.md b/api/Excel.Chart.ShowValueFieldButtons.md index 896d5d418a0..aa0467ab8a0 100644 --- a/api/Excel.Chart.ShowValueFieldButtons.md +++ b/api/Excel.Chart.ShowValueFieldButtons.md @@ -23,7 +23,7 @@ Returns or sets whether to display the value field buttons on a PivotChart. Read _expression_ A variable that represents a '[Chart](Excel.Chart(object).md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.Chart.Unprotect.md b/api/Excel.Chart.Unprotect.md index b51eed6fead..11bbb9f379b 100644 --- a/api/Excel.Chart.Unprotect.md +++ b/api/Excel.Chart.Unprotect.md @@ -27,7 +27,7 @@ Removes protection from a sheet or workbook. This method has no effect if the sh -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Password_|Optional| **Variant**|A string that denotes the case-sensitive password to use to unprotect the chart. If the chart isn't protected with a password, this argument is ignored.| diff --git a/api/Excel.ChartArea.Clear.md b/api/Excel.ChartArea.Clear.md index 3a0613e01db..4394c3b9a2d 100644 --- a/api/Excel.ChartArea.Clear.md +++ b/api/Excel.ChartArea.Clear.md @@ -23,7 +23,7 @@ Clears the entire object. _expression_ A variable that represents a [ChartArea](Excel.ChartArea(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ChartArea.ClearContents.md b/api/Excel.ChartArea.ClearContents.md index 1b6784994c4..3252ec21c3b 100644 --- a/api/Excel.ChartArea.ClearContents.md +++ b/api/Excel.ChartArea.ClearContents.md @@ -23,7 +23,7 @@ Clears the data from a chart but leaves the formatting. _expression_ A variable that represents a [ChartArea](Excel.ChartArea(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ChartArea.ClearFormats.md b/api/Excel.ChartArea.ClearFormats.md index cb54aa0d9b3..615fa75de7a 100644 --- a/api/Excel.ChartArea.ClearFormats.md +++ b/api/Excel.ChartArea.ClearFormats.md @@ -23,7 +23,7 @@ Clears the formatting of the object. _expression_ A variable that represents a [ChartArea](Excel.ChartArea(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ChartArea.Copy.md b/api/Excel.ChartArea.Copy.md index 12a4ff75065..bd9d3ab0988 100644 --- a/api/Excel.ChartArea.Copy.md +++ b/api/Excel.ChartArea.Copy.md @@ -23,7 +23,7 @@ Copies the object to the Clipboard. _expression_ A variable that represents a [ChartArea](Excel.ChartArea(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ChartArea.Select.md b/api/Excel.ChartArea.Select.md index 98ef11a3b02..77b3e6dc867 100644 --- a/api/Excel.ChartArea.Select.md +++ b/api/Excel.ChartArea.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [ChartArea](Excel.ChartArea(Graph property).md) object. -### Return Value +### Return value A Variant value that represents the selected object. diff --git a/api/Excel.ChartFormat.Application.md b/api/Excel.ChartFormat.Application.md index 7823916b31b..0f6d9487c9b 100644 --- a/api/Excel.ChartFormat.Application.md +++ b/api/Excel.ChartFormat.Application.md @@ -23,7 +23,7 @@ When used without an object qualifier, this property returns an **[Application] _expression_ A variable that represents a [ChartFormat](Excel.ChartFormat.md) object. -### Return Value +### Return value Application diff --git a/api/Excel.ChartFormat.Creator.md b/api/Excel.ChartFormat.Creator.md index 5b3368c00fe..aadf0bab9ac 100644 --- a/api/Excel.ChartFormat.Creator.md +++ b/api/Excel.ChartFormat.Creator.md @@ -23,7 +23,7 @@ Returns a 32-bit integer that indicates the application in which this object was _expression_ A variable that represents a [ChartFormat](Excel.ChartFormat.md) object. -### Return Value +### Return value XlCreator diff --git a/api/Excel.ChartGroup.AxisGroup.md b/api/Excel.ChartGroup.AxisGroup.md index c551d87298e..5a9f0737588 100644 --- a/api/Excel.ChartGroup.AxisGroup.md +++ b/api/Excel.ChartGroup.AxisGroup.md @@ -23,7 +23,7 @@ Returns or sets the group for the specified chart. Read/write _expression_ A variable that represents a '[ChartGroup](Excel.ChartGroup(object).md)' object. -### Return Value +### Return value **[XlAxisGroup](Excel.XlAxisGroup.md)** diff --git a/api/Excel.ChartGroup.SeriesCollection.md b/api/Excel.ChartGroup.SeriesCollection.md index 26fc1ce04f7..6fd8122d299 100644 --- a/api/Excel.ChartGroup.SeriesCollection.md +++ b/api/Excel.ChartGroup.SeriesCollection.md @@ -27,11 +27,11 @@ Returns an object that represents either a single series (a **[Series](Excel.Se -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The name or number of the series.| -### Return Value +### Return value Object diff --git a/api/Excel.ChartGroups.Item.md b/api/Excel.ChartGroups.Item.md index 35aa58921cc..562f0f5bcc3 100644 --- a/api/Excel.ChartGroups.Item.md +++ b/api/Excel.ChartGroups.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The index number for the object.| -### Return Value +### Return value A **[ChartGroup](Excel.ChartGroup(object).md)** object contained by the collection. diff --git a/api/Excel.ChartObject.Activate.md b/api/Excel.ChartObject.Activate.md index d7d95d874cf..156a7db33ec 100644 --- a/api/Excel.ChartObject.Activate.md +++ b/api/Excel.ChartObject.Activate.md @@ -23,7 +23,7 @@ Makes the current chart the active chart. _expression_ A variable that represents a [ChartObject](Excel.ChartObject.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ChartObject.BringToFront.md b/api/Excel.ChartObject.BringToFront.md index ac38fd6c951..3a348021471 100644 --- a/api/Excel.ChartObject.BringToFront.md +++ b/api/Excel.ChartObject.BringToFront.md @@ -23,7 +23,7 @@ Brings the object to the front of the z-order. _expression_ A variable that represents a [ChartObject](Excel.ChartObject.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ChartObject.Copy.md b/api/Excel.ChartObject.Copy.md index 2a30fc1bfd8..db244f2a3f6 100644 --- a/api/Excel.ChartObject.Copy.md +++ b/api/Excel.ChartObject.Copy.md @@ -23,7 +23,7 @@ Copies the object to the Clipboard. _expression_ A variable that represents a [ChartObject](Excel.ChartObject.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ChartObject.CopyPicture.md b/api/Excel.ChartObject.CopyPicture.md index e6735fea292..77f4421a34f 100644 --- a/api/Excel.ChartObject.CopyPicture.md +++ b/api/Excel.ChartObject.CopyPicture.md @@ -27,12 +27,12 @@ Copies the selected object to the Clipboard as a picture. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Appearance_|Optional| **[XlPictureAppearance](Excel.XlPictureAppearance.md)**|. Specifies how the picture should be copied. The default value is **xlScreen** .| | _Format_|Optional| **[XlCopyPictureFormat](Excel.XlCopyPictureFormat.md)**|. The format of the picture. The default value is **xlPicture** .| -### Return Value +### Return value Variant diff --git a/api/Excel.ChartObject.Cut.md b/api/Excel.ChartObject.Cut.md index b51dba90af2..ff40799a9aa 100644 --- a/api/Excel.ChartObject.Cut.md +++ b/api/Excel.ChartObject.Cut.md @@ -23,7 +23,7 @@ Cuts the object to the Clipboard. _expression_ A variable that represents a [ChartObject](Excel.ChartObject.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ChartObject.Delete.md b/api/Excel.ChartObject.Delete.md index 3f025ac2b19..6a45be5767f 100644 --- a/api/Excel.ChartObject.Delete.md +++ b/api/Excel.ChartObject.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [ChartObject](Excel.ChartObject.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ChartObject.Duplicate.md b/api/Excel.ChartObject.Duplicate.md index cae0710ee17..71e02db27c5 100644 --- a/api/Excel.ChartObject.Duplicate.md +++ b/api/Excel.ChartObject.Duplicate.md @@ -23,7 +23,7 @@ Duplicates the object and returns a reference to the new copy. _expression_ A variable that represents a [ChartObject](Excel.ChartObject.md) object. -### Return Value +### Return value Object diff --git a/api/Excel.ChartObject.Select.md b/api/Excel.ChartObject.Select.md index f4fed5cd21c..e8f96c78c8a 100644 --- a/api/Excel.ChartObject.Select.md +++ b/api/Excel.ChartObject.Select.md @@ -27,11 +27,11 @@ Selects the object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Replace_|Optional| **Variant**| **True** to replace the current selection with the specified object. **False** to extend the current selection to include any previously selected objects and the specified object.| -### Return Value +### Return value Variant diff --git a/api/Excel.ChartObject.SendToBack.md b/api/Excel.ChartObject.SendToBack.md index c9acd2a3b23..47d89d5e024 100644 --- a/api/Excel.ChartObject.SendToBack.md +++ b/api/Excel.ChartObject.SendToBack.md @@ -23,7 +23,7 @@ Sends the object to the back of the z-order. _expression_ A variable that represents a [ChartObject](Excel.ChartObject.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ChartObjects.Add.md b/api/Excel.ChartObjects.Add.md index 6c77dd30e0a..50aaf923852 100644 --- a/api/Excel.ChartObjects.Add.md +++ b/api/Excel.ChartObjects.Add.md @@ -27,12 +27,12 @@ Creates a new embedded chart. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required| **Double**|The initial coordinates of the new object (in points), relative to the upper-left corner of cell A1 on a worksheet or to the upper-left corner of a chart.| | _Width_|Required| **Double**|The initial size of the new object, in points.| -### Return Value +### Return value A **[ChartObject](Excel.ChartObject.md)** object that represents the new embedded chart. diff --git a/api/Excel.ChartObjects.Copy.md b/api/Excel.ChartObjects.Copy.md index cd96006c413..b936cfa6fd3 100644 --- a/api/Excel.ChartObjects.Copy.md +++ b/api/Excel.ChartObjects.Copy.md @@ -23,7 +23,7 @@ Copies the object to the Clipboard. _expression_ A variable that represents a [ChartObjects](Excel.ChartObjects.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ChartObjects.CopyPicture.md b/api/Excel.ChartObjects.CopyPicture.md index a8152f55183..b496a74385b 100644 --- a/api/Excel.ChartObjects.CopyPicture.md +++ b/api/Excel.ChartObjects.CopyPicture.md @@ -27,12 +27,12 @@ Copies the selected object to the Clipboard as a picture. **Variant** . -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Appearance_|Optional| **[XlPictureAppearance](Excel.XlPictureAppearance.md)**|. Specifies how the picture should be copied. The default value is **xlScreen** .| | _Format_|Optional| **[XlCopyPictureFormat](Excel.XlCopyPictureFormat.md)**|. The format of the picture. The default value is **xlPicture** .| -### Return Value +### Return value Variant diff --git a/api/Excel.ChartObjects.Cut.md b/api/Excel.ChartObjects.Cut.md index 49b372c7cef..6954810a738 100644 --- a/api/Excel.ChartObjects.Cut.md +++ b/api/Excel.ChartObjects.Cut.md @@ -23,7 +23,7 @@ Cuts the object to the Clipboard. _expression_ A variable that represents a [ChartObjects](Excel.ChartObjects.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ChartObjects.Delete.md b/api/Excel.ChartObjects.Delete.md index 0d8ada91b53..19211b6f398 100644 --- a/api/Excel.ChartObjects.Delete.md +++ b/api/Excel.ChartObjects.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [ChartObjects](Excel.ChartObjects.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ChartObjects.Duplicate.md b/api/Excel.ChartObjects.Duplicate.md index feea2de26fd..21c103c4e25 100644 --- a/api/Excel.ChartObjects.Duplicate.md +++ b/api/Excel.ChartObjects.Duplicate.md @@ -23,7 +23,7 @@ Duplicates the object and returns a reference to the new copy. _expression_ A variable that represents a [ChartObjects](Excel.ChartObjects.md) object. -### Return Value +### Return value Object diff --git a/api/Excel.ChartObjects.Item.md b/api/Excel.ChartObjects.Item.md index 24aaedf13ed..f7edf1a59ec 100644 --- a/api/Excel.ChartObjects.Item.md +++ b/api/Excel.ChartObjects.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number for the object.| -### Return Value +### Return value An Object value that represents an object contained by the collection. diff --git a/api/Excel.ChartObjects.Select.md b/api/Excel.ChartObjects.Select.md index 1fb7e20087e..dfebf27ed30 100644 --- a/api/Excel.ChartObjects.Select.md +++ b/api/Excel.ChartObjects.Select.md @@ -27,11 +27,11 @@ Selects the object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Replace_|Optional| **Variant**| **True** to replace the current selection with the specified object. **False** to extend the current selection to include any previously selected objects and the specified object.| -### Return Value +### Return value Variant diff --git a/api/Excel.ChartTitle.Characters.md b/api/Excel.ChartTitle.Characters.md index 0be4d0be015..f2712ff5170 100644 --- a/api/Excel.ChartTitle.Characters.md +++ b/api/Excel.ChartTitle.Characters.md @@ -27,7 +27,7 @@ Returns a **[Characters](Excel.Characters.md)** object that represents a range -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Start_|Optional| **Variant**|The first character to be returned. If this argument is either 1 or omitted, this property returns a range of characters starting with the first character.| | _Length_|Optional| **Variant**|The number of characters to be returned. If this argument is omitted, this property returns the remainder of the string (everything after the _Start_ character).| diff --git a/api/Excel.ChartTitle.Delete.md b/api/Excel.ChartTitle.Delete.md index 5904a71d23d..69deb30b78b 100644 --- a/api/Excel.ChartTitle.Delete.md +++ b/api/Excel.ChartTitle.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [ChartTitle](Excel.ChartTitle(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ChartTitle.Formula.md b/api/Excel.ChartTitle.Formula.md index e36918c44af..74c3b04d2f6 100644 --- a/api/Excel.ChartTitle.Formula.md +++ b/api/Excel.ChartTitle.Formula.md @@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using _expression_ A variable that represents a [ChartTitle](Excel.ChartTitle(Graph property).md) object. -### Return Value +### Return value String diff --git a/api/Excel.ChartTitle.FormulaLocal.md b/api/Excel.ChartTitle.FormulaLocal.md index b8750609993..c95460a78c8 100644 --- a/api/Excel.ChartTitle.FormulaLocal.md +++ b/api/Excel.ChartTitle.FormulaLocal.md @@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using _expression_ A variable that represents a [ChartTitle](Excel.ChartTitle(Graph property).md) object. -### Return Value +### Return value String diff --git a/api/Excel.ChartTitle.FormulaR1C1.md b/api/Excel.ChartTitle.FormulaR1C1.md index eef33fba06a..2154d26e1c2 100644 --- a/api/Excel.ChartTitle.FormulaR1C1.md +++ b/api/Excel.ChartTitle.FormulaR1C1.md @@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using _expression_ A variable that represents a [ChartTitle](Excel.ChartTitle(Graph property).md) object. -### Return Value +### Return value String diff --git a/api/Excel.ChartTitle.FormulaR1C1Local.md b/api/Excel.ChartTitle.FormulaR1C1Local.md index 8df9d41c3a1..b4529bd068b 100644 --- a/api/Excel.ChartTitle.FormulaR1C1Local.md +++ b/api/Excel.ChartTitle.FormulaR1C1Local.md @@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using _expression_ A variable that represents a [ChartTitle](Excel.ChartTitle(Graph property).md) object. -### Return Value +### Return value String diff --git a/api/Excel.ChartTitle.Height.md b/api/Excel.ChartTitle.Height.md index d84e2deee8e..7a8e86cb14f 100644 --- a/api/Excel.ChartTitle.Height.md +++ b/api/Excel.ChartTitle.Height.md @@ -23,7 +23,7 @@ Returns the height, in points, of the object. Read-only. _expression_ A variable that represents a [ChartTitle](Excel.ChartTitle(Graph property).md) object. -### Return Value +### Return value Double diff --git a/api/Excel.ChartTitle.Select.md b/api/Excel.ChartTitle.Select.md index e2678db44ee..58713f92752 100644 --- a/api/Excel.ChartTitle.Select.md +++ b/api/Excel.ChartTitle.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [ChartTitle](Excel.ChartTitle(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ChartTitle.Width.md b/api/Excel.ChartTitle.Width.md index e13b656d6ad..13bc1bcad9c 100644 --- a/api/Excel.ChartTitle.Width.md +++ b/api/Excel.ChartTitle.Width.md @@ -23,7 +23,7 @@ Returns the width, in points, of the object. Read-only. _expression_ A variable that represents a [ChartTitle](Excel.ChartTitle(Graph property).md) object. -### Return Value +### Return value Double diff --git a/api/Excel.Charts.Copy.md b/api/Excel.Charts.Copy.md index e2c5d29f296..0e547506ad8 100644 --- a/api/Excel.Charts.Copy.md +++ b/api/Excel.Charts.Copy.md @@ -27,7 +27,7 @@ Copies the sheet to another location in the workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Before_|Optional| **Variant**|The sheet before which the copied sheet will be placed. You cannot specify _Before_ if you specify _After_.| | _After_|Optional| **Variant**|The sheet after which the copied sheet will be placed. You cannot specify _After_ if you specify _Before_.| diff --git a/api/Excel.Charts.Item.md b/api/Excel.Charts.Item.md index 15159062a91..a9bd0406a2e 100644 --- a/api/Excel.Charts.Item.md +++ b/api/Excel.Charts.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| diff --git a/api/Excel.Charts.Move.md b/api/Excel.Charts.Move.md index 866da4c1d6f..e16d248d0bf 100644 --- a/api/Excel.Charts.Move.md +++ b/api/Excel.Charts.Move.md @@ -27,7 +27,7 @@ Moves the chart to another location in the workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Before_|Optional| **Variant**|The sheet before which the moved chart will be placed. You cannot specify _Before_ if you specify _After_.| | _After_|Optional| **Variant**| The sheet after which the moved chart will be placed. You cannot specify _After_ if you specify _Before_.| diff --git a/api/Excel.Charts.PrintOut.md b/api/Excel.Charts.PrintOut.md index 3e221d761e6..44f678e6312 100644 --- a/api/Excel.Charts.PrintOut.md +++ b/api/Excel.Charts.PrintOut.md @@ -27,7 +27,7 @@ Prints the object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _From_|Optional| **Variant**|The number of the page at which to start printing. If this argument is omitted, printing starts at the beginning.| | _To_|Optional| **Variant**|The number of the last page to print. If this argument is omitted, printing ends with the last page.| @@ -39,7 +39,7 @@ Prints the object. | _PrToFileName_|Optional| **Variant**|If _PrintToFile_ is set to **True** , this argument specifies the name of the file you want to print to.| | _IgnorePrintAreas_|Optional| **Variant**| **True** to ignore print areas and print the entire object.| -### Return Value +### Return value Variant diff --git a/api/Excel.Charts.PrintPreview.md b/api/Excel.Charts.PrintPreview.md index e938fab5b91..f7e9cd054b4 100644 --- a/api/Excel.Charts.PrintPreview.md +++ b/api/Excel.Charts.PrintPreview.md @@ -27,7 +27,7 @@ Shows a preview of the object as it would look when printed. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _EnableChanges_|Optional| **Variant**|Pass a **Boolean** value to specify if the user can change the margins and other page setup options available in print preview.| diff --git a/api/Excel.Charts.Select.md b/api/Excel.Charts.Select.md index 624bef8b6c5..b9dc8f68847 100644 --- a/api/Excel.Charts.Select.md +++ b/api/Excel.Charts.Select.md @@ -27,7 +27,7 @@ Selects the object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Replace_|Optional| **Variant**| (used only with sheets). **True** to replace the current selection with the specified object. **False** to extend the current selection to include any previously selected objects and the specified object.| diff --git a/api/Excel.ColorFormat.Brightness.md b/api/Excel.ColorFormat.Brightness.md index 234887ef985..7909b410b05 100644 --- a/api/Excel.ColorFormat.Brightness.md +++ b/api/Excel.ColorFormat.Brightness.md @@ -20,7 +20,7 @@ Returns or sets the luminosity of the specified object. Read/write _expression_ A variable that represents a '[ColorFormat](Excel.ColorFormat.md)' object. -### Return Value +### Return value **Single** diff --git a/api/Excel.ColorScale.ModifyAppliesToRange.md b/api/Excel.ColorScale.ModifyAppliesToRange.md index fc01b300886..0ac39a5b9ee 100644 --- a/api/Excel.ColorScale.ModifyAppliesToRange.md +++ b/api/Excel.ColorScale.ModifyAppliesToRange.md @@ -27,7 +27,7 @@ Sets the cell range to which this formatting rule applies. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Range_|Required| **Range**|The range to which this formatting rule will be applied.| diff --git a/api/Excel.ColorScaleCriteria.Item.md b/api/Excel.ColorScaleCriteria.Item.md index a8b5222593a..d58ae250a9f 100644 --- a/api/Excel.ColorScaleCriteria.Item.md +++ b/api/Excel.ColorScaleCriteria.Item.md @@ -27,7 +27,7 @@ Returns a single **[ColorScaleCriterion](Excel.ColorScaleCriterion.md)** object -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The index number of the **ColorScaleCriterion** object.| diff --git a/api/Excel.ColorStop.Application.md b/api/Excel.ColorStop.Application.md index 2b8725d448d..da589a9052a 100644 --- a/api/Excel.ColorStop.Application.md +++ b/api/Excel.ColorStop.Application.md @@ -23,7 +23,7 @@ When used without an object qualifier, this property returns an **Application** _expression_ A variable that represents a [ColorStop](Excel.ColorStop.md) object. -### Return Value +### Return value Application diff --git a/api/Excel.ColorStop.Color.md b/api/Excel.ColorStop.Color.md index 6bb25a42b24..d7e3bc75b58 100644 --- a/api/Excel.ColorStop.Color.md +++ b/api/Excel.ColorStop.Color.md @@ -23,7 +23,7 @@ Returns or sets the color of the represented object. Read/write _expression_ A variable that represents a [ColorStop](Excel.ColorStop.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ColorStop.Creator.md b/api/Excel.ColorStop.Creator.md index a613cc0279d..7a80179e050 100644 --- a/api/Excel.ColorStop.Creator.md +++ b/api/Excel.ColorStop.Creator.md @@ -23,7 +23,7 @@ Returns a 32-bit integer that indicates the application in which this object was _expression_ A variable that represents a [ColorStop](Excel.ColorStop.md) object. -### Return Value +### Return value XlCreator diff --git a/api/Excel.ColorStop.Delete.md b/api/Excel.ColorStop.Delete.md index 570ab434464..4b872f22d16 100644 --- a/api/Excel.ColorStop.Delete.md +++ b/api/Excel.ColorStop.Delete.md @@ -23,7 +23,7 @@ Deletes the represented object. _expression_ A variable that represents a [ColorStop](Excel.ColorStop.md) object. -### Return Value +### Return value Nothing diff --git a/api/Excel.ColorStop.Parent.md b/api/Excel.ColorStop.Parent.md index 231b4446442..34fec1c0570 100644 --- a/api/Excel.ColorStop.Parent.md +++ b/api/Excel.ColorStop.Parent.md @@ -23,7 +23,7 @@ Returns the parent object for the specified object. Read-only _expression_ A variable that represents a [ColorStop](Excel.ColorStop.md) object. -### Return Value +### Return value Object diff --git a/api/Excel.ColorStop.Position.md b/api/Excel.ColorStop.Position.md index 1302bae3cdd..f37ce8968cd 100644 --- a/api/Excel.ColorStop.Position.md +++ b/api/Excel.ColorStop.Position.md @@ -23,7 +23,7 @@ Returns or sets the position of the **ColorStop** . Read/write _expression_ A variable that represents a [ColorStop](Excel.ColorStop.md) object. -### Return Value +### Return value Double diff --git a/api/Excel.ColorStop.ThemeColor.md b/api/Excel.ColorStop.ThemeColor.md index 7894b7e7ca3..7b659cb34e1 100644 --- a/api/Excel.ColorStop.ThemeColor.md +++ b/api/Excel.ColorStop.ThemeColor.md @@ -23,7 +23,7 @@ Returns or sets the theme color of the represented object. Read/write _expression_ A variable that represents a [ColorStop](Excel.ColorStop.md) object. -### Return Value +### Return value Long diff --git a/api/Excel.ColorStop.TintAndShade.md b/api/Excel.ColorStop.TintAndShade.md index 7bd2de59596..00ea1bae6f4 100644 --- a/api/Excel.ColorStop.TintAndShade.md +++ b/api/Excel.ColorStop.TintAndShade.md @@ -23,7 +23,7 @@ Returns or sets the tint and shade of the represented object. Read/write _expression_ A variable that represents a [ColorStop](Excel.ColorStop.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ColorStops.Add.md b/api/Excel.ColorStops.Add.md index d3bb79e09b7..32e66cfbc5f 100644 --- a/api/Excel.ColorStops.Add.md +++ b/api/Excel.ColorStops.Add.md @@ -27,11 +27,11 @@ Adds a **[ColorStop](Excel.ColorStop.md)** object to the specified collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Position_|Required| **Double**|Represents the position in which to apply the **ColorStop** .| -### Return Value +### Return value ColorStop diff --git a/api/Excel.ColorStops.Application.md b/api/Excel.ColorStops.Application.md index e8b6e9098a6..8a6c166c852 100644 --- a/api/Excel.ColorStops.Application.md +++ b/api/Excel.ColorStops.Application.md @@ -23,7 +23,7 @@ When used without an object qualifier, this property returns an **Application** _expression_ An expression that returns a [ColorStops](Excel.ColorStops.md) object. -### Return Value +### Return value Application diff --git a/api/Excel.ColorStops.Clear.md b/api/Excel.ColorStops.Clear.md index f02cbacd23c..fcd76821a3b 100644 --- a/api/Excel.ColorStops.Clear.md +++ b/api/Excel.ColorStops.Clear.md @@ -23,7 +23,7 @@ Clears the represented object. _expression_ An expression that returns a [ColorStops](Excel.ColorStops.md) object. -### Return Value +### Return value Nothing diff --git a/api/Excel.ColorStops.Count.md b/api/Excel.ColorStops.Count.md index 7e9beaa2862..f8b5b07d74b 100644 --- a/api/Excel.ColorStops.Count.md +++ b/api/Excel.ColorStops.Count.md @@ -23,7 +23,7 @@ Returns or sets the count of the represented object. Read-only _expression_ An expression that returns a [ColorStops](Excel.ColorStops.md) object. -### Return Value +### Return value Long diff --git a/api/Excel.ColorStops.Creator.md b/api/Excel.ColorStops.Creator.md index 9fd1e432408..31b5e980de4 100644 --- a/api/Excel.ColorStops.Creator.md +++ b/api/Excel.ColorStops.Creator.md @@ -23,7 +23,7 @@ Returns a 32-bit integer that indicates the application in which this object was _expression_ An expression that returns a [ColorStops](Excel.ColorStops.md) object. -### Return Value +### Return value XlCreator diff --git a/api/Excel.ColorStops.Item.md b/api/Excel.ColorStops.Item.md index e94f072cbcb..a009e211a7b 100644 --- a/api/Excel.ColorStops.Item.md +++ b/api/Excel.ColorStops.Item.md @@ -27,11 +27,11 @@ Returns a single object from the represented collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number for the object.| -### Return Value +### Return value A **ColorStops** object contained by the collection. diff --git a/api/Excel.ColorStops.Parent.md b/api/Excel.ColorStops.Parent.md index 48c9aeec3c2..ec783de6692 100644 --- a/api/Excel.ColorStops.Parent.md +++ b/api/Excel.ColorStops.Parent.md @@ -23,7 +23,7 @@ Returns the parent object for the specified object. Read-only _expression_ A variable that represents a [ColorStops](Excel.ColorStops.md) object. -### Return Value +### Return value Object diff --git a/api/Excel.Comment.Next.md b/api/Excel.Comment.Next.md index 1653ec696b5..f2e6bf0bf54 100644 --- a/api/Excel.Comment.Next.md +++ b/api/Excel.Comment.Next.md @@ -23,7 +23,7 @@ Returns a **[Comment](Excel.Comment.md)** object that represents the next comme _expression_ An expression that returns a [Comment](Excel.Comment.md) object. -### Return Value +### Return value Comment diff --git a/api/Excel.Comment.Previous.md b/api/Excel.Comment.Previous.md index e7e7669918d..cb404390fef 100644 --- a/api/Excel.Comment.Previous.md +++ b/api/Excel.Comment.Previous.md @@ -23,7 +23,7 @@ Returns a **[Comment](Excel.Comment.md)** object that represents the previous c _expression_ An expression that returns a [Comment](Excel.Comment.md) object. -### Return Value +### Return value Comment diff --git a/api/Excel.Comment.Text.md b/api/Excel.Comment.Text.md index 5f168c1afb9..633066ac042 100644 --- a/api/Excel.Comment.Text.md +++ b/api/Excel.Comment.Text.md @@ -27,13 +27,13 @@ Sets comment text. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Text_|Optional| **Variant**|The text to be added.| | _Start_|Optional| **Variant**|The character number where the added text will be placed. If this argument is omitted, any existing text in the comment is deleted.| | _Overwrite_|Optional| **Variant**| **True** to overwrite the existing text. The default value is **False** (text is inserted).| -### Return Value +### Return value String diff --git a/api/Excel.Comments.Item.md b/api/Excel.Comments.Item.md index 4e2dba79f02..b1d094f2f6e 100644 --- a/api/Excel.Comments.Item.md +++ b/api/Excel.Comments.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Long**|The index number for the object.| -### Return Value +### Return value A **[Comment](Excel.Comment.md)** object contained by the collection. diff --git a/api/Excel.ConditionValue.Modify.md b/api/Excel.ConditionValue.Modify.md index 47d6a989afe..4d2ab8f68cf 100644 --- a/api/Excel.ConditionValue.Modify.md +++ b/api/Excel.ConditionValue.Modify.md @@ -27,7 +27,7 @@ Modifies how the longest bar or shortest bar is evaluated for a data bar conditi -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _newtype_|Required| **[XlConditionValueTypes](Excel.XlConditionValueTypes.md)**|Specifies how the shortest bar or longest bar is evaluated. The default value is **xlConditionLowestValue** for the shortest bar and **xlConditionHighestValue** for the longest bar.| | _newvalue_|Optional| **Variant**|The value assigned to the shortest or longest data bar. Depending on the _newtype_ argument, this can be a number or a formula that evaluates to a number.| diff --git a/api/Excel.Connections.Add.md b/api/Excel.Connections.Add.md index 1a3008de6eb..a0b9519f1bb 100644 --- a/api/Excel.Connections.Add.md +++ b/api/Excel.Connections.Add.md @@ -27,7 +27,7 @@ Adds a new connction to the workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **String**|Name of the connection.| | _Description_|Required| **String**|Brief description about the connection.| @@ -37,7 +37,7 @@ Adds a new connction to the workbook. | _CreateModelConnection_|Optional| **Boolean**|Specifies whether to create a connection to the PowerPivot model.| | _ImportRelationships]_|Optional| **Boolean**|Specifies whether to import any existing relationships.| -### Return Value +### Return value WorkbookConnection diff --git a/api/Excel.Connections.AddFromFile.md b/api/Excel.Connections.AddFromFile.md index 139969db8f3..622a0730e8f 100644 --- a/api/Excel.Connections.AddFromFile.md +++ b/api/Excel.Connections.AddFromFile.md @@ -27,13 +27,13 @@ Adds a connection from the specified file. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|Name of the file.| | _CreateModelConnection_|Optional| **Boolean**|Specifies whether to create the connection to the model.| | _ImportRelationships_|Optional| **Boolean**|Specifies whether to import the connection relationship.| -### Return Value +### Return value WorkbookConnection diff --git a/api/Excel.Connections.Item.md b/api/Excel.Connections.Item.md index 805b970702a..2c07077d0f6 100644 --- a/api/Excel.Connections.Item.md +++ b/api/Excel.Connections.Item.md @@ -27,11 +27,11 @@ This method creates a connection item. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|Index value of the item.| -### Return Value +### Return value WorkbookConnection diff --git a/api/Excel.ConnectorFormat.BeginConnect.md b/api/Excel.ConnectorFormat.BeginConnect.md index 0f8d1712d63..874cf46af18 100644 --- a/api/Excel.ConnectorFormat.BeginConnect.md +++ b/api/Excel.ConnectorFormat.BeginConnect.md @@ -27,7 +27,7 @@ Attaches the beginning of the specified connector to a specified shape. If there -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ConnectedShape_|Required| **Shape**|The shape to attach the beginning of the connector to. The specified **[Shape](Excel.Shape.md)** object must be in the same **[Shapes](Excel.Shapes.md)** collection as the connector.| | _ConnectionSite_|Required| **Long**|A connection site on the shape specified by _ConnectedShape_. Must be an integer between 1 and the integer returned by the **[ConnectionSiteCount](Excel.Shape.ConnectionSiteCount.md)** property of the specified shape. If you want the connector to automatically find the shortest path between the two shapes it connects, specify any valid integer for this argument and then use the **[RerouteConnections](Excel.ShapeRange.RerouteConnections.md)** method after the connector is attached to shapes at both ends.| diff --git a/api/Excel.ConnectorFormat.EndConnect.md b/api/Excel.ConnectorFormat.EndConnect.md index 86c7cbe458f..bf584cc40b5 100644 --- a/api/Excel.ConnectorFormat.EndConnect.md +++ b/api/Excel.ConnectorFormat.EndConnect.md @@ -27,7 +27,7 @@ Attaches the end of the specified connector to a specified shape. If there?s alr -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ConnectedShape_|Required| **[Shape](Excel.Shape.md)**|The shape to attach the end of the connector to. The specified **Shape** object must be in the same **[Shapes](Excel.Shapes.md)** collection as the connector.| | _ConnectionSite_|Required| **Long**|Must be an integer between 1 and the integer returned by the **ConnectionSiteCount** property of the specified shape. If you want the connector to automatically find the shortest path between the two shapes it connects, specify any valid integer for this argument and then use the **[RerouteConnections](Excel.Shape.RerouteConnections.md)** method after the connector is attached to shapes at both ends.| diff --git a/api/Excel.Constants.md b/api/Excel.Constants.md index 9d1f354bdc8..2fc45cc43c6 100644 --- a/api/Excel.Constants.md +++ b/api/Excel.Constants.md @@ -14,7 +14,7 @@ This enumeration groups together constants used with various Excel methods. -|**Name**|**Value**|**Description**| +|Name|Value|Description| |:-----|:-----|:-----| | **xl3DBar**|-4099|3D Bar| | **xl3DEffects1**|13|3D Effects1| diff --git a/api/Excel.ControlFormat.AddItem.md b/api/Excel.ControlFormat.AddItem.md index 5b7b38c80cf..30059095e78 100644 --- a/api/Excel.ControlFormat.AddItem.md +++ b/api/Excel.ControlFormat.AddItem.md @@ -27,7 +27,7 @@ Adds an item to a list box or a combo box. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Text_|Required| **String**|The text to be added.| | _Index_|Optional| **Variant**|The position of the new entry. If the list has fewer entries than the specified index, blank items from the end of the list are added to the specified position. If this argument is omitted, the item is appended to the existing list.| diff --git a/api/Excel.ControlFormat.List.md b/api/Excel.ControlFormat.List.md index 3c29a3514f2..0f36b449dc3 100644 --- a/api/Excel.ControlFormat.List.md +++ b/api/Excel.ControlFormat.List.md @@ -27,11 +27,11 @@ Returns or sets the text entries in the specified list box or a combo box, as an -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The index number of a single text entry to be set or returned. If this argument is omitted, the entire list is returned or set as an array of strings.| -### Return Value +### Return value Variant diff --git a/api/Excel.ControlFormat.Max.md b/api/Excel.ControlFormat.Max.md index 7415e2ece0e..c18c3cd2cb9 100644 --- a/api/Excel.ControlFormat.Max.md +++ b/api/Excel.ControlFormat.Max.md @@ -23,7 +23,7 @@ Returns or sets the maximum value of a scroll bar or spinner range. The scroll b _expression_ An expression that returns a [ControlFormat](Excel.ControlFormat.md) object. -### Return Value +### Return value Long diff --git a/api/Excel.ControlFormat.Min.md b/api/Excel.ControlFormat.Min.md index eeb986b41c9..9e57153bef2 100644 --- a/api/Excel.ControlFormat.Min.md +++ b/api/Excel.ControlFormat.Min.md @@ -23,7 +23,7 @@ Returns or sets the minimum value of a scroll bar or spinner range. The scroll b _expression_ An expression that returns a [ControlFormat](Excel.ControlFormat.md) object. -### Return Value +### Return value Long diff --git a/api/Excel.ControlFormat.RemoveItem.md b/api/Excel.ControlFormat.RemoveItem.md index 37df3b54e68..246508c0324 100644 --- a/api/Excel.ControlFormat.RemoveItem.md +++ b/api/Excel.ControlFormat.RemoveItem.md @@ -27,7 +27,7 @@ Removes one or more items from a list box or combo box. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Long**|The number of the first item to be removed. Valid values are from 1 to the number of items in the list (returned by the **ListCount** property).| | _Count_|Optional| **Variant**|The number of items to be removed, starting at item _Index_. If this argument is omitted, one item is removed. If _Index_ + _Count_ exceeds the number of items in the list, all items from _Index_ through the end of the list are removed without an error.| diff --git a/api/Excel.CubeField.AddMemberPropertyField.md b/api/Excel.CubeField.AddMemberPropertyField.md index ea184ec8ac5..81b9bc2b642 100644 --- a/api/Excel.CubeField.AddMemberPropertyField.md +++ b/api/Excel.CubeField.AddMemberPropertyField.md @@ -27,7 +27,7 @@ Adds a member property field to the display for the cube field. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Property_|Required| **String**|The unique name of the member property. For balanced hierarchies, a unique name can be created by appending the "quoted" member property name to the unique name of the level with which the member property is associated. For unbalanced hierarchies, a unique name can be created by appending the "quoted" member property name to the unique name of the hierarchy.| | _PropertyOrder_|Optional| **Variant**|Sets the **[PropertyOrder](Excel.PivotField.PropertyOrder.md)** property value for a **CubeField** object. The actual position in the collection will be immediately before the PivotTable field that currently has the same **PropertyOrder** value that is given in the argument. If no field has the given property order value, the range of acceptable values is 1 to the number of member properties already showing for the hierarchy plus one. This argument is one-based. If omitted, the property goes to the end of the list.| diff --git a/api/Excel.CubeField.FlattenHierarchies.md b/api/Excel.CubeField.FlattenHierarchies.md index 61cb86c4796..c5b0256e0e0 100644 --- a/api/Excel.CubeField.FlattenHierarchies.md +++ b/api/Excel.CubeField.FlattenHierarchies.md @@ -23,7 +23,7 @@ Returns or sets whether items from all levels of hierarchies in a named set cube _expression_ A variable that represents a '[CubeField](Excel.CubeField.md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.CubeField.HierarchizeDistinct.md b/api/Excel.CubeField.HierarchizeDistinct.md index 325275dd191..dd082c1a5f5 100644 --- a/api/Excel.CubeField.HierarchizeDistinct.md +++ b/api/Excel.CubeField.HierarchizeDistinct.md @@ -23,7 +23,7 @@ Returns or sets whether to order and remove duplicates when displaying the speci _expression_ A variable that represents a '[CubeField](Excel.CubeField.md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.CubeField.PivotFields.md b/api/Excel.CubeField.PivotFields.md index 8acdc3f2a30..b13bcc4f08a 100644 --- a/api/Excel.CubeField.PivotFields.md +++ b/api/Excel.CubeField.PivotFields.md @@ -23,7 +23,7 @@ Returns the **[PivotFields](Excel.PivotFields.md)** collection. This collection _expression_ An expression that returns a [CubeField](Excel.CubeField.md) object. -### Return Value +### Return value PivotFields diff --git a/api/Excel.CubeFields.AddSet.md b/api/Excel.CubeFields.AddSet.md index 40028dbc458..9d3c720962f 100644 --- a/api/Excel.CubeFields.AddSet.md +++ b/api/Excel.CubeFields.AddSet.md @@ -27,12 +27,12 @@ Adds a new **[CubeField](Excel.CubeField.md)** object to the **[CubeFields](Exc -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **String**|A valid name in the SETS schema rowset.| | _Caption_|Required| **String**|A string representing the field that will be displayed in the PivotTable view.| -### Return Value +### Return value CubeField diff --git a/api/Excel.CubeFields.Item.md b/api/Excel.CubeFields.Item.md index 39e4fb2cdc2..72d912fc173 100644 --- a/api/Excel.CubeFields.Item.md +++ b/api/Excel.CubeFields.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| diff --git a/api/Excel.CustomProperties.Add.md b/api/Excel.CustomProperties.Add.md index 5ec4b58e9ef..3bc987cc158 100644 --- a/api/Excel.CustomProperties.Add.md +++ b/api/Excel.CustomProperties.Add.md @@ -27,12 +27,12 @@ Adds custom property information. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **String**|The name of the custom property.| | _Value_|Required| **Variant**|The value of the custom property.| -### Return Value +### Return value A **[CustomProperty](Excel.CustomProperty.md)** object that represents the custom property information. diff --git a/api/Excel.CustomProperties.Item.md b/api/Excel.CustomProperties.Item.md index a71b5436923..79346a5afed 100644 --- a/api/Excel.CustomProperties.Item.md +++ b/api/Excel.CustomProperties.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Integer**|The index number of the object.| diff --git a/api/Excel.CustomViews.Add.md b/api/Excel.CustomViews.Add.md index c2906e834be..00b8c71582c 100644 --- a/api/Excel.CustomViews.Add.md +++ b/api/Excel.CustomViews.Add.md @@ -27,13 +27,13 @@ Creates a new custom view. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ViewName_|Required| **String**|The name of the new view.| | _PrintSettings_|Optional| **Variant**| **True** to include print settings in the custom view.| | _RowColSettings_|Optional| **Variant**| **True** to include settings for hidden rows and columns (including filter information) in the custom view.| -### Return Value +### Return value A **[CustomView](Excel.CustomView.md)** object that represents the new custom view. diff --git a/api/Excel.CustomViews.Item.md b/api/Excel.CustomViews.Item.md index 95cad3ad8d0..170ee1bba89 100644 --- a/api/Excel.CustomViews.Item.md +++ b/api/Excel.CustomViews.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ViewName_|Required| **Variant**|The name or index number for the object.| -### Return Value +### Return value A **[CustomView](Excel.CustomView.md)** object contained by the collection. diff --git a/api/Excel.DataBarBorder.Color.md b/api/Excel.DataBarBorder.Color.md index ca0bb040148..94035617085 100644 --- a/api/Excel.DataBarBorder.Color.md +++ b/api/Excel.DataBarBorder.Color.md @@ -23,7 +23,7 @@ Returns an object that specifies the color of the border of data bars specified _expression_ A variable that represents a '[DataBarBorder](Excel.DataBarBorder.md)' object. -### Return Value +### Return value **[FormatColor](Excel.FormatColor.md)** diff --git a/api/Excel.DataBarBorder.Type.md b/api/Excel.DataBarBorder.Type.md index c40c3d32392..3e833464cce 100644 --- a/api/Excel.DataBarBorder.Type.md +++ b/api/Excel.DataBarBorder.Type.md @@ -23,7 +23,7 @@ Returns or sets the type of border for data bars specified by a conditional form _expression_ A variable that represents a '[DataBarBorder](Excel.DataBarBorder.md)' object. -### Return Value +### Return value **[XlDataBarBorderType](Excel.XlDataBarBorderType.md)** diff --git a/api/Excel.DataLabel.Characters.md b/api/Excel.DataLabel.Characters.md index d04e755450c..fdae2dce102 100644 --- a/api/Excel.DataLabel.Characters.md +++ b/api/Excel.DataLabel.Characters.md @@ -27,7 +27,7 @@ Returns a **[Characters](Excel.Characters.md)** object that represents a range -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Start_|Optional| **Variant**|The first character to be returned. If this argument is either 1 or omitted, this property returns a range of characters starting with the first character.| | _Length_|Optional| **Variant**|The number of characters to be returned. If this argument is omitted, this property returns the remainder of the string (everything after the _Start_ character).| diff --git a/api/Excel.DataLabel.Delete.md b/api/Excel.DataLabel.Delete.md index ec9529c1747..105b0819ef6 100644 --- a/api/Excel.DataLabel.Delete.md +++ b/api/Excel.DataLabel.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [DataLabel](Excel.DataLabel(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.DataLabel.Formula.md b/api/Excel.DataLabel.Formula.md index a08c1f31e0a..4cbeedf9cb6 100644 --- a/api/Excel.DataLabel.Formula.md +++ b/api/Excel.DataLabel.Formula.md @@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using _expression_ A variable that represents a [DataLabel](Excel.DataLabel(Graph property).md) object. -### Return Value +### Return value String diff --git a/api/Excel.DataLabel.FormulaLocal.md b/api/Excel.DataLabel.FormulaLocal.md index 5513eb12d14..05ff1579550 100644 --- a/api/Excel.DataLabel.FormulaLocal.md +++ b/api/Excel.DataLabel.FormulaLocal.md @@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using _expression_ A variable that represents a [DataLabel](Excel.DataLabel(Graph property).md) object. -### Return Value +### Return value String diff --git a/api/Excel.DataLabel.FormulaR1C1.md b/api/Excel.DataLabel.FormulaR1C1.md index d06393a3386..ad835598ef1 100644 --- a/api/Excel.DataLabel.FormulaR1C1.md +++ b/api/Excel.DataLabel.FormulaR1C1.md @@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using _expression_ A variable that represents a [DataLabel](Excel.DataLabel(Graph property).md) object. -### Return Value +### Return value String diff --git a/api/Excel.DataLabel.FormulaR1C1Local.md b/api/Excel.DataLabel.FormulaR1C1Local.md index dec37b3beac..3cb293056ca 100644 --- a/api/Excel.DataLabel.FormulaR1C1Local.md +++ b/api/Excel.DataLabel.FormulaR1C1Local.md @@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using _expression_ A variable that represents a [DataLabel](Excel.DataLabel(Graph property).md) object. -### Return Value +### Return value String diff --git a/api/Excel.DataLabel.Height.md b/api/Excel.DataLabel.Height.md index 3324cac8c07..2e04b78f401 100644 --- a/api/Excel.DataLabel.Height.md +++ b/api/Excel.DataLabel.Height.md @@ -23,7 +23,7 @@ Returns the height, in points, of the object. Read/Write. _expression_ A variable that represents a [DataLabel](Excel.DataLabel(Graph property).md) object. -### Return Value +### Return value Double diff --git a/api/Excel.DataLabel.Select.md b/api/Excel.DataLabel.Select.md index 541eb3a81d6..03ed4e6abf5 100644 --- a/api/Excel.DataLabel.Select.md +++ b/api/Excel.DataLabel.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [DataLabel](Excel.DataLabel(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.DataLabel.Width.md b/api/Excel.DataLabel.Width.md index b80ba720d48..7725b957fdc 100644 --- a/api/Excel.DataLabel.Width.md +++ b/api/Excel.DataLabel.Width.md @@ -23,7 +23,7 @@ Returns the width, in points, of the object. Read-only. _expression_ A variable that represents a [DataLabel](Excel.DataLabel(Graph property).md) object. -### Return Value +### Return value Double diff --git a/api/Excel.DataLabels.Delete.md b/api/Excel.DataLabels.Delete.md index c89f6e49bc9..52f7eeb927e 100644 --- a/api/Excel.DataLabels.Delete.md +++ b/api/Excel.DataLabels.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [DataLabels](Excel.DataLabels(object).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.DataLabels.Item.md b/api/Excel.DataLabels.Item.md index a620a9b7f31..ba8e92dd1df 100644 --- a/api/Excel.DataLabels.Item.md +++ b/api/Excel.DataLabels.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The index number for the object.| -### Return Value +### Return value A **[DataLabel](Excel.DataLabel(object).md)** object contained by the collection. diff --git a/api/Excel.DataLabels.Select.md b/api/Excel.DataLabels.Select.md index 58ca7585f22..51fe1d5861a 100644 --- a/api/Excel.DataLabels.Select.md +++ b/api/Excel.DataLabels.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [DataLabels](Excel.DataLabels(object).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Databar.AxisColor.md b/api/Excel.Databar.AxisColor.md index a932945a990..8293b0bbda3 100644 --- a/api/Excel.Databar.AxisColor.md +++ b/api/Excel.Databar.AxisColor.md @@ -23,7 +23,7 @@ Returns the color of the axis for cells with conditional formatting as data bars _expression_ A variable that represents a '[Databar](Excel.Databar.md)' object. -### Return Value +### Return value [FormatColor](Excel.FormatColor.md) diff --git a/api/Excel.Databar.AxisPosition.md b/api/Excel.Databar.AxisPosition.md index 68f483060e4..f9d9103653a 100644 --- a/api/Excel.Databar.AxisPosition.md +++ b/api/Excel.Databar.AxisPosition.md @@ -23,7 +23,7 @@ Returns or sets the position of the axis of the data bars specified by a conditi _expression_ A variable that represents a '[Databar](Excel.Databar.md)' object. -### Return Value +### Return value **[XlDataBarAxisPosition](Excel.XlDataBarAxisPosition.md)** diff --git a/api/Excel.Databar.BarBorder.md b/api/Excel.Databar.BarBorder.md index 38bb830315b..b95b7d778f5 100644 --- a/api/Excel.Databar.BarBorder.md +++ b/api/Excel.Databar.BarBorder.md @@ -23,7 +23,7 @@ Returns an object that specifies the border of a data bar. Read-only _expression_ A variable that represents a '[Databar](Excel.Databar.md)' object. -### Return Value +### Return value **[DataBarBorder](Excel.DataBarBorder.md)** diff --git a/api/Excel.Databar.BarFillType.md b/api/Excel.Databar.BarFillType.md index 0a653b7a205..432c617929b 100644 --- a/api/Excel.Databar.BarFillType.md +++ b/api/Excel.Databar.BarFillType.md @@ -23,7 +23,7 @@ Returns or sets how a data bar is filled with color. Read/write _expression_ A variable that represents a '[Databar](Excel.Databar.md)' object. -### Return Value +### Return value **[XlDataBarFillType](Excel.XlDataBarFillType.md)** diff --git a/api/Excel.Databar.ModifyAppliesToRange.md b/api/Excel.Databar.ModifyAppliesToRange.md index d11a4dc9a73..a2a6938e6da 100644 --- a/api/Excel.Databar.ModifyAppliesToRange.md +++ b/api/Excel.Databar.ModifyAppliesToRange.md @@ -27,7 +27,7 @@ Sets the cell range to which this formatting rule applies. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Range_|Required| **Range**|The range to which this formatting rule will be applied.| diff --git a/api/Excel.Databar.NegativeBarFormat.md b/api/Excel.Databar.NegativeBarFormat.md index 6c3a2d283a7..4bb7a54f3f2 100644 --- a/api/Excel.Databar.NegativeBarFormat.md +++ b/api/Excel.Databar.NegativeBarFormat.md @@ -23,7 +23,7 @@ Returns the **[NegativeBarFormat](Excel.NegativeBarFormat.md)** object associat _expression_ A variable that represents a '[Databar](Excel.Databar.md)' object. -### Return Value +### Return value **NegativeBarFormat** diff --git a/api/Excel.Dialog.Show.md b/api/Excel.Dialog.Show.md index f6df892744e..1959d6ca7e1 100644 --- a/api/Excel.Dialog.Show.md +++ b/api/Excel.Dialog.Show.md @@ -27,11 +27,11 @@ Displays the built-in dialog box, waits for the user to input data and returns a -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Arg1-Arg30_|Optional| **Variant**|For built-in dialog boxes only, the initial arguments for the command.| -### Return Value +### Return value A Boolean value that, for built-in dialog boxes, returns **True** if the user clicks OK, or it returns **False** if the user clicks Cancel. diff --git a/api/Excel.Dialogs.Item.md b/api/Excel.Dialogs.Item.md index 952cb7b765b..ca1fe8ed200 100644 --- a/api/Excel.Dialogs.Item.md +++ b/api/Excel.Dialogs.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **XlBuiltInDialog**| **Variant** . The name or index number of the object.| diff --git a/api/Excel.DisplayFormat.AddIndent.md b/api/Excel.DisplayFormat.AddIndent.md index 8475db9fe76..e5d6cf8f613 100644 --- a/api/Excel.DisplayFormat.AddIndent.md +++ b/api/Excel.DisplayFormat.AddIndent.md @@ -23,7 +23,7 @@ Returns a value that indicates if Microsoft Excel automatically indents text of _expression_ A variable that represents a [DisplayFormat](Excel.DisplayFormat.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.DisplayFormat.Borders.md b/api/Excel.DisplayFormat.Borders.md index 21e6c9ee4be..19a27c18d82 100644 --- a/api/Excel.DisplayFormat.Borders.md +++ b/api/Excel.DisplayFormat.Borders.md @@ -23,7 +23,7 @@ Returns a **[Borders](Excel.Borders.md)** object that represents the borders of _expression_ A variable that represents a '[DisplayFormat](Excel.DisplayFormat.md)' object. -### Return Value +### Return value Borders diff --git a/api/Excel.DisplayFormat.Characters.md b/api/Excel.DisplayFormat.Characters.md index eb1043990bd..96b3095ac4d 100644 --- a/api/Excel.DisplayFormat.Characters.md +++ b/api/Excel.DisplayFormat.Characters.md @@ -27,12 +27,12 @@ Returns a **[Characters](Excel.Characters.md)** object that represents a range -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Start_|Optional| **Variant**|The first character to be returned. If this argument is either 1 or omitted, this property returns a range of characters starting with the first character.| | _Length_|Optional| **Variant**|The number of characters to be returned. If this argument is omitted, this property returns the remainder of the string (everything after the _Start_ character).| -### Return Value +### Return value Characters diff --git a/api/Excel.DisplayFormat.Font.md b/api/Excel.DisplayFormat.Font.md index f7471545052..43eb6c513cf 100644 --- a/api/Excel.DisplayFormat.Font.md +++ b/api/Excel.DisplayFormat.Font.md @@ -23,7 +23,7 @@ Returns a **[Font](Excel.Font(object).md)** object that represents the font of _expression_ A variable that represents a '[DisplayFormat](Excel.DisplayFormat.md)' object. -### Return Value +### Return value Font diff --git a/api/Excel.DisplayFormat.FormulaHidden.md b/api/Excel.DisplayFormat.FormulaHidden.md index 9b3b276b1a5..d2ca5ba89c5 100644 --- a/api/Excel.DisplayFormat.FormulaHidden.md +++ b/api/Excel.DisplayFormat.FormulaHidden.md @@ -23,7 +23,7 @@ Returns a value that indicates if the formula of the associated **[Range](Excel _expression_ A variable that represents a '[DisplayFormat](Excel.DisplayFormat.md)' object. -### Return Value +### Return value Variant diff --git a/api/Excel.DisplayFormat.HorizontalAlignment.md b/api/Excel.DisplayFormat.HorizontalAlignment.md index 3dcbc7059ce..4b398734756 100644 --- a/api/Excel.DisplayFormat.HorizontalAlignment.md +++ b/api/Excel.DisplayFormat.HorizontalAlignment.md @@ -23,7 +23,7 @@ Returns a value that represents the horizontal alignment of the associated **[R _expression_ A variable that represents a '[DisplayFormat](Excel.DisplayFormat.md)' object. -### Return Value +### Return value Variant diff --git a/api/Excel.DisplayFormat.IndentLevel.md b/api/Excel.DisplayFormat.IndentLevel.md index de9cb4610c3..74c44720bd6 100644 --- a/api/Excel.DisplayFormat.IndentLevel.md +++ b/api/Excel.DisplayFormat.IndentLevel.md @@ -23,7 +23,7 @@ Returns a value that represents the indent level of the associated **[Range](Ex _expression_ A variable that represents a '[DisplayFormat](Excel.DisplayFormat.md)' object. -### Return Value +### Return value Variant diff --git a/api/Excel.DisplayFormat.Interior.md b/api/Excel.DisplayFormat.Interior.md index b8d107d602f..d779fc8c218 100644 --- a/api/Excel.DisplayFormat.Interior.md +++ b/api/Excel.DisplayFormat.Interior.md @@ -23,7 +23,7 @@ Returns an **[Interior](Excel.Interior(object).md)** object that represents the _expression_ A variable that represents a '[DisplayFormat](Excel.DisplayFormat.md)' object. -### Return Value +### Return value Interior diff --git a/api/Excel.DisplayFormat.Locked.md b/api/Excel.DisplayFormat.Locked.md index fd1ab49aadc..e0845a3f5c8 100644 --- a/api/Excel.DisplayFormat.Locked.md +++ b/api/Excel.DisplayFormat.Locked.md @@ -23,7 +23,7 @@ Returns a value that indicates if the associated **[Range](Excel.Range(object). _expression_ A variable that represents a '[DisplayFormat](Excel.DisplayFormat.md)' object. -### Return Value +### Return value Variant diff --git a/api/Excel.DisplayFormat.MergeCells.md b/api/Excel.DisplayFormat.MergeCells.md index 03157d4c3d1..faac715707d 100644 --- a/api/Excel.DisplayFormat.MergeCells.md +++ b/api/Excel.DisplayFormat.MergeCells.md @@ -23,7 +23,7 @@ Returns a value that indicates if the associated **[Range](Excel.Range(object). _expression_ A variable that represents a '[DisplayFormat](Excel.DisplayFormat.md)' object. -### Return Value +### Return value Variant diff --git a/api/Excel.DisplayFormat.NumberFormat.md b/api/Excel.DisplayFormat.NumberFormat.md index e3dcf075c1c..c1b09351a1f 100644 --- a/api/Excel.DisplayFormat.NumberFormat.md +++ b/api/Excel.DisplayFormat.NumberFormat.md @@ -23,7 +23,7 @@ Returns a value that represents the format code of the associated **[Range](Exc _expression_ A variable that represents a '[DisplayFormat](Excel.DisplayFormat.md)' object. -### Return Value +### Return value Variant diff --git a/api/Excel.DisplayFormat.NumberFormatLocal.md b/api/Excel.DisplayFormat.NumberFormatLocal.md index e728047168a..8cb1d678f1b 100644 --- a/api/Excel.DisplayFormat.NumberFormatLocal.md +++ b/api/Excel.DisplayFormat.NumberFormatLocal.md @@ -23,7 +23,7 @@ Returns a value that represents the format code of the associated **[Range](Exc _expression_ A variable that represents a '[DisplayFormat](Excel.DisplayFormat.md)' object. -### Return Value +### Return value Variant diff --git a/api/Excel.DisplayFormat.Orientation.md b/api/Excel.DisplayFormat.Orientation.md index 86255fda7cf..021173a1b06 100644 --- a/api/Excel.DisplayFormat.Orientation.md +++ b/api/Excel.DisplayFormat.Orientation.md @@ -23,7 +23,7 @@ Returns a value that represents the text orientation of the associated **[Range _expression_ A variable that represents a '[DisplayFormat](Excel.DisplayFormat.md)' object. -### Return Value +### Return value Variant diff --git a/api/Excel.DisplayFormat.ReadingOrder.md b/api/Excel.DisplayFormat.ReadingOrder.md index 3fb2cd26bcb..9b1264653f8 100644 --- a/api/Excel.DisplayFormat.ReadingOrder.md +++ b/api/Excel.DisplayFormat.ReadingOrder.md @@ -23,7 +23,7 @@ Returns the reading order of the associated **[Range](Excel.Range(object).md)** _expression_ A variable that represents a '[DisplayFormat](Excel.DisplayFormat.md)' object. -### Return Value +### Return value Long diff --git a/api/Excel.DisplayFormat.ShrinkToFit.md b/api/Excel.DisplayFormat.ShrinkToFit.md index 94a0482855e..da68d642d00 100644 --- a/api/Excel.DisplayFormat.ShrinkToFit.md +++ b/api/Excel.DisplayFormat.ShrinkToFit.md @@ -23,7 +23,7 @@ Returns a value that indicates if Microsoft Excel automatically shrinks text to _expression_ A variable that represents a '[DisplayFormat](Excel.DisplayFormat.md)' object. -### Return Value +### Return value Variant diff --git a/api/Excel.DisplayFormat.Style.md b/api/Excel.DisplayFormat.Style.md index 1c4c035a703..a8ca45656ad 100644 --- a/api/Excel.DisplayFormat.Style.md +++ b/api/Excel.DisplayFormat.Style.md @@ -23,7 +23,7 @@ Returns a value, containing a **[Style](Excel.Style.md)** object, that represen _expression_ A variable that represents a '[DisplayFormat](Excel.DisplayFormat.md)' object. -### Return Value +### Return value Variant diff --git a/api/Excel.DisplayFormat.VerticalAlignment.md b/api/Excel.DisplayFormat.VerticalAlignment.md index 80e1a03856f..560d7feb273 100644 --- a/api/Excel.DisplayFormat.VerticalAlignment.md +++ b/api/Excel.DisplayFormat.VerticalAlignment.md @@ -23,7 +23,7 @@ Returns a value that represents the vertical alignment of the associated **[Ran _expression_ A variable that represents a '[DisplayFormat](Excel.DisplayFormat.md)' object. -### Return Value +### Return value Variant diff --git a/api/Excel.DisplayFormat.WrapText.md b/api/Excel.DisplayFormat.WrapText.md index b21a83b0fdf..d36c1818ff8 100644 --- a/api/Excel.DisplayFormat.WrapText.md +++ b/api/Excel.DisplayFormat.WrapText.md @@ -23,7 +23,7 @@ Returns a value that indicates if Microsoft Excel wraps the text of the associat _expression_ A variable that represents a '[DisplayFormat](Excel.DisplayFormat.md)' object. -### Return Value +### Return value Variant diff --git a/api/Excel.DisplayUnitLabel.Characters.md b/api/Excel.DisplayUnitLabel.Characters.md index 1833f419100..b0a6662ff5f 100644 --- a/api/Excel.DisplayUnitLabel.Characters.md +++ b/api/Excel.DisplayUnitLabel.Characters.md @@ -27,7 +27,7 @@ Returns a **[Characters](Excel.Characters.md)** object that represents a range -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Start_|Optional| **Variant**|The first character to be returned. If this argument is either 1 or omitted, this property returns a range of characters starting with the first character.| | _Length_|Optional| **Variant**|The number of characters to be returned. If this argument is omitted, this property returns the remainder of the string (everything after the _Start_ character).| diff --git a/api/Excel.DisplayUnitLabel.Delete.md b/api/Excel.DisplayUnitLabel.Delete.md index 93938f20037..38959724eac 100644 --- a/api/Excel.DisplayUnitLabel.Delete.md +++ b/api/Excel.DisplayUnitLabel.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [DisplayUnitLabel](Excel.DisplayUnitLabel(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.DisplayUnitLabel.Formula.md b/api/Excel.DisplayUnitLabel.Formula.md index 5782a280136..917e683ec04 100644 --- a/api/Excel.DisplayUnitLabel.Formula.md +++ b/api/Excel.DisplayUnitLabel.Formula.md @@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using _expression_ A variable that represents a [DisplayUnitLabel](Excel.DisplayUnitLabel(Graph property).md) object. -### Return Value +### Return value String diff --git a/api/Excel.DisplayUnitLabel.FormulaLocal.md b/api/Excel.DisplayUnitLabel.FormulaLocal.md index 49245678411..1b918c52e41 100644 --- a/api/Excel.DisplayUnitLabel.FormulaLocal.md +++ b/api/Excel.DisplayUnitLabel.FormulaLocal.md @@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using _expression_ A variable that represents a [DisplayUnitLabel](Excel.DisplayUnitLabel(Graph property).md) object. -### Return Value +### Return value String diff --git a/api/Excel.DisplayUnitLabel.FormulaR1C1.md b/api/Excel.DisplayUnitLabel.FormulaR1C1.md index ca67757784e..0c7b96bc42c 100644 --- a/api/Excel.DisplayUnitLabel.FormulaR1C1.md +++ b/api/Excel.DisplayUnitLabel.FormulaR1C1.md @@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using _expression_ A variable that represents a [DisplayUnitLabel](Excel.DisplayUnitLabel(Graph property).md) object. -### Return Value +### Return value String diff --git a/api/Excel.DisplayUnitLabel.FormulaR1C1Local.md b/api/Excel.DisplayUnitLabel.FormulaR1C1Local.md index a92dbb6b13a..a2f76d69850 100644 --- a/api/Excel.DisplayUnitLabel.FormulaR1C1Local.md +++ b/api/Excel.DisplayUnitLabel.FormulaR1C1Local.md @@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using _expression_ A variable that represents a [DisplayUnitLabel](Excel.DisplayUnitLabel(Graph property).md) object. -### Return Value +### Return value String diff --git a/api/Excel.DisplayUnitLabel.Height.md b/api/Excel.DisplayUnitLabel.Height.md index 574f0ffc67b..3af2ef6e913 100644 --- a/api/Excel.DisplayUnitLabel.Height.md +++ b/api/Excel.DisplayUnitLabel.Height.md @@ -23,7 +23,7 @@ Returns the height, in points, of the object. Read-only. _expression_ A variable that represents a [DisplayUnitLabel](Excel.DisplayUnitLabel(Graph property).md) object. -### Return Value +### Return value Double diff --git a/api/Excel.DisplayUnitLabel.Select.md b/api/Excel.DisplayUnitLabel.Select.md index 0611e43f065..b9bf776edfa 100644 --- a/api/Excel.DisplayUnitLabel.Select.md +++ b/api/Excel.DisplayUnitLabel.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [DisplayUnitLabel](Excel.DisplayUnitLabel(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.DisplayUnitLabel.Width.md b/api/Excel.DisplayUnitLabel.Width.md index 1f843fafa82..22878d66512 100644 --- a/api/Excel.DisplayUnitLabel.Width.md +++ b/api/Excel.DisplayUnitLabel.Width.md @@ -23,7 +23,7 @@ Returns the width, in points, of the object. Read-only. _expression_ A variable that represents a [DisplayUnitLabel](Excel.DisplayUnitLabel(Graph property).md) object. -### Return Value +### Return value Double diff --git a/api/Excel.DownBars.Delete.md b/api/Excel.DownBars.Delete.md index 406b58ff9ea..6b789df9d20 100644 --- a/api/Excel.DownBars.Delete.md +++ b/api/Excel.DownBars.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [DownBars](Excel.DownBars(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.DownBars.Select.md b/api/Excel.DownBars.Select.md index cfb1e63764d..f975413f232 100644 --- a/api/Excel.DownBars.Select.md +++ b/api/Excel.DownBars.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [DownBars](Excel.DownBars(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.DropLines.Delete.md b/api/Excel.DropLines.Delete.md index 7f1b4b82b2f..368d1ba08cf 100644 --- a/api/Excel.DropLines.Delete.md +++ b/api/Excel.DropLines.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [DropLines](Excel.DropLines(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.DropLines.Select.md b/api/Excel.DropLines.Select.md index 20bb215300c..35c77fc5a8e 100644 --- a/api/Excel.DropLines.Select.md +++ b/api/Excel.DropLines.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [DropLines](Excel.DropLines(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ErrorBars.ClearFormats.md b/api/Excel.ErrorBars.ClearFormats.md index 2acc948f30a..0abe00f22af 100644 --- a/api/Excel.ErrorBars.ClearFormats.md +++ b/api/Excel.ErrorBars.ClearFormats.md @@ -23,7 +23,7 @@ Clears the formatting of the object. _expression_ A variable that represents an [ErrorBars](Excel.ErrorBars(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ErrorBars.Delete.md b/api/Excel.ErrorBars.Delete.md index 67236ccfd59..ca2e79d7ff0 100644 --- a/api/Excel.ErrorBars.Delete.md +++ b/api/Excel.ErrorBars.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents an [ErrorBars](Excel.ErrorBars(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ErrorBars.Select.md b/api/Excel.ErrorBars.Select.md index 2225c3933fe..120c7bde3f4 100644 --- a/api/Excel.ErrorBars.Select.md +++ b/api/Excel.ErrorBars.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents an [ErrorBars](Excel.ErrorBars(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Errors.Item.md b/api/Excel.Errors.Item.md index 9f6243bc64a..f5027231ec9 100644 --- a/api/Excel.Errors.Item.md +++ b/api/Excel.Errors.Item.md @@ -27,7 +27,7 @@ Returns a single member of the **[Error](Excel.Error.md)** object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The index of the member.| diff --git a/api/Excel.FileExportConverters.Item.md b/api/Excel.FileExportConverters.Item.md index 7f73ef81521..f434b3e972a 100644 --- a/api/Excel.FileExportConverters.Item.md +++ b/api/Excel.FileExportConverters.Item.md @@ -27,11 +27,11 @@ Returns an individual **[FileExportConverter](Excel.FileExportConverter.md)** o -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|An integer that represents the individual object to be returned.| -### Return Value +### Return value FileExportConverter diff --git a/api/Excel.FillFormat.GradientAngle.md b/api/Excel.FillFormat.GradientAngle.md index 9a439ab2f92..6d4679a497e 100644 --- a/api/Excel.FillFormat.GradientAngle.md +++ b/api/Excel.FillFormat.GradientAngle.md @@ -20,7 +20,7 @@ Returns or sets the angle of the gradient fill for the specified fill format. Re _expression_ A variable that represents a '[FillFormat](Excel.FillFormat.md)' object. -### Return Value +### Return value **Single** diff --git a/api/Excel.FillFormat.OneColorGradient.md b/api/Excel.FillFormat.OneColorGradient.md index 18920e45118..668f18dbe7a 100644 --- a/api/Excel.FillFormat.OneColorGradient.md +++ b/api/Excel.FillFormat.OneColorGradient.md @@ -27,7 +27,7 @@ Sets the specified fill to a one-color gradient. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Style_|Required| **[MsoGradientStyle](Office.MsoGradientStyle.md)**|The gradient style.| | _Variant_|Required| **Integer**|The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the **Gradient** tab in the **Fill Effects** dialog box. If _GradientStyle_ is **msoGradientFromCenter** , the _Variant_ argument can only be 1 or 2.| diff --git a/api/Excel.FillFormat.Patterned.md b/api/Excel.FillFormat.Patterned.md index a2f5784f70f..625a49fef4a 100644 --- a/api/Excel.FillFormat.Patterned.md +++ b/api/Excel.FillFormat.Patterned.md @@ -27,7 +27,7 @@ Sets the specified fill to a pattern. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Pattern_|Required| **[MsoPatternType](Office.MsoPatternType.md)**|The type of pattern.| diff --git a/api/Excel.FillFormat.PictureEffects.md b/api/Excel.FillFormat.PictureEffects.md index d2327f07956..2160ba5343c 100644 --- a/api/Excel.FillFormat.PictureEffects.md +++ b/api/Excel.FillFormat.PictureEffects.md @@ -20,7 +20,7 @@ Returns an object that represents the picture or texture fill for the specified _expression_ A variable that repressents a '[FillFormat](Excel.FillFormat.md)' object. -### Return Value +### Return value [PictureEffects](Office.PictureEffects.md) diff --git a/api/Excel.FillFormat.PresetGradient.md b/api/Excel.FillFormat.PresetGradient.md index 7844dfd0d50..53f60f7414f 100644 --- a/api/Excel.FillFormat.PresetGradient.md +++ b/api/Excel.FillFormat.PresetGradient.md @@ -27,7 +27,7 @@ Sets the specified fill to a preset gradient. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Style_|Required| **[MsoGradientStyle](Office.MsoGradientStyle.md)**|The gradient style.| | _Variant_|Required| **Integer**|The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the **Gradient** tab in the **Fill Effects** dialog box. If _GradientStyle_ is **msoGradientFromCenter** , the _Variant_ argument can only be 1 or 2.| diff --git a/api/Excel.FillFormat.PresetTextured.md b/api/Excel.FillFormat.PresetTextured.md index c52344eb30a..9014fb9decc 100644 --- a/api/Excel.FillFormat.PresetTextured.md +++ b/api/Excel.FillFormat.PresetTextured.md @@ -27,7 +27,7 @@ Sets the specified fill format to a preset texture. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _PresetTexture_|Required| **[MsoPresetTexture](Office.MsoPresetTexture.md)**|The type of texture to apply.| diff --git a/api/Excel.FillFormat.TwoColorGradient.md b/api/Excel.FillFormat.TwoColorGradient.md index ec8a3c6727d..b9df6644e29 100644 --- a/api/Excel.FillFormat.TwoColorGradient.md +++ b/api/Excel.FillFormat.TwoColorGradient.md @@ -27,7 +27,7 @@ Sets the specified fill to a two-color gradient. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Style_|Required| **[MsoGradientStyle](Office.MsoGradientStyle.md)**|The gradient style.| | _Variant_|Required| **Integer**|The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the **Gradient** tab in the **Fill Effects** dialog box. If _Style_ is **msoGradientFromCenter** , the _Variant_ argument can only be 1 or 2.| diff --git a/api/Excel.FillFormat.UserPicture.md b/api/Excel.FillFormat.UserPicture.md index 98e89b65090..c50c5f21c4a 100644 --- a/api/Excel.FillFormat.UserPicture.md +++ b/api/Excel.FillFormat.UserPicture.md @@ -27,7 +27,7 @@ Fills the specified shape with an image. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _PictureFile_|Required| **String**|The file path to the picture file, or the name of the picture file if a link to the picture file currently exists.| diff --git a/api/Excel.FillFormat.UserTextured.md b/api/Excel.FillFormat.UserTextured.md index 8746c71b06f..6f6d3463692 100644 --- a/api/Excel.FillFormat.UserTextured.md +++ b/api/Excel.FillFormat.UserTextured.md @@ -27,7 +27,7 @@ Fills the specified shape with small tiles of an image. If you want to fill the -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _TextureFile_|Required| **String**| The name of the picture file.| diff --git a/api/Excel.Filters.Item.md b/api/Excel.Filters.Item.md index 3026ce8660a..cf690c33f63 100644 --- a/api/Excel.Filters.Item.md +++ b/api/Excel.Filters.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Long**|The index number of the object.| diff --git a/api/Excel.Floor.ClearFormats.md b/api/Excel.Floor.ClearFormats.md index dd4f44f9d41..952824e947b 100644 --- a/api/Excel.Floor.ClearFormats.md +++ b/api/Excel.Floor.ClearFormats.md @@ -23,7 +23,7 @@ Clears the formatting of the object. _expression_ A variable that represents a [Floor](Excel.Floor(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Floor.Select.md b/api/Excel.Floor.Select.md index 2971d75cad6..a3d983cef4c 100644 --- a/api/Excel.Floor.Select.md +++ b/api/Excel.Floor.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [Floor](Excel.Floor(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.FormatCondition.Modify.md b/api/Excel.FormatCondition.Modify.md index c3b1a4ac996..278b0956e05 100644 --- a/api/Excel.FormatCondition.Modify.md +++ b/api/Excel.FormatCondition.Modify.md @@ -27,7 +27,7 @@ Modifies an existing conditional format. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Required| **[XlFormatConditionType](Excel.XlFormatConditionType.md)**|Specifies whether the conditional format is based on a cell value or an expression.| | _Operator_|Optional| **Variant**|An **[XlFormatConditionOperator](Excel.XlFormatConditionOperator.md)** value that represents the conditional format operator. This parameter is ignored if _Type_ is set to **xlExpression** .| diff --git a/api/Excel.FormatCondition.ModifyAppliesToRange.md b/api/Excel.FormatCondition.ModifyAppliesToRange.md index 5e625e2d966..0fb7b1cec08 100644 --- a/api/Excel.FormatCondition.ModifyAppliesToRange.md +++ b/api/Excel.FormatCondition.ModifyAppliesToRange.md @@ -27,7 +27,7 @@ Sets the cell range to which this formatting rule applies. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Range_|Required| **Range**|The range to which this formatting rule will be applied.| diff --git a/api/Excel.FormatConditions.Add.md b/api/Excel.FormatConditions.Add.md index 9f0b452f188..23e86bb011f 100644 --- a/api/Excel.FormatConditions.Add.md +++ b/api/Excel.FormatConditions.Add.md @@ -27,14 +27,14 @@ Adds a new conditional format. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Required| **[XlFormatConditionType](Excel.XlFormatConditionType.md)**|. Specifies whether the conditional format is based on a cell value or an expression.| | _Operator_|Optional| **Variant**|The conditional format operator. Can be one of the following **XlFormatConditionOperator** constants: **xlBetween** , **xlEqual** , **xlGreater** , **xlGreaterEqual** , **xlLess** , **xlLessEqual** , **xlNotBetween** , or **xlNotEqual** . If _Type_ is **xlExpression** , the _Operator_ argument is ignored.| | _Formula1_|Optional| **Variant**|The value or expression associated with the conditional format. Can be a constant value, a string value, a cell reference, or a formula.| | _Formula2_|Optional| **Variant**|The value or expression associated with the second part of the conditional format when _Operator_ is **xlBetween** or **xlNotBetween** (otherwise, this argument is ignored). Can be a constant value, a string value, a cell reference, or a formula.| -### Return Value +### Return value A **[FormatCondition](Excel.FormatCondition.md)** object that represents the new conditional format. diff --git a/api/Excel.FormatConditions.AddAboveAverage.md b/api/Excel.FormatConditions.AddAboveAverage.md index c2ebe5de6a9..fa57cee32e9 100644 --- a/api/Excel.FormatConditions.AddAboveAverage.md +++ b/api/Excel.FormatConditions.AddAboveAverage.md @@ -23,7 +23,7 @@ Returns a new **[AboveAverage](Excel.AboveAverage.md)** object representing a c _expression_ A variable that represents a [FormatConditions](Excel.FormatConditions.md) object. -### Return Value +### Return value **AboveAverage** object diff --git a/api/Excel.FormatConditions.AddColorScale.md b/api/Excel.FormatConditions.AddColorScale.md index 9c8de709efa..44fd1bc54c1 100644 --- a/api/Excel.FormatConditions.AddColorScale.md +++ b/api/Excel.FormatConditions.AddColorScale.md @@ -27,11 +27,11 @@ Returns a new **[ColorScale](Excel.ColorScale.md)** object representing a condi -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ColorScaleType_|Required| **Long**|The type of color scale.| -### Return Value +### Return value **ColorScale** object diff --git a/api/Excel.FormatConditions.AddDatabar.md b/api/Excel.FormatConditions.AddDatabar.md index 83cf8a8d9d3..c75a3d31f9c 100644 --- a/api/Excel.FormatConditions.AddDatabar.md +++ b/api/Excel.FormatConditions.AddDatabar.md @@ -23,7 +23,7 @@ Returns a **[Databar](Excel.Databar.md)** object representing a data bar condit _expression_ A variable that represents a [FormatConditions](Excel.FormatConditions.md) object. -### Return Value +### Return value **Databar** object diff --git a/api/Excel.FormatConditions.AddIconSetCondition.md b/api/Excel.FormatConditions.AddIconSetCondition.md index 414d282801d..5a9738d958b 100644 --- a/api/Excel.FormatConditions.AddIconSetCondition.md +++ b/api/Excel.FormatConditions.AddIconSetCondition.md @@ -23,7 +23,7 @@ Returns a new **[IconSetCondition](Excel.IconSetCondition.md)** object which re _expression_ A variable that represents a [FormatConditions](Excel.FormatConditions.md) object. -### Return Value +### Return value **IconSetCondition** object diff --git a/api/Excel.FormatConditions.AddTop10.md b/api/Excel.FormatConditions.AddTop10.md index bc5e68109e3..de6d0990b3b 100644 --- a/api/Excel.FormatConditions.AddTop10.md +++ b/api/Excel.FormatConditions.AddTop10.md @@ -23,7 +23,7 @@ Returns a **[Top10](Excel.Top10.md)** object representing a conditional formatt _expression_ A variable that represents a [FormatConditions](Excel.FormatConditions.md) object. -### Return Value +### Return value **Top10** object diff --git a/api/Excel.FormatConditions.AddUniqueValues.md b/api/Excel.FormatConditions.AddUniqueValues.md index 4c500d4eaf3..48f74c2ee4d 100644 --- a/api/Excel.FormatConditions.AddUniqueValues.md +++ b/api/Excel.FormatConditions.AddUniqueValues.md @@ -23,7 +23,7 @@ Returns a new **[UniqueValues](Excel.UniqueValues.md)** object representing a c _expression_ A variable that represents a [FormatConditions](Excel.FormatConditions.md) object. -### Return Value +### Return value **UniqueValues** object diff --git a/api/Excel.FormatConditions.Item.md b/api/Excel.FormatConditions.Item.md index be2aff9dbb9..94caa0c6087 100644 --- a/api/Excel.FormatConditions.Item.md +++ b/api/Excel.FormatConditions.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number for the object.| -### Return Value +### Return value An Object value that represents an object contained by the collection. diff --git a/api/Excel.FreeformBuilder.AddNodes.md b/api/Excel.FreeformBuilder.AddNodes.md index 4fdce93f4a0..af7c500beee 100644 --- a/api/Excel.FreeformBuilder.AddNodes.md +++ b/api/Excel.FreeformBuilder.AddNodes.md @@ -27,7 +27,7 @@ Adds a point in the current shape and then draws a line from the current node to -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SegmentType_|Required| **[MsoSegmentType](Office.MsoSegmentType.md)**|The type of segment to be added.| | _EditingType_|Required| **[MsoEditingType](Office.MsoEditingType.md)**|The editing property of the vertex.| diff --git a/api/Excel.FreeformBuilder.ConvertToShape.md b/api/Excel.FreeformBuilder.ConvertToShape.md index 0055974ea75..f6097d538e3 100644 --- a/api/Excel.FreeformBuilder.ConvertToShape.md +++ b/api/Excel.FreeformBuilder.ConvertToShape.md @@ -23,7 +23,7 @@ Creates a shape that has the geometric characteristics of the specified **[Free _expression_ A variable that represents a [FreeformBuilder](Excel.FreeformBuilder.md) object. -### Return Value +### Return value Shape diff --git a/api/Excel.Gridlines.Delete.md b/api/Excel.Gridlines.Delete.md index 671cad71adf..8c807d9a513 100644 --- a/api/Excel.Gridlines.Delete.md +++ b/api/Excel.Gridlines.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [Gridlines](Excel.Gridlines(Graph object).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Gridlines.Select.md b/api/Excel.Gridlines.Select.md index 2ac53e4e64d..5cb7678b94a 100644 --- a/api/Excel.Gridlines.Select.md +++ b/api/Excel.Gridlines.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [Gridlines](Excel.Gridlines(Graph object).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.GroupShapes.Item.md b/api/Excel.GroupShapes.Item.md index 98190ccd9d9..8b930b8335a 100644 --- a/api/Excel.GroupShapes.Item.md +++ b/api/Excel.GroupShapes.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number for the object.| -### Return Value +### Return value A **[Shape](Excel.Shape.md)** object contained by the collection. diff --git a/api/Excel.GroupShapes.Range.md b/api/Excel.GroupShapes.Range.md index 6e4c98971f4..4858c973256 100644 --- a/api/Excel.GroupShapes.Range.md +++ b/api/Excel.GroupShapes.Range.md @@ -27,7 +27,7 @@ Returns a **[ShapeRange](Excel.ShapeRange.md)** object that represents a subset -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The individual shapes to be included in the range. Can be an integer that specifies the index number of the shape, a string that specifies the name of the shape, or an array that contains either integers or strings.| diff --git a/api/Excel.HPageBreak.DragOff.md b/api/Excel.HPageBreak.DragOff.md index c6f54f5463c..d3393d77f4d 100644 --- a/api/Excel.HPageBreak.DragOff.md +++ b/api/Excel.HPageBreak.DragOff.md @@ -27,7 +27,7 @@ Drags a page break out of the print area. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Direction_|Required| **[XlDirection](Excel.XlDirection.md)**|The direction in which the page break is dragged.| | _RegionIndex_|Required| **Long**|The print-area region index for the page break (the region where the mouse pointer is located when the mouse button is pressed if the user drags the page break). If the print area is contiguous, there?s only one print region. If the print area is discontiguous, there?s more than one print region.| diff --git a/api/Excel.HPageBreaks.Add.md b/api/Excel.HPageBreaks.Add.md index a82af7b6140..99f18ef6a3a 100644 --- a/api/Excel.HPageBreaks.Add.md +++ b/api/Excel.HPageBreaks.Add.md @@ -27,11 +27,11 @@ Adds a horizontal page break. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Before_|Required| **Object**|A **[Range](Excel.Range(object).md)** object. The range above which the new page break will be added.| -### Return Value +### Return value A **[HPageBreak](Excel.HPageBreak.md)** object that represents the new horizontal page break. diff --git a/api/Excel.HPageBreaks.Item.md b/api/Excel.HPageBreaks.Item.md index d3c459e1567..ae19b2fbe09 100644 --- a/api/Excel.HPageBreaks.Item.md +++ b/api/Excel.HPageBreaks.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Long**|The index number of the object.| diff --git a/api/Excel.HiLoLines.Delete.md b/api/Excel.HiLoLines.Delete.md index b02742221e1..6277eb52f0c 100644 --- a/api/Excel.HiLoLines.Delete.md +++ b/api/Excel.HiLoLines.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [HiLoLines](Excel.HiLoLines(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.HiLoLines.Select.md b/api/Excel.HiLoLines.Select.md index ad3d5dd17bd..1c809b1b79e 100644 --- a/api/Excel.HiLoLines.Select.md +++ b/api/Excel.HiLoLines.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [HiLoLines](Excel.HiLoLines(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Hyperlink.CreateNewDocument.md b/api/Excel.Hyperlink.CreateNewDocument.md index 037aab89bf2..481905c3ab5 100644 --- a/api/Excel.Hyperlink.CreateNewDocument.md +++ b/api/Excel.Hyperlink.CreateNewDocument.md @@ -27,7 +27,7 @@ Creates a new document linked to the specified hyperlink. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|The file name of the specified document.| | _EditNow_|Required| **Boolean**| **True** to have the specified document open immediately in its associated editing environment.. The default value is **True** .| diff --git a/api/Excel.Hyperlink.Follow.md b/api/Excel.Hyperlink.Follow.md index 96d43893bb9..a3534eb7d50 100644 --- a/api/Excel.Hyperlink.Follow.md +++ b/api/Excel.Hyperlink.Follow.md @@ -27,7 +27,7 @@ Displays a cached document, if it?s already been downloaded. Otherwise, this met -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _NewWindow_|Optional| **Variant**| **True** to display the target application in a new window. The default value is **False** .| | _AddHistory_|Optional| **Variant**|Not used. Reserved for future use.| diff --git a/api/Excel.Hyperlinks.Add.md b/api/Excel.Hyperlinks.Add.md index 9c1f7599a3a..8bc1f14b1fc 100644 --- a/api/Excel.Hyperlinks.Add.md +++ b/api/Excel.Hyperlinks.Add.md @@ -27,7 +27,7 @@ Adds a hyperlink to the specified range or shape. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Anchor_|Required| **Object**|The anchor for the hyperlink. Can be either a **[Range](Excel.Range(object).md)** or **[Shape](Excel.Shape.md)** object.| | _Address_|Required| **String**|The address of the hyperlink.| @@ -35,7 +35,7 @@ Adds a hyperlink to the specified range or shape. | _ScreenTip_|Optional| **Variant**|The screen tip to be displayed when the mouse pointer is paused over the hyperlink.| | _TextToDisplay_|Optional| **Variant**|The text to be displayed for the hyperlink.| -### Return Value +### Return value A **[Hyperlink](Excel.Hyperlink.md)** object that represents the new hyperlink. diff --git a/api/Excel.Hyperlinks.Item.md b/api/Excel.Hyperlinks.Item.md index bd611518d65..fb3e0826b2e 100644 --- a/api/Excel.Hyperlinks.Item.md +++ b/api/Excel.Hyperlinks.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| diff --git a/api/Excel.IRtdServer.ConnectData.md b/api/Excel.IRtdServer.ConnectData.md index ac253385407..a29043e203e 100644 --- a/api/Excel.IRtdServer.ConnectData.md +++ b/api/Excel.IRtdServer.ConnectData.md @@ -27,13 +27,13 @@ Adds new topics from a real-time data server. The **ConnectData** method is cal -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _TopicID_|Required| **Long**| A unique value, assigned by Microsoft Excel, which identifies the topic.| | _Strings()_|Required| **Variant**|A single-dimensional array of strings identifying the topic.| | _GetNewValues_|Required| **Boolean**| **True** to determine if new values are to be acquired.| -### Return Value +### Return value Variant diff --git a/api/Excel.IRtdServer.DisconnectData.md b/api/Excel.IRtdServer.DisconnectData.md index fbb8cadf476..618d936b769 100644 --- a/api/Excel.IRtdServer.DisconnectData.md +++ b/api/Excel.IRtdServer.DisconnectData.md @@ -27,7 +27,7 @@ Notifies a real-time data (RTD) server application that a topic is no longer in -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _TopicID_|Required| **Long**|A unique value assigned to the topic assigned by Microsoft Excel.| diff --git a/api/Excel.IRtdServer.Heartbeat.md b/api/Excel.IRtdServer.Heartbeat.md index a2738f0cf23..63d7a7cccad 100644 --- a/api/Excel.IRtdServer.Heartbeat.md +++ b/api/Excel.IRtdServer.Heartbeat.md @@ -23,7 +23,7 @@ Determines if the real-time data server is still active. Returns a **Long** val _expression_ A variable that represents an [IRtdServer](Excel.IRtdServer.md) object. -### Return Value +### Return value Long diff --git a/api/Excel.IRtdServer.RefreshData.md b/api/Excel.IRtdServer.RefreshData.md index bcc25263d2e..e836cf3070a 100644 --- a/api/Excel.IRtdServer.RefreshData.md +++ b/api/Excel.IRtdServer.RefreshData.md @@ -27,11 +27,11 @@ This method is called by Microsoft Excel to get new data. Returns a **Variant** -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _TopicCount_|Required| **Long**|The RTD server must change the value of the **TopicCount** to the number of elements in the array returned.| -### Return Value +### Return value A Variant array that contains the new data. diff --git a/api/Excel.IRtdServer.ServerStart.md b/api/Excel.IRtdServer.ServerStart.md index 422e67677de..194dec90577 100644 --- a/api/Excel.IRtdServer.ServerStart.md +++ b/api/Excel.IRtdServer.ServerStart.md @@ -27,11 +27,11 @@ The **ServerStart** method is called immediately after a real-time data server -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _CallbackObject_|Required| **IRTDUpdateEvent**|The callback object.| -### Return Value +### Return value Long diff --git a/api/Excel.IconCriteria.Item.md b/api/Excel.IconCriteria.Item.md index b2977a28c23..5287877296d 100644 --- a/api/Excel.IconCriteria.Item.md +++ b/api/Excel.IconCriteria.Item.md @@ -27,7 +27,7 @@ Returns a single **[IconCriterion](Excel.IconCriterion.md)** object from the ** -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The index number of the **IconCriterion** object.| diff --git a/api/Excel.IconSet.Item.md b/api/Excel.IconSet.Item.md index c3e7e078e88..fa5b38d29d0 100644 --- a/api/Excel.IconSet.Item.md +++ b/api/Excel.IconSet.Item.md @@ -27,7 +27,7 @@ Returns an **[Icon](Excel.Icon.md)** object that represents a single icon from -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The index number of the **Icon** object.| diff --git a/api/Excel.IconSetCondition.ModifyAppliesToRange.md b/api/Excel.IconSetCondition.ModifyAppliesToRange.md index c53487c391f..7caa9003a7d 100644 --- a/api/Excel.IconSetCondition.ModifyAppliesToRange.md +++ b/api/Excel.IconSetCondition.ModifyAppliesToRange.md @@ -27,7 +27,7 @@ Sets the cell range to which this formatting rule applies. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Range_|Required| **Range**|The range to which this formatting rule will be applied.| diff --git a/api/Excel.IconSets.Item.md b/api/Excel.IconSets.Item.md index ed881781a3e..a9845aaf0af 100644 --- a/api/Excel.IconSets.Item.md +++ b/api/Excel.IconSets.Item.md @@ -27,7 +27,7 @@ Returns a single **[IconSet](Excel.IconSet.md)** object from the **IconSets** c -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The index number of the **IconSet** object.| diff --git a/api/Excel.Interior.Gradient.md b/api/Excel.Interior.Gradient.md index 0e1233aafb5..e5e070fb5b7 100644 --- a/api/Excel.Interior.Gradient.md +++ b/api/Excel.Interior.Gradient.md @@ -23,7 +23,7 @@ Returns or sets the **Gradient** property of an **Interior** object of a select _expression_ A variable that represents an [Interior](Excel.Interior(Graph property).md) object. -### Return Value +### Return value Object diff --git a/api/Excel.Legend.Clear.md b/api/Excel.Legend.Clear.md index 92de452bf5e..ed04aa4020e 100644 --- a/api/Excel.Legend.Clear.md +++ b/api/Excel.Legend.Clear.md @@ -23,7 +23,7 @@ Clears the entire object. _expression_ A variable that represents a [Legend](Excel.Legend(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Legend.Delete.md b/api/Excel.Legend.Delete.md index eb7beb82488..56e3ca3260d 100644 --- a/api/Excel.Legend.Delete.md +++ b/api/Excel.Legend.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [Legend](Excel.Legend(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Legend.LegendEntries.md b/api/Excel.Legend.LegendEntries.md index 0dfa436fbc5..089b3e79f09 100644 --- a/api/Excel.Legend.LegendEntries.md +++ b/api/Excel.Legend.LegendEntries.md @@ -27,11 +27,11 @@ Returns an object that represents either a single legend entry (a **[LegendEntr -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The number of the legend entry.| -### Return Value +### Return value Object diff --git a/api/Excel.Legend.Select.md b/api/Excel.Legend.Select.md index 1923be99262..d68f728d028 100644 --- a/api/Excel.Legend.Select.md +++ b/api/Excel.Legend.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [Legend](Excel.Legend(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.LegendEntries.Item.md b/api/Excel.LegendEntries.Item.md index c8af876608c..2cac0fece84 100644 --- a/api/Excel.LegendEntries.Item.md +++ b/api/Excel.LegendEntries.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The index number for the object.| -### Return Value +### Return value A **[LegendEntry](Excel.LegendEntry(object).md)** object contained by the collection. diff --git a/api/Excel.LegendEntry.Delete.md b/api/Excel.LegendEntry.Delete.md index 79c42578a33..7a19c29e96e 100644 --- a/api/Excel.LegendEntry.Delete.md +++ b/api/Excel.LegendEntry.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [LegendEntry](Excel.LegendEntry(Graph object).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.LegendEntry.Select.md b/api/Excel.LegendEntry.Select.md index 7d0b5f54d8e..3cd712a1ea5 100644 --- a/api/Excel.LegendEntry.Select.md +++ b/api/Excel.LegendEntry.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [LegendEntry](Excel.LegendEntry(Graph object).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.LegendKey.ClearFormats.md b/api/Excel.LegendKey.ClearFormats.md index b8e73690d39..15b16013a82 100644 --- a/api/Excel.LegendKey.ClearFormats.md +++ b/api/Excel.LegendKey.ClearFormats.md @@ -23,7 +23,7 @@ Clears the formatting of the object. _expression_ A variable that represents a [LegendKey](Excel.LegendKey(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.LegendKey.Delete.md b/api/Excel.LegendKey.Delete.md index 7675bf5718a..6211db10666 100644 --- a/api/Excel.LegendKey.Delete.md +++ b/api/Excel.LegendKey.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [LegendKey](Excel.LegendKey(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.LineFormat.InsetPen.md b/api/Excel.LineFormat.InsetPen.md index ad60e2b6d76..255143e5a66 100644 --- a/api/Excel.LineFormat.InsetPen.md +++ b/api/Excel.LineFormat.InsetPen.md @@ -20,7 +20,7 @@ Returns or sets whether lines are drawn inside the specified shape's boundaries. _expression_ A variable that represents a '[LineFormat](Excel.LineFormat.md)' object. -### Return Value +### Return value **[MsoTriState](Office.MsoTriState.md)** diff --git a/api/Excel.LinearGradient.Application.md b/api/Excel.LinearGradient.Application.md index 32a32abbda0..31b6a7e7770 100644 --- a/api/Excel.LinearGradient.Application.md +++ b/api/Excel.LinearGradient.Application.md @@ -23,7 +23,7 @@ When used without an object qualifier, this property returns an **Application** _expression_ A variable that represents a [LinearGradient](Excel.LinearGradient.md) object. -### Return Value +### Return value Application diff --git a/api/Excel.LinearGradient.ColorStops.md b/api/Excel.LinearGradient.ColorStops.md index d5097d8c92c..4e8ba82811c 100644 --- a/api/Excel.LinearGradient.ColorStops.md +++ b/api/Excel.LinearGradient.ColorStops.md @@ -23,7 +23,7 @@ Returns the **[ColorStops](Excel.ColorStops.md)** for the **LinearGradient** ob _expression_ A variable that represents a [LinearGradient](Excel.LinearGradient.md) object. -### Return Value +### Return value ColorStops diff --git a/api/Excel.LinearGradient.Creator.md b/api/Excel.LinearGradient.Creator.md index 2dd4bb2cd14..723462f6117 100644 --- a/api/Excel.LinearGradient.Creator.md +++ b/api/Excel.LinearGradient.Creator.md @@ -23,7 +23,7 @@ Returns a 32-bit integer that indicates the application in which this object was _expression_ A variable that represents a [LinearGradient](Excel.LinearGradient.md) object. -### Return Value +### Return value XlCreator diff --git a/api/Excel.LinearGradient.Degree.md b/api/Excel.LinearGradient.Degree.md index 0b7782cbb4f..b900f144560 100644 --- a/api/Excel.LinearGradient.Degree.md +++ b/api/Excel.LinearGradient.Degree.md @@ -23,7 +23,7 @@ The angle of the linear gradient fill within a selection. Read/write _expression_ A variable that represents a [LinearGradient](Excel.LinearGradient.md) object. -### Return Value +### Return value Double diff --git a/api/Excel.LinearGradient.Parent.md b/api/Excel.LinearGradient.Parent.md index d473bc5085d..8ed11a6b77f 100644 --- a/api/Excel.LinearGradient.Parent.md +++ b/api/Excel.LinearGradient.Parent.md @@ -23,7 +23,7 @@ Returns the parent object for the specified object. Read-only _expression_ A variable that represents a [LinearGradient](Excel.LinearGradient.md) object. -### Return Value +### Return value Object diff --git a/api/Excel.ListColumns.Add.md b/api/Excel.ListColumns.Add.md index 09728ba703a..8e0eb91b7b4 100644 --- a/api/Excel.ListColumns.Add.md +++ b/api/Excel.ListColumns.Add.md @@ -27,11 +27,11 @@ Adds a new column to the list object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Position_|Optional| **Variant**| **Integer** . Specifies the relative position of the new column that starts at 1. The previous column at this position is shifted outward.| -### Return Value +### Return value A **[ListColumn](Excel.ListColumn.md)** object that represents the new column. diff --git a/api/Excel.ListColumns.Item.md b/api/Excel.ListColumns.Item.md index 7b6abeda9c7..7052fb7fb49 100644 --- a/api/Excel.ListColumns.Item.md +++ b/api/Excel.ListColumns.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| diff --git a/api/Excel.ListObject.AlternativeText.md b/api/Excel.ListObject.AlternativeText.md index 0e089f9a07c..01143870ade 100644 --- a/api/Excel.ListObject.AlternativeText.md +++ b/api/Excel.ListObject.AlternativeText.md @@ -23,7 +23,7 @@ Returns or sets the descriptive (alternative) text string for the specified tabl _expression_ A variable that represents a '[ListObject](Excel.ListObject.md)' object. -### Return Value +### Return value **String** diff --git a/api/Excel.ListObject.Name.md b/api/Excel.ListObject.Name.md index e0f8140c42b..01dd2721796 100644 --- a/api/Excel.ListObject.Name.md +++ b/api/Excel.ListObject.Name.md @@ -23,7 +23,7 @@ Returns or sets a **String** value that represents the name of the **[ListObjec _expression_ An expression that returns a [ListObject](Excel.ListObject.md) object. -### Return Value +### Return value String diff --git a/api/Excel.ListObject.Publish.md b/api/Excel.ListObject.Publish.md index d66ff5ed2d3..2ec9b1ae193 100644 --- a/api/Excel.ListObject.Publish.md +++ b/api/Excel.ListObject.Publish.md @@ -27,12 +27,12 @@ Publishes the **[ListObject](Excel.ListObject.md)** object to a server that is -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Target_|Required| **Variant**|Contains an array of **String** values, as described in the Remarks section.| | _LinkSource_|Required| **Boolean**|| -### Return Value +### Return value A String value that represents the URL of the published list on the SharePoint site. diff --git a/api/Excel.ListObject.Resize.md b/api/Excel.ListObject.Resize.md index d0b3b7e5d77..39ed1006879 100644 --- a/api/Excel.ListObject.Resize.md +++ b/api/Excel.ListObject.Resize.md @@ -27,7 +27,7 @@ The **Resize** method allows a **[ListObject](Excel.ListObject.md)** object to -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Range_|Required| **[Range](Excel.Range(object).md)**|The new range.| diff --git a/api/Excel.ListObject.Summary.md b/api/Excel.ListObject.Summary.md index 2ea676ac517..10ee6e67df9 100644 --- a/api/Excel.ListObject.Summary.md +++ b/api/Excel.ListObject.Summary.md @@ -23,7 +23,7 @@ Returns or sets the description associated with the alternative text string for _expression_ A variable that represents a '[ListObject](Excel.ListObject.md)' object. -### Return Value +### Return value **String** diff --git a/api/Excel.ListObjects.Add.md b/api/Excel.ListObjects.Add.md index fabbdd6cbcd..79b8800d1b4 100644 --- a/api/Excel.ListObjects.Add.md +++ b/api/Excel.ListObjects.Add.md @@ -27,7 +27,7 @@ Creates a new list object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SourceType_|Optional|**[XlListObjectSourceType](Excel.XlListObjectSourceType.md)**|Indicates the kind of source for the query. | | _Source_|Optional|**Variant**|when SourceType = **xlSrcRange** . A **[Range](Excel.Range(object).md)** object representing the data source. If omitted, the Source will default to the range returned by list range detection code. when SourceType = **xlSrcExternal** . An array of **String** values specifying a connection to the source, containing the following elements:
| **Note** |
|---|
| **Nothing** is returned if the reference does not exist. |
A string containing an OLE DB or ODBC connection string. The ODBC connection string has the form "ODBC;
A QueryTable object from which the query information is initially copied, including the connection string and the SQL text, but not including the Destination range. Specifying a QueryTable object causes the Sql argument to be ignored.
An ADO or DAO Recordset object. Data is read from the ADO or DAO recordset. Microsoft Excel retains the recordset until the query table is deleted or the connection is changed. The resulting query table cannot be edited.
A Web query. A string in the form "URL;
Data Finder. A string in the form "FINDER;" where "FINDER;" is required but not localized. The rest of the string is the path and file name of a Data Finder file (*.dqy or *.iqy). The file is read when the Add method is run; subsequent calls to the Connection property of the query table will return strings beginning with "ODBC;" or "URL;" as appropriate.
A text file. A string in the form "TEXT;
``` Range.Item(1)``` returns the upper-left cell in the range.
``` Range.Item(2) ``` returns the cell immediately to the right of the upper-left cell.
| | _ColumnIndex_|Optional| **Variant**|A number or string that indicates the column number of the cell you want to access, starting with either 1 or "A" for the first column in the range.| diff --git a/api/Excel.Range.Justify.md b/api/Excel.Range.Justify.md index 18edb885f8b..0f5f539c5f0 100644 --- a/api/Excel.Range.Justify.md +++ b/api/Excel.Range.Justify.md @@ -23,7 +23,7 @@ Rearranges the text in a range so that it fills the range evenly. _expression_ A variable that represents a [Range](Excel.Range(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Range.ListNames.md b/api/Excel.Range.ListNames.md index 5abc3fed39e..86390708398 100644 --- a/api/Excel.Range.ListNames.md +++ b/api/Excel.Range.ListNames.md @@ -23,7 +23,7 @@ Pastes a list of all nonhidden names onto the worksheet, beginning with the firs _expression_ A variable that represents a [Range](Excel.Range(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Range.Merge.md b/api/Excel.Range.Merge.md index 5b0828ed634..194023ff71e 100644 --- a/api/Excel.Range.Merge.md +++ b/api/Excel.Range.Merge.md @@ -27,7 +27,7 @@ Creates a merged cell from the specified **[Range](Excel.Range(object).md)** ob -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Across_|Optional| **Variant**| **True** to merge cells in each row of the specified range as separate merged cells. The default value is **False** .| diff --git a/api/Excel.Range.NavigateArrow.md b/api/Excel.Range.NavigateArrow.md index 83d69c0030f..1898d82f410 100644 --- a/api/Excel.Range.NavigateArrow.md +++ b/api/Excel.Range.NavigateArrow.md @@ -27,13 +27,13 @@ Navigates a tracer arrow for the specified range to the precedent, dependent, or -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _TowardPrecedent_|Optional| **Variant**|Specifies the direction to navigate: **True** to navigate toward precedents, **False** to navigate toward dependent.| | _ArrowNumber_|Optional| **Variant**|Specifies the arrow number to navigate; corresponds to the numbered reference in the cell's formula.| | _LinkNumber_|Optional| **Variant**|If the arrow is an external reference arrow, this argument indicates which external reference to follow. If this argument is omitted, the first external reference is followed.| -### Return Value +### Return value Variant diff --git a/api/Excel.Range.NoteText.md b/api/Excel.Range.NoteText.md index 220211fbec8..2bc739870fd 100644 --- a/api/Excel.Range.NoteText.md +++ b/api/Excel.Range.NoteText.md @@ -27,13 +27,13 @@ Returns or sets the cell note associated with the cell in the upper-left corner -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Text_|Optional| **Variant**|The text to add to the note (up to 255 characters). The text is inserted starting at position _Start_, replacing _Length_ characters of the existing note. If this argument is omitted, this method returns the current text of the note starting at position _Start_, for _Length_ characters.| | _Start_|Optional| **Variant**|The starting position for the text that?s set or returned. If this argument is omitted, this method starts at the first character. To append text to the note, specify a number larger than the number of characters in the existing note.| | _Length_|Optional| **Variant**|The number of characters to be set or returned. If this argument is omitted, Microsoft Excel sets or returns characters from the starting position to the end of the note (up to 255 characters). If there are more than 255 characters from _Start_ to the end of the note, this method returns only 255 characters.| -### Return Value +### Return value String diff --git a/api/Excel.Range.Offset.md b/api/Excel.Range.Offset.md index 59d47c21118..fac558f205d 100644 --- a/api/Excel.Range.Offset.md +++ b/api/Excel.Range.Offset.md @@ -27,7 +27,7 @@ Returns a **[Range](Excel.Range(object).md)** object that represents a range th -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _RowOffset_|Optional| **Variant**|The number of rows (positive, negative, or 0 (zero)) by which the range is to be offset. Positive values are offset downward, and negative values are offset upward. The default value is 0.| | _ColumnOffset_|Optional| **Variant**|The number of columns (positive, negative, or 0 (zero)) by which the range is to be offset. Positive values are offset to the right, and negative values are offset to the left. The default value is 0.| diff --git a/api/Excel.Range.Parse.md b/api/Excel.Range.Parse.md index 0d05479f9d1..c6f69abeb88 100644 --- a/api/Excel.Range.Parse.md +++ b/api/Excel.Range.Parse.md @@ -27,12 +27,12 @@ Parses a range of data and breaks it into multiple cells. Distributes the conten -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ParseLine_|Optional| **Variant**|A string that contains left and right brackets to indicate where the cells should be split.| | _Destination_|Optional| **Variant**|A [Range](Excel.Range(object).md) object that represents the upper-left corner of the destination range for the parsed data. If this argument is omitted, Microsoft Excel parses in place.| -### Return Value +### Return value Variant diff --git a/api/Excel.Range.PasteSpecial.md b/api/Excel.Range.PasteSpecial.md index 1a3c84ae170..5e1fd801b12 100644 --- a/api/Excel.Range.PasteSpecial.md +++ b/api/Excel.Range.PasteSpecial.md @@ -27,14 +27,14 @@ Pastes a **[Range](Excel.Range(object).md)** that has been copied into the spec -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Paste_|Optional| **[XlPasteType](Excel.XlPasteType.md)**| The part of the range to be pasted, such as **xlPasteAll** or **xlPasteValues**.| | _Operation_|Optional| **[XlPasteSpecialOperation](Excel.XlPasteSpecialOperation.md)**| The paste operation, such as **xlPasteSpecialOperationAdd**.| | _SkipBlanks_|Optional| **Variant**| **True** to have blank cells in the range on the clipboard not be pasted into the destination range. The default value is **False**.| | _Transpose_|Optional| **Variant**| **True** to transpose rows and columns when the range is pasted.The default value is **False**.| -### Return Value +### Return value Variant diff --git a/api/Excel.Range.Phonetic.md b/api/Excel.Range.Phonetic.md index e467c0e9cf8..c4d27b37df2 100644 --- a/api/Excel.Range.Phonetic.md +++ b/api/Excel.Range.Phonetic.md @@ -23,7 +23,7 @@ Returns the **[Phonetic](Excel.Phonetic.md)** object, which contains informatio _expression_ An expression that returns a [Range](Excel.Range(Graph property).md) object. -### Return Value +### Return value Phonetic diff --git a/api/Excel.Range.PrintOut.md b/api/Excel.Range.PrintOut.md index bd846455c59..f07397bfa14 100644 --- a/api/Excel.Range.PrintOut.md +++ b/api/Excel.Range.PrintOut.md @@ -27,7 +27,7 @@ Prints the object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _From_|Optional| **Variant**|The number of the page at which to start printing. If this argument is omitted, printing starts at the beginning.| | _To_|Optional| **Variant**|The number of the last page to print. If this argument is omitted, printing ends with the last page.| @@ -38,7 +38,7 @@ Prints the object. | _Collate_|Optional| **Variant**| **True** to collate multiple copies.| | _PrToFileName_|Optional| **Variant**|If _PrintToFile_ is set to **True** , this argument specifies the name of the file you want to print to.| -### Return Value +### Return value Variant diff --git a/api/Excel.Range.PrintPreview.md b/api/Excel.Range.PrintPreview.md index 052cf913613..709b7b6c19e 100644 --- a/api/Excel.Range.PrintPreview.md +++ b/api/Excel.Range.PrintPreview.md @@ -27,11 +27,11 @@ Shows a preview of the object as it would look when printed. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _EnableChanges_|Optional| **Variant**|Pass a **Boolean** value to specify if the user can change the margins and other page setup options available in print preview.| -### Return Value +### Return value Variant diff --git a/api/Excel.Range.Range.md b/api/Excel.Range.Range.md index 67cc425e29f..db227fef135 100644 --- a/api/Excel.Range.Range.md +++ b/api/Excel.Range.Range.md @@ -27,7 +27,7 @@ Returns a **[Range](Excel.Range(object).md)** object that represents a cell or -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cell1_|Required| **Variant**|The name of the range. This must be an A1-style reference in the language of the macro. It can include the range operator (a colon), the intersection operator (a space), or the union operator (a comma). It can also include dollar signs, but they?re ignored. You can use a local defined name in any part of the range. If you use a name, the name is assumed to be in the language of the macro.| | _Cell2_|Optional| **Variant**|The cell in the upper-left and lower-right corner of the range. Can be a **Range** object that contains a single cell, an entire column, or entire row, or it can be a string that names a single cell in the language of the macro.| diff --git a/api/Excel.Range.RemoveDuplicates.md b/api/Excel.Range.RemoveDuplicates.md index b5908d19483..a0380cbae8f 100644 --- a/api/Excel.Range.RemoveDuplicates.md +++ b/api/Excel.Range.RemoveDuplicates.md @@ -27,7 +27,7 @@ Removes duplicate values from a range of values. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Columns_|Required| **Variant**|Array of indexes of the columns that contain the duplicate information. | | _Header_|Optional| **XlYesNoGuess**|Specifies whether the first row contains header information. **xlNo** is the default value; specify **xlGuess** if you want Excel to attempt to determine the header.| diff --git a/api/Excel.Range.RemoveSubtotal.md b/api/Excel.Range.RemoveSubtotal.md index d26d9d088e4..e56155ae673 100644 --- a/api/Excel.Range.RemoveSubtotal.md +++ b/api/Excel.Range.RemoveSubtotal.md @@ -23,7 +23,7 @@ Removes subtotals from a list. _expression_ A variable that represents a [Range](Excel.Range(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Range.Replace.md b/api/Excel.Range.Replace.md index d1511f082ff..4e9c6f4da6b 100644 --- a/api/Excel.Range.Replace.md +++ b/api/Excel.Range.Replace.md @@ -27,7 +27,7 @@ Returns a **Boolean** indicating characters in cells within the specified range -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _What_|Required| **Variant**|The string you want Microsoft Excel to search for.| | _Replacement_|Required| **Variant**|The replacement string.| @@ -38,7 +38,7 @@ Returns a **Boolean** indicating characters in cells within the specified range | _SearchFormat_|Optional| **Variant**|The search format for the method.| | _ReplaceFormat_|Optional| **Variant**|The replace format for the method.| -### Return Value +### Return value Boolean diff --git a/api/Excel.Range.Resize.md b/api/Excel.Range.Resize.md index 83e7e5fa99d..fd70422a672 100644 --- a/api/Excel.Range.Resize.md +++ b/api/Excel.Range.Resize.md @@ -27,12 +27,12 @@ Resizes the specified range. Returns a **[Range](Excel.Range(object).md)** obje -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _RowSize_|Optional| **Variant**|The number of rows in the new range. If this argument is omitted, the number of rows in the range remains the same.| | _ColumnSize_|Optional| **Variant**|The number of columns in the new range. If this argument is omitted, the number of columns in the range remains the same.| -### Return Value +### Return value Range diff --git a/api/Excel.Range.RowDifferences.md b/api/Excel.Range.RowDifferences.md index fce8d155794..5e75b173e65 100644 --- a/api/Excel.Range.RowDifferences.md +++ b/api/Excel.Range.RowDifferences.md @@ -27,11 +27,11 @@ Returns a **[Range](Excel.Range(object).md)** object that represents all the ce -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Comparison_|Required| **Variant**|A single cell to compare with the specified range.| -### Return Value +### Return value Range diff --git a/api/Excel.Range.Run.md b/api/Excel.Range.Run.md index beb94cc8285..014f8feb266 100644 --- a/api/Excel.Range.Run.md +++ b/api/Excel.Range.Run.md @@ -27,11 +27,11 @@ Runs the Microsoft Excel macro at this location. The range must be on a macro sh -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Arg30_|Optional| **Variant**|The arguments that should be passed to the function.| -### Return Value +### Return value Variant diff --git a/api/Excel.Range.Select.md b/api/Excel.Range.Select.md index a6c5efcd4d3..b9cfe111de8 100644 --- a/api/Excel.Range.Select.md +++ b/api/Excel.Range.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [Range](Excel.Range(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Range.SetCellDataTypeFromCell.md b/api/Excel.Range.SetCellDataTypeFromCell.md index 1d6e04d875f..637cca410c5 100644 --- a/api/Excel.Range.SetCellDataTypeFromCell.md +++ b/api/Excel.Range.SetCellDataTypeFromCell.md @@ -23,7 +23,7 @@ Creates another instance of a Linked data type such as [Stocks or Geography](htt ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Range_|Required| **Range**|The range _from_ which you want to copy the Linked data type. If the range has more than one cell in it, only the upper-left cell will be used. | diff --git a/api/Excel.Range.Show.md b/api/Excel.Range.Show.md index f333b7d4dde..81e7b0d1fd0 100644 --- a/api/Excel.Range.Show.md +++ b/api/Excel.Range.Show.md @@ -23,7 +23,7 @@ Scrolls through the contents of the active window to move the range into view. T _expression_ A variable that represents a [Range](Excel.Range(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Range.ShowDependents.md b/api/Excel.Range.ShowDependents.md index d88d5bdbdce..683837ce28d 100644 --- a/api/Excel.Range.ShowDependents.md +++ b/api/Excel.Range.ShowDependents.md @@ -27,11 +27,11 @@ Draws tracer arrows to the direct dependents of the range. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Remove_|Optional| **Variant**| **True** to remove one level of tracer arrows to direct dependents. **False** to expand one level of tracer arrows. The default value is **False** .| -### Return Value +### Return value Variant diff --git a/api/Excel.Range.ShowErrors.md b/api/Excel.Range.ShowErrors.md index b6d45dd594a..a70465c5d20 100644 --- a/api/Excel.Range.ShowErrors.md +++ b/api/Excel.Range.ShowErrors.md @@ -23,7 +23,7 @@ Draws tracer arrows through the precedents tree to the cell that's the source of _expression_ A variable that represents a [Range](Excel.Range(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Range.ShowPrecedents.md b/api/Excel.Range.ShowPrecedents.md index b02fc1b53fa..95a67bdda1f 100644 --- a/api/Excel.Range.ShowPrecedents.md +++ b/api/Excel.Range.ShowPrecedents.md @@ -27,11 +27,11 @@ Draws tracer arrows to the direct precedents of the range. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Remove_|Optional| **Variant**| **True** to remove one level of tracer arrows to direct precedents. **False** to expand one level of tracer arrows. The default value is **False** .| -### Return Value +### Return value Variant diff --git a/api/Excel.Range.Sort.md b/api/Excel.Range.Sort.md index 7577d5610c0..614b2d529c2 100644 --- a/api/Excel.Range.Sort.md +++ b/api/Excel.Range.Sort.md @@ -25,7 +25,7 @@ Sorts a range of values. ### Parameters -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Key1_|Optional| **Variant**|Specifies the first sort field, either as a range name (String) or **Range** object; determines the values to be sorted.| | _Order1_|Optional| **XlSortOrder**|Determines the sort order for the values specified in _Key1_.| diff --git a/api/Excel.Range.SortSpecial.md b/api/Excel.Range.SortSpecial.md index b230e6e0702..6c502e2a9e3 100644 --- a/api/Excel.Range.SortSpecial.md +++ b/api/Excel.Range.SortSpecial.md @@ -27,7 +27,7 @@ Uses East Asian sorting methods to sort the range, a PivotTable report, or uses -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SortMethod_|Optional| **[XlSortMethod](Excel.XlSortMethod.md)**|The type of sort. Some of these constants may not be available to you, depending on the language support (U.S. English, for example) that you?ve selected or installed.| | _Key1_|Optional| **Variant**|The first sort field, as either text (a PivotTable field or range name) or a **[Range](Excel.Range(object).md)** object ("Dept" or Cells(1, 1), for example).| @@ -45,7 +45,7 @@ Uses East Asian sorting methods to sort the range, a PivotTable report, or uses | _DataOption2_|Optional| **XlSortDataOption**|Specifies how to sort text in _Key2_. Cannot be used when sorting PivotTable reports.| | _DataOption3_|Optional| **XlSortDataOption**|Specifies how to sort text in _Key3_. Cannot be used when sorting PivotTable reports.| -### Return Value +### Return value Variant diff --git a/api/Excel.Range.SparklineGroups.md b/api/Excel.Range.SparklineGroups.md index 24b6cfd966c..237bb11da27 100644 --- a/api/Excel.Range.SparklineGroups.md +++ b/api/Excel.Range.SparklineGroups.md @@ -23,7 +23,7 @@ Returns a **[SparklineGroups](Excel.SparklineGroups.md)** object that represent _expression_ A variable that represents a '[Range](Excel.Range(object).md)' object. -### Return Value +### Return value **SparklineGroups** diff --git a/api/Excel.Range.Speak.md b/api/Excel.Range.Speak.md index c2481021ec7..d420c1af442 100644 --- a/api/Excel.Range.Speak.md +++ b/api/Excel.Range.Speak.md @@ -27,7 +27,7 @@ Causes the cells of the range to be spoken in row order or column order. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SpeakDirection_|Optional| **Variant**|The speak direction, by rows or columns.| | _SpeakFormulas_|Optional| **Variant**| **True** will cause formulas to be sent to the Text-To-Speech (TTS) engine for cells that have formulas. The value is sent if the cells do not have formulas. **False** (default) will cause values to always be sent to the TTS engine.| diff --git a/api/Excel.Range.SpecialCells.md b/api/Excel.Range.SpecialCells.md index 0d2ae1298b2..5ec1f4a248b 100644 --- a/api/Excel.Range.SpecialCells.md +++ b/api/Excel.Range.SpecialCells.md @@ -27,12 +27,12 @@ Returns a **[Range](Excel.Range(object).md)** object that represents all the ce -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Required| **[XlCellType](Excel.XlCellType.md)**|The cells to include.| | _Value_|Optional| **Variant**|If _Type_ is either **xlCellTypeConstants** or **xlCellTypeFormulas** , this argument is used to determine which types of cells to include in the result. These values can be added together to return more than one type. The default is to select all constants or formulas, no matter what the type.| -### Return Value +### Return value Range diff --git a/api/Excel.Range.SubscribeTo.md b/api/Excel.Range.SubscribeTo.md index f15840f3a63..cafee023c04 100644 --- a/api/Excel.Range.SubscribeTo.md +++ b/api/Excel.Range.SubscribeTo.md @@ -27,12 +27,12 @@ You have requested Help for a Visual Basic keyword used only on the Macintosh. F -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Edition_|Required| **String**|See help included with Microsoft Office Macintosh Edition.| | _Format_|Optional| **XlSubscribeToFormat**|See help included with Microsoft Office Macintosh Edition.| -### Return Value +### Return value Variant diff --git a/api/Excel.Range.Subtotal.md b/api/Excel.Range.Subtotal.md index 65dcc601b57..ab61c0b7a04 100644 --- a/api/Excel.Range.Subtotal.md +++ b/api/Excel.Range.Subtotal.md @@ -27,7 +27,7 @@ Creates subtotals for the range (or the current region, if the range is a single -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _GroupBy_|Required| **Long**|The field to group by, as a one-based integer offset. For more information, see the example.| | _Function_|Required| **[XlConsolidationFunction](Excel.XlConsolidationFunction.md)**|. The subtotal function.| @@ -36,7 +36,7 @@ Creates subtotals for the range (or the current region, if the range is a single | _PageBreaks_|Optional| **Variant**| **True** to add page breaks after each group. The default value is **False** .| | _SummaryBelowData_|Optional| **[XlSummaryRow](Excel.XlSummaryRow.md)**|. Places the summary data relative to the subtotal.| -### Return Value +### Return value Variant diff --git a/api/Excel.Range.Table.md b/api/Excel.Range.Table.md index 7730da0ae07..a0f3f7d029f 100644 --- a/api/Excel.Range.Table.md +++ b/api/Excel.Range.Table.md @@ -27,12 +27,12 @@ Creates a data table based on input values and formulas that you define on a wor -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _RowInput_|Optional| **Variant**|A single cell to use as the row input for your table.| | _ColumnInput_|Optional| **Variant**|A single cell to use as the column input for your table.| -### Return Value +### Return value Variant diff --git a/api/Excel.Range.TextToColumns.md b/api/Excel.Range.TextToColumns.md index b4ed5e5a9af..57809cd2b18 100644 --- a/api/Excel.Range.TextToColumns.md +++ b/api/Excel.Range.TextToColumns.md @@ -27,7 +27,7 @@ Parses a column of cells that contain text into several columns. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Destination_|Optional| **Variant**|A **Range** object that specifies where Microsoft Excel will place the results. If the range is larger than a single cell, the top left cell is used.| | _DataType_|Optional| **[XlTextParsingType](Excel.XlTextParsingType.md)**|The format of the text to be split into columns.| @@ -44,7 +44,7 @@ Parses a column of cells that contain text into several columns. | _ThousandsSeparator_|Optional| **Variant**|The thousands separator that Excel uses when recognizing numbers. The default setting is the system setting.| | _TrailingMinusNumbers_|Optional| **Variant**|Numbers that begin with a minus character.| -### Return Value +### Return value Variant diff --git a/api/Excel.Range.Ungroup.md b/api/Excel.Range.Ungroup.md index 0643faf4028..746c1b72e0a 100644 --- a/api/Excel.Range.Ungroup.md +++ b/api/Excel.Range.Ungroup.md @@ -23,7 +23,7 @@ Promotes a range in an outline (that is, decreases its outline level). The speci _expression_ A variable that represents a [Range](Excel.Range(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Range.Value.md b/api/Excel.Range.Value.md index b3a5c5dd654..09e87c7ee69 100644 --- a/api/Excel.Range.Value.md +++ b/api/Excel.Range.Value.md @@ -27,7 +27,7 @@ Returns or sets a **Variant** value that represents the value of the specified -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _RangeValueDataType_|Optional| **Variant**|The range value data type. Can be a **[xlRangeValueDataType](Excel.XlRangeValueDataType.md)** constant.| diff --git a/api/Excel.Ranges.Item.md b/api/Excel.Ranges.Item.md index 6d00051fd88..c358d87e9c1 100644 --- a/api/Excel.Ranges.Item.md +++ b/api/Excel.Ranges.Item.md @@ -27,7 +27,7 @@ Returns a **Range** object that represents a range of items in a workbook. Read -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The index value of the range item.| diff --git a/api/Excel.RecentFile.Open.md b/api/Excel.RecentFile.Open.md index 7c9526e3c65..922dd93fd15 100644 --- a/api/Excel.RecentFile.Open.md +++ b/api/Excel.RecentFile.Open.md @@ -23,7 +23,7 @@ Opens a recent workbook. _expression_ A variable that represents a [RecentFile](Excel.RecentFile.md) object. -### Return Value +### Return value A **[Workbook](Excel.Workbook.md)** object that represents the opened workbook. diff --git a/api/Excel.RecentFiles.Add.md b/api/Excel.RecentFiles.Add.md index 0975f41dfdf..2d681787fe3 100644 --- a/api/Excel.RecentFiles.Add.md +++ b/api/Excel.RecentFiles.Add.md @@ -27,11 +27,11 @@ Adds a file to the list of recently used files. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **String**|The file name.| -### Return Value +### Return value A **[RecentFile](Excel.RecentFile.md)** object contained by the collection. diff --git a/api/Excel.RecentFiles.Item.md b/api/Excel.RecentFiles.Item.md index 6078d60fe19..919dc76c455 100644 --- a/api/Excel.RecentFiles.Item.md +++ b/api/Excel.RecentFiles.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Long**|The index number of the object.| diff --git a/api/Excel.RectangularGradient.Application.md b/api/Excel.RectangularGradient.Application.md index 2c574ea5c90..71191864afc 100644 --- a/api/Excel.RectangularGradient.Application.md +++ b/api/Excel.RectangularGradient.Application.md @@ -23,7 +23,7 @@ When used without an object qualifier, this property returns an **[Application] _expression_ A variable that represents a [RectangularGradient](Excel.RectangularGradient.md) object. -### Return Value +### Return value Application diff --git a/api/Excel.RectangularGradient.ColorStops.md b/api/Excel.RectangularGradient.ColorStops.md index e8885b1dc05..5b87404948e 100644 --- a/api/Excel.RectangularGradient.ColorStops.md +++ b/api/Excel.RectangularGradient.ColorStops.md @@ -23,7 +23,7 @@ Returns the **[ColorStops](Excel.ColorStops.md)** collection for the **Rectangu _expression_ A variable that represents a [RectangularGradient](Excel.RectangularGradient.md) object. -### Return Value +### Return value ColorStops diff --git a/api/Excel.RectangularGradient.Creator.md b/api/Excel.RectangularGradient.Creator.md index af5a5111904..65348ad957c 100644 --- a/api/Excel.RectangularGradient.Creator.md +++ b/api/Excel.RectangularGradient.Creator.md @@ -23,7 +23,7 @@ Returns a 32-bit integer that indicates the application in which this object was _expression_ A variable that represents a [RectangularGradient](Excel.RectangularGradient.md) object. -### Return Value +### Return value XlCreator diff --git a/api/Excel.RectangularGradient.Parent.md b/api/Excel.RectangularGradient.Parent.md index a6b4f2addb6..6cd196a3372 100644 --- a/api/Excel.RectangularGradient.Parent.md +++ b/api/Excel.RectangularGradient.Parent.md @@ -23,7 +23,7 @@ Returns the parent object for the specified object. Read-only _expression_ A variable that represents a [RectangularGradient](Excel.RectangularGradient.md) object. -### Return Value +### Return value Object diff --git a/api/Excel.RectangularGradient.RectangleBottom.md b/api/Excel.RectangularGradient.RectangleBottom.md index 02359fb1f37..f6dfb5e43a6 100644 --- a/api/Excel.RectangularGradient.RectangleBottom.md +++ b/api/Excel.RectangularGradient.RectangleBottom.md @@ -23,7 +23,7 @@ Represents the point or vector that the gradient fill converges to. Read/write _expression_ A variable that represents a [RectangularGradient](Excel.RectangularGradient.md) object. -### Return Value +### Return value Double diff --git a/api/Excel.RectangularGradient.RectangleLeft.md b/api/Excel.RectangularGradient.RectangleLeft.md index 89e2f6ad576..204dc069746 100644 --- a/api/Excel.RectangularGradient.RectangleLeft.md +++ b/api/Excel.RectangularGradient.RectangleLeft.md @@ -23,7 +23,7 @@ Represents the point or vector that the gradient fill converges to. Read/write _expression_ A variable that represents a [RectangularGradient](Excel.RectangularGradient.md) object. -### Return Value +### Return value Double diff --git a/api/Excel.RectangularGradient.RectangleRight.md b/api/Excel.RectangularGradient.RectangleRight.md index e99a9ec104c..e765340787f 100644 --- a/api/Excel.RectangularGradient.RectangleRight.md +++ b/api/Excel.RectangularGradient.RectangleRight.md @@ -23,7 +23,7 @@ Represents the point or vector that the gradient fill converges to. Read/write _expression_ A variable that represents a [RectangularGradient](Excel.RectangularGradient.md) object. -### Return Value +### Return value Double diff --git a/api/Excel.RectangularGradient.RectangleTop.md b/api/Excel.RectangularGradient.RectangleTop.md index 7ff286e8da9..1a034910b72 100644 --- a/api/Excel.RectangularGradient.RectangleTop.md +++ b/api/Excel.RectangularGradient.RectangleTop.md @@ -23,7 +23,7 @@ Represents the point or vector that the gradient fill converges to. Read/write _expression_ A variable that represents a [RectangularGradient](Excel.RectangularGradient.md) object. -### Return Value +### Return value Double diff --git a/api/Excel.Research.IsResearchService.md b/api/Excel.Research.IsResearchService.md index b320260521b..9f11e512103 100644 --- a/api/Excel.Research.IsResearchService.md +++ b/api/Excel.Research.IsResearchService.md @@ -27,11 +27,11 @@ Indicates whether the GUID specified in the _ServiceID_ parameter corresponds t -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ServiceID_|Required| **String**|Specifies a GUID that identifies the research service.| -### Return Value +### Return value Boolean diff --git a/api/Excel.Research.Query.md b/api/Excel.Research.Query.md index 647578e7cea..5ce21879242 100644 --- a/api/Excel.Research.Query.md +++ b/api/Excel.Research.Query.md @@ -27,7 +27,7 @@ Specifies a research query. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ServiceID_|Required| **String**|Specifies a GUID that identifies the research service.| | _QueryString_|Optional| **Variant**|Specifies the query string.| @@ -37,7 +37,7 @@ Specifies a research query. | _NewQueryContextXML_|Optional| **Variant**|Specifies the XML file containing the new query content.| | _LaunchQuery_|Optional| **Boolean**| **True** launches the query. False displays the **Research** task pane scoped to search the specified research service.| -### Return Value +### Return value Variant diff --git a/api/Excel.Research.SetLanguagePair.md b/api/Excel.Research.SetLanguagePair.md index 24ca5ad4f7b..8c04bbc2a7b 100644 --- a/api/Excel.Research.SetLanguagePair.md +++ b/api/Excel.Research.SetLanguagePair.md @@ -27,12 +27,12 @@ Sets the languages for the translation service. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _LanguageFrom_|Required| **Long**|Specifies the language to translate from.| | _LanguageTo_|Required| **Long**|Specifies the langauge to translate to.| -### Return Value +### Return value Variant diff --git a/api/Excel.Scenario.ChangeScenario.md b/api/Excel.Scenario.ChangeScenario.md index 6d2867ce09a..7b80444de64 100644 --- a/api/Excel.Scenario.ChangeScenario.md +++ b/api/Excel.Scenario.ChangeScenario.md @@ -27,12 +27,12 @@ Changes the scenario to have a new set of changing cells and (optionally) scenar -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ChangingCells_|Required| **Variant**|A **Range** object that specifies the new set of changing cells for the scenario. The changing cells must be on the same sheet as the scenario.| | _Values_|Optional| **Variant**|An array that contains the new scenario values for the changing cells. If this argument is omitted, the scenario values are assumed to be the current values in the changing cells.| -### Return Value +### Return value Variant diff --git a/api/Excel.Scenario.Delete.md b/api/Excel.Scenario.Delete.md index b355200a818..d660e1fbddb 100644 --- a/api/Excel.Scenario.Delete.md +++ b/api/Excel.Scenario.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [Scenario](Excel.Scenario.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Scenario.Show.md b/api/Excel.Scenario.Show.md index 2a080dfd8ab..bbd67aa55a1 100644 --- a/api/Excel.Scenario.Show.md +++ b/api/Excel.Scenario.Show.md @@ -23,7 +23,7 @@ Shows the scenario by inserting its values on the worksheet. The affected cells _expression_ A variable that represents a [Scenario](Excel.Scenario.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Scenario.Values.md b/api/Excel.Scenario.Values.md index ae96859a285..7051fad97b4 100644 --- a/api/Excel.Scenario.Values.md +++ b/api/Excel.Scenario.Values.md @@ -27,7 +27,7 @@ Returns a **Variant** array that contains the current values of the changing ce -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The position of the value.| diff --git a/api/Excel.Scenarios.Add.md b/api/Excel.Scenarios.Add.md index 1c760c5a273..67fa5d3381d 100644 --- a/api/Excel.Scenarios.Add.md +++ b/api/Excel.Scenarios.Add.md @@ -27,7 +27,7 @@ Creates a new scenario and adds it to the list of scenarios that are available f -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **String**|The scenario name.| | _ChangingCells_|Required| **Variant**|A **[Range](Excel.Range(object).md)** object that refers to the changing cells for the scenario.| @@ -36,7 +36,7 @@ Creates a new scenario and adds it to the list of scenarios that are available f | _Locked_|Optional| **Variant**| **True** to lock the scenario to prevent changes. The default value is **True** .| | _Hidden_|Optional| **Variant**| **True** to hide the scenario. The default value is **False** .| -### Return Value +### Return value A **[Scenario](Excel.Scenario.md)** object that represents the new scenario. diff --git a/api/Excel.Scenarios.CreateSummary.md b/api/Excel.Scenarios.CreateSummary.md index 9d9c7bb0ba8..ac1be556823 100644 --- a/api/Excel.Scenarios.CreateSummary.md +++ b/api/Excel.Scenarios.CreateSummary.md @@ -27,12 +27,12 @@ Creates a new worksheet that contains a summary report for the scenarios on the -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ReportType_|Optional| **[XlSummaryReportType](Excel.XlSummaryReportType.md)**|Specifies whether the summary report is a PivotTable or standard summary.| | _ResultCells_|Optional| **Variant**|A **Range** object that represents the result cells on the specified worksheet. Normally, this range refers to one or more cells containing the formulas that depend on the changing cell values for your model ? that is, the cells that show the results of a particular scenario. If this argument is omitted, there are no result cells included in the report.| -### Return Value +### Return value Variant diff --git a/api/Excel.Scenarios.Item.md b/api/Excel.Scenarios.Item.md index 870e4d7c4bd..d2efdd9fe2f 100644 --- a/api/Excel.Scenarios.Item.md +++ b/api/Excel.Scenarios.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number for the object.| -### Return Value +### Return value A **[Scenario](Excel.Scenario.md)** object contained by the collection. diff --git a/api/Excel.Scenarios.Merge.md b/api/Excel.Scenarios.Merge.md index d992636c55d..404f6821319 100644 --- a/api/Excel.Scenarios.Merge.md +++ b/api/Excel.Scenarios.Merge.md @@ -27,11 +27,11 @@ Merges the scenarios from another sheet into the **[Scenarios](Excel.Scenarios. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Source_|Required| **Variant**|The name of the sheet that contains scenarios to be merged, or a **[Worksheet](Excel.Worksheet.md)** object that represents that sheet.| -### Return Value +### Return value Variant diff --git a/api/Excel.Series.ApplyDataLabels.md b/api/Excel.Series.ApplyDataLabels.md index 843e141e1d5..879bb329609 100644 --- a/api/Excel.Series.ApplyDataLabels.md +++ b/api/Excel.Series.ApplyDataLabels.md @@ -27,7 +27,7 @@ Applies data labels to a series. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Optional| **[XlDataLabelsType](Excel.XlDataLabelsType.md)**|The type of data label to apply.| | _LegendKey_|Optional| **Variant**| **True** to show the legend key next to the point. The default value is **False** .| diff --git a/api/Excel.Series.AxisGroup.md b/api/Excel.Series.AxisGroup.md index af08e5d9390..c7dbe37ff58 100644 --- a/api/Excel.Series.AxisGroup.md +++ b/api/Excel.Series.AxisGroup.md @@ -23,7 +23,7 @@ Returns or sets the group for the specified series. Read/write _expression_ A variable that represents a '[Series](Excel.Series(object).md)' object. -### Return Value +### Return value **[XlAxisGroup](Excel.XlAxisGroup.md)** diff --git a/api/Excel.Series.ClearFormats.md b/api/Excel.Series.ClearFormats.md index 9fe324cd261..cc96b225551 100644 --- a/api/Excel.Series.ClearFormats.md +++ b/api/Excel.Series.ClearFormats.md @@ -23,7 +23,7 @@ Clears the formatting of the object. _expression_ A variable that represents a [Series](Excel.Series(Graph object).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Series.Copy.md b/api/Excel.Series.Copy.md index b89d1acde5e..bf1dd407227 100644 --- a/api/Excel.Series.Copy.md +++ b/api/Excel.Series.Copy.md @@ -23,7 +23,7 @@ If the series has a picture fill, then this method copies the picture to the Cli _expression_ A variable that represents a [Series](Excel.Series(Graph object).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Series.DataLabels.md b/api/Excel.Series.DataLabels.md index f2f0a8d3d9a..e8e0ca67c9f 100644 --- a/api/Excel.Series.DataLabels.md +++ b/api/Excel.Series.DataLabels.md @@ -27,11 +27,11 @@ Returns an object that represents either a single data label (a **[DataLabel](E -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The number of the data label.| -### Return Value +### Return value Object diff --git a/api/Excel.Series.Delete.md b/api/Excel.Series.Delete.md index f8d95174675..a7b22361287 100644 --- a/api/Excel.Series.Delete.md +++ b/api/Excel.Series.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [Series](Excel.Series(Graph object).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Series.ErrorBar.md b/api/Excel.Series.ErrorBar.md index 68492788eb8..7f3786f439b 100644 --- a/api/Excel.Series.ErrorBar.md +++ b/api/Excel.Series.ErrorBar.md @@ -27,7 +27,7 @@ Applies error bars to the series. **Variant** . -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Direction_|Required| **[XlErrorBarDirection](Excel.XlErrorBarDirection.md)**|The error bar direction.| | _Include_|Required| **[XlErrorBarInclude](Excel.XlErrorBarInclude.md)**|The error bar parts to include.| @@ -35,7 +35,7 @@ Applies error bars to the series. **Variant** . | _Amount_|Optional| **Variant**|The error amount. Used for only the positive error amount when _Type_ is **xlErrorBarTypeCustom** .| | _MinusValues_|Optional| **Variant**|The negative error amount when _Type_ is **xlErrorBarTypeCustom** .| -### Return Value +### Return value Variant diff --git a/api/Excel.Series.InvertColor.md b/api/Excel.Series.InvertColor.md index e52a0fcd230..c4fd90d115e 100644 --- a/api/Excel.Series.InvertColor.md +++ b/api/Excel.Series.InvertColor.md @@ -23,7 +23,7 @@ Returns or sets the fill color for negative data points in a series. Read/write _expression_ A variable that represents a '[Series](Excel.Series(object).md)' object. -### Return Value +### Return value **Integer** diff --git a/api/Excel.Series.InvertColorIndex.md b/api/Excel.Series.InvertColorIndex.md index 0d107aa7d97..ef1d26797b4 100644 --- a/api/Excel.Series.InvertColorIndex.md +++ b/api/Excel.Series.InvertColorIndex.md @@ -23,7 +23,7 @@ Returns or sets the fill color for negative data points in a series. Read/write _expression_ A variable that represents a '[Series](Excel.Series(object).md)' object. -### Return Value +### Return value **Integer** diff --git a/api/Excel.Series.Paste.md b/api/Excel.Series.Paste.md index 1d1b58bf438..87afc84ef08 100644 --- a/api/Excel.Series.Paste.md +++ b/api/Excel.Series.Paste.md @@ -23,7 +23,7 @@ Pastes a picture from the Clipboard as the marker on the selected series. _expression_ A variable that represents a [Series](./Excel.Series(Graph object).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Series.PlotColorIndex.md b/api/Excel.Series.PlotColorIndex.md index 5d80b03df8b..635d0b11d8b 100644 --- a/api/Excel.Series.PlotColorIndex.md +++ b/api/Excel.Series.PlotColorIndex.md @@ -23,7 +23,7 @@ Returns an index value that is used internally to associate series formatting wi _expression_ A variable that represents a '[Series](Excel.Series(object).md)' object. -### Return Value +### Return value **Integer** diff --git a/api/Excel.Series.Points.md b/api/Excel.Series.Points.md index df41055c61e..3285ceb8b32 100644 --- a/api/Excel.Series.Points.md +++ b/api/Excel.Series.Points.md @@ -27,11 +27,11 @@ Returns an object that represents a single point (a **[Point](Excel.Point(objec -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The name or number of the point.| -### Return Value +### Return value Object diff --git a/api/Excel.Series.Select.md b/api/Excel.Series.Select.md index dcbfe2a180e..0ece81a87d7 100644 --- a/api/Excel.Series.Select.md +++ b/api/Excel.Series.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [Series](./Excel.Series(Graph object).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Series.Trendlines.md b/api/Excel.Series.Trendlines.md index cd7fbf47041..d186af1aa0a 100644 --- a/api/Excel.Series.Trendlines.md +++ b/api/Excel.Series.Trendlines.md @@ -27,11 +27,11 @@ Returns an object that represents a single trendline (a **[Trendline](Excel.Tre -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The name or number of the trendline.| -### Return Value +### Return value Object diff --git a/api/Excel.SeriesCollection.Add.md b/api/Excel.SeriesCollection.Add.md index d7c491dc3a1..0918fc208a9 100644 --- a/api/Excel.SeriesCollection.Add.md +++ b/api/Excel.SeriesCollection.Add.md @@ -27,7 +27,7 @@ Adds one or more new series to the **SeriesCollection** collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Source_|Required| **Variant**|The new data as a **[Range](Excel.Range(object).md)** object.| | _Rowcol_|Optional| **[XlRowCol](Excel.XlRowCol.md)**|. Specifies whether the new values are in the rows or columns of the specified range.| @@ -35,7 +35,7 @@ Adds one or more new series to the **SeriesCollection** collection. | _CategoryLabels_|Optional| **Variant**| **True** if the first row or column contains the name of the category labels. **False** if the first row or column contains the first data point of the series. If this argument is omitted, Microsoft Excel attempts to determine the location of the category label from the contents of the first row or column.| | _Replace_|Optional| **Variant**|If _CategoryLabels_ is **True** and _Replace_ is **True** , the specified categories replace the categories that currently exist for the series. If _Replace_ is **False** , the existing categories will not be replaced. The default value is **False** .| -### Return Value +### Return value A **[Series](Excel.Series(object).md)** object that represents the new series. diff --git a/api/Excel.SeriesCollection.Extend.md b/api/Excel.SeriesCollection.Extend.md index 4df17d73b78..914b848c60f 100644 --- a/api/Excel.SeriesCollection.Extend.md +++ b/api/Excel.SeriesCollection.Extend.md @@ -27,13 +27,13 @@ Adds new data points to an existing series collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Source_|Required| **Variant**|The new data to be added to the **SeriesCollection** object as a **Range** object.| | _Rowcol_|Optional| **Variant**|Specifies whether the new values are in the rows or columns of the given range source. Can be one of the following **[XlRowCol](Excel.XlRowCol.md)** constants: **xlRows** or **xlColumns** . If this argument is omitted, Microsoft Excel attempts to determine where the values are by the size and orientation of the selected range or by the dimensions of the array.| | _CategoryLabels_|Optional| **Variant**| **True** to have the first row or column contain the name of the category labels. **False** to have the first row or column contain the first data point of the series. If this argument is omitted, Microsoft Excel attempts to determine the location of the category label from the contents of the first row or column.| -### Return Value +### Return value Variant diff --git a/api/Excel.SeriesCollection.Item.md b/api/Excel.SeriesCollection.Item.md index 1ca37547bff..a0e0e3179e9 100644 --- a/api/Excel.SeriesCollection.Item.md +++ b/api/Excel.SeriesCollection.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number for the object.| -### Return Value +### Return value A **[Series](Excel.Series(object).md)** object contained by the collection. diff --git a/api/Excel.SeriesCollection.NewSeries.md b/api/Excel.SeriesCollection.NewSeries.md index 77ddb266e04..98721302a75 100644 --- a/api/Excel.SeriesCollection.NewSeries.md +++ b/api/Excel.SeriesCollection.NewSeries.md @@ -23,7 +23,7 @@ Creates a new series. Returns a **[Series](Excel.Series(object).md)** object th _expression_ A variable that represents a [SeriesCollection](./Excel.SeriesCollection.md) object. -### Return Value +### Return value Series diff --git a/api/Excel.SeriesCollection.Paste.md b/api/Excel.SeriesCollection.Paste.md index 35460126fe5..c8a548bffa8 100644 --- a/api/Excel.SeriesCollection.Paste.md +++ b/api/Excel.SeriesCollection.Paste.md @@ -27,7 +27,7 @@ Pastes data from the Clipboard into the specified series collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Rowcol_|Optional| **[XlRowCol](Excel.XlRowCol.md)**|. Specifies whether the values corresponding to a particular data series are in rows or columns.| | _SeriesLabels_|Optional| **Variant**| **True** to use the contents of the cell in the first column of each row (or the first row of each column) as the name of the data series in that row (or column). **False** to use the contents of the cell in the first column of each row (or the first row of each column) as the first data point in the data series. The default value is **False** .| @@ -35,7 +35,7 @@ Pastes data from the Clipboard into the specified series collection. | _Replace_|Optional| **Variant**| **True** to apply categories while replacing existing categories with information from the copied range. **False** to insert new categories without replacing any old ones. The default value is **True** .| | _NewSeries_|Optional| **Variant**| **True** to paste the data as a new series. **False** to paste the data as new points in an existing series. The default value is **True** .| -### Return Value +### Return value Variant diff --git a/api/Excel.SeriesLines.Delete.md b/api/Excel.SeriesLines.Delete.md index d6c4a4402c9..f2013a2d8e8 100644 --- a/api/Excel.SeriesLines.Delete.md +++ b/api/Excel.SeriesLines.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [SeriesLines](./Excel.SeriesLines(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.SeriesLines.Select.md b/api/Excel.SeriesLines.Select.md index 8d959279914..99f6ad45bb9 100644 --- a/api/Excel.SeriesLines.Select.md +++ b/api/Excel.SeriesLines.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [SeriesLines](./Excel.SeriesLines(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ServerViewableItems.Add.md b/api/Excel.ServerViewableItems.Add.md index 640cd58cbba..3a34e0358fb 100644 --- a/api/Excel.ServerViewableItems.Add.md +++ b/api/Excel.ServerViewableItems.Add.md @@ -27,11 +27,11 @@ Adds a reference to the **[ServerViewableItems](Excel.ServerViewableItems.md)** -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Obj_|Required| **Variant**|The reference to an object. The object can be a reference to sheets or named items (for example, named ranges, charts, tables, and PivotTables). You cannot have both sheets and named items in the same collection.| -### Return Value +### Return value Object diff --git a/api/Excel.ServerViewableItems.Delete.md b/api/Excel.ServerViewableItems.Delete.md index f828d0e20f6..2d6074f28a6 100644 --- a/api/Excel.ServerViewableItems.Delete.md +++ b/api/Excel.ServerViewableItems.Delete.md @@ -27,7 +27,7 @@ Deletes a reference to an object in the **[ServerViewableItems](Excel.ServerVie -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Long**|The index of the object you want to delete.| diff --git a/api/Excel.ServerViewableItems.Item.md b/api/Excel.ServerViewableItems.Item.md index 098df99aa78..ff02cc7b374 100644 --- a/api/Excel.ServerViewableItems.Item.md +++ b/api/Excel.ServerViewableItems.Item.md @@ -27,11 +27,11 @@ Returns a single object from the **[ServerViewableItems](Excel.ServerViewableIt -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Long**|The index of the object to be returned.| -### Return Value +### Return value Object diff --git a/api/Excel.ShadowFormat.IncrementOffsetX.md b/api/Excel.ShadowFormat.IncrementOffsetX.md index d492225cf25..9e47eeeddbd 100644 --- a/api/Excel.ShadowFormat.IncrementOffsetX.md +++ b/api/Excel.ShadowFormat.IncrementOffsetX.md @@ -27,7 +27,7 @@ Changes the horizontal offset of the shadow by the specified number of points. U -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Increment_|Required| **Single**|Specifies how far the shadow offset is to be moved horizontally, in points. A positive value moves the shadow to the right; a negative value moves it to the left.| diff --git a/api/Excel.ShadowFormat.IncrementOffsetY.md b/api/Excel.ShadowFormat.IncrementOffsetY.md index 2a05fddbf4e..fd50855c5fa 100644 --- a/api/Excel.ShadowFormat.IncrementOffsetY.md +++ b/api/Excel.ShadowFormat.IncrementOffsetY.md @@ -27,7 +27,7 @@ Changes the vertical offset of the shadow by the specified number of points. Use -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Increment_|Required| **Single**|Specifies how far the shadow offset is to be moved vertically, in points. A positive value moves the shadow down; a negative value moves it up.| diff --git a/api/Excel.Shape.CopyPicture.md b/api/Excel.Shape.CopyPicture.md index fcfe7cd960b..1dc988d64bf 100644 --- a/api/Excel.Shape.CopyPicture.md +++ b/api/Excel.Shape.CopyPicture.md @@ -27,7 +27,7 @@ Copies the selected object to the Clipboard as a picture. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Appearance_|Optional| **Variant**|A [XlPictureAppearance](Excel.XlPictureAppearance.md) constant that specifies how the picture should be copied. The default value is **xlScreen** .| | _Format_|Optional| **Variant**|A [XlCopyPictureFormat](Excel.XlCopyPictureFormat.md) constant that specifies the format of the picture. The default value is **xlPicture** .| diff --git a/api/Excel.Shape.Cut.md b/api/Excel.Shape.Cut.md index 214df80c52b..10381c94b17 100644 --- a/api/Excel.Shape.Cut.md +++ b/api/Excel.Shape.Cut.md @@ -23,7 +23,7 @@ Cuts the object to the Clipboard. _expression_ A variable that represents a [Shape](./Excel.Shape.md) object. -### Return Value +### Return value Nothing diff --git a/api/Excel.Shape.Duplicate.md b/api/Excel.Shape.Duplicate.md index 010682f4e71..a5dbc1e5570 100644 --- a/api/Excel.Shape.Duplicate.md +++ b/api/Excel.Shape.Duplicate.md @@ -23,7 +23,7 @@ Duplicates the object and returns a reference to the new copy. _expression_ A variable that represents a [Shape](./Excel.Shape.md) object. -### Return Value +### Return value Shape diff --git a/api/Excel.Shape.Flip.md b/api/Excel.Shape.Flip.md index 8de67176da0..44d1a096451 100644 --- a/api/Excel.Shape.Flip.md +++ b/api/Excel.Shape.Flip.md @@ -27,7 +27,7 @@ Flips the specified shape around its horizontal or vertical axis. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _FlipCmd_|Required| **[MsoFlipCmd](./Office.MsoFlipCmd.md)**|Specifies whether the shape is to be flipped horizontally or vertically.| diff --git a/api/Excel.Shape.HasSmartArt.md b/api/Excel.Shape.HasSmartArt.md index 1d2223552b6..f52a96b479c 100644 --- a/api/Excel.Shape.HasSmartArt.md +++ b/api/Excel.Shape.HasSmartArt.md @@ -23,7 +23,7 @@ Returns whether there is a SmartArt diagram present on the specified shape. Read _expression_ A variable that represents a '[Shape](Excel.Shape.md)' object. -### Return Value +### Return value **[MsoTriState](./Office.MsoTriState.md)** diff --git a/api/Excel.Shape.IncrementLeft.md b/api/Excel.Shape.IncrementLeft.md index d04b16b7ebe..55035320356 100644 --- a/api/Excel.Shape.IncrementLeft.md +++ b/api/Excel.Shape.IncrementLeft.md @@ -27,7 +27,7 @@ Moves the specified shape horizontally by the specified number of points. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Increment_|Required| **Single**|Specifies how far the shape is to be moved horizontally, in points. A positive value moves the shape to the right; a negative value moves it to the left.| diff --git a/api/Excel.Shape.IncrementRotation.md b/api/Excel.Shape.IncrementRotation.md index 1166c17ef3a..99f3e0cdf08 100644 --- a/api/Excel.Shape.IncrementRotation.md +++ b/api/Excel.Shape.IncrementRotation.md @@ -27,7 +27,7 @@ Changes the rotation of the specified shape around the z-axis by the specified n -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Increment_|Required| **Single**|Specifies how far the shape is to be rotated horizontally, in degrees. A positive value rotates the shape clockwise; a negative value rotates it counterclockwise.| diff --git a/api/Excel.Shape.IncrementTop.md b/api/Excel.Shape.IncrementTop.md index 3a5613181cf..a0a1b0a9dfe 100644 --- a/api/Excel.Shape.IncrementTop.md +++ b/api/Excel.Shape.IncrementTop.md @@ -27,7 +27,7 @@ Moves the specified shape vertically by the specified number of points. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Increment_|Required| **Single**|Specifies how far the shape object is to be moved vertically, in points. A positive value moves the shape down; a negative value moves it up.| diff --git a/api/Excel.Shape.ScaleHeight.md b/api/Excel.Shape.ScaleHeight.md index 76f06cd1f78..f882aba2a11 100644 --- a/api/Excel.Shape.ScaleHeight.md +++ b/api/Excel.Shape.ScaleHeight.md @@ -27,7 +27,7 @@ Scales the height of the shape by a specified factor. For pictures and OLE objec -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Factor_|Required| **Single**|Specifies the ratio between the height of the shape after you resize it and the current or original height. For example, to make a rectangle 50 percent larger, specify 1.5 for this argument.| | _RelativeToOriginalSize_|Required| **[MsoTriState](./Office.MsoTriState.md)**| **msoTrue** to scale the shape relative to its original size. **msoFalse** to scale it relative to its current size. You can specify **msoTrue** for this argument only if the specified shape is a picture or an OLE object.| diff --git a/api/Excel.Shape.ScaleWidth.md b/api/Excel.Shape.ScaleWidth.md index 731d5c59ed2..8e86ef0cb5b 100644 --- a/api/Excel.Shape.ScaleWidth.md +++ b/api/Excel.Shape.ScaleWidth.md @@ -27,7 +27,7 @@ Scales the width of the shape by a specified factor. For pictures and OLE object -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Factor_|Required| **Single**|Specifies the ratio between the width of the shape after you resize it and the current or original width. For example, to make a rectangle 50 percent larger, specify 1.5 for this argument.| | _RelativeToOriginalSize_|Required| **[MsoTriState](./Office.MsoTriState.md)**| **False** to scale it relative to its current size. You can specify **True** for this argument only if the specified shape is a picture or an OLE object.| diff --git a/api/Excel.Shape.Select.md b/api/Excel.Shape.Select.md index d735432e032..e66a040e758 100644 --- a/api/Excel.Shape.Select.md +++ b/api/Excel.Shape.Select.md @@ -27,7 +27,7 @@ Selects the object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Replace_|Optional| **Variant**| (used only with sheets). **True** to replace the current selection with the specified object. **False** to extend the current selection to include any previously selected objects and the specified object.| diff --git a/api/Excel.Shape.SmartArt.md b/api/Excel.Shape.SmartArt.md index 2de6ad7f739..95c15ef7fd7 100644 --- a/api/Excel.Shape.SmartArt.md +++ b/api/Excel.Shape.SmartArt.md @@ -23,7 +23,7 @@ Returns an object that represents the SmartArt associated with the shape. Read-o _expression_ A variable that represents a '[Shape](Excel.Shape.md)' object. -### Return Value +### Return value **[SmartArt](./Office.SmartArt.md)** diff --git a/api/Excel.Shape.Title.md b/api/Excel.Shape.Title.md index 3324425ca4c..5a0c1830bdd 100644 --- a/api/Excel.Shape.Title.md +++ b/api/Excel.Shape.Title.md @@ -23,7 +23,7 @@ Returns or sets the title of the alternative text associated with the specified _expression_ A variable that represents a '[Shape](Excel.Shape.md)' object. -### Return Value +### Return value **String** diff --git a/api/Excel.Shape.Ungroup.md b/api/Excel.Shape.Ungroup.md index c98e2b08d67..374e5962c72 100644 --- a/api/Excel.Shape.Ungroup.md +++ b/api/Excel.Shape.Ungroup.md @@ -23,7 +23,7 @@ Ungroups any grouped shapes in the specified shape or range of shapes. Disassemb _expression_ A variable that represents a [Shape](./Excel.Shape.md) object. -### Return Value +### Return value A **[ShapeRange](Excel.ShapeRange.md)** object that represents the ungrouped shapes. diff --git a/api/Excel.Shape.ZOrder.md b/api/Excel.Shape.ZOrder.md index 49c655987c2..844f57d6bc9 100644 --- a/api/Excel.Shape.ZOrder.md +++ b/api/Excel.Shape.ZOrder.md @@ -27,7 +27,7 @@ Moves the specified shape in front of or behind other shapes in the collection ( -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ZOrderCmd_|Required| **[MsoZOrderCmd](./Office.MsoZOrderCmd.md)**|Specifies where to move the specified shape relative to the other shapes.| diff --git a/api/Excel.ShapeNode.Points.md b/api/Excel.ShapeNode.Points.md index 447d792761f..b2646a10cb9 100644 --- a/api/Excel.ShapeNode.Points.md +++ b/api/Excel.ShapeNode.Points.md @@ -23,7 +23,7 @@ Returns the position of the specified node as a coordinate pair. Each coordinate _expression_ An expression that returns a [ShapeNode](./Excel.ShapeNode.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.ShapeNodes.Delete.md b/api/Excel.ShapeNodes.Delete.md index 06a01c9f7f1..1429c4db68d 100644 --- a/api/Excel.ShapeNodes.Delete.md +++ b/api/Excel.ShapeNodes.Delete.md @@ -27,7 +27,7 @@ Deletes the object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Integer**|The index of the object to delete.| diff --git a/api/Excel.ShapeNodes.Insert.md b/api/Excel.ShapeNodes.Insert.md index d4128edac9a..54e858fe30d 100644 --- a/api/Excel.ShapeNodes.Insert.md +++ b/api/Excel.ShapeNodes.Insert.md @@ -27,7 +27,7 @@ Inserts a node into a freeform shape. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Integer**| **Long** . The number of the shape node after which to insert a new node.| | _SegmentType_|Required| **[MsoSegmentType](./Office.MsoSegmentType.md)**|The segment type.| diff --git a/api/Excel.ShapeNodes.Item.md b/api/Excel.ShapeNodes.Item.md index 0d684d350d9..8717d6521a0 100644 --- a/api/Excel.ShapeNodes.Item.md +++ b/api/Excel.ShapeNodes.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number for the object.| -### Return Value +### Return value A **[ShapeNode](Excel.ShapeNode.md)** object contained by the collection. diff --git a/api/Excel.ShapeNodes.SetEditingType.md b/api/Excel.ShapeNodes.SetEditingType.md index 1f0bd7ec9ce..4b71c6af0d6 100644 --- a/api/Excel.ShapeNodes.SetEditingType.md +++ b/api/Excel.ShapeNodes.SetEditingType.md @@ -27,7 +27,7 @@ Sets the editing type of the node specified by _Index_. If the node is a contro -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Long**|The node whose editing type is to be set.| | _EditingType_|Required| **[MsoEditingType](./Office.MsoEditingType.md)**|The editing property of the vertex.| diff --git a/api/Excel.ShapeNodes.SetPosition.md b/api/Excel.ShapeNodes.SetPosition.md index 4d0a20ce9fc..f87cd69af67 100644 --- a/api/Excel.ShapeNodes.SetPosition.md +++ b/api/Excel.ShapeNodes.SetPosition.md @@ -27,7 +27,7 @@ Sets the location of the node specified by _Index_. Note that, depending on the -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Long**|The node whose position is to be set.| | _X1_|Required| **Single**|The position (in points) of the new node relative to the upper-left corner of the document.| diff --git a/api/Excel.ShapeNodes.SetSegmentType.md b/api/Excel.ShapeNodes.SetSegmentType.md index aa22f53ffc7..de037a7f47a 100644 --- a/api/Excel.ShapeNodes.SetSegmentType.md +++ b/api/Excel.ShapeNodes.SetSegmentType.md @@ -27,7 +27,7 @@ Sets the segment type of the segment that follows the node specified by _Index_ -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Long**|The node whose segment type is to be set.| | _SegmentType_|Required| **[MsoSegmentType](./Office.MsoSegmentType.md)**|Specifies if the segment is straight or curved.| diff --git a/api/Excel.ShapeRange.Align.md b/api/Excel.ShapeRange.Align.md index 399ca9ffc37..9c251970f74 100644 --- a/api/Excel.ShapeRange.Align.md +++ b/api/Excel.ShapeRange.Align.md @@ -27,7 +27,7 @@ Aligns the shapes in the specified range of shapes. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _AlignCmd_|Required| **[MsoAlignCmd](./Office.MsoAlignCmd.md)**|Specifies the way the shapes in the specified shape range are to be aligned.| | _RelativeTo_|Required| **[MsoTriState](./Office.MsoTriState.md)**|Not used in Microsoft Excel. Must be **False** .| diff --git a/api/Excel.ShapeRange.Distribute.md b/api/Excel.ShapeRange.Distribute.md index 75d83b19102..5997f54c599 100644 --- a/api/Excel.ShapeRange.Distribute.md +++ b/api/Excel.ShapeRange.Distribute.md @@ -27,7 +27,7 @@ Horizontally or vertically distributes the shapes in the specified range of shap -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _DistributeCmd_|Required| **[MsoDistributeCmd](./Office.MsoDistributeCmd.md)**|Specifies whether shapes in the range are to be distributed horizontally or vertically.| | _RelativeTo_|Required| **[MsoTriState](./Office.MsoTriState.md)**|Not used in Microsoft Excel. Must be **False** .| diff --git a/api/Excel.ShapeRange.Flip.md b/api/Excel.ShapeRange.Flip.md index bb6fcabd65e..486dc669beb 100644 --- a/api/Excel.ShapeRange.Flip.md +++ b/api/Excel.ShapeRange.Flip.md @@ -27,7 +27,7 @@ Flips the specified shape around its horizontal or vertical axis. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _FlipCmd_|Required| **[MsoFlipCmd](./Office.MsoFlipCmd.md)**|Specifies whether the shape is to be flipped horizontally or vertically.| diff --git a/api/Excel.ShapeRange.Group.md b/api/Excel.ShapeRange.Group.md index 65b1a30e87f..e661339bb7a 100644 --- a/api/Excel.ShapeRange.Group.md +++ b/api/Excel.ShapeRange.Group.md @@ -23,7 +23,7 @@ Groups the shapes in the specified range. _expression_ A variable that represents a [ShapeRange](./Excel.ShapeRange.md) object. -### Return Value +### Return value A **[Shape](Excel.Shape.md)** object that represents the grouped shape. diff --git a/api/Excel.ShapeRange.IncrementLeft.md b/api/Excel.ShapeRange.IncrementLeft.md index a4a2a81fdfb..d545f0bc9e0 100644 --- a/api/Excel.ShapeRange.IncrementLeft.md +++ b/api/Excel.ShapeRange.IncrementLeft.md @@ -27,7 +27,7 @@ Moves the specified shape horizontally by the specified number of points. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Increment_|Required| **Single**|Specifies how far the shape is to be moved horizontally, in points. A positive value moves the shape to the right; a negative value moves it to the left.| diff --git a/api/Excel.ShapeRange.IncrementRotation.md b/api/Excel.ShapeRange.IncrementRotation.md index 09a2aa22ddc..2affc09a186 100644 --- a/api/Excel.ShapeRange.IncrementRotation.md +++ b/api/Excel.ShapeRange.IncrementRotation.md @@ -27,7 +27,7 @@ Changes the rotation of the specified shape around the z-axis by the specified n -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Increment_|Required| **Single**|Specifies how far the shape is to be rotated horizontally, in degrees. A positive value rotates the shape clockwise; a negative value rotates it counterclockwise.| diff --git a/api/Excel.ShapeRange.IncrementTop.md b/api/Excel.ShapeRange.IncrementTop.md index c3b7aae8697..5a79f98da9d 100644 --- a/api/Excel.ShapeRange.IncrementTop.md +++ b/api/Excel.ShapeRange.IncrementTop.md @@ -27,7 +27,7 @@ Moves the specified shape vertically by the specified number of points. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Increment_|Required| **Single**|Specifies how far the shape object is to be moved vertically, in points. A positive value moves the shape down; a negative value moves it up.| diff --git a/api/Excel.ShapeRange.Item.md b/api/Excel.ShapeRange.Item.md index 76d60a0ce5c..1c9136fa0c4 100644 --- a/api/Excel.ShapeRange.Item.md +++ b/api/Excel.ShapeRange.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number for the object.| -### Return Value +### Return value A **[Shape](Excel.Shape.md)** object contained by the collection. diff --git a/api/Excel.ShapeRange.Regroup.md b/api/Excel.ShapeRange.Regroup.md index ef1820965fc..c45b69c4dd5 100644 --- a/api/Excel.ShapeRange.Regroup.md +++ b/api/Excel.ShapeRange.Regroup.md @@ -23,7 +23,7 @@ Regroups the group that the specified shape range belonged to previously. Return _expression_ A variable that represents a [ShapeRange](./Excel.ShapeRange.md) object. -### Return Value +### Return value Shape diff --git a/api/Excel.ShapeRange.ScaleHeight.md b/api/Excel.ShapeRange.ScaleHeight.md index 9660616ebae..16107ab4c00 100644 --- a/api/Excel.ShapeRange.ScaleHeight.md +++ b/api/Excel.ShapeRange.ScaleHeight.md @@ -27,7 +27,7 @@ Scales the height of the shape by a specified factor. For pictures and OLE objec -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Factor_|Required| **Single**|Specifies the ratio between the height of the shape after you resize it and the current or original height. For example, to make a rectangle 50 percent larger, specify 1.5 for this argument.| | _RelativeToOriginalSize_|Required| **[MsoTriState](./Office.MsoTriState.md)**| **msoTrue** to scale the shape relative to its original size. **msoFalse** to scale it relative to its current size. You can specify **msoTrue** for this argument only if the specified shape is a picture or an OLE object.| diff --git a/api/Excel.ShapeRange.ScaleWidth.md b/api/Excel.ShapeRange.ScaleWidth.md index 8bc0cb7d908..ccad0d82db4 100644 --- a/api/Excel.ShapeRange.ScaleWidth.md +++ b/api/Excel.ShapeRange.ScaleWidth.md @@ -27,7 +27,7 @@ Scales the width of the shape by a specified factor. For pictures and OLE object -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Factor_|Required| **Single**|Specifies the ratio between the width of the shape after you resize it and the current or original width. For example, to make a rectangle 50 percent larger, specify 1.5 for this argument.| | _RelativeToOriginalSize_|Required| **[MsoTriState](./Office.MsoTriState.md)**| **False** to scale it relative to its current size. You can specify **True** for this argument only if the specified shape is a picture or an OLE object.| diff --git a/api/Excel.ShapeRange.Select.md b/api/Excel.ShapeRange.Select.md index 772816257b0..f4ae806ffe6 100644 --- a/api/Excel.ShapeRange.Select.md +++ b/api/Excel.ShapeRange.Select.md @@ -27,7 +27,7 @@ Selects the object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Replace_|Optional| **Variant**| (used only with sheets). **True** to replace the current selection with the specified object. **False** to extend the current selection to include any previously selected objects and the specified object.| diff --git a/api/Excel.ShapeRange.Title.md b/api/Excel.ShapeRange.Title.md index 13921afbd65..810e0c20c91 100644 --- a/api/Excel.ShapeRange.Title.md +++ b/api/Excel.ShapeRange.Title.md @@ -23,7 +23,7 @@ Returns or sets the title of the alternative text associated with the specified _expression_ A variable that represents a '[ShapeRange](Excel.ShapeRange.md)' object. -### Return Value +### Return value **String** diff --git a/api/Excel.ShapeRange.Ungroup.md b/api/Excel.ShapeRange.Ungroup.md index 3a26c022c81..250ec0f295d 100644 --- a/api/Excel.ShapeRange.Ungroup.md +++ b/api/Excel.ShapeRange.Ungroup.md @@ -23,7 +23,7 @@ Ungroups any grouped shapes in the specified shape or range of shapes. Disassemb _expression_ A variable that represents a [ShapeRange](./Excel.ShapeRange.md) object. -### Return Value +### Return value A **[ShapeRange](Excel.ShapeRange.md)** object that represents the ungrouped shapes. diff --git a/api/Excel.ShapeRange.ZOrder.md b/api/Excel.ShapeRange.ZOrder.md index 5ab48d08efc..3acd5c4bf5c 100644 --- a/api/Excel.ShapeRange.ZOrder.md +++ b/api/Excel.ShapeRange.ZOrder.md @@ -27,7 +27,7 @@ Moves the specified shape in front of or behind other shapes in the collection ( -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ZOrderCmd_|Required| **[MsoZOrderCmd](./Office.MsoZOrderCmd.md)**|Specifies where to move the specified shape relative to the other shapes.| diff --git a/api/Excel.Shapes.AddCallout.md b/api/Excel.Shapes.AddCallout.md index aefa80dae80..8cd03a9dc34 100644 --- a/api/Excel.Shapes.AddCallout.md +++ b/api/Excel.Shapes.AddCallout.md @@ -27,7 +27,7 @@ ms.date: 06/08/2017 -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Required| **[MsoCalloutType](./Office.MsoCalloutType.md)**|The type of callout line.| | _Left_|Required| **Single**|The position (in points) of the upper-left corner of the callout's bounding box relative to the upper-left corner of the document.| @@ -35,7 +35,7 @@ ms.date: 06/08/2017 | _Width_|Required| **Single**|The width of the callout's bounding box, in points.| | _Height_|Required| **Single**|The height of the callout's bounding box, in points.| -### Return Value +### Return value Shape diff --git a/api/Excel.Shapes.AddConnector.md b/api/Excel.Shapes.AddConnector.md index 707022a3da5..1c96d758eb0 100644 --- a/api/Excel.Shapes.AddConnector.md +++ b/api/Excel.Shapes.AddConnector.md @@ -27,7 +27,7 @@ Creates a connector. Returns a **[Shape](Excel.Shape.md)** object that represen -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Required| **[MsoConnectorType](./Office.MsoConnectorType.md)**|The connector type to add.| | _BeginX_|Required| **Single**|The horizontal position (in points) of the connector's starting point relative to the upper-left corner of the document.| @@ -35,7 +35,7 @@ Creates a connector. Returns a **[Shape](Excel.Shape.md)** object that represen | _EndX_|Required| **Single**|The horizontal position (in points) of the connector's end point relative to the upper-left corner of the document.| | _EndY_|Required| **Single**|The veritcal position (in points) of the connector's end point relative to the upper-left corner of the document.| -### Return Value +### Return value Shape diff --git a/api/Excel.Shapes.AddCurve.md b/api/Excel.Shapes.AddCurve.md index 18630672d4f..f422cedd4dc 100644 --- a/api/Excel.Shapes.AddCurve.md +++ b/api/Excel.Shapes.AddCurve.md @@ -27,11 +27,11 @@ Returns a **[Shape](Excel.Shape.md)** object that represents a B?zier curve in -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SafeArrayOfPoints_|Required| **Variant**|An array of coordinate pairs that specifies the vertices and control points of the curve. The first point you specify is the starting vertex, and the next two points are control points for the first B?zier segment. Then, for each additional segment of the curve, you specify a vertex and two control points. The last point you specify is the ending vertex for the curve. Note that you must always specify 3n + 1 points, where n is the number of segments in the curve.| -### Return Value +### Return value Shape diff --git a/api/Excel.Shapes.AddFormControl.md b/api/Excel.Shapes.AddFormControl.md index 3411dafe58b..6210ce38bf6 100644 --- a/api/Excel.Shapes.AddFormControl.md +++ b/api/Excel.Shapes.AddFormControl.md @@ -27,7 +27,7 @@ Creates a Microsoft Excel control. Returns a **[Shape](Excel.Shape.md)** object -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Required| **[XlFormControl](Excel.XlFormControl.md)**|The Microsoft Excel control type. You cannot create an edit box on a worksheet.| | _Left_|Required| **Long**|The initial coordinates of the new object (in points) relative to the upper-left corner of cell A1 on a worksheet or to the upper-left corner of a chart.| @@ -35,7 +35,7 @@ Creates a Microsoft Excel control. Returns a **[Shape](Excel.Shape.md)** object | _Width_|Required| **Long**|The initial size of the new object, in points.| | _Height_|Required| **Long**|The initial size of the new object, in points.| -### Return Value +### Return value Shape diff --git a/api/Excel.Shapes.AddLabel.md b/api/Excel.Shapes.AddLabel.md index 78de392e117..276fe959d72 100644 --- a/api/Excel.Shapes.AddLabel.md +++ b/api/Excel.Shapes.AddLabel.md @@ -27,7 +27,7 @@ Creates a label. Returns a **[Shape](Excel.Shape.md)** object that represents t -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Orientation_|Required| **[MsoTextOrientation](./Office.MsoTextOrientation.md)**|The text orientation within the label.| | _Left_|Required| **Single**|The position (in points) of the upper-left corner of the label relative to the upper-left corner of the document.| @@ -35,7 +35,7 @@ Creates a label. Returns a **[Shape](Excel.Shape.md)** object that represents t | _Width_|Required| **Single**|The width of the label, in points.| | _Height_|Required| **Single**|The height of the label, in points.| -### Return Value +### Return value Shape diff --git a/api/Excel.Shapes.AddLine.md b/api/Excel.Shapes.AddLine.md index 83ab80ea940..46ee86baa50 100644 --- a/api/Excel.Shapes.AddLine.md +++ b/api/Excel.Shapes.AddLine.md @@ -27,14 +27,14 @@ As it applies to the **Shapes** object, returns a **[Shape](Excel.Shape.md)** o -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _BeginX_|Required| **Single**|The position (in points) of the line's starting point relative to the upper-left corner of the document.| | _BeginY_|Required| **Single**|The position (in points) of the line's starting point relative to the upper-left corner of the document.| | _EndX_|Required| **Single**|The position (in points) of the line's end point relative to the upper-left corner of the document.| | _EndY_|Required| **Single**|The position (in points) of the line's end point relative to the upper-left corner of the document.| -### Return Value +### Return value Shape diff --git a/api/Excel.Shapes.AddOLEObject.md b/api/Excel.Shapes.AddOLEObject.md index 54fc8c562ce..cedc470c977 100644 --- a/api/Excel.Shapes.AddOLEObject.md +++ b/api/Excel.Shapes.AddOLEObject.md @@ -27,7 +27,7 @@ Creates an OLE object. Returns a **[Shape](Excel.Shape.md)** object that repres -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ClassType_|Optional| **Variant**|(you must specify either _ClassType_ or _FileName_). A string that contains the programmatic identifier for the object to be created. If _ClassType_ is specified, _FileName_ and _Link_ are ignored.| | _Filename_|Optional| **Variant**| The file from which the object is to be created. If the path isn?t specified, the current working folder is used. You must specify either the _ClassType_ or _FileName_ argument for the object, but not both.| @@ -41,7 +41,7 @@ Creates an OLE object. Returns a **[Shape](Excel.Shape.md)** object that repres | _Width_|Optional| **Variant**|The initial dimensions of the OLE object, in points.| | _Height_|Optional| **Variant**|The initial dimensions of the OLE object, in points.| -### Return Value +### Return value Shape diff --git a/api/Excel.Shapes.AddPicture.md b/api/Excel.Shapes.AddPicture.md index 22edd8b3b5f..89a7d99380d 100644 --- a/api/Excel.Shapes.AddPicture.md +++ b/api/Excel.Shapes.AddPicture.md @@ -27,7 +27,7 @@ Creates a picture from an existing file. Returns a **Shape** object that repres -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|The file from which the OLE object is to be created.| | _LinkToFile_|Required| **[MsoTriState](./Office.MsoTriState.md)**| The file to link to.| @@ -37,7 +37,7 @@ Creates a picture from an existing file. Returns a **Shape** object that repres | _Width_|Required| **Single**|The width of the picture, in points (enter -1 to retain the width of the existing file).| | _Height_|Required| **Single**|The height of the picture, in points (enter -1 to retain the height of the existing file).| -### Return Value +### Return value Shape diff --git a/api/Excel.Shapes.AddPolyline.md b/api/Excel.Shapes.AddPolyline.md index b551fc7cada..76b8edb961c 100644 --- a/api/Excel.Shapes.AddPolyline.md +++ b/api/Excel.Shapes.AddPolyline.md @@ -27,11 +27,11 @@ Creates an open polyline or a closed polygon drawing. Returns a **[Shape](Excel -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SafeArrayOfPoints_|Required| **Variant**|An array of coordinate pairs that specifies the polyline drawing's vertices.| -### Return Value +### Return value Shape diff --git a/api/Excel.Shapes.AddShape.md b/api/Excel.Shapes.AddShape.md index 6034841a2be..11d4393bebc 100644 --- a/api/Excel.Shapes.AddShape.md +++ b/api/Excel.Shapes.AddShape.md @@ -27,7 +27,7 @@ Returns a **[Shape](Excel.Shape.md)** object that represents the new AutoShape -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Required| **[MsoAutoShapeType](./Office.MsoAutoShapeType.md)**|Specifies the type of AutoShape to create.| | _Left_|Required| **Single**|The position (in points) of the upper-left corner of the AutoShape's bounding box relative to the upper-left corner of the document.| @@ -35,7 +35,7 @@ Returns a **[Shape](Excel.Shape.md)** object that represents the new AutoShape | _Width_|Required| **Single**|The width of the AutoShape's bounding box, in points.| | _Height_|Required| **Single**|The height of the AutoShape's bounding box, in points.| -### Return Value +### Return value Shape diff --git a/api/Excel.Shapes.AddSmartArt.md b/api/Excel.Shapes.AddSmartArt.md index 9ccafc73a59..7e4192b09a3 100644 --- a/api/Excel.Shapes.AddSmartArt.md +++ b/api/Excel.Shapes.AddSmartArt.md @@ -27,7 +27,7 @@ Creates a new SmartArt graphic with the specified layout. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Layout_|Required| **[SmartArtLayout](./Office.SmartArtLayout.md)**|An object that represents the layout to use.| | _Left_|Optional| **Variant**|The distance, in points, from the left edge of the object to the left edge of column A (on a worksheet) or the left edge of the chart area (on a chart).| @@ -35,7 +35,7 @@ Creates a new SmartArt graphic with the specified layout. | _Width_|Optional| **Variant**|The width, in points, of the object.| | _Height_|Optional| **Variant**|The width, in points, of the object.| -### Return Value +### Return value Shape diff --git a/api/Excel.Shapes.AddTextEffect.md b/api/Excel.Shapes.AddTextEffect.md index 0c7ec3432a7..2ce2eab3341 100644 --- a/api/Excel.Shapes.AddTextEffect.md +++ b/api/Excel.Shapes.AddTextEffect.md @@ -27,7 +27,7 @@ Creates a WordArt object. Returns a **[Shape](Excel.Shape.md)** object that rep -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _PresetTextEffect_|Required| **[MsoPresetTextEffect](./Office.MsoPresetTextEffect.md)**|The preset text effect.| | _Text_|Required| **String**|The text in the WordArt.| @@ -38,7 +38,7 @@ Creates a WordArt object. Returns a **[Shape](Excel.Shape.md)** object that rep | _Left_|Required| **Single**|The position (in points) of the upper-left corner of the WordArt's bounding box relative to the upper-left corner of the document.| | _Top_|Required| **Single**|The position (in points) of the upper-left corner of the WordArt's bounding box relative to the top of the document.| -### Return Value +### Return value Shape diff --git a/api/Excel.Shapes.AddTextbox.md b/api/Excel.Shapes.AddTextbox.md index a5a0a27ada9..b68ba48f263 100644 --- a/api/Excel.Shapes.AddTextbox.md +++ b/api/Excel.Shapes.AddTextbox.md @@ -27,7 +27,7 @@ Creates a text box. Returns a **[Shape](Excel.Shape.md)** object that represent -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Orientation_|Required| **[MsoTextOrientation](./Office.MsoTextOrientation.md)**|The orientation of the textbox.| | _Left_|Required| **Single**|The position (in points) of the upper-left corner of the text box relative to the upper-left corner of the document.| @@ -35,7 +35,7 @@ Creates a text box. Returns a **[Shape](Excel.Shape.md)** object that represent | _Width_|Required| **Single**|The width of the text box, in points.| | _Height_|Required| **Single**|The height of the text box, in points.| -### Return Value +### Return value Shape diff --git a/api/Excel.Shapes.BuildFreeform.md b/api/Excel.Shapes.BuildFreeform.md index 3b25a57e037..3eb0c67c6dc 100644 --- a/api/Excel.Shapes.BuildFreeform.md +++ b/api/Excel.Shapes.BuildFreeform.md @@ -27,13 +27,13 @@ Builds a freeform object. Returns a **[FreeformBuilder](Excel.FreeformBuilder.m -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _EditingType_|Required| **[MsoEditingType](./Office.MsoEditingType.md)**|The editing property of the first node.| | _X1_|Required| **Single**|The position (in points) of the first node in the freeform drawing relative to the upper-left corner of the document.| | _Y1_|Required| **Single**|The position (in points) of the first node in the freeform drawing relative to the upper-left corner of the document.| -### Return Value +### Return value FreeformBuilder diff --git a/api/Excel.Shapes.Item.md b/api/Excel.Shapes.Item.md index 542c123e539..a98fc5a64ee 100644 --- a/api/Excel.Shapes.Item.md +++ b/api/Excel.Shapes.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number for the object.| -### Return Value +### Return value A **[Shape](Excel.Shape.md)** object contained by the collection. diff --git a/api/Excel.Shapes.Range.md b/api/Excel.Shapes.Range.md index b7c9111344b..20d896e9827 100644 --- a/api/Excel.Shapes.Range.md +++ b/api/Excel.Shapes.Range.md @@ -27,7 +27,7 @@ Returns a **[ShapeRange](Excel.ShapeRange.md)** object that represents a subset -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The individual shapes to be included in the range. Can be an integer that specifies the index number of the shape, a string that specifies the name of the shape, or an array that contains either integers or strings.| diff --git a/api/Excel.SheetViews.Item.md b/api/Excel.SheetViews.Item.md index bd97f7a327f..ec0d424a990 100644 --- a/api/Excel.SheetViews.Item.md +++ b/api/Excel.SheetViews.Item.md @@ -27,7 +27,7 @@ Returns a **SheetView** object that represents views in a workbook. Read-only. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|Index value of the view.| diff --git a/api/Excel.Sheets.Add.md b/api/Excel.Sheets.Add.md index b7944d87c69..b936f252200 100644 --- a/api/Excel.Sheets.Add.md +++ b/api/Excel.Sheets.Add.md @@ -27,14 +27,14 @@ Creates a new worksheet, chart, or macro sheet. The new worksheet becomes the ac -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Before_|Optional| **Variant**|An object that specifies the sheet before which the new sheet is added.| | _After_|Optional| **Variant**|An object that specifies the sheet after which the new sheet is added.| | _Count_|Optional| **Variant**|The number of sheets to be added. The default value is one.| | _Type_|Optional| **Variant**|Specifies the sheet type. Can be one of the following **[XlSheetType](Excel.XlSheetType.md)** constants: **xlWorksheet** , **xlChart** , **xlExcel4MacroSheet** , or **xlExcel4IntlMacroSheet** . If you are inserting a sheet based on an existing template, specify the path to the template. The default value is **xlWorksheet** .| -### Return Value +### Return value An Object value that represents the new worksheet, chart, or macro sheet. diff --git a/api/Excel.Sheets.Copy.md b/api/Excel.Sheets.Copy.md index 1f751a3a9bc..7809ba2ecda 100644 --- a/api/Excel.Sheets.Copy.md +++ b/api/Excel.Sheets.Copy.md @@ -27,7 +27,7 @@ Copies the sheet to another location in the workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Before_|Optional| **Variant**|The sheet before which the copied sheet will be placed. You cannot specify _Before_ if you specify _After_.| | _After_|Optional| **Variant**|The sheet after which the copied sheet will be placed. You cannot specify _After_ if you specify _Before_.| diff --git a/api/Excel.Sheets.FillAcrossSheets.md b/api/Excel.Sheets.FillAcrossSheets.md index b1be3d94c3c..aa624a14e77 100644 --- a/api/Excel.Sheets.FillAcrossSheets.md +++ b/api/Excel.Sheets.FillAcrossSheets.md @@ -27,7 +27,7 @@ Copies a range to the same area on all other worksheets in a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Range_|Required| **Range**|The range to fill on all the worksheets in the collection. The range must be from a worksheet within the collection.| | _Type_|Optional| **[XlFillWith](Excel.XlFillWith.md)**|Specifies how to copy the range.| diff --git a/api/Excel.Sheets.Item.md b/api/Excel.Sheets.Item.md index 23da04c117a..7a7f4dc8c0f 100644 --- a/api/Excel.Sheets.Item.md +++ b/api/Excel.Sheets.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| diff --git a/api/Excel.Sheets.Move.md b/api/Excel.Sheets.Move.md index 47b7ff38976..c67bb3bc2b7 100644 --- a/api/Excel.Sheets.Move.md +++ b/api/Excel.Sheets.Move.md @@ -27,7 +27,7 @@ Moves the sheet to another location in the workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Before_|Optional| **Variant**|The sheet before which the moved sheet will be placed. You cannot specify _Before_ if you specify _After_.| | _After_|Optional| **Variant**| The sheet after which the moved sheet will be placed. You cannot specify _After_ if you specify _Before_.| diff --git a/api/Excel.Sheets.PrintOut.md b/api/Excel.Sheets.PrintOut.md index 28b4394b96b..a66686a1ac4 100644 --- a/api/Excel.Sheets.PrintOut.md +++ b/api/Excel.Sheets.PrintOut.md @@ -27,7 +27,7 @@ Prints the object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _From_|Optional| **Variant**|The number of the page at which to start printing. If this argument is omitted, printing starts at the beginning.| | _To_|Optional| **Variant**|The number of the last page to print. If this argument is omitted, printing ends with the last page.| @@ -39,7 +39,7 @@ Prints the object. | _PrToFileName_|Optional| **Variant**|If _PrintToFile_ is set to **True** , this argument specifies the name of the file you want to print to.| | _IgnorePrintAreas_|Optional| **Variant**| **True** to ignore print areas and print the entire object.| -### Return Value +### Return value Variant diff --git a/api/Excel.Sheets.PrintPreview.md b/api/Excel.Sheets.PrintPreview.md index 877b6a48ec5..1e2ce213398 100644 --- a/api/Excel.Sheets.PrintPreview.md +++ b/api/Excel.Sheets.PrintPreview.md @@ -27,7 +27,7 @@ Shows a preview of the object as it would look when printed. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _EnableChanges_|Optional| **Variant**|Pass a **Boolean** value to specify if the user can change the margins and other page setup options available in print preview.| diff --git a/api/Excel.Sheets.Select.md b/api/Excel.Sheets.Select.md index 42c83924ca1..e45856b3bbc 100644 --- a/api/Excel.Sheets.Select.md +++ b/api/Excel.Sheets.Select.md @@ -27,7 +27,7 @@ Selects the object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Replace_|Optional| **Variant**| (used only with sheets). **True** to replace the current selection with the specified object. **False** to extend the current selection to include any previously selected objects and the specified object.| diff --git a/api/Excel.Slicer.ActiveItem.md b/api/Excel.Slicer.ActiveItem.md index 3f785985722..9af3a8c6125 100644 --- a/api/Excel.Slicer.ActiveItem.md +++ b/api/Excel.Slicer.ActiveItem.md @@ -23,7 +23,7 @@ Returns a **[SlicerItem](Excel.SlicerItem.md)** object that represents the slic _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value **SlicerItem** diff --git a/api/Excel.Slicer.Caption.md b/api/Excel.Slicer.Caption.md index da64ca6d0f1..edb04668266 100644 --- a/api/Excel.Slicer.Caption.md +++ b/api/Excel.Slicer.Caption.md @@ -23,7 +23,7 @@ Returns or sets the caption of the specified slicer. Read/write. _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value String diff --git a/api/Excel.Slicer.ColumnWidth.md b/api/Excel.Slicer.ColumnWidth.md index 0df6d66223e..3f22587f253 100644 --- a/api/Excel.Slicer.ColumnWidth.md +++ b/api/Excel.Slicer.ColumnWidth.md @@ -23,7 +23,7 @@ Returns or sets the width, in points, of each column in the slicer. Read/write _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value Double diff --git a/api/Excel.Slicer.Delete.md b/api/Excel.Slicer.Delete.md index 5662bad7af0..5720c82f3e0 100644 --- a/api/Excel.Slicer.Delete.md +++ b/api/Excel.Slicer.Delete.md @@ -23,7 +23,7 @@ Deletes the slicer and removes it from the associated **[Slicers](Excel.Slicers _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value Nothing diff --git a/api/Excel.Slicer.DisableMoveResizeUI.md b/api/Excel.Slicer.DisableMoveResizeUI.md index 943a1c1fa59..b476cb2bf9d 100644 --- a/api/Excel.Slicer.DisableMoveResizeUI.md +++ b/api/Excel.Slicer.DisableMoveResizeUI.md @@ -23,7 +23,7 @@ Returns or sets whether the specified slicer can be moved or resized by using th _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value Boolean diff --git a/api/Excel.Slicer.DisplayHeader.md b/api/Excel.Slicer.DisplayHeader.md index cfb5ed6f92e..ce891857075 100644 --- a/api/Excel.Slicer.DisplayHeader.md +++ b/api/Excel.Slicer.DisplayHeader.md @@ -23,7 +23,7 @@ Returns or sets whether the header that displays the slicer **[Caption](Excel.S _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value Boolean diff --git a/api/Excel.Slicer.Height.md b/api/Excel.Slicer.Height.md index 794c363ab0d..3b2946da76f 100644 --- a/api/Excel.Slicer.Height.md +++ b/api/Excel.Slicer.Height.md @@ -23,7 +23,7 @@ Returns or sets the height of the specified slicer, in points. Read/write. _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value Double diff --git a/api/Excel.Slicer.Left.md b/api/Excel.Slicer.Left.md index ff27cc0789d..c653dd25cbe 100644 --- a/api/Excel.Slicer.Left.md +++ b/api/Excel.Slicer.Left.md @@ -23,7 +23,7 @@ Returns or sets the horizontal position of the specified slicer, in points, rela _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value Double diff --git a/api/Excel.Slicer.Locked.md b/api/Excel.Slicer.Locked.md index 3798a6c526f..4d8058c31cb 100644 --- a/api/Excel.Slicer.Locked.md +++ b/api/Excel.Slicer.Locked.md @@ -23,7 +23,7 @@ Returns or sets whether the specified slicer can be modified when the sheet that _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value Boolean diff --git a/api/Excel.Slicer.Name.md b/api/Excel.Slicer.Name.md index cb7c3108533..1fbd5ea2cdf 100644 --- a/api/Excel.Slicer.Name.md +++ b/api/Excel.Slicer.Name.md @@ -23,7 +23,7 @@ Returns or sets the name of the specified slicer. Read/write. _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value String diff --git a/api/Excel.Slicer.NumberOfColumns.md b/api/Excel.Slicer.NumberOfColumns.md index 2475800dd0c..23b9952a8b8 100644 --- a/api/Excel.Slicer.NumberOfColumns.md +++ b/api/Excel.Slicer.NumberOfColumns.md @@ -23,7 +23,7 @@ Returns or sets the number of columns in the specified slicer. Read/write. _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value Long diff --git a/api/Excel.Slicer.RowHeight.md b/api/Excel.Slicer.RowHeight.md index 5a22c6a9172..175185869c5 100644 --- a/api/Excel.Slicer.RowHeight.md +++ b/api/Excel.Slicer.RowHeight.md @@ -23,7 +23,7 @@ Returns or sets the height, in points, of each row in the specified slicer. Read _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value Double diff --git a/api/Excel.Slicer.Shape.md b/api/Excel.Slicer.Shape.md index 4be405dfb1f..bd308bbbc1c 100644 --- a/api/Excel.Slicer.Shape.md +++ b/api/Excel.Slicer.Shape.md @@ -23,7 +23,7 @@ Returns the **[Shape](Excel.Shape.md)** object associated with the specified sl _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value Shape diff --git a/api/Excel.Slicer.SlicerCache.md b/api/Excel.Slicer.SlicerCache.md index c416b3865fa..031f06c262a 100644 --- a/api/Excel.Slicer.SlicerCache.md +++ b/api/Excel.Slicer.SlicerCache.md @@ -23,7 +23,7 @@ Returns the **[SlicerCache](Excel.SlicerCache.md)** object associated with the _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value SlicerCache diff --git a/api/Excel.Slicer.SlicerCacheLevel.md b/api/Excel.Slicer.SlicerCacheLevel.md index 227b5ee92f3..013291680b4 100644 --- a/api/Excel.Slicer.SlicerCacheLevel.md +++ b/api/Excel.Slicer.SlicerCacheLevel.md @@ -23,7 +23,7 @@ Returns the **[SlicerCacheLevel](Excel.SlicerCacheLevel.md)** object associated _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value SlicerCacheLevel diff --git a/api/Excel.Slicer.Style.md b/api/Excel.Slicer.Style.md index 09101afe304..a23e849d055 100644 --- a/api/Excel.Slicer.Style.md +++ b/api/Excel.Slicer.Style.md @@ -23,7 +23,7 @@ Returns or sets the style currently applied to the specified slicer. Read/write. _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value Variant diff --git a/api/Excel.Slicer.Top.md b/api/Excel.Slicer.Top.md index 40be9484eb2..9f2fb1571ee 100644 --- a/api/Excel.Slicer.Top.md +++ b/api/Excel.Slicer.Top.md @@ -23,7 +23,7 @@ Returns or sets the vertical position of the specified slicer, in points, relati _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value Double diff --git a/api/Excel.Slicer.Width.md b/api/Excel.Slicer.Width.md index 6e722696619..682a7114e36 100644 --- a/api/Excel.Slicer.Width.md +++ b/api/Excel.Slicer.Width.md @@ -23,7 +23,7 @@ Returns or sets the width of the specified slicer, in points. Read/write. _expression_ A variable that represents a '[Slicer](Excel.Slicer.md)' object. -### Return Value +### Return value Double diff --git a/api/Excel.SlicerCache.CrossFilterType.md b/api/Excel.SlicerCache.CrossFilterType.md index e95fd2ec0e6..74e52b74619 100644 --- a/api/Excel.SlicerCache.CrossFilterType.md +++ b/api/Excel.SlicerCache.CrossFilterType.md @@ -23,7 +23,7 @@ Returns or sets whether a slicer is participating in cross filtering with other _expression_ A variable that represents a '[SlicerCache](Excel.SlicerCache.md)' object. -### Return Value +### Return value **[XlSlicerCrossFilterType](Excel.XlSlicerCrossFilterType.md)** diff --git a/api/Excel.SlicerCache.Name.md b/api/Excel.SlicerCache.Name.md index b35f32c77f2..7980ea3d8ac 100644 --- a/api/Excel.SlicerCache.Name.md +++ b/api/Excel.SlicerCache.Name.md @@ -23,7 +23,7 @@ Returns or sets the name of the slicer cache. _expression_ A variable that returns a '[SlicerCache](Excel.SlicerCache.md)' object. -### Return Value +### Return value **String** diff --git a/api/Excel.SlicerCache.OLAP.md b/api/Excel.SlicerCache.OLAP.md index 89792a56052..201feabdb74 100644 --- a/api/Excel.SlicerCache.OLAP.md +++ b/api/Excel.SlicerCache.OLAP.md @@ -23,7 +23,7 @@ Returns whether the slicer associated with the specified slicer cache is based o _expression_ A variable that represents a '[SlicerCache](Excel.SlicerCache.md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.SlicerCache.PivotTables.md b/api/Excel.SlicerCache.PivotTables.md index c0a6b2302e1..f72cb2e9ff8 100644 --- a/api/Excel.SlicerCache.PivotTables.md +++ b/api/Excel.SlicerCache.PivotTables.md @@ -23,7 +23,7 @@ Returns a **[SlicerPivotTables](Excel.SlicerPivotTables.md)** collection that c _expression_ A variable that represents a '[SlicerCache](Excel.SlicerCache.md)' object. -### Return Value +### Return value **PivotTables** diff --git a/api/Excel.SlicerCache.ShowAllItems.md b/api/Excel.SlicerCache.ShowAllItems.md index 845e62b4c00..afe91f9d6bd 100644 --- a/api/Excel.SlicerCache.ShowAllItems.md +++ b/api/Excel.SlicerCache.ShowAllItems.md @@ -23,7 +23,7 @@ Returns or sets whether slicers connected to the specified slicer cache display _expression_ A variable that represents a '[SlicerCache](Excel.SlicerCache.md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.SlicerCache.SlicerItems.md b/api/Excel.SlicerCache.SlicerItems.md index 1053a75381a..0602f9df160 100644 --- a/api/Excel.SlicerCache.SlicerItems.md +++ b/api/Excel.SlicerCache.SlicerItems.md @@ -23,7 +23,7 @@ Returns a **[SlicerItems](Excel.SlicerItems.md)** collection that contains the _expression_ A variable that represents a '[SlicerCache](Excel.SlicerCache.md)' object. -### Return Value +### Return value **SlicerItems** diff --git a/api/Excel.SlicerCache.Slicers.md b/api/Excel.SlicerCache.Slicers.md index deb53bd1fa1..7e3b3f5a99c 100644 --- a/api/Excel.SlicerCache.Slicers.md +++ b/api/Excel.SlicerCache.Slicers.md @@ -23,7 +23,7 @@ Returns a **[Slicers](Excel.Slicers.md)** collection that contains the collecti _expression_ A variable that represents a [SlicerCache](./Excel.SlicerCache.md) object. -### Return Value +### Return value **Slicers** diff --git a/api/Excel.SlicerCache.SortItems.md b/api/Excel.SlicerCache.SortItems.md index a30920e4e05..296cc8c41cf 100644 --- a/api/Excel.SlicerCache.SortItems.md +++ b/api/Excel.SlicerCache.SortItems.md @@ -23,7 +23,7 @@ Returns or sets the sort order of the items in the slicer. Read/write **[XlSlic _expression_ A variable that represents a '[SlicerCache](Excel.SlicerCache.md)' object. -### Return Value +### Return value **[XlSlicerSort](Excel.XlSlicerSort.md)** diff --git a/api/Excel.SlicerCache.SourceName.md b/api/Excel.SlicerCache.SourceName.md index 02841699d6b..f641dd854e9 100644 --- a/api/Excel.SlicerCache.SourceName.md +++ b/api/Excel.SlicerCache.SourceName.md @@ -23,7 +23,7 @@ Returns the name of the data source the slicer is connected to. Read-only _expression_ A variable that represents a '[SlicerCache](Excel.SlicerCache.md)' object. -### Return Value +### Return value **String** diff --git a/api/Excel.SlicerCache.SourceType.md b/api/Excel.SlicerCache.SourceType.md index fe94648d119..0924f26e5a6 100644 --- a/api/Excel.SlicerCache.SourceType.md +++ b/api/Excel.SlicerCache.SourceType.md @@ -23,7 +23,7 @@ Returns the kind of data source the slicer is connected to. Read-only _expression_ A variable that represents a '[SlicerCache](Excel.SlicerCache.md)' object. -### Return Value +### Return value **[XlPivotTableSourceType](Excel.XlPivotTableSourceType.md)** diff --git a/api/Excel.SlicerCache.VisibleSlicerItems.md b/api/Excel.SlicerCache.VisibleSlicerItems.md index 0bfc901997b..3e3daca127f 100644 --- a/api/Excel.SlicerCache.VisibleSlicerItems.md +++ b/api/Excel.SlicerCache.VisibleSlicerItems.md @@ -23,7 +23,7 @@ Returns a **[SlicerItems](Excel.SlicerItems.md)** collection that contains the _expression_ A variable that represents a '[SlicerCache](Excel.SlicerCache.md)' object. -### Return Value +### Return value **SlicerItems** diff --git a/api/Excel.SlicerCache.VisibleSlicerItemsList.md b/api/Excel.SlicerCache.VisibleSlicerItemsList.md index 19b81f6e3a5..bd47581e6a2 100644 --- a/api/Excel.SlicerCache.VisibleSlicerItemsList.md +++ b/api/Excel.SlicerCache.VisibleSlicerItemsList.md @@ -23,7 +23,7 @@ Returns or sets the list of MDX unique names for members at all levels of the hi _expression_ A variable that represents a '[SlicerCache](Excel.SlicerCache.md)' object. -### Return Value +### Return value **Variant** diff --git a/api/Excel.SlicerCache.WorkbookConnection.md b/api/Excel.SlicerCache.WorkbookConnection.md index 1beb1cf43a6..a4fd0b95b7a 100644 --- a/api/Excel.SlicerCache.WorkbookConnection.md +++ b/api/Excel.SlicerCache.WorkbookConnection.md @@ -23,7 +23,7 @@ Gets or sets the **[WorkbookConnection](Excel.WorkbookConnection.md)** object t _expression_ A variable that represents a '[SlicerCache](Excel.SlicerCache.md)' object. -### Return Value +### Return value **WorkbookConnection** diff --git a/api/Excel.SlicerCacheLevel.Count.md b/api/Excel.SlicerCacheLevel.Count.md index cca260ca029..c2a7bc7330e 100644 --- a/api/Excel.SlicerCacheLevel.Count.md +++ b/api/Excel.SlicerCacheLevel.Count.md @@ -23,7 +23,7 @@ Returns the number of **[SlicerItem](Excel.SlicerItem.md)** objects in the spec _expression_ A variable that returns a '[SlicerCacheLevel](Excel.SlicerCacheLevel.md)' object. -### Return Value +### Return value **Long** diff --git a/api/Excel.SlicerCacheLevel.CrossFilterType.md b/api/Excel.SlicerCacheLevel.CrossFilterType.md index 48db96311a1..d252aa87281 100644 --- a/api/Excel.SlicerCacheLevel.CrossFilterType.md +++ b/api/Excel.SlicerCacheLevel.CrossFilterType.md @@ -23,7 +23,7 @@ Returns or sets whether a slicer is participating in cross filtering with other _expression_ A variable that represents a '[SlicerCacheLevel](Excel.SlicerCacheLevel.md)' object. -### Return Value +### Return value **[XlSlicerCrossFilterType](Excel.XlSlicerCrossFilterType.md)** diff --git a/api/Excel.SlicerCacheLevel.Name.md b/api/Excel.SlicerCacheLevel.Name.md index 9c81fb61f94..b057f6c61bd 100644 --- a/api/Excel.SlicerCacheLevel.Name.md +++ b/api/Excel.SlicerCacheLevel.Name.md @@ -23,7 +23,7 @@ Returns the MDX unique name of OLAP hierarchy level represented by the object. _expression_ A variable that returns a '[SlicerCacheLevel](Excel.SlicerCacheLevel.md)' object. -### Return Value +### Return value **String** diff --git a/api/Excel.SlicerCacheLevel.Ordinal.md b/api/Excel.SlicerCacheLevel.Ordinal.md index 5e73c2ce8c4..2c51bb36741 100644 --- a/api/Excel.SlicerCacheLevel.Ordinal.md +++ b/api/Excel.SlicerCacheLevel.Ordinal.md @@ -23,7 +23,7 @@ Returns the one-based ordinal value of the hierarchy level represented by the sp _expression_ A variable that represents a [SlicerCacheLevel](./Excel.SlicerCacheLevel.md) object. -### Return Value +### Return value **Long** diff --git a/api/Excel.SlicerCacheLevel.SlicerItems.md b/api/Excel.SlicerCacheLevel.SlicerItems.md index 9bb225d6d81..519e72900f1 100644 --- a/api/Excel.SlicerCacheLevel.SlicerItems.md +++ b/api/Excel.SlicerCacheLevel.SlicerItems.md @@ -23,7 +23,7 @@ Returns a **[SlicerItems](Excel.SlicerItems.md)** collection that contains the _expression_ A variable that represents a '[SlicerCacheLevel](Excel.SlicerCacheLevel.md)' object. -### Return Value +### Return value **SlicerItems** diff --git a/api/Excel.SlicerCacheLevel.SortItems.md b/api/Excel.SlicerCacheLevel.SortItems.md index 6a32b79f787..f07bca7cab5 100644 --- a/api/Excel.SlicerCacheLevel.SortItems.md +++ b/api/Excel.SlicerCacheLevel.SortItems.md @@ -23,7 +23,7 @@ Returns or sets the sort order of the items in the slicer. Read/write. _expression_ A variable that represents a '[SlicerCacheLevel](Excel.SlicerCacheLevel.md)' object. -### Return Value +### Return value **[XlSlicerSort](Excel.XlSlicerSort.md)** diff --git a/api/Excel.SlicerCacheLevel.VisibleSlicerItemsList.md b/api/Excel.SlicerCacheLevel.VisibleSlicerItemsList.md index 1070b1d2600..2c3e52280be 100644 --- a/api/Excel.SlicerCacheLevel.VisibleSlicerItemsList.md +++ b/api/Excel.SlicerCacheLevel.VisibleSlicerItemsList.md @@ -23,7 +23,7 @@ Returns the list of slicer items that are currently included in the slicer filte _expression_ A variable that represents a '[SlicerCacheLevel](Excel.SlicerCacheLevel.md)' object. -### Return Value +### Return value **Variant** diff --git a/api/Excel.SlicerCacheLevels.Count.md b/api/Excel.SlicerCacheLevels.Count.md index 6842f0c42e5..eadc40268e3 100644 --- a/api/Excel.SlicerCacheLevels.Count.md +++ b/api/Excel.SlicerCacheLevels.Count.md @@ -23,7 +23,7 @@ Returns the number of levels in the specified **[SlicerCacheLevels](Excel.Slice _expression_ A variable that returns a [SlicerCacheLevels](./Excel.SlicerCacheLevels.md) object. -### Return Value +### Return value **Long** diff --git a/api/Excel.SlicerCacheLevels.Item.md b/api/Excel.SlicerCacheLevels.Item.md index 361d9e73cd8..1930ff69efd 100644 --- a/api/Excel.SlicerCacheLevels.Item.md +++ b/api/Excel.SlicerCacheLevels.Item.md @@ -27,7 +27,7 @@ Returns the specified **[SlicerCacheLevel](Excel.SlicerCacheLevel.md)** object -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Level_|Optional| **Variant**|The MDX unique name of the level or index number of the object.| diff --git a/api/Excel.SlicerCaches.Add.md b/api/Excel.SlicerCaches.Add.md index 02eb96d7115..6c543e41fb3 100644 --- a/api/Excel.SlicerCaches.Add.md +++ b/api/Excel.SlicerCaches.Add.md @@ -27,14 +27,14 @@ Adds a new **[SlicerCache](Excel.SlicerCache.md)** object to the collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Source_|Required| **Variant**|The data source that the new **SlicerCache** will be based on. The argument passed to the _Source_ parameter can be a **[WorkbookConnection](Excel.WorkbookConnection.md)** object, a **[PivotTable](Excel.PivotTable.md)** object, or a string. If a **PivotTable** object is passed, the associated **[PivotCache](Excel.PivotCache.md)** object is used as the data source. If a string is passed, it is interpreted as the name of a **WorkbookConnection** object, and if no such **WorkbookConnection** object exists, a run-time error is generated.| | _SourceField_|Required| **Variant**|The name of the field in the data source to filter by. For non-OLAP data sources, use the **[PivotField](Excel.PivotField.md)** object from the **PivotCache** object that the slicer is based on, or the unique name of that object (the value of the **PivotField** . **[Name](Excel.PivotField.Name.md)** property). For OLAP data sources, use the MDX unique name of the hierarchy that the **SlicerCache** is based on. You can also specify a level of the OLAP hierarchy, and Excel will use the corresponding hierarchy.| | _Name_|Optional| **Variant**|The name Excel uses to reference the slicer cache (the value of the **SlicerCache** . **[Name](Excel.SlicerCache.Name.md)** property). If omitted, Excel will generate a name. By default, Excel concatenates "Slicer_" with the value of the **PivotField** . **[Caption](Excel.PivotField.Caption.md)** property for slicers with non-OLAP data sources, or with the value of the **CubeField** . **[Caption](Excel.CubeField.Caption.md)** property for slicers with OLAP data sources. (Replacing any spaces with "_".) If required to make the name unique in the workbook namespace, Excel adds an integer to the end of the generated name. If you specify a name that already exists in the workbook namespace, the **Add** method will fail.| | _SlicerCacheType_|Optional|[XlSlicerCacheType](Excel.xlslicercachetype.md)|Designates the type of slicer or slicer cache.| -### Return Value +### Return value SlicerCache diff --git a/api/Excel.SlicerCaches.Application.md b/api/Excel.SlicerCaches.Application.md index 59b09455455..e2a6cfbb9e4 100644 --- a/api/Excel.SlicerCaches.Application.md +++ b/api/Excel.SlicerCaches.Application.md @@ -23,7 +23,7 @@ When used without an object qualifier, this property returns an **[Application] _expression_ A variable that represents a '[SlicerCaches](Excel.SlicerCaches.md)' collection. -### Return Value +### Return value **Application** diff --git a/api/Excel.SlicerCaches.Count.md b/api/Excel.SlicerCaches.Count.md index 639d982ced4..20442ab1023 100644 --- a/api/Excel.SlicerCaches.Count.md +++ b/api/Excel.SlicerCaches.Count.md @@ -23,7 +23,7 @@ Returns the number of objects in the collection. _expression_ A variable that returns a '[SlicerCaches](Excel.SlicerCaches.md)' collection. -### Return Value +### Return value **Long** diff --git a/api/Excel.SlicerCaches.Creator.md b/api/Excel.SlicerCaches.Creator.md index d7aa81f218e..c85cd2f2c2c 100644 --- a/api/Excel.SlicerCaches.Creator.md +++ b/api/Excel.SlicerCaches.Creator.md @@ -23,7 +23,7 @@ Returns a 32-bit integer that indicates the application in which this object was _expression_ A variable that represents a '[SlicerCaches](Excel.SlicerCaches.md)' collection. -### Return Value +### Return value **Long** diff --git a/api/Excel.SlicerCaches.Item.md b/api/Excel.SlicerCaches.Item.md index 220493ddcf2..61c872e2d42 100644 --- a/api/Excel.SlicerCaches.Item.md +++ b/api/Excel.SlicerCaches.Item.md @@ -27,11 +27,11 @@ Returns a single **[SlicerCache](Excel.SlicerCache.md)** object from the collec -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| -### Return Value +### Return value **SlicerCache** diff --git a/api/Excel.SlicerCaches.Parent.md b/api/Excel.SlicerCaches.Parent.md index 584f3c40dd9..07ef7e2e6a7 100644 --- a/api/Excel.SlicerCaches.Parent.md +++ b/api/Excel.SlicerCaches.Parent.md @@ -23,7 +23,7 @@ Returns the parent **[Workbook](Excel.Workbook.md)** object for the collection. _expression_ A variable that represents a '[SlicerCaches](Excel.SlicerCaches.md)' collection. -### Return Value +### Return value **Workbook** diff --git a/api/Excel.SlicerItem.Caption.md b/api/Excel.SlicerItem.Caption.md index 766c0e940b8..934755a6fbc 100644 --- a/api/Excel.SlicerItem.Caption.md +++ b/api/Excel.SlicerItem.Caption.md @@ -23,7 +23,7 @@ Returns the label text for the slicer item. Read-only. _expression_ A variable that represents a '[SlicerItem](Excel.SlicerItem.md)' object. -### Return Value +### Return value String diff --git a/api/Excel.SlicerItem.HasData.md b/api/Excel.SlicerItem.HasData.md index fa826c72576..663609bbdd2 100644 --- a/api/Excel.SlicerItem.HasData.md +++ b/api/Excel.SlicerItem.HasData.md @@ -23,7 +23,7 @@ Returns whether the slicer item contains data that matches the current manual fi _expression_ A variable that represents a '[SlicerItem](Excel.SlicerItem.md)' object. -### Return Value +### Return value Boolean diff --git a/api/Excel.SlicerItem.Name.md b/api/Excel.SlicerItem.Name.md index 9826a72222b..fce96277aab 100644 --- a/api/Excel.SlicerItem.Name.md +++ b/api/Excel.SlicerItem.Name.md @@ -23,7 +23,7 @@ Returns the name of the slicer item. Read-only. _expression_ A variable that represents a '[SlicerItem](Excel.SlicerItem.md)' object. -### Return Value +### Return value String diff --git a/api/Excel.SlicerItem.Parent.md b/api/Excel.SlicerItem.Parent.md index f3c192ff2fd..4a0dd130ea3 100644 --- a/api/Excel.SlicerItem.Parent.md +++ b/api/Excel.SlicerItem.Parent.md @@ -23,7 +23,7 @@ Returns the parent **[SlicerCache](Excel.SlicerCache.md)** object for the slice _expression_ A variable that represents a '[SlicerItem](Excel.SlicerItem.md)' object. -### Return Value +### Return value SlicerCache diff --git a/api/Excel.SlicerItem.Selected.md b/api/Excel.SlicerItem.Selected.md index ccc765ec3a3..1832076d0f4 100644 --- a/api/Excel.SlicerItem.Selected.md +++ b/api/Excel.SlicerItem.Selected.md @@ -23,7 +23,7 @@ Returns or sets whether the slicer item is selected. Read/write for slicers conn _expression_ A variable that represents a '[SlicerItem](Excel.SlicerItem.md)' object. -### Return Value +### Return value Boolean diff --git a/api/Excel.SlicerItem.SourceName.md b/api/Excel.SlicerItem.SourceName.md index 9038241860c..ebaad1495f6 100644 --- a/api/Excel.SlicerItem.SourceName.md +++ b/api/Excel.SlicerItem.SourceName.md @@ -23,7 +23,7 @@ Returns the source name of the slicer item. Read-only. _expression_ A variable that represents a '[SlicerItem](Excel.SlicerItem.md)' object. -### Return Value +### Return value Variant diff --git a/api/Excel.SlicerItem.SourceNameStandard.md b/api/Excel.SlicerItem.SourceNameStandard.md index 4ef3f58d15d..e18005eac6f 100644 --- a/api/Excel.SlicerItem.SourceNameStandard.md +++ b/api/Excel.SlicerItem.SourceNameStandard.md @@ -23,7 +23,7 @@ Returns the slicer item's source name in standard English (United States) format _expression_ A variable that represents a '[SlicerItem](Excel.SlicerItem.md)' object. -### Return Value +### Return value String diff --git a/api/Excel.SlicerItem.Value.md b/api/Excel.SlicerItem.Value.md index fe066f49111..aafd29d126a 100644 --- a/api/Excel.SlicerItem.Value.md +++ b/api/Excel.SlicerItem.Value.md @@ -23,7 +23,7 @@ Returns the value of the slicer item. Read-only. _expression_ A variable that represents a '[SlicerItem](Excel.SlicerItem.md)' object. -### Return Value +### Return value String diff --git a/api/Excel.SlicerItems.Count.md b/api/Excel.SlicerItems.Count.md index 9867c2c6e8b..d852e8bb258 100644 --- a/api/Excel.SlicerItems.Count.md +++ b/api/Excel.SlicerItems.Count.md @@ -23,7 +23,7 @@ Returns the number of objects in the collection. Read-only. _expression_ A variable that represents a '[SlicerItems](Excel.SlicerItems.md)' object. -### Return Value +### Return value **Long** diff --git a/api/Excel.SlicerItems.Creator.md b/api/Excel.SlicerItems.Creator.md index 2701f4e8512..6a5cce23b70 100644 --- a/api/Excel.SlicerItems.Creator.md +++ b/api/Excel.SlicerItems.Creator.md @@ -23,7 +23,7 @@ Returns a 32-bit integer that indicates the application in which this object was _expression_ A variable that represents a '[SlicerItems](Excel.SlicerItems.md)' object. -### Return Value +### Return value **Long** diff --git a/api/Excel.SlicerItems.Item.md b/api/Excel.SlicerItems.Item.md index c61be7e221f..60aff4905f5 100644 --- a/api/Excel.SlicerItems.Item.md +++ b/api/Excel.SlicerItems.Item.md @@ -27,11 +27,11 @@ Returns a **[SlicerItem](Excel.SlicerItem.md)** object from a collection. Read- -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the **SlicerItem** object.| -### Return Value +### Return value SlicerItem diff --git a/api/Excel.SlicerItems.Parent.md b/api/Excel.SlicerItems.Parent.md index 97a3d3bc9e1..ed4c8018c6c 100644 --- a/api/Excel.SlicerItems.Parent.md +++ b/api/Excel.SlicerItems.Parent.md @@ -23,7 +23,7 @@ Returns the parent **[SlicerCache](Excel.SlicerCache.md)** object for the speci _expression_ A variable that represents a '[SlicerItems](Excel.SlicerItems.md)' object. -### Return Value +### Return value SlicerCache diff --git a/api/Excel.SlicerPivotTables.AddPivotTable.md b/api/Excel.SlicerPivotTables.AddPivotTable.md index ba009b6801a..96a5f03c920 100644 --- a/api/Excel.SlicerPivotTables.AddPivotTable.md +++ b/api/Excel.SlicerPivotTables.AddPivotTable.md @@ -27,11 +27,11 @@ Adds a reference to a PivotTable to the **[SlicerPivotTables](Excel.SlicerPivot -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _PivotTable_|Required| **PivotTable**|A **[PivotTable](Excel.PivotTable.md)** object that represents the PivotTable to add.| -### Return Value +### Return value Nothing diff --git a/api/Excel.SlicerPivotTables.Count.md b/api/Excel.SlicerPivotTables.Count.md index e28ebaef8ee..6063f65bb6d 100644 --- a/api/Excel.SlicerPivotTables.Count.md +++ b/api/Excel.SlicerPivotTables.Count.md @@ -23,7 +23,7 @@ Returns the number of objects in the collection. _expression_ A variable that returns a '[SlicerPivotTables](Excel.SlicerPivotTables.md)' object. -### Return Value +### Return value **Long** diff --git a/api/Excel.SlicerPivotTables.Item.md b/api/Excel.SlicerPivotTables.Item.md index 7fdfac4ae77..a1e28c03a19 100644 --- a/api/Excel.SlicerPivotTables.Item.md +++ b/api/Excel.SlicerPivotTables.Item.md @@ -27,7 +27,7 @@ Returns a single **[PivotTable](Excel.PivotTable.md)** object from the collecti -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| diff --git a/api/Excel.SlicerPivotTables.RemovePivotTable.md b/api/Excel.SlicerPivotTables.RemovePivotTable.md index d0b8670ba73..b57ea19cd6a 100644 --- a/api/Excel.SlicerPivotTables.RemovePivotTable.md +++ b/api/Excel.SlicerPivotTables.RemovePivotTable.md @@ -27,11 +27,11 @@ Removes a reference to a PivotTable from the **[SlicerPivotTables](Excel.Slicer -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _PivotTable_|Required| **Variant**|A **[PivotTable](Excel.PivotTable.md)** object that represents the PivotTable to remove, or the name or index of the PivotTable in the collection.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Slicers.Add.md b/api/Excel.Slicers.Add.md index b5aa4187967..3cfc5d8b5b5 100644 --- a/api/Excel.Slicers.Add.md +++ b/api/Excel.Slicers.Add.md @@ -27,7 +27,7 @@ Creates a new slicer and returns a **[Slicer](Excel.Slicer.md)** object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SlicerDestination_|Required| **Variant**|A **String** that specifies the name of the sheet, or a **Worksheet** object that represents the sheet, where the resulting slicer will be placed. The destination sheet must be in the workbook that contains the **Slicers** object specified by expression.| | _Level_|Optional| **Variant**|For OLAP data sources, the ordinal or the Multidimensional Expression (MDX) name of the level on which the slicer creation is based. Not supported for non-OLAP data sources. | @@ -38,7 +38,7 @@ Creates a new slicer and returns a **[Slicer](Excel.Slicer.md)** object. | _Width_|Optional| **Variant**|The initial width, in points, of the slicer control.| | _Height_|Optional| **Variant**|The initial height, in points, of the slicer control.| -### Return Value +### Return value Slicer diff --git a/api/Excel.Slicers.Count.md b/api/Excel.Slicers.Count.md index 58c7357caea..bdb0e80f07a 100644 --- a/api/Excel.Slicers.Count.md +++ b/api/Excel.Slicers.Count.md @@ -23,7 +23,7 @@ Returns the number of objects in the collection. _expression_ A variable that represents a '[Slicers](Excel.Slicers.md)' collection. -### Return Value +### Return value **Long** diff --git a/api/Excel.Slicers.Item.md b/api/Excel.Slicers.Item.md index 385bad7c7cf..fd7127b638d 100644 --- a/api/Excel.Slicers.Item.md +++ b/api/Excel.Slicers.Item.md @@ -27,7 +27,7 @@ Returns a **[Slicer](Excel.Slicer.md)** object from the collection. Read-only. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the **Slicer** object.| diff --git a/api/Excel.Sort.SetRange.md b/api/Excel.Sort.SetRange.md index c52ad2af199..0923d5710d4 100644 --- a/api/Excel.Sort.SetRange.md +++ b/api/Excel.Sort.SetRange.md @@ -27,7 +27,7 @@ Sets the range over which the sort occurs. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Rng_|Required| **Range**|Specifies the range over which the sort represented by the **Sort** object occurs.| diff --git a/api/Excel.SortField.ModifyKey.md b/api/Excel.SortField.ModifyKey.md index 368b33a6d0a..86a91bf0071 100644 --- a/api/Excel.SortField.ModifyKey.md +++ b/api/Excel.SortField.ModifyKey.md @@ -27,7 +27,7 @@ Modify the key value by which values are sorted in the field. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Key_|Required| **Range**|Specifies the key to be modified.| diff --git a/api/Excel.SortField.SetIcon.md b/api/Excel.SortField.SetIcon.md index 8a155a72d27..df071dfba99 100644 --- a/api/Excel.SortField.SetIcon.md +++ b/api/Excel.SortField.SetIcon.md @@ -27,7 +27,7 @@ Sets an icon for a **SortField** object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Icon_|Required| **Icon**|The icon to be set.| diff --git a/api/Excel.SortFields.Item.md b/api/Excel.SortFields.Item.md index 9037e05747e..af84aebe10a 100644 --- a/api/Excel.SortFields.Item.md +++ b/api/Excel.SortFields.Item.md @@ -27,7 +27,7 @@ Returns a **SortField** object that represents a collection of items that can b -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|Index value of the SortField.| diff --git a/api/Excel.SparkAxes.Horizontal.md b/api/Excel.SparkAxes.Horizontal.md index 35bc9efba06..d88c132ec5f 100644 --- a/api/Excel.SparkAxes.Horizontal.md +++ b/api/Excel.SparkAxes.Horizontal.md @@ -23,7 +23,7 @@ Returns the **[SparkHorizontalAxis](Excel.SparkHorizontalAxis.md)** object for _expression_ A variable that represents a [SparkAxes](./Excel.SparkAxes.md) object. -### Return Value +### Return value **SparkHorizontalAxis** diff --git a/api/Excel.SparkAxes.Parent.md b/api/Excel.SparkAxes.Parent.md index 650c399ba72..01b58832f01 100644 --- a/api/Excel.SparkAxes.Parent.md +++ b/api/Excel.SparkAxes.Parent.md @@ -23,7 +23,7 @@ Returns the parent **[SparklineGroup](Excel.SparklineGroup.md)** object for the _expression_ A variable that represents a [SparkAxes](./Excel.SparkAxes.md) object. -### Return Value +### Return value **SparklineGroup** diff --git a/api/Excel.SparkAxes.Vertical.md b/api/Excel.SparkAxes.Vertical.md index f675c3de5cb..4b50a9f97d7 100644 --- a/api/Excel.SparkAxes.Vertical.md +++ b/api/Excel.SparkAxes.Vertical.md @@ -23,7 +23,7 @@ Returns the **[SparkVerticalAxis](Excel.SparkVerticalAxis.md)** object for the _expression_ A variable that represents a [SparkAxes](./Excel.SparkAxes.md) object. -### Return Value +### Return value **SparkVerticalAxis** diff --git a/api/Excel.SparkColor.Color.md b/api/Excel.SparkColor.Color.md index 4cddfe3fa6c..ecdfc279f4f 100644 --- a/api/Excel.SparkColor.Color.md +++ b/api/Excel.SparkColor.Color.md @@ -23,7 +23,7 @@ Returns a **[FormatColor](Excel.FormatColor.md)** object that you can use to se _expression_ A variable that represents a '[SparkColor](Excel.SparkColor.md)' object. -### Return Value +### Return value **FormatColor** diff --git a/api/Excel.SparkColor.Visible.md b/api/Excel.SparkColor.Visible.md index fc93e8e4917..a85df9c9695 100644 --- a/api/Excel.SparkColor.Visible.md +++ b/api/Excel.SparkColor.Visible.md @@ -23,7 +23,7 @@ Returns of sets whether the point is visible. Read/write _expression_ A variable that represents a '[SparkColor](Excel.SparkColor.md)' object. -### Return Value +### Return value Boolean diff --git a/api/Excel.SparkHorizontalAxis.IsDateAxis.md b/api/Excel.SparkHorizontalAxis.IsDateAxis.md index a82c29528d7..b3dc994fd3f 100644 --- a/api/Excel.SparkHorizontalAxis.IsDateAxis.md +++ b/api/Excel.SparkHorizontalAxis.IsDateAxis.md @@ -23,7 +23,7 @@ Returns whether the horizontal axis of the sparkline is based on date values. Re _expression_ A variable that represents a '[SparkHorizontalAxis](Excel.SparkHorizontalAxis.md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.SparkHorizontalAxis.RightToLeftPlotOrder.md b/api/Excel.SparkHorizontalAxis.RightToLeftPlotOrder.md index 4a6bff1de40..f36bc6d65c7 100644 --- a/api/Excel.SparkHorizontalAxis.RightToLeftPlotOrder.md +++ b/api/Excel.SparkHorizontalAxis.RightToLeftPlotOrder.md @@ -23,7 +23,7 @@ Returns or sets whether the points on the horizontal axis are plotted in right-t _expression_ A variable that represents a '[SparkHorizontalAxis](Excel.SparkHorizontalAxis.md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.SparkPoints.Firstpoint.md b/api/Excel.SparkPoints.Firstpoint.md index 8f97ce31fb9..1bd7b7a040a 100644 --- a/api/Excel.SparkPoints.Firstpoint.md +++ b/api/Excel.SparkPoints.Firstpoint.md @@ -23,7 +23,7 @@ Returns a **[SparkColor](Excel.SparkColor.md)** object that represents the colo _expression_ A variable that represents a '[SparkPoints](Excel.SparkPoints.md)' object. -### Return Value +### Return value **SparkColor** diff --git a/api/Excel.SparkPoints.Highpoint.md b/api/Excel.SparkPoints.Highpoint.md index 2bf0f24c23a..7de043f8ae9 100644 --- a/api/Excel.SparkPoints.Highpoint.md +++ b/api/Excel.SparkPoints.Highpoint.md @@ -23,7 +23,7 @@ Returns a **[SparkColor](Excel.SparkColor.md)** object that represents the colo _expression_ A variable that represents a '[SparkPoints](Excel.SparkPoints.md)' object. -### Return Value +### Return value **SparkColor** diff --git a/api/Excel.SparkPoints.Lastpoint.md b/api/Excel.SparkPoints.Lastpoint.md index 18ff8a8d2e9..acc0f23b0e4 100644 --- a/api/Excel.SparkPoints.Lastpoint.md +++ b/api/Excel.SparkPoints.Lastpoint.md @@ -23,7 +23,7 @@ Returns a **[SparkColor](Excel.SparkColor.md)** object that represents the colo _expression_ A variable that represents a '[SparkPoints](Excel.SparkPoints.md)' object. -### Return Value +### Return value **SparkColor** diff --git a/api/Excel.SparkPoints.Lowpoint.md b/api/Excel.SparkPoints.Lowpoint.md index 7f23d2eafb9..764485e4a79 100644 --- a/api/Excel.SparkPoints.Lowpoint.md +++ b/api/Excel.SparkPoints.Lowpoint.md @@ -23,7 +23,7 @@ Returns a **[SparkColor](Excel.SparkColor.md)** object that represents the colo _expression_ A variable that represents a '[SparkPoints](Excel.SparkPoints.md)' object. -### Return Value +### Return value **SparkColor** diff --git a/api/Excel.SparkPoints.Markers.md b/api/Excel.SparkPoints.Markers.md index aa439df85b5..619fc43c421 100644 --- a/api/Excel.SparkPoints.Markers.md +++ b/api/Excel.SparkPoints.Markers.md @@ -23,7 +23,7 @@ Returns a **[SparkColor](Excel.SparkColor.md)** object that represents the colo _expression_ A variable that represents a '[SparkPoints](Excel.SparkPoints.md)' object. -### Return Value +### Return value **SparkColor** diff --git a/api/Excel.SparkPoints.Negative.md b/api/Excel.SparkPoints.Negative.md index 58e6114fcc7..e68f58eadfc 100644 --- a/api/Excel.SparkPoints.Negative.md +++ b/api/Excel.SparkPoints.Negative.md @@ -23,7 +23,7 @@ Returns a **[SparkColor](Excel.SparkColor.md)** object that represents the colo _expression_ A variable that represents a '[SparkPoints](Excel.SparkPoints.md)' object. -### Return Value +### Return value **SparkColor** diff --git a/api/Excel.SparkVerticalAxis.CustomMaxScaleValue.md b/api/Excel.SparkVerticalAxis.CustomMaxScaleValue.md index e1b3de7f68d..a33340abf6b 100644 --- a/api/Excel.SparkVerticalAxis.CustomMaxScaleValue.md +++ b/api/Excel.SparkVerticalAxis.CustomMaxScaleValue.md @@ -23,7 +23,7 @@ Returns or sets the custom maximum value for the vertical axis of a sparkline. R _expression_ A variable that represents a '[SparkVerticalAxis](Excel.SparkVerticalAxis.md)' object. -### Return Value +### Return value **Variant** diff --git a/api/Excel.SparkVerticalAxis.CustomMinScaleValue.md b/api/Excel.SparkVerticalAxis.CustomMinScaleValue.md index 1cb5663630f..6137d74f6f9 100644 --- a/api/Excel.SparkVerticalAxis.CustomMinScaleValue.md +++ b/api/Excel.SparkVerticalAxis.CustomMinScaleValue.md @@ -23,7 +23,7 @@ Returns or sets the custom minimum value for the vertical axis of a sparkline. R _expression_ A variable that represents a '[SparkVerticalAxis](Excel.SparkVerticalAxis.md)' object. -### Return Value +### Return value **Variant** diff --git a/api/Excel.SparkVerticalAxis.MaxScaleType.md b/api/Excel.SparkVerticalAxis.MaxScaleType.md index bf0a817410d..c14e3786824 100644 --- a/api/Excel.SparkVerticalAxis.MaxScaleType.md +++ b/api/Excel.SparkVerticalAxis.MaxScaleType.md @@ -23,7 +23,7 @@ Returns or sets how the maximum value of the vertical axis of the sparkline is s _expression_ A variable that represents a '[SparkVerticalAxis](Excel.SparkVerticalAxis.md)' object. -### Return Value +### Return value **[XlSparkScale](Excel.XlSparkScale.md)** diff --git a/api/Excel.SparkVerticalAxis.MinScaleType.md b/api/Excel.SparkVerticalAxis.MinScaleType.md index a4b60db28f5..ec9bd60588f 100644 --- a/api/Excel.SparkVerticalAxis.MinScaleType.md +++ b/api/Excel.SparkVerticalAxis.MinScaleType.md @@ -23,7 +23,7 @@ Returns or sets how the minimum value of the vertical axis of the sparkline is s _expression_ A variable that represents a '[SparkVerticalAxis](Excel.SparkVerticalAxis.md)' object. -### Return Value +### Return value **[XlSparkScale](Excel.XlSparkScale.md)** diff --git a/api/Excel.Sparkline.Location.md b/api/Excel.Sparkline.Location.md index 616a708b1af..223458311c2 100644 --- a/api/Excel.Sparkline.Location.md +++ b/api/Excel.Sparkline.Location.md @@ -23,7 +23,7 @@ Returns or sets the location of a single sparkline. Read/write _expression_ A variable that represents a '[Sparkline](Excel.Sparkline.md)' object. -### Return Value +### Return value [Range](Excel.Range(object).md) diff --git a/api/Excel.Sparkline.ModifyLocation.md b/api/Excel.Sparkline.ModifyLocation.md index 81214ecbbcf..908c8ea9305 100644 --- a/api/Excel.Sparkline.ModifyLocation.md +++ b/api/Excel.Sparkline.ModifyLocation.md @@ -27,11 +27,11 @@ Modifies the location of a single sparkline. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Range_|Required| **[Range](Excel.Range(object).md)**|The cell that contains the sparkline.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Sparkline.ModifySourceData.md b/api/Excel.Sparkline.ModifySourceData.md index 88a9fac29f9..5f416b98992 100644 --- a/api/Excel.Sparkline.ModifySourceData.md +++ b/api/Excel.Sparkline.ModifySourceData.md @@ -27,11 +27,11 @@ Modifies the source data for a single sparkline. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Formula_|Required| **String**| The range that contains the source data.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Sparkline.SourceData.md b/api/Excel.Sparkline.SourceData.md index f5e03f1438e..1cef8c86822 100644 --- a/api/Excel.Sparkline.SourceData.md +++ b/api/Excel.Sparkline.SourceData.md @@ -23,7 +23,7 @@ Returns or sets the range the contains the source data for a single sparkline. R _expression_ A variable that represents a '[Sparkline](Excel.Sparkline.md)' object. -### Return Value +### Return value **String** diff --git a/api/Excel.SparklineGroup.Axes.md b/api/Excel.SparklineGroup.Axes.md index 5824baf75f6..9914823bd85 100644 --- a/api/Excel.SparklineGroup.Axes.md +++ b/api/Excel.SparklineGroup.Axes.md @@ -23,7 +23,7 @@ Returns the associated **[SparkAxes](Excel.SparkAxes.md)** object. Read-only. _expression_ A variable that represents a '[SparklineGroup](Excel.SparklineGroup.md)' object. -### Return Value +### Return value SparkAxes diff --git a/api/Excel.SparklineGroup.Count.md b/api/Excel.SparklineGroup.Count.md index 36629fbf156..d917dc0cef7 100644 --- a/api/Excel.SparklineGroup.Count.md +++ b/api/Excel.SparklineGroup.Count.md @@ -23,7 +23,7 @@ Returns the number of sparklines in the sparkline group. Read-only. _expression_ A variable that represents a '[SparklineGroup](Excel.SparklineGroup.md)' object. -### Return Value +### Return value Long diff --git a/api/Excel.SparklineGroup.DateRange.md b/api/Excel.SparklineGroup.DateRange.md index 5495c081f78..fc6eda137b7 100644 --- a/api/Excel.SparklineGroup.DateRange.md +++ b/api/Excel.SparklineGroup.DateRange.md @@ -23,7 +23,7 @@ Gets or sets the date range for the sparkline group. Read/write. _expression_ A variable that represents a '[SparklineGroup](Excel.SparklineGroup.md)' object. -### Return Value +### Return value String diff --git a/api/Excel.SparklineGroup.Delete.md b/api/Excel.SparklineGroup.Delete.md index a9498123887..a764d449643 100644 --- a/api/Excel.SparklineGroup.Delete.md +++ b/api/Excel.SparklineGroup.Delete.md @@ -23,7 +23,7 @@ Deletes the sparkline group. _expression_ A variable that represents a '[SparklineGroup](Excel.SparklineGroup.md)' object. -### Return Value +### Return value Nothing diff --git a/api/Excel.SparklineGroup.DisplayHidden.md b/api/Excel.SparklineGroup.DisplayHidden.md index 0519507c5d2..15b38e47c81 100644 --- a/api/Excel.SparklineGroup.DisplayHidden.md +++ b/api/Excel.SparklineGroup.DisplayHidden.md @@ -23,7 +23,7 @@ Specifies if hidden cells are plotted in the sparkline group. Read/write. _expression_ A variable that represents a '[SparklineGroup](Excel.SparklineGroup.md)' object. -### Return Value +### Return value Boolean diff --git a/api/Excel.SparklineGroup.Item.md b/api/Excel.SparklineGroup.Item.md index 2f216dbfd3a..38c0251f393 100644 --- a/api/Excel.SparklineGroup.Item.md +++ b/api/Excel.SparklineGroup.Item.md @@ -27,11 +27,11 @@ Returns a **[Sparkline](Excel.Sparkline.md)** object. Read-only -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|Index value of the sparkline.| -### Return Value +### Return value Sparkline diff --git a/api/Excel.SparklineGroup.LineWeight.md b/api/Excel.SparklineGroup.LineWeight.md index 41e25f4cf51..d4d24a716fc 100644 --- a/api/Excel.SparklineGroup.LineWeight.md +++ b/api/Excel.SparklineGroup.LineWeight.md @@ -23,7 +23,7 @@ Gets or sets the thickness of the sparklines in the sparkline group. Read/write. _expression_ A variable that represents a '[SparklineGroup](Excel.SparklineGroup.md)' object. -### Return Value +### Return value Variant diff --git a/api/Excel.SparklineGroup.Location.md b/api/Excel.SparklineGroup.Location.md index a1fb4aeb392..547541ef5b1 100644 --- a/api/Excel.SparklineGroup.Location.md +++ b/api/Excel.SparklineGroup.Location.md @@ -23,7 +23,7 @@ Gets or sets the **[Range](Excel.Range(object).md)** object that represents the _expression_ A variable that represents a '[SparklineGroup](Excel.SparklineGroup.md)' object. -### Return Value +### Return value Range diff --git a/api/Excel.SparklineGroup.Modify.md b/api/Excel.SparklineGroup.Modify.md index 4b1413cef44..ac8c02b946f 100644 --- a/api/Excel.SparklineGroup.Modify.md +++ b/api/Excel.SparklineGroup.Modify.md @@ -27,12 +27,12 @@ Sets the location and the source data for the sparkline group. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Location_|Required| **Range**|The **[Range](Excel.Range(object).md)** object that represents the location of the sparkline group.| | _SourceData_|Required| **String**|The range that represents the source data for the sparkline group.| -### Return Value +### Return value Nothing diff --git a/api/Excel.SparklineGroup.ModifyDateRange.md b/api/Excel.SparklineGroup.ModifyDateRange.md index 1637c3e0e00..44c1519d63c 100644 --- a/api/Excel.SparklineGroup.ModifyDateRange.md +++ b/api/Excel.SparklineGroup.ModifyDateRange.md @@ -27,11 +27,11 @@ Sets the date range for the sparkline group. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _DateRange_|Required| **String**|The date range for the sparkline group.| -### Return Value +### Return value Nothing diff --git a/api/Excel.SparklineGroup.ModifyLocation.md b/api/Excel.SparklineGroup.ModifyLocation.md index 65454e0c131..95e64abfc58 100644 --- a/api/Excel.SparklineGroup.ModifyLocation.md +++ b/api/Excel.SparklineGroup.ModifyLocation.md @@ -27,11 +27,11 @@ Sets the associated **[Range](./Excel.Range(Graph object).md)** object to modif -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Location_|Required| **Range**|The **Range** that represents the location of the sparkline group.| -### Return Value +### Return value Nothing diff --git a/api/Excel.SparklineGroup.ModifySourceData.md b/api/Excel.SparklineGroup.ModifySourceData.md index a9049aaab95..2591567046d 100644 --- a/api/Excel.SparklineGroup.ModifySourceData.md +++ b/api/Excel.SparklineGroup.ModifySourceData.md @@ -27,11 +27,11 @@ Sets the range that represents the source data for the sparkline group. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SourceData_|Required| **String**|The range that represents the source data.| -### Return Value +### Return value Nothing diff --git a/api/Excel.SparklineGroup.SeriesColor.md b/api/Excel.SparklineGroup.SeriesColor.md index 05bb987d40f..f0289a02171 100644 --- a/api/Excel.SparklineGroup.SeriesColor.md +++ b/api/Excel.SparklineGroup.SeriesColor.md @@ -23,7 +23,7 @@ Returns a **[FormatColor](Excel.FormatColor.md)** object that represents the ma _expression_ A variable that represents a '[SparklineGroup](Excel.SparklineGroup.md)' object. -### Return Value +### Return value FormatColor diff --git a/api/Excel.SparklineGroup.SourceData.md b/api/Excel.SparklineGroup.SourceData.md index c43aa708a69..0f2044c3984 100644 --- a/api/Excel.SparklineGroup.SourceData.md +++ b/api/Excel.SparklineGroup.SourceData.md @@ -23,7 +23,7 @@ Returns or sets the range that contains the source data for the sparkline group. _expression_ A variable that represents a '[SparklineGroup](Excel.SparklineGroup.md)' object. -### Return Value +### Return value String diff --git a/api/Excel.SparklineGroup.Type.md b/api/Excel.SparklineGroup.Type.md index 3db4f6dcbce..68fc7cfbfb0 100644 --- a/api/Excel.SparklineGroup.Type.md +++ b/api/Excel.SparklineGroup.Type.md @@ -23,7 +23,7 @@ Gets or sets the type of sparkline for the group. Read/write. _expression_ A variable that represents a '[SparklineGroup](Excel.SparklineGroup.md)' object. -### Return Value +### Return value XlSparkType diff --git a/api/Excel.SparklineGroups.Add.md b/api/Excel.SparklineGroups.Add.md index 9e5b9bb961f..d24ef53f8c9 100644 --- a/api/Excel.SparklineGroups.Add.md +++ b/api/Excel.SparklineGroups.Add.md @@ -27,12 +27,12 @@ Creates a new sparkline group and returns a **[SparklineGroup](Excel.SparklineG -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Required| **XlSparkType**|The type of sparkline.| | _SourceData_|Required| **String**|Represents the range to use to create the sparkline.| -### Return Value +### Return value SparklineGroup diff --git a/api/Excel.SparklineGroups.Clear.md b/api/Excel.SparklineGroups.Clear.md index b3e219f385d..cdc93d1b734 100644 --- a/api/Excel.SparklineGroups.Clear.md +++ b/api/Excel.SparklineGroups.Clear.md @@ -23,7 +23,7 @@ Clears the selected sparklines. _expression_ A variable that represents a '[SparklineGroups](Excel.SparklineGroups.md)' object. -### Return Value +### Return value Nothing diff --git a/api/Excel.SparklineGroups.ClearGroups.md b/api/Excel.SparklineGroups.ClearGroups.md index 92dc914a482..93e624d93e2 100644 --- a/api/Excel.SparklineGroups.ClearGroups.md +++ b/api/Excel.SparklineGroups.ClearGroups.md @@ -23,7 +23,7 @@ Clears the selected sparkline groups. _expression_ A variable that represents a '[SparklineGroups](Excel.SparklineGroups.md)' object. -### Return Value +### Return value Nothing diff --git a/api/Excel.SparklineGroups.Count.md b/api/Excel.SparklineGroups.Count.md index ba08ba44d99..03cf6954f32 100644 --- a/api/Excel.SparklineGroups.Count.md +++ b/api/Excel.SparklineGroups.Count.md @@ -23,7 +23,7 @@ Returns the count of sparkline groups in the associated **[Range](Excel.Range(o _expression_ A variable that represents a '[SparklineGroups](Excel.SparklineGroups.md)' object. -### Return Value +### Return value Long diff --git a/api/Excel.SparklineGroups.Group.md b/api/Excel.SparklineGroups.Group.md index 30b14128dfa..ac696a57ee1 100644 --- a/api/Excel.SparklineGroups.Group.md +++ b/api/Excel.SparklineGroups.Group.md @@ -27,11 +27,11 @@ Groups the selected sparklines. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Location_|Required| **[Range](Excel.Range(object).md)**|The location of the first cell in the group.| -### Return Value +### Return value Nothing diff --git a/api/Excel.SparklineGroups.Item.md b/api/Excel.SparklineGroups.Item.md index 078cfbb5767..0c88944e610 100644 --- a/api/Excel.SparklineGroups.Item.md +++ b/api/Excel.SparklineGroups.Item.md @@ -27,11 +27,11 @@ Returns a **[SparklineGroup](Excel.SparklineGroup.md)** object from a collectio -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|Specifies the position of an element in the collection.| -### Return Value +### Return value SparklineGroup diff --git a/api/Excel.SparklineGroups.Ungroup.md b/api/Excel.SparklineGroups.Ungroup.md index f2c9de4ff54..0b568bcd401 100644 --- a/api/Excel.SparklineGroups.Ungroup.md +++ b/api/Excel.SparklineGroups.Ungroup.md @@ -23,7 +23,7 @@ Ungroups the sparklines in the selected sparkline group. _expression_ A variable that represents a '[SparklineGroups](Excel.SparklineGroups.md)' object. -### Return Value +### Return value Nothing diff --git a/api/Excel.Speech.Speak.md b/api/Excel.Speech.Speak.md index 712415479d1..e61ec0bfe9a 100644 --- a/api/Excel.Speech.Speak.md +++ b/api/Excel.Speech.Speak.md @@ -27,7 +27,7 @@ Microsoft Excel plays back the text string that is passed as an argument. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Text_|Required| **String**|The text to be spoken.| | _SpeakAsync_|Optional| **Variant**| **True** will cause the _Text_ to be spoken asynchronously (the method will not wait of the Text to be spoken). **False** will cause the _Text_ to be spoken synchronously (the method waits for the _Text_ to be spoken before continuing). The default is **False** .| diff --git a/api/Excel.SpellingOptions.ArabicStrictAlefHamza.md b/api/Excel.SpellingOptions.ArabicStrictAlefHamza.md index c1e12765f0e..dacbfb350b4 100644 --- a/api/Excel.SpellingOptions.ArabicStrictAlefHamza.md +++ b/api/Excel.SpellingOptions.ArabicStrictAlefHamza.md @@ -23,7 +23,7 @@ Returns or sets whether the spelling checker uses rules regarding Arabic words b _expression_ A variable that represents a '[SpellingOptions](Excel.SpellingOptions.md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.SpellingOptions.ArabicStrictFinalYaa.md b/api/Excel.SpellingOptions.ArabicStrictFinalYaa.md index 4cfb8ff9633..827ca4cbee4 100644 --- a/api/Excel.SpellingOptions.ArabicStrictFinalYaa.md +++ b/api/Excel.SpellingOptions.ArabicStrictFinalYaa.md @@ -23,7 +23,7 @@ Returns or sets whether the spelling checker uses rules regarding Arabic words e _expression_ A variable that represents a '[SpellingOptions](Excel.SpellingOptions.md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.SpellingOptions.ArabicStrictTaaMarboota.md b/api/Excel.SpellingOptions.ArabicStrictTaaMarboota.md index bbd24589f8c..8d510ba8461 100644 --- a/api/Excel.SpellingOptions.ArabicStrictTaaMarboota.md +++ b/api/Excel.SpellingOptions.ArabicStrictTaaMarboota.md @@ -23,7 +23,7 @@ Returns or sets whether the spelling checker uses rules to flag Arabic words end _expression_ A variable that represents a '[SpellingOptions](Excel.SpellingOptions.md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.SpellingOptions.BrazilReform.md b/api/Excel.SpellingOptions.BrazilReform.md index 955182a8be9..a9b418dde65 100644 --- a/api/Excel.SpellingOptions.BrazilReform.md +++ b/api/Excel.SpellingOptions.BrazilReform.md @@ -23,7 +23,7 @@ Returns or sets the mode for checking the spelling of Brazilian Portuguese. Read _expression_ A variable that represents a '[SpellingOptions](Excel.SpellingOptions.md)' object. -### Return Value +### Return value **[XlPortugueseReform](Excel.XlPortugueseReform.md)** diff --git a/api/Excel.SpellingOptions.PortugalReform.md b/api/Excel.SpellingOptions.PortugalReform.md index dc1c44e4592..2bda784f9f8 100644 --- a/api/Excel.SpellingOptions.PortugalReform.md +++ b/api/Excel.SpellingOptions.PortugalReform.md @@ -23,7 +23,7 @@ Returns or sets the mode for checking the spelling of European Portuguese. Read/ _expression_ A variable that represents a '[SpellingOptions](Excel.SpellingOptions.md)' object. -### Return Value +### Return value **[XlPortugueseReform](Excel.XlPortugueseReform.md)** diff --git a/api/Excel.SpellingOptions.RussianStrictE.md b/api/Excel.SpellingOptions.RussianStrictE.md index e2ecf78772a..9652b1c32af 100644 --- a/api/Excel.SpellingOptions.RussianStrictE.md +++ b/api/Excel.SpellingOptions.RussianStrictE.md @@ -23,7 +23,7 @@ Returns or sets whether the spelling checker uses rules regarding Russian words _expression_ A variable that represents a '[SpellingOptions](Excel.SpellingOptions.md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.SpellingOptions.SpanishModes.md b/api/Excel.SpellingOptions.SpanishModes.md index e4e721d005e..7040b52bebd 100644 --- a/api/Excel.SpellingOptions.SpanishModes.md +++ b/api/Excel.SpellingOptions.SpanishModes.md @@ -23,7 +23,7 @@ Returns or sets the mode for checking the spelling of Spanish. Read/write _expression_ A variable that represents a '[SpellingOptions](Excel.SpellingOptions.md)' object. -### Return Value +### Return value **[XlSpanishModes](Excel.XlSpanishModes.md)** diff --git a/api/Excel.Style.Delete.md b/api/Excel.Style.Delete.md index d75ff9f71b1..9f01dd10741 100644 --- a/api/Excel.Style.Delete.md +++ b/api/Excel.Style.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [Style](./Excel.Style.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Styles.Add.md b/api/Excel.Styles.Add.md index 1059e21295b..b885989e48a 100644 --- a/api/Excel.Styles.Add.md +++ b/api/Excel.Styles.Add.md @@ -27,11 +27,11 @@ Creates a new style and adds it to the list of styles that are available for the -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **String**|The new style name.| -### Return Value +### Return value A **[Style](Excel.Style.md)** object that represents the new style. diff --git a/api/Excel.Styles.Item.md b/api/Excel.Styles.Item.md index a79d6f2533c..e25d843ee5a 100644 --- a/api/Excel.Styles.Item.md +++ b/api/Excel.Styles.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| diff --git a/api/Excel.Styles.Merge.md b/api/Excel.Styles.Merge.md index 8f876025488..8f2cccffaea 100644 --- a/api/Excel.Styles.Merge.md +++ b/api/Excel.Styles.Merge.md @@ -27,11 +27,11 @@ Merges the styles from another workbook into the **[Styles](Excel.Styles.md)** -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Workbook_|Required| **Variant**|A **[Workbook](Excel.Workbook.md)** object that represents the workbook containing styles to be merged.| -### Return Value +### Return value Variant diff --git a/api/Excel.TableStyle.Delete.md b/api/Excel.TableStyle.Delete.md index ea79be98d23..3662f46f28f 100644 --- a/api/Excel.TableStyle.Delete.md +++ b/api/Excel.TableStyle.Delete.md @@ -23,7 +23,7 @@ Deletes the **[TableStyle](Excel.TableStyle.md)** object. _expression_ A variable that represents a [TableStyle](./Excel.TableStyle.md) object. -### Return Value +### Return value Nothing diff --git a/api/Excel.TableStyle.Duplicate.md b/api/Excel.TableStyle.Duplicate.md index 050b7b09183..faedc5b98b3 100644 --- a/api/Excel.TableStyle.Duplicate.md +++ b/api/Excel.TableStyle.Duplicate.md @@ -27,11 +27,11 @@ Duplicates the **TableStyle** object and returns a reference to the new copy. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _NewTableStyleName_|Optional| **Variant**|The name of the new table style.| -### Return Value +### Return value TableStyle diff --git a/api/Excel.TableStyle.ShowAsAvailableSlicerStyle.md b/api/Excel.TableStyle.ShowAsAvailableSlicerStyle.md index 08748b009b2..094bc863cd9 100644 --- a/api/Excel.TableStyle.ShowAsAvailableSlicerStyle.md +++ b/api/Excel.TableStyle.ShowAsAvailableSlicerStyle.md @@ -23,7 +23,7 @@ Returns or sets if the specified table style is shown as available in the slicer _expression_ A variable that represents a '[TableStyle](Excel.TableStyle.md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.TableStyleElements.Item.md b/api/Excel.TableStyleElements.Item.md index 12d62a17e2a..9f8eb4e9f81 100644 --- a/api/Excel.TableStyleElements.Item.md +++ b/api/Excel.TableStyleElements.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **XlTableStyleElementType**|A table style element.| -### Return Value +### Return value TableStyleElement diff --git a/api/Excel.TableStyles.Add.md b/api/Excel.TableStyles.Add.md index 8527b4331a4..3d24699de09 100644 --- a/api/Excel.TableStyles.Add.md +++ b/api/Excel.TableStyles.Add.md @@ -27,11 +27,11 @@ Creates a new **[TableStyle](Excel.TableStyle.md)** object and adds it to the c -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _TableStyleName_|Required| **String**|The name of the table style.| -### Return Value +### Return value TableStyle diff --git a/api/Excel.TableStyles.Item.md b/api/Excel.TableStyles.Item.md index a369728b712..d212526b1b3 100644 --- a/api/Excel.TableStyles.Item.md +++ b/api/Excel.TableStyles.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number for the object.| -### Return Value +### Return value TableStyle diff --git a/api/Excel.TextFrame.AutoMargins.md b/api/Excel.TextFrame.AutoMargins.md index b29d6b54000..a77ef28f1eb 100644 --- a/api/Excel.TextFrame.AutoMargins.md +++ b/api/Excel.TextFrame.AutoMargins.md @@ -23,7 +23,7 @@ Returns or sets whether Excel automatically calculates text frame margins. Read/ _expression_ A variable that represents a '[TextFrame](Excel.TextFrame.md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.TextFrame.Characters.md b/api/Excel.TextFrame.Characters.md index 17490d7a95e..a3da1234edd 100644 --- a/api/Excel.TextFrame.Characters.md +++ b/api/Excel.TextFrame.Characters.md @@ -27,12 +27,12 @@ Returns a **[Characters](Excel.Characters.md)** object that represents a range -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Start_|Optional| **Variant**|The first character to be returned. If this argument is either set to 1 or omitted, the **Characters** method returns a range of characters starting with the first character.| | _Length_|Optional| **Variant**|The number of characters to be returned. If this argument is omitted, the **Characters** method returns the remainder of the string (everything after the character that was set as the _Start_ argument).| -### Return Value +### Return value Characters diff --git a/api/Excel.TextFrame.HorizontalOverflow.md b/api/Excel.TextFrame.HorizontalOverflow.md index e19039eceeb..84c85b7fdba 100644 --- a/api/Excel.TextFrame.HorizontalOverflow.md +++ b/api/Excel.TextFrame.HorizontalOverflow.md @@ -23,7 +23,7 @@ Returns or sets the horizontal overflow setting for the specified object. Read/w _expression_ A variable that represents a '[TextFrame](Excel.TextFrame.md)' object. -### Return Value +### Return value **[XlOartHorizontalOverflow](Excel.XlOartHorizontalOverflow.md)** diff --git a/api/Excel.TextFrame.VerticalOverflow.md b/api/Excel.TextFrame.VerticalOverflow.md index 881868ac0a5..2608d3a24cb 100644 --- a/api/Excel.TextFrame.VerticalOverflow.md +++ b/api/Excel.TextFrame.VerticalOverflow.md @@ -23,7 +23,7 @@ Returns or sets the vertical overflow setting for the specified object. Read/wri _expression_ A variable that represents a '[TextFrame](Excel.TextFrame.md)' object. -### Return Value +### Return value **[XlOartVerticalOverflow](Excel.XlOartVerticalOverflow.md)** diff --git a/api/Excel.TextFrame2.NoTextRotation.md b/api/Excel.TextFrame2.NoTextRotation.md index e2d7f838d3f..994a6ab48eb 100644 --- a/api/Excel.TextFrame2.NoTextRotation.md +++ b/api/Excel.TextFrame2.NoTextRotation.md @@ -20,7 +20,7 @@ Returns or sets whether text remains flat when the specified object is rotated. _expression_ A variable that represents a '[TextFrame2](Excel.TextFrame2.md)' object. -### Return Value +### Return value [MsoTriState](./Office.MsoTriState.md) diff --git a/api/Excel.ThreeDFormat.IncrementRotationHorizontal.md b/api/Excel.ThreeDFormat.IncrementRotationHorizontal.md index b5ecb970bed..d940a860e50 100644 --- a/api/Excel.ThreeDFormat.IncrementRotationHorizontal.md +++ b/api/Excel.ThreeDFormat.IncrementRotationHorizontal.md @@ -24,7 +24,7 @@ Changes the rotation of the specified shape horizontally by the specified number -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Increment_|Required| **Single**|Specifies how much (in degrees) the rotation of the shape is to be changed horizontally. Can be a value from ?90 through 90. A positive value moves the shape left; a negative value moves it to the right.| diff --git a/api/Excel.ThreeDFormat.IncrementRotationVertical.md b/api/Excel.ThreeDFormat.IncrementRotationVertical.md index 6d73284b79f..4c0c038dcf7 100644 --- a/api/Excel.ThreeDFormat.IncrementRotationVertical.md +++ b/api/Excel.ThreeDFormat.IncrementRotationVertical.md @@ -24,7 +24,7 @@ Changes the rotation of the specified shape vertically by the specified number o -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Increment_|Required| **Single**|Specifies how much (in degrees) the rotation of the shape is to be changed horizontally. Can be a value from ?90 through 90. A positive value tilts the shape up; a negative value tilts it down.| diff --git a/api/Excel.ThreeDFormat.IncrementRotationX.md b/api/Excel.ThreeDFormat.IncrementRotationX.md index e18b3ccbafc..055a43536f4 100644 --- a/api/Excel.ThreeDFormat.IncrementRotationX.md +++ b/api/Excel.ThreeDFormat.IncrementRotationX.md @@ -27,7 +27,7 @@ Changes the rotation of the specified shape around the x-axis by the specified n -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Increment_|Required| **Single**|Specifies how much (in degrees) the rotation of the shape around the x-axis is to be changed. Can be a value from ? 90 through 90. A positive value tilts the shape up; a negative value tilts it down.| diff --git a/api/Excel.ThreeDFormat.IncrementRotationY.md b/api/Excel.ThreeDFormat.IncrementRotationY.md index f977eed6000..b8fb4c0e0e5 100644 --- a/api/Excel.ThreeDFormat.IncrementRotationY.md +++ b/api/Excel.ThreeDFormat.IncrementRotationY.md @@ -27,7 +27,7 @@ Changes the rotation of the specified shape around the y-axis by the specified n -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Increment_|Required| **Single**|Specifies how much (in degrees) the rotation of the shape around the y-axis is to be changed. Can be a value from ? 90 through 90. A positive value tilts the shape to the left; a negative value tilts it to the right.| diff --git a/api/Excel.ThreeDFormat.IncrementRotationZ.md b/api/Excel.ThreeDFormat.IncrementRotationZ.md index 28b7ad7a1ed..ae88c179b0c 100644 --- a/api/Excel.ThreeDFormat.IncrementRotationZ.md +++ b/api/Excel.ThreeDFormat.IncrementRotationZ.md @@ -24,7 +24,7 @@ Changes the rotation of the specified shape around the z-axis by the specified n -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Increment_|Required| **Single**|Specifies how much (in degrees) the rotation of the shape around the z-axis is to be changed. Can be a value from ? 90 through 90. A positive value tilts the shape to the left; a negative value tilts it to the right.| diff --git a/api/Excel.ThreeDFormat.SetExtrusionDirection.md b/api/Excel.ThreeDFormat.SetExtrusionDirection.md index 322da585fab..b321bf5f96d 100644 --- a/api/Excel.ThreeDFormat.SetExtrusionDirection.md +++ b/api/Excel.ThreeDFormat.SetExtrusionDirection.md @@ -27,7 +27,7 @@ Sets the direction that the extrusion's sweep path takes away from the extruded -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _PresetExtrusionDirection_|Required| **[MsoPresetExtrusionDirection](./Office.MsoPresetExtrusionDirection.md)**|Specifies the extrusion direction.| diff --git a/api/Excel.ThreeDFormat.SetPresetCamera.md b/api/Excel.ThreeDFormat.SetPresetCamera.md index 5296cedda72..9e964c57141 100644 --- a/api/Excel.ThreeDFormat.SetPresetCamera.md +++ b/api/Excel.ThreeDFormat.SetPresetCamera.md @@ -24,7 +24,7 @@ Sets the camera for the specified **ThreeDFormat** object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _PresetCamera_|Required| **MsoPresetCamera**|Specifies the preset camera.| diff --git a/api/Excel.ThreeDFormat.SetThreeDFormat.md b/api/Excel.ThreeDFormat.SetThreeDFormat.md index fe16d9b824f..706116e337c 100644 --- a/api/Excel.ThreeDFormat.SetThreeDFormat.md +++ b/api/Excel.ThreeDFormat.SetThreeDFormat.md @@ -27,7 +27,7 @@ Sets the preset extrusion format. Each preset extrusion format contains a set of -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _PresetThreeDFormat_|Required| **[MsoPresetThreeDFormat](./Office.MsoPresetThreeDFormat.md)**|Specifies a preset extrusion format that corresponds to one of the options (numbered from left to right, from top to bottom) displayed when you click the **3-D** button on the **Drawing** toolbar.| diff --git a/api/Excel.TickLabels.Delete.md b/api/Excel.TickLabels.Delete.md index fea22450d59..35b0550cc2d 100644 --- a/api/Excel.TickLabels.Delete.md +++ b/api/Excel.TickLabels.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [TickLabels](./Excel.TickLabels(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.TickLabels.Select.md b/api/Excel.TickLabels.Select.md index 223cfc0db85..6c5fb25725a 100644 --- a/api/Excel.TickLabels.Select.md +++ b/api/Excel.TickLabels.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [TickLabels](./Excel.TickLabels(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Top10.ModifyAppliesToRange.md b/api/Excel.Top10.ModifyAppliesToRange.md index 78537e6a60c..d99876494b3 100644 --- a/api/Excel.Top10.ModifyAppliesToRange.md +++ b/api/Excel.Top10.ModifyAppliesToRange.md @@ -27,7 +27,7 @@ Sets the cell range to which this formatting rule applies. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Range_|Required| **Range**|The range to which this formatting rule will be applied.| diff --git a/api/Excel.Trendline.ClearFormats.md b/api/Excel.Trendline.ClearFormats.md index 67d88c9cb0c..39fd2a94f13 100644 --- a/api/Excel.Trendline.ClearFormats.md +++ b/api/Excel.Trendline.ClearFormats.md @@ -23,7 +23,7 @@ Clears the formatting of the object. _expression_ A variable that represents a [Trendline](./Excel.Trendline(Graph object).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Trendline.Delete.md b/api/Excel.Trendline.Delete.md index 75a59eded60..26564219e73 100644 --- a/api/Excel.Trendline.Delete.md +++ b/api/Excel.Trendline.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [Trendline](./Excel.Trendline(Graph object).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Trendline.Intercept.md b/api/Excel.Trendline.Intercept.md index 9dd3c32ed04..4d80afc0fef 100644 --- a/api/Excel.Trendline.Intercept.md +++ b/api/Excel.Trendline.Intercept.md @@ -23,7 +23,7 @@ Returns or sets the point where the trendline crosses the value axis. Read/write _expression_ An expression that returns a [Trendline](./Excel.Trendline(Graph object).md) object. -### Return Value +### Return value Double diff --git a/api/Excel.Trendline.Select.md b/api/Excel.Trendline.Select.md index 51a5789485b..1d0d5c4fdec 100644 --- a/api/Excel.Trendline.Select.md +++ b/api/Excel.Trendline.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [Trendline](./Excel.Trendline(Graph object).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Trendlines.Add.md b/api/Excel.Trendlines.Add.md index 545bc50c511..f8ad966ab66 100644 --- a/api/Excel.Trendlines.Add.md +++ b/api/Excel.Trendlines.Add.md @@ -27,7 +27,7 @@ Creates a new trendline. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Optional| **[XlTrendlineType](Excel.XlTrendlineType.md)**|The trendline type.| | _Order_|Optional| **Variant**| **Variant** . if _Type_ is **xlPolynomial** . The trendline order. Must be an integer from 2 to 6, inclusive.| @@ -39,7 +39,7 @@ Creates a new trendline. | _DisplayRSquared_|Optional| **Variant**| **True** to display the R-squared value of the trendline on the chart (in the same data label as the equation). The default value is **False** .| | _Name_|Optional| **Variant**|The name of the trendline as text. If this argument is omitted, Microsoft Excel generates a name.| -### Return Value +### Return value A **[Trendline](Excel.Trendline(object).md)** object that represents the new trendline. diff --git a/api/Excel.Trendlines.Item.md b/api/Excel.Trendlines.Item.md index 4d1503f38cd..07e63791ef7 100644 --- a/api/Excel.Trendlines.Item.md +++ b/api/Excel.Trendlines.Item.md @@ -27,11 +27,11 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The index number for the object.| -### Return Value +### Return value A **[Trendline](Excel.Trendline(object).md)** object contained by the collection. diff --git a/api/Excel.UniqueValues.ModifyAppliesToRange.md b/api/Excel.UniqueValues.ModifyAppliesToRange.md index 957ec801796..d70a61262c6 100644 --- a/api/Excel.UniqueValues.ModifyAppliesToRange.md +++ b/api/Excel.UniqueValues.ModifyAppliesToRange.md @@ -27,7 +27,7 @@ Sets the cell range to which this formatting rule applies. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Range_|Required| **Range**|The range to which this formatting rule will be applied.| diff --git a/api/Excel.UpBars.Delete.md b/api/Excel.UpBars.Delete.md index 81c595b8d09..acf58be3820 100644 --- a/api/Excel.UpBars.Delete.md +++ b/api/Excel.UpBars.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents an [UpBars](./Excel.UpBars(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.UpBars.Select.md b/api/Excel.UpBars.Select.md index 7d62db5ffce..20f2a14d5a7 100644 --- a/api/Excel.UpBars.Select.md +++ b/api/Excel.UpBars.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents an [UpBars](./Excel.UpBars(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.UsedObjects.Item.md b/api/Excel.UsedObjects.Item.md index 438a097d611..551840080de 100644 --- a/api/Excel.UsedObjects.Item.md +++ b/api/Excel.UsedObjects.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| diff --git a/api/Excel.UserAccessList.Add.md b/api/Excel.UserAccessList.Add.md index 12c8f68258d..90b387bfd2c 100644 --- a/api/Excel.UserAccessList.Add.md +++ b/api/Excel.UserAccessList.Add.md @@ -27,12 +27,12 @@ Adds a user access list. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **String**|The name of the user access list.| | _AllowEdit_|Required| **Boolean**| **True** allows users on the access list to edit the editable ranges on a protected worksheet.| -### Return Value +### Return value A **[UserAccess](Excel.UserAccess.md)** object that represents the new user access list. diff --git a/api/Excel.UserAccessList.Item.md b/api/Excel.UserAccessList.Item.md index 3ec2da147d1..2d11b70b480 100644 --- a/api/Excel.UserAccessList.Item.md +++ b/api/Excel.UserAccessList.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| diff --git a/api/Excel.VPageBreak.DragOff.md b/api/Excel.VPageBreak.DragOff.md index 46a790203b3..82431a9030e 100644 --- a/api/Excel.VPageBreak.DragOff.md +++ b/api/Excel.VPageBreak.DragOff.md @@ -27,7 +27,7 @@ Drags a page break out of the print area. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Direction_|Required| **[XlDirection](Excel.XlDirection.md)**|The direction in which the page break is dragged.| | _RegionIndex_|Required| **Long**|The print-area region index for the page break (the region where the mouse pointer is located when the mouse button is pressed if the user drags the page break). If the print area is contiguous, there?s only one print region. If the print area is discontiguous, there?s more than one print region.| diff --git a/api/Excel.VPageBreaks.Add.md b/api/Excel.VPageBreaks.Add.md index 65958ddd7ea..161d550e278 100644 --- a/api/Excel.VPageBreaks.Add.md +++ b/api/Excel.VPageBreaks.Add.md @@ -27,11 +27,11 @@ Adds a vertical page break. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Before_|Required| **Object**|A **[Range](Excel.Range(object).md)** object. The range to the left of which the new page break will be added.| -### Return Value +### Return value A **[VPageBreak](Excel.VPageBreak.md)** object that represents the new vertical page break. diff --git a/api/Excel.VPageBreaks.Item.md b/api/Excel.VPageBreaks.Item.md index 69b712cabd4..e6a9d85b284 100644 --- a/api/Excel.VPageBreaks.Item.md +++ b/api/Excel.VPageBreaks.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Long**|The index number of the object.| diff --git a/api/Excel.Validation.Add.md b/api/Excel.Validation.Add.md index a39b4bdb64f..9552a172f4d 100644 --- a/api/Excel.Validation.Add.md +++ b/api/Excel.Validation.Add.md @@ -27,7 +27,7 @@ Adds data validation to the specified range. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Required| **XlDVType**|The validation type.| | _AlertStyle_|Optional| **Variant**|The validation alert style. Can be one of the following **[XlDVAlertStyle](Excel.XlDVAlertStyle.md)** constants: **xlValidAlertInformation** , **xlValidAlertStop** , or **xlValidAlertWarning** .| diff --git a/api/Excel.Validation.Modify.md b/api/Excel.Validation.Modify.md index 7d2cfc1f82b..af29a3737a6 100644 --- a/api/Excel.Validation.Modify.md +++ b/api/Excel.Validation.Modify.md @@ -27,7 +27,7 @@ Modifies data validation for a range. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Optional| **Variant**|An **XlDVType** value that represents the validation type.| | _AlertStyle_|Optional| **Variant**|An **[XlDVAlertStyle](Excel.XlDVAlertStyle.md)** value that represents the validation alert style.| diff --git a/api/Excel.ValueChange.AllocationMethod.md b/api/Excel.ValueChange.AllocationMethod.md index 436b4763f33..da67f27e9a2 100644 --- a/api/Excel.ValueChange.AllocationMethod.md +++ b/api/Excel.ValueChange.AllocationMethod.md @@ -23,7 +23,7 @@ Returns what method to use to allocate this value when performing what-if analys _expression_ A variable that represents a '[ValueChange](Excel.ValueChange.md)' object. -### Return Value +### Return value **[XlAllocationMethod](Excel.XlAllocationMethod.md)** diff --git a/api/Excel.ValueChange.AllocationValue.md b/api/Excel.ValueChange.AllocationValue.md index 9c7681ae737..7334d8a71ff 100644 --- a/api/Excel.ValueChange.AllocationValue.md +++ b/api/Excel.ValueChange.AllocationValue.md @@ -23,7 +23,7 @@ Returns what value to allocate when performing what-if analysis. Read-only _expression_ A variable that represents a '[ValueChange](Excel.ValueChange.md)' object. -### Return Value +### Return value **[XlAllocationValue](Excel.XlAllocationValue.md)** diff --git a/api/Excel.ValueChange.AllocationWeightExpression.md b/api/Excel.ValueChange.AllocationWeightExpression.md index 8f744fb6216..6c083356c5e 100644 --- a/api/Excel.ValueChange.AllocationWeightExpression.md +++ b/api/Excel.ValueChange.AllocationWeightExpression.md @@ -23,7 +23,7 @@ Returns the MDX weight expression to use for this value when performing what-if _expression_ A variable that represents a '[ValueChange](Excel.ValueChange.md)' object. -### Return Value +### Return value **String** diff --git a/api/Excel.ValueChange.Order.md b/api/Excel.ValueChange.Order.md index 5dd6bf7c4bc..8bcd448e8fc 100644 --- a/api/Excel.ValueChange.Order.md +++ b/api/Excel.ValueChange.Order.md @@ -23,7 +23,7 @@ Returns a value that indicates the order in which this change was performed rela _expression_ A variable that represents a '[ValueChange](Excel.ValueChange.md)' object. -### Return Value +### Return value **Integer** diff --git a/api/Excel.ValueChange.PivotCell.md b/api/Excel.ValueChange.PivotCell.md index bd1b123317d..dbc882022fd 100644 --- a/api/Excel.ValueChange.PivotCell.md +++ b/api/Excel.ValueChange.PivotCell.md @@ -23,7 +23,7 @@ Returns a **[PivotCell](Excel.PivotCell.md)** object that represents the cell ( _expression_ A variable that represents a '[ValueChange](Excel.ValueChange.md)' object. -### Return Value +### Return value **PivotCell** diff --git a/api/Excel.ValueChange.Tuple.md b/api/Excel.ValueChange.Tuple.md index 89b3f21626e..a71c52378d3 100644 --- a/api/Excel.ValueChange.Tuple.md +++ b/api/Excel.ValueChange.Tuple.md @@ -23,7 +23,7 @@ Returns the MDX tuple of the value was changed in the OLAP data source. Read-onl _expression_ A variable that represents a '[ValueChange](Excel.ValueChange.md)' object. -### Return Value +### Return value **String** diff --git a/api/Excel.ValueChange.Value.md b/api/Excel.ValueChange.Value.md index 64c8b67901e..76a36328193 100644 --- a/api/Excel.ValueChange.Value.md +++ b/api/Excel.ValueChange.Value.md @@ -23,7 +23,7 @@ Returns the value that the user entered in the cell or that the formula in the c _expression_ A variable that represents a '[ValueChange](Excel.ValueChange.md)' object. -### Return Value +### Return value **Double** diff --git a/api/Excel.ValueChange.VisibleInPivotTable.md b/api/Excel.ValueChange.VisibleInPivotTable.md index 067b92c2841..f2092aeb895 100644 --- a/api/Excel.ValueChange.VisibleInPivotTable.md +++ b/api/Excel.ValueChange.VisibleInPivotTable.md @@ -23,7 +23,7 @@ Returns whether the cell (tuple) is currently visible in the PivotTable report. _expression_ A variable that represents a '[ValueChange](Excel.ValueChange.md)' object. -### Return Value +### Return value **Boolean** diff --git a/api/Excel.Walls.ClearFormats.md b/api/Excel.Walls.ClearFormats.md index 7e36dbe8044..6aaa99666f1 100644 --- a/api/Excel.Walls.ClearFormats.md +++ b/api/Excel.Walls.ClearFormats.md @@ -23,7 +23,7 @@ Clears the formatting of the object. _expression_ A variable that represents a [Walls](./Excel.Walls(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Walls.Select.md b/api/Excel.Walls.Select.md index a27165176de..1c476ba4326 100644 --- a/api/Excel.Walls.Select.md +++ b/api/Excel.Walls.Select.md @@ -23,7 +23,7 @@ Selects the object. _expression_ A variable that represents a [Walls](./Excel.Walls(Graph property).md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Watches.Add.md b/api/Excel.Watches.Add.md index df7b479751f..295c5c815f2 100644 --- a/api/Excel.Watches.Add.md +++ b/api/Excel.Watches.Add.md @@ -27,11 +27,11 @@ Adds a range which is tracked when the worksheet is recalculated. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Source_|Required| **Variant**|The source for the range.| -### Return Value +### Return value A **[Watch](Excel.Watch.md)** object that represents the new range. diff --git a/api/Excel.Watches.Item.md b/api/Excel.Watches.Item.md index 215910c39da..e2915699671 100644 --- a/api/Excel.Watches.Item.md +++ b/api/Excel.Watches.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| diff --git a/api/Excel.Window.Activate.md b/api/Excel.Window.Activate.md index 921666a6d4b..69cdb13741a 100644 --- a/api/Excel.Window.Activate.md +++ b/api/Excel.Window.Activate.md @@ -23,7 +23,7 @@ Brings the window to the front of the z-order. _expression_ A variable that represents a [Window](./Excel.Window.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Window.ActivateNext.md b/api/Excel.Window.ActivateNext.md index 6679bdff9e6..16933cef015 100644 --- a/api/Excel.Window.ActivateNext.md +++ b/api/Excel.Window.ActivateNext.md @@ -23,7 +23,7 @@ Activates the specified window and then sends it to the back of the window z-ord _expression_ A variable that represents a [Window](./Excel.Window.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Window.ActivatePrevious.md b/api/Excel.Window.ActivatePrevious.md index 8391afd5cdd..e2a3cbf71f7 100644 --- a/api/Excel.Window.ActivatePrevious.md +++ b/api/Excel.Window.ActivatePrevious.md @@ -23,7 +23,7 @@ Activates the specified window and then activates the window at the back of the _expression_ A variable that represents a [Window](./Excel.Window.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Window.Close.md b/api/Excel.Window.Close.md index 484d670d06e..3d7ef52b104 100644 --- a/api/Excel.Window.Close.md +++ b/api/Excel.Window.Close.md @@ -27,13 +27,13 @@ Closes the object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SaveChanges_|Optional| **Variant**|If there are no changes to the workbook, this argument is ignored. If there are changes to the workbook and the workbook appears in other open windows, this argument is ignored. If there are changes to the workbook but the workbook doesn't appear in any other open windows, this argument specifies whether changes should be saved. If set to **True** , changes are saved to the workbook. If there is not yet a file name associated with the workbook, then _Filename_ is used. If _Filename_ is omitted, the user is asked to supply a file name.| | _Filename_|Optional| **Variant**|Save changes under this file name.| | _RouteWorkbook_|Optional| **Variant**|If the workbook doesn't need to be routed to the next recipient (if it has no routing slip or has already been routed), this argument is ignored. Otherwise, Microsoft Excel routes the workbook according to the value of this parameter. If set to **True** , the workbook is sent to the next recipient. If set to **False** , the workbook is not sent. If omitted, the user is asked whether the workbook should be sent.| -### Return Value +### Return value **True** if the method successfully closed the object; otherwise, **False** . diff --git a/api/Excel.Window.LargeScroll.md b/api/Excel.Window.LargeScroll.md index b2e18081d26..feb9f810fce 100644 --- a/api/Excel.Window.LargeScroll.md +++ b/api/Excel.Window.LargeScroll.md @@ -27,14 +27,14 @@ Scrolls the contents of the window by pages. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Down_|Optional| **Variant**|The number of pages to scroll the contents down.| | _Up_|Optional| **Variant**|The number of pages to scroll the contents up.| | _ToRight_|Optional| **Variant**|The number of pages to scroll the contents to the right.| | _ToLeft_|Optional| **Variant**|The number of pages to scroll the contents to the left.| -### Return Value +### Return value Variant diff --git a/api/Excel.Window.NewWindow.md b/api/Excel.Window.NewWindow.md index d251f600b1e..9b5aa249d79 100644 --- a/api/Excel.Window.NewWindow.md +++ b/api/Excel.Window.NewWindow.md @@ -23,7 +23,7 @@ Creates a new window or a copy of the specified window. _expression_ A variable that represents a [Window](./Excel.Window.md) object. -### Return Value +### Return value Window diff --git a/api/Excel.Window.PointsToScreenPixelsX.md b/api/Excel.Window.PointsToScreenPixelsX.md index a3586910f56..1267aa4f6a6 100644 --- a/api/Excel.Window.PointsToScreenPixelsX.md +++ b/api/Excel.Window.PointsToScreenPixelsX.md @@ -27,11 +27,11 @@ Converts a horizontal measurement from points (document coordinates) to screen p -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Points_|Required| **Long**|The number of points horizontally along the top of the document window, starting from the left.| -### Return Value +### Return value Long diff --git a/api/Excel.Window.PointsToScreenPixelsY.md b/api/Excel.Window.PointsToScreenPixelsY.md index 6a67252c03a..3bd4d426fe6 100644 --- a/api/Excel.Window.PointsToScreenPixelsY.md +++ b/api/Excel.Window.PointsToScreenPixelsY.md @@ -27,11 +27,11 @@ Converts a vertical measurement from points (document coordinates) to screen pix -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Points_|Required| **Long**|The number of points vertically along the left edge of the document window, starting from the top.| -### Return Value +### Return value Long diff --git a/api/Excel.Window.PrintOut.md b/api/Excel.Window.PrintOut.md index 9d6085566f1..7ea5b5ed41c 100644 --- a/api/Excel.Window.PrintOut.md +++ b/api/Excel.Window.PrintOut.md @@ -27,7 +27,7 @@ Prints the object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _From_|Optional| **Variant**|The number of the page at which to start printing. If this argument is omitted, printing starts at the beginning.| | _To_|Optional| **Variant**|The number of the last page to print. If this argument is omitted, printing ends with the last page.| @@ -38,7 +38,7 @@ Prints the object. | _Collate_|Optional| **Variant**| **True** to collate multiple copies.| | _PrToFileName_|Optional| **Variant**|If _PrintToFile_ is set to **True** , this argument specifies the name of the file you want to print to.| -### Return Value +### Return value Variant diff --git a/api/Excel.Window.PrintPreview.md b/api/Excel.Window.PrintPreview.md index 2a33ec8917d..51c05c8a94d 100644 --- a/api/Excel.Window.PrintPreview.md +++ b/api/Excel.Window.PrintPreview.md @@ -27,11 +27,11 @@ Shows a preview of the object as it would look when printed. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _EnableChanges_|Optional| **Variant**|Pass a **Boolean** value to specify if the user can change the margins and other page setup options available in print preview.| -### Return Value +### Return value Variant diff --git a/api/Excel.Window.RangeFromPoint.md b/api/Excel.Window.RangeFromPoint.md index e4225eb0c87..3c2ab483674 100644 --- a/api/Excel.Window.RangeFromPoint.md +++ b/api/Excel.Window.RangeFromPoint.md @@ -27,12 +27,12 @@ Returns the **[Shape](Excel.Shape.md)** or **[Range](Excel.Range(object).md)** -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _x_|Required| **Long**|The value (in pixels) that represents the horizontal distance from the left edge of the screen, starting at the top.| | _y_|Required| **Long**|The value (in pixels) that represents the vertical distance from the top of the screen, starting on the left.| -### Return Value +### Return value Object diff --git a/api/Excel.Window.ScrollIntoView.md b/api/Excel.Window.ScrollIntoView.md index 6afadf8d45e..bdc48ebc2d4 100644 --- a/api/Excel.Window.ScrollIntoView.md +++ b/api/Excel.Window.ScrollIntoView.md @@ -27,7 +27,7 @@ Scrolls the document window so that the contents of a specified rectangular area -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Left_|Required| **Long**|The horizontal position of the rectangle (in points) from the left edge of the document window or pane.| | _Top_|Required| **Long**|The vertical position of the rectangle (in points) from the top of the document window or pane.| diff --git a/api/Excel.Window.ScrollWorkbookTabs.md b/api/Excel.Window.ScrollWorkbookTabs.md index ed3d7ec7f54..f29e78e7e15 100644 --- a/api/Excel.Window.ScrollWorkbookTabs.md +++ b/api/Excel.Window.ScrollWorkbookTabs.md @@ -27,12 +27,12 @@ Scrolls through the workbook tabs at the bottom of the window. Doesn't affect th -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sheets_|Optional| **Variant**|The number of sheets to scroll by. Use a positive number to scroll forward, a negative number to scroll backward, or 0 (zero) to not scroll at all. You must specify _Sheets_ if you don't specify _Position_.| | _Position_|Optional| **Variant**|Use **xlFirst** to scroll to the first sheet, or use **xlLast** to scroll to the last sheet. You must specify _Position_ if you don't specify _Sheets_.| -### Return Value +### Return value Variant diff --git a/api/Excel.Window.SmallScroll.md b/api/Excel.Window.SmallScroll.md index b28b954aa26..ecffe5fd08e 100644 --- a/api/Excel.Window.SmallScroll.md +++ b/api/Excel.Window.SmallScroll.md @@ -27,14 +27,14 @@ Scrolls the contents of the window by rows or columns. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Down_|Optional| **Variant**|The number of rows to scroll the contents down.| | _Up_|Optional| **Variant**|The number of rows to scroll the contents up.| | _ToRight_|Optional| **Variant**|The number of columns to scroll the contents to the right.| | _ToLeft_|Optional| **Variant**|The number of columns to scroll the contents to the left.| -### Return Value +### Return value Variant diff --git a/api/Excel.Windows.Arrange.md b/api/Excel.Windows.Arrange.md index 7c31ea73eec..caa04357502 100644 --- a/api/Excel.Windows.Arrange.md +++ b/api/Excel.Windows.Arrange.md @@ -27,14 +27,14 @@ Arranges the windows on the screen. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ArrangeStyle_|Optional| **[XlArrangeStyle](Excel.XlArrangeStyle.md)**|One of the constants of **XlArrangeStyle** specifying how the windows are arranged.| | _ActiveWorkbook_|Optional| **Variant**| **True** to arrange only the visible windows of the active workbook. **False** to arrange all windows. The default value is **False** .| | _SyncHorizontal_|Optional| **Variant**|Ignored if _ActiveWorkbook_ is **False** or omitted. **True** to synchronize the windows of the active workbook when scrolling horizontally. **False** to not synchronize the windows. The default value is **False** .| | _SyncVertical_|Optional| **Variant**|Ignored if _ActiveWorkbook_ is **False** or omitted. **True** to synchronize the windows of the active workbook when scrolling vertically. **False** to not synchronize the windows. The default value is **False** .| -### Return Value +### Return value Variant diff --git a/api/Excel.Windows.BreakSideBySide.md b/api/Excel.Windows.BreakSideBySide.md index 03435279fc6..a6110dddaab 100644 --- a/api/Excel.Windows.BreakSideBySide.md +++ b/api/Excel.Windows.BreakSideBySide.md @@ -23,7 +23,7 @@ Ends side-by-side mode if two windows are in side-by-side mode. Returns a **Boo _expression_ A variable that represents a [Windows](./Excel.Windows.md) object. -### Return Value +### Return value Boolean diff --git a/api/Excel.Windows.CompareSideBySideWith.md b/api/Excel.Windows.CompareSideBySideWith.md index 239c06834d5..6ef555fa164 100644 --- a/api/Excel.Windows.CompareSideBySideWith.md +++ b/api/Excel.Windows.CompareSideBySideWith.md @@ -27,11 +27,11 @@ Opens two windows in side-by-side mode. Returns a **Boolean** value. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _WindowName_|Required| **Variant**|The name of the window.| -### Return Value +### Return value **Boolean** . diff --git a/api/Excel.Windows.Item.md b/api/Excel.Windows.Item.md index 61ac7bc1e5b..24ba5751ab0 100644 --- a/api/Excel.Windows.Item.md +++ b/api/Excel.Windows.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| diff --git a/api/Excel.Workbook.AcceptAllChanges.md b/api/Excel.Workbook.AcceptAllChanges.md index 3563216eb1d..56968bd14b2 100644 --- a/api/Excel.Workbook.AcceptAllChanges.md +++ b/api/Excel.Workbook.AcceptAllChanges.md @@ -27,7 +27,7 @@ Accepts all changes in the specified shared workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _When_|Optional| **Variant**|Specifies when all the changes are accepted.| | _Who_|Optional| **Variant**|Specifies by whom all the changes are accepted.| diff --git a/api/Excel.Workbook.AccuracyVersion.md b/api/Excel.Workbook.AccuracyVersion.md index 04fc8fded5e..3fe975da310 100644 --- a/api/Excel.Workbook.AccuracyVersion.md +++ b/api/Excel.Workbook.AccuracyVersion.md @@ -23,7 +23,7 @@ Specifies whether certain worksheet functions use the latest accuracy algorithms _expression_ A variable that represents a '[Workbook](Excel.Workbook.md)' object. -### Return Value +### Return value **Integer** diff --git a/api/Excel.Workbook.Activate(even).md b/api/Excel.Workbook.Activate(even).md index 211d0e65754..6d693463c73 100644 --- a/api/Excel.Workbook.Activate(even).md +++ b/api/Excel.Workbook.Activate(even).md @@ -23,7 +23,7 @@ Occurs when a workbook, worksheet, chart sheet, or embedded chart is activated. _expression_ A variable that represents a [Workbook](./Excel.Workbook.md) object. -### Return Value +### Return value nothing diff --git a/api/Excel.Workbook.ActiveSlicer.md b/api/Excel.Workbook.ActiveSlicer.md index e40c018ec99..c16b2e45a12 100644 --- a/api/Excel.Workbook.ActiveSlicer.md +++ b/api/Excel.Workbook.ActiveSlicer.md @@ -23,7 +23,7 @@ Returns an object that represents the active slicer in the active workbook or in _expression_ A variable that represents a '[Workbook](Excel.Workbook.md)' object. -### Return Value +### Return value Slicer diff --git a/api/Excel.Workbook.AddinInstall.md b/api/Excel.Workbook.AddinInstall.md index 3b42287c3e5..6a787618823 100644 --- a/api/Excel.Workbook.AddinInstall.md +++ b/api/Excel.Workbook.AddinInstall.md @@ -23,7 +23,7 @@ Occurs when the workbook is installed as an add-in _expression_ A variable that represents a [Workbook](./Excel.Workbook.md) object. -### Return Value +### Return value Nothing diff --git a/api/Excel.Workbook.AddinUninstall.md b/api/Excel.Workbook.AddinUninstall.md index 42b2aa57d02..91cabf04099 100644 --- a/api/Excel.Workbook.AddinUninstall.md +++ b/api/Excel.Workbook.AddinUninstall.md @@ -23,7 +23,7 @@ Occurs when the workbook is uninstalled as an add-in. _expression_ A variable that represents a [Workbook](./Excel.Workbook.md) object. -### Return Value +### Return value Nothing diff --git a/api/Excel.Workbook.AfterSave.md b/api/Excel.Workbook.AfterSave.md index 61322553614..70617382e9c 100644 --- a/api/Excel.Workbook.AfterSave.md +++ b/api/Excel.Workbook.AfterSave.md @@ -27,11 +27,11 @@ Occurs after the workbook is saved. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Success_|Required| **Boolean**|Returns **True** if the save operation was successful; otherwise **False** .| -### Return Value +### Return value Nothing diff --git a/api/Excel.Workbook.AfterXmlExport.md b/api/Excel.Workbook.AfterXmlExport.md index 3bc2ef1231f..0d4a2372afb 100644 --- a/api/Excel.Workbook.AfterXmlExport.md +++ b/api/Excel.Workbook.AfterXmlExport.md @@ -27,13 +27,13 @@ Occurs after Microsoft Excel saves or exports XML data from the specified workbo -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Map_|Required| **[XmlMap](Excel.XmlMap.md)**|The schema map that was used to save or export data.| | _Url_|Required| **String**|The location of the XML file that was exported.| | _Result_|Required| **XlXmlExportResult**|Indicates the results of the save or export operation.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Workbook.AfterXmlImport.md b/api/Excel.Workbook.AfterXmlImport.md index 878ec86b87a..5da391495b5 100644 --- a/api/Excel.Workbook.AfterXmlImport.md +++ b/api/Excel.Workbook.AfterXmlImport.md @@ -27,13 +27,13 @@ Occurs after an existing XML data connection is refreshed or after new XML data -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Map_|Required| **[XmlMap](Excel.XmlMap.md)**|The XML map that will be used to import data.| | _IsRefresh_|Required| **Boolean**| **True** if the event was triggered by refreshing an existing connection to XML data; **False** if the event was triggered by importing from a different data source.| | _Result_|Required| **[XlXmlImportResult](Excel.XlXmlImportResult.md)**|Indicates the results of the refresh or import operation.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Workbook.ApplyTheme.md b/api/Excel.Workbook.ApplyTheme.md index 8ce2b80d9ea..ddb90c7a3b5 100644 --- a/api/Excel.Workbook.ApplyTheme.md +++ b/api/Excel.Workbook.ApplyTheme.md @@ -27,7 +27,7 @@ Applies the specified theme to the current workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|Name of the theme.| diff --git a/api/Excel.Workbook.BeforeClose.md b/api/Excel.Workbook.BeforeClose.md index c7eae7fdbaf..a81e868c9f3 100644 --- a/api/Excel.Workbook.BeforeClose.md +++ b/api/Excel.Workbook.BeforeClose.md @@ -27,11 +27,11 @@ Occurs before the workbook closes. If the workbook has been changed, this event -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the close operation stops and the workbook is left open.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Workbook.BeforePrint.md b/api/Excel.Workbook.BeforePrint.md index 190f54f58af..d715b8f734a 100644 --- a/api/Excel.Workbook.BeforePrint.md +++ b/api/Excel.Workbook.BeforePrint.md @@ -27,11 +27,11 @@ Occurs before the workbook (or anything in it) is printed. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the workbook isn't printed when the procedure is finished.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Workbook.BeforeSave.md b/api/Excel.Workbook.BeforeSave.md index f8140a70b18..8635421478e 100644 --- a/api/Excel.Workbook.BeforeSave.md +++ b/api/Excel.Workbook.BeforeSave.md @@ -27,12 +27,12 @@ Occurs before the workbook is saved. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SaveAsUI_|Required| **Boolean**| **True** if the **Save As** dialog box will be displayed due to changes made that need to be saved in the workbook.| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the workbook isn't saved when the procedure is finished.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Workbook.BeforeXmlExport.md b/api/Excel.Workbook.BeforeXmlExport.md index 8aef8140fb0..37c06631675 100644 --- a/api/Excel.Workbook.BeforeXmlExport.md +++ b/api/Excel.Workbook.BeforeXmlExport.md @@ -27,13 +27,13 @@ Occurs before Microsoft Excel saves or exports XML data from the specified workb -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Map_|Required| **[XmlMap](Excel.XmlMap.md)**|The XML map that will be used to save or export data.| | _Url_|Required| **String**|The location where you want to export the resulting XML file.| | _Cancel_|Required| **Boolean**|Set to **True** to cancel the save or export operation| -### Return Value +### Return value Nothing diff --git a/api/Excel.Workbook.BeforeXmlImport.md b/api/Excel.Workbook.BeforeXmlImport.md index bc8f682018e..8bdf6623cd4 100644 --- a/api/Excel.Workbook.BeforeXmlImport.md +++ b/api/Excel.Workbook.BeforeXmlImport.md @@ -27,14 +27,14 @@ Occurs before an existing XML data connection is refreshed or before new XML dat -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Map_|Required| **[XmlMap](Excel.XmlMap.md)**|The XML map that will be used to import data.| | _Url_|Required| **String**|The location of the XML file to be imported.| | _IsRefresh_|Required| **Boolean**| **True** if the event was triggered by refreshing an existing connection to XML data; **False** if the event was triggered by importing from a different data source.| | _Cancel_|Required| **Boolean**|Set to **True** to cancel the import or refresh operation.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Workbook.BreakLink.md b/api/Excel.Workbook.BreakLink.md index d708e59bd52..ca9ba64bcab 100644 --- a/api/Excel.Workbook.BreakLink.md +++ b/api/Excel.Workbook.BreakLink.md @@ -27,7 +27,7 @@ Converts formulas linked to other Microsoft Excel sources or OLE sources to valu -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **String**|The name of the link.| | _Type_|Required| **[XlLinkType](Excel.XlLinkType.md)**|The type of link.| diff --git a/api/Excel.Workbook.CanCheckIn.md b/api/Excel.Workbook.CanCheckIn.md index b35630899b6..58cc1da7c38 100644 --- a/api/Excel.Workbook.CanCheckIn.md +++ b/api/Excel.Workbook.CanCheckIn.md @@ -23,7 +23,7 @@ ms.date: 06/08/2017 _expression_ A variable that represents a [Workbook](./Excel.Workbook.md) object. -### Return Value +### Return value Boolean diff --git a/api/Excel.Workbook.ChangeFileAccess.md b/api/Excel.Workbook.ChangeFileAccess.md index 99f85ada0ec..929ba13e6ab 100644 --- a/api/Excel.Workbook.ChangeFileAccess.md +++ b/api/Excel.Workbook.ChangeFileAccess.md @@ -27,7 +27,7 @@ Changes the access permissions for the workbook. This may require an updated ver -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Mode_|Required| **[XlFileAccess](Excel.XlFileAccess.md)**|Specifies the new access mode.| | _WritePassword_|Optional| **Variant**|Specifies the write-reserved password if the file is write reserved and _Mode_ is **xlReadWrite** . Ignored if there's no password for the file or if _Mode_ is **xlReadOnly** .| diff --git a/api/Excel.Workbook.ChangeLink.md b/api/Excel.Workbook.ChangeLink.md index e813df1d52a..9100ee987dd 100644 --- a/api/Excel.Workbook.ChangeLink.md +++ b/api/Excel.Workbook.ChangeLink.md @@ -27,7 +27,7 @@ Changes a link from one document to another. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **String**|The name of the Microsoft Excel or DDE/OLE link to be changed, as it was returned from the **[LinkSources](Excel.Workbook.LinkSources.md)** method.| | _NewName_|Required| **String**|The new name of the link.| diff --git a/api/Excel.Workbook.CheckIn.md b/api/Excel.Workbook.CheckIn.md index f3e81600129..06acd936063 100644 --- a/api/Excel.Workbook.CheckIn.md +++ b/api/Excel.Workbook.CheckIn.md @@ -27,7 +27,7 @@ Returns a workbook from a local computer to a server, and sets the local workboo -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SaveChanges_|Optional| **Variant**| **True** saves changes and checks in the document. **False** returns the document to a checked-in status without saving revision.| | _Comments_|Optional| **Variant**|Allows the user to enter check-in comments for the revision of the workbook being checked in (applies only if _SaveChanges_ equals **True**).| diff --git a/api/Excel.Workbook.CheckInWithVersion.md b/api/Excel.Workbook.CheckInWithVersion.md index b7faa7e64b3..98102a8ce8b 100644 --- a/api/Excel.Workbook.CheckInWithVersion.md +++ b/api/Excel.Workbook.CheckInWithVersion.md @@ -27,14 +27,14 @@ Saves a workbook to a server from a local computer, and sets the local workbook -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SaveChanges_|Optional| **Variant**| **True** to save the workbook to the server location. The default is **True** .| | _Comments_|Optional| **Variant**|Comments for the revision of the workbook being checked in (applies only if _SaveChanges_ is set to **True**).| | _MakePublic_|Optional| **Variant**| **True** to allow the user to publish the workbook after it is checked in.| | _VersionType_|Optional| **Variant**|Specifies versioning information for the workbook. | -### Return Value +### Return value Nothing diff --git a/api/Excel.Workbook.Close.md b/api/Excel.Workbook.Close.md index 95983341794..c8faffc0473 100644 --- a/api/Excel.Workbook.Close.md +++ b/api/Excel.Workbook.Close.md @@ -27,7 +27,7 @@ Closes the object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SaveChanges_|Optional| **Variant**|If there are no changes to the workbook, this argument is ignored. If there are changes to the workbook and the workbook appears in other open windows, this argument is ignored. If there are changes to the workbook but the workbook doesn't appear in any other open windows, this argument specifies whether changes should be saved. If set to **True** , changes are saved to the workbook. If there is not yet a file name associated with the workbook, then _FileName_ is used. If _Filename_ is omitted, the user is asked to supply a file name.| | _Filename_|Optional| **Variant**|Save changes under this file name.| diff --git a/api/Excel.Workbook.Colors.md b/api/Excel.Workbook.Colors.md index 796b82db3c8..b42e3cb642f 100644 --- a/api/Excel.Workbook.Colors.md +++ b/api/Excel.Workbook.Colors.md @@ -27,7 +27,7 @@ Returns or sets colors in the palette for the workbook. The palette has 56 entri -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The color number (from 1 to 56). If this argument isn?t specified, this method returns an array that contains all 56 of the colors in the palette.| diff --git a/api/Excel.Workbook.ConnectionsDisabled.md b/api/Excel.Workbook.ConnectionsDisabled.md index ea282c48e15..683c596684b 100644 --- a/api/Excel.Workbook.ConnectionsDisabled.md +++ b/api/Excel.Workbook.ConnectionsDisabled.md @@ -23,7 +23,7 @@ Disables the external connections or links in the workbook. Read-only _expression_ A variable that represents a [Workbook](./Excel.Workbook.md) object. -### Return Value +### Return value Boolean diff --git a/api/Excel.Workbook.Deactivate.md b/api/Excel.Workbook.Deactivate.md index a3fe4021e24..eae245c2259 100644 --- a/api/Excel.Workbook.Deactivate.md +++ b/api/Excel.Workbook.Deactivate.md @@ -23,7 +23,7 @@ Occurs when the chart, worksheet, or workbook is deactivated. _expression_ A variable that represents a [Workbook](./Excel.Workbook.md) object. -### Return Value +### Return value nothing diff --git a/api/Excel.Workbook.DefaultSlicerStyle.md b/api/Excel.Workbook.DefaultSlicerStyle.md index 3ff37511c2c..11750bca8f9 100644 --- a/api/Excel.Workbook.DefaultSlicerStyle.md +++ b/api/Excel.Workbook.DefaultSlicerStyle.md @@ -23,7 +23,7 @@ Specifies the style from the **[TableStyles](Excel.TableStyles.md)** object tha _expression_ A variable that represents a [Workbook](./Excel.Workbook.md) object. -### Return Value +### Return value Variant diff --git a/api/Excel.Workbook.DeleteNumberFormat.md b/api/Excel.Workbook.DeleteNumberFormat.md index de573b992d4..ff6c8ec22f2 100644 --- a/api/Excel.Workbook.DeleteNumberFormat.md +++ b/api/Excel.Workbook.DeleteNumberFormat.md @@ -27,7 +27,7 @@ Deletes a custom number format from the workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _NumberFormat_|Required| **String**|Names the number format to be deleted.| diff --git a/api/Excel.Workbook.ExclusiveAccess.md b/api/Excel.Workbook.ExclusiveAccess.md index ec199596ca9..6ed688aa3cd 100644 --- a/api/Excel.Workbook.ExclusiveAccess.md +++ b/api/Excel.Workbook.ExclusiveAccess.md @@ -23,7 +23,7 @@ Assigns the current user exclusive access to the workbook that's open as a share _expression_ A variable that represents a [Workbook](./Excel.Workbook.md) object. -### Return Value +### Return value Boolean diff --git a/api/Excel.Workbook.ExportAsFixedFormat.md b/api/Excel.Workbook.ExportAsFixedFormat.md index 0b6bfff974d..612ea8f4c39 100644 --- a/api/Excel.Workbook.ExportAsFixedFormat.md +++ b/api/Excel.Workbook.ExportAsFixedFormat.md @@ -27,7 +27,7 @@ The **ExportAsFixedFormat** method is used to publish a workbook to either the -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Required| **XlFixedFormatType**|Can be either **xlTypePDF** or **xlTypeXPS** .| | _Filename_|Optional| **Variant**|A string that indicates the name of the file to be saved. You can include a full path or Excel saves the file in the current folder.| diff --git a/api/Excel.Workbook.FollowHyperlink.md b/api/Excel.Workbook.FollowHyperlink.md index 5bf8c9d6029..0175de09bd0 100644 --- a/api/Excel.Workbook.FollowHyperlink.md +++ b/api/Excel.Workbook.FollowHyperlink.md @@ -27,7 +27,7 @@ Displays a cached document, if it?s already been downloaded. Otherwise, this met -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Address_|Required| **String**|The address of the target document.| | _SubAddress_|Optional| **Variant**|The location within the target document. The default value is the empty string.| diff --git a/api/Excel.Workbook.ForceFullCalculation.md b/api/Excel.Workbook.ForceFullCalculation.md index bf58a43dc9c..cca1b3198a2 100644 --- a/api/Excel.Workbook.ForceFullCalculation.md +++ b/api/Excel.Workbook.ForceFullCalculation.md @@ -23,7 +23,7 @@ Returns or sets the specified workbook to forced calculation mode. Read/write. _expression_ An expression that returns a '[Workbook](Excel.Workbook.md)' object. -### Return Value +### Return value Boolean diff --git a/api/Excel.Workbook.GetWorkflowTasks.md b/api/Excel.Workbook.GetWorkflowTasks.md index b33497505ef..d9b128fc136 100644 --- a/api/Excel.Workbook.GetWorkflowTasks.md +++ b/api/Excel.Workbook.GetWorkflowTasks.md @@ -23,7 +23,7 @@ Returns the collection of **[WorkflowTask](./Office.WorkflowTask.md)** objects _expression_ A variable that represents a [Workbook](./Excel.Workbook.md) object. -### Return Value +### Return value WorkFlowTasks diff --git a/api/Excel.Workbook.GetWorkflowTemplates.md b/api/Excel.Workbook.GetWorkflowTemplates.md index 5ec65999a75..0a038e69cd8 100644 --- a/api/Excel.Workbook.GetWorkflowTemplates.md +++ b/api/Excel.Workbook.GetWorkflowTemplates.md @@ -23,7 +23,7 @@ Returns the collection of **[WorkflowTemplate](./Office.WorkflowTemplate.md)** _expression_ A variable that represents a [Workbook](./Excel.Workbook.md) object. -### Return Value +### Return value WorkflowTemplates diff --git a/api/Excel.Workbook.HighlightChangesOptions.md b/api/Excel.Workbook.HighlightChangesOptions.md index 03cb77dc66d..6dd3ae1b0f1 100644 --- a/api/Excel.Workbook.HighlightChangesOptions.md +++ b/api/Excel.Workbook.HighlightChangesOptions.md @@ -27,7 +27,7 @@ Controls how changes are shown in a shared workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _When_|Optional| **Variant**|The changes that are shown. Can be one of the following **[XlHighlightChangesTime](Excel.XlHighlightChangesTime.md)** constants: **xlSinceMyLastSave** , **xlAllChanges** , or **xlNotYetReviewed** .| | _Who_|Optional| **Variant**|The user or users whose changes are shown. Can be "Everyone," "Everyone but Me," or the name of one of the users of the shared workbook.| diff --git a/api/Excel.Workbook.LinkInfo.md b/api/Excel.Workbook.LinkInfo.md index c04bd4099de..c819c39c0bd 100644 --- a/api/Excel.Workbook.LinkInfo.md +++ b/api/Excel.Workbook.LinkInfo.md @@ -27,14 +27,14 @@ Returns the link date and update status. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **String**|The name of the link.| | _LinkInfo_|Required| **[XlLinkInfo](Excel.XlLinkInfo.md)**|The type of information to be returned.| | _Type_|Optional| **Variant**|One of the constants of **[XlLinkInfoType](Excel.XlLinkInfoType.md)** specifying the type of link to return.| | _EditionRef_|Optional| **Variant**|If the link is an edition, this argument specifies the edition reference as a string in R1C1 style. This argument is required if there's more than one publisher or subscriber with the same name in the workbook.| -### Return Value +### Return value Variant diff --git a/api/Excel.Workbook.LinkSources.md b/api/Excel.Workbook.LinkSources.md index 7d99ac4c293..5c0acb7df3f 100644 --- a/api/Excel.Workbook.LinkSources.md +++ b/api/Excel.Workbook.LinkSources.md @@ -27,11 +27,11 @@ Returns an array of links in the workbook. The names in the array are the names -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Optional| **Variant**|One of the constants of **[XlLink](Excel.XlLink.md)** which specifies the type of link to return.| -### Return Value +### Return value Variant diff --git a/api/Excel.Workbook.MergeWorkbook.md b/api/Excel.Workbook.MergeWorkbook.md index ba061f191c6..3e5d3d6672b 100644 --- a/api/Excel.Workbook.MergeWorkbook.md +++ b/api/Excel.Workbook.MergeWorkbook.md @@ -27,7 +27,7 @@ Merges changes from one workbook into an open workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **Variant**|The file name of the workbook that contains the changes to be merged into the open workbook.| diff --git a/api/Excel.Workbook.NewChart.md b/api/Excel.Workbook.NewChart.md index e3a18487880..4b4906d6ba3 100644 --- a/api/Excel.Workbook.NewChart.md +++ b/api/Excel.Workbook.NewChart.md @@ -27,11 +27,11 @@ Occurs when a new chart is created in the workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Ch_|Required| **[Chart](Excel.Chart(object).md)**|The new chart.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Workbook.NewSheet.md b/api/Excel.Workbook.NewSheet.md index 5b24e5f27f9..15f6d88e51e 100644 --- a/api/Excel.Workbook.NewSheet.md +++ b/api/Excel.Workbook.NewSheet.md @@ -27,11 +27,11 @@ Occurs when a new sheet is created in the workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The new sheet. Can be a **[Worksheet](Excel.Worksheet.md)** or **[Chart](Excel.Chart(object).md)** object.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Workbook.NewWindow.md b/api/Excel.Workbook.NewWindow.md index 6690a2d912e..8e5afb51492 100644 --- a/api/Excel.Workbook.NewWindow.md +++ b/api/Excel.Workbook.NewWindow.md @@ -23,7 +23,7 @@ Creates a new window or a copy of the specified window. _expression_ A variable that represents a [Workbook](./Excel.Workbook.md) object. -### Return Value +### Return value Window diff --git a/api/Excel.Workbook.OpenLinks.md b/api/Excel.Workbook.OpenLinks.md index 649ca2e7cf3..1d1c0fef005 100644 --- a/api/Excel.Workbook.OpenLinks.md +++ b/api/Excel.Workbook.OpenLinks.md @@ -27,7 +27,7 @@ Opens the supporting documents for a link or links. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **String**|The name of the Microsoft Excel or DDE/OLE link, as returned from the **[LinkSources](Excel.Workbook.LinkSources.md)** method.| | _ReadOnly_|Optional| **Variant**| **True** to open documents as read-only. The default value is **False** .| diff --git a/api/Excel.Workbook.PivotCaches.md b/api/Excel.Workbook.PivotCaches.md index 9a7453d1221..493e28a0671 100644 --- a/api/Excel.Workbook.PivotCaches.md +++ b/api/Excel.Workbook.PivotCaches.md @@ -23,7 +23,7 @@ Returns a **[PivotCaches](Excel.PivotCaches.md)** collection that represents al _expression_ A variable that represents a [Workbook](./Excel.Workbook.md) object. -### Return Value +### Return value PivotCaches diff --git a/api/Excel.Workbook.Post.md b/api/Excel.Workbook.Post.md index c9c08b400fc..5a24320ff53 100644 --- a/api/Excel.Workbook.Post.md +++ b/api/Excel.Workbook.Post.md @@ -27,7 +27,7 @@ Posts the specified workbook to a public folder. This method works only with a M -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _DestName_|Optional| **Variant**|This argument is ignored. The **Post** method prompts the user to specify the destination for the workbook.| diff --git a/api/Excel.Workbook.PrintOut.md b/api/Excel.Workbook.PrintOut.md index 44e2622f589..9b844ecb2bd 100644 --- a/api/Excel.Workbook.PrintOut.md +++ b/api/Excel.Workbook.PrintOut.md @@ -27,7 +27,7 @@ Prints the object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _From_|Optional| **Variant**|The number of the page at which to start printing. If this argument is omitted, printing starts at the beginning.| | _To_|Optional| **Variant**|The number of the last page to print. If this argument is omitted, printing ends with the last page.| @@ -39,7 +39,7 @@ Prints the object. | _PrToFileName_|Optional| **Variant**|If _PrintToFile_ is set to **True** , this argument specifies the name of the file you want to print to.| | _IgnorePrintAreas_|Optional| **Variant**| **True** to ignore print areas and print the entire object.| -### Return Value +### Return value Variant diff --git a/api/Excel.Workbook.PrintPreview.md b/api/Excel.Workbook.PrintPreview.md index 071bf4c796d..1d9b1ddbd3e 100644 --- a/api/Excel.Workbook.PrintPreview.md +++ b/api/Excel.Workbook.PrintPreview.md @@ -27,7 +27,7 @@ Shows a preview of the object as it would look when printed. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _EnableChanges_|Optional| **Variant**|Pass a **Boolean** value to specify if the user can change the margins and other page setup options available in print preview.| diff --git a/api/Excel.Workbook.Protect.md b/api/Excel.Workbook.Protect.md index 6d9a9d33533..6ac3586fdf8 100644 --- a/api/Excel.Workbook.Protect.md +++ b/api/Excel.Workbook.Protect.md @@ -27,7 +27,7 @@ Protects a workbook so that it cannot be modified. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Password_|Optional| **Variant**|A string that specifies a case-sensitive password for the worksheet or workbook. If this argument is omitted, you can unprotect the worksheet or workbook without using a password. Otherwise, you must specify the password to unprotect the worksheet or workbook. If you forget the password, you cannot unprotect the worksheet or workbook. Use strong passwords that combine uppercase and lowercase letters, numbers, and symbols. Weak passwords don't mix these elements. Strong password: Y6dh!et5. Weak password: House27. Passwords should be 8 or more characters in length. A pass phrase that uses 14 or more characters is better. For more information, see Help protect your personal information with strong passwords. It is critical that you remember your password. If you forget your password, Microsoft cannot retrieve it. Store the passwords that you write down in a secure place away from the information that they help protect. | | _Structure_|Optional| **Variant**| **True** to protect the structure of the workbook (the relative position of the sheets). The default value is **False** .| diff --git a/api/Excel.Workbook.ProtectSharing.md b/api/Excel.Workbook.ProtectSharing.md index 0565901e78b..4d1908ba09c 100644 --- a/api/Excel.Workbook.ProtectSharing.md +++ b/api/Excel.Workbook.ProtectSharing.md @@ -27,7 +27,7 @@ Saves the workbook and protects it for sharing. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Optional| **Variant**|A string indicating the name of the saved file. You can include a full path; if you don?t, Microsoft Excel saves the file in the current folder.| | _Password_|Optional| **Variant**|A case-sensitive string indicating the protection password to be given to the file. Should be no longer than 15 characters.| diff --git a/api/Excel.Workbook.PurgeChangeHistoryNow.md b/api/Excel.Workbook.PurgeChangeHistoryNow.md index 0bef5bce8b2..da74e164d20 100644 --- a/api/Excel.Workbook.PurgeChangeHistoryNow.md +++ b/api/Excel.Workbook.PurgeChangeHistoryNow.md @@ -27,7 +27,7 @@ Removes entries from the change log for the specified workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Days_|Required| **Long**|The number of days that changes in the change log are to be retained.| | _SharingPassword_|Optional| **Variant**|The password that unprotects the workbook for sharing. If the workbook is protected for sharing with a password and this argument is omitted, the user is prompted for the password.| diff --git a/api/Excel.Workbook.RejectAllChanges.md b/api/Excel.Workbook.RejectAllChanges.md index 6822e7f2e2a..ab4380acf07 100644 --- a/api/Excel.Workbook.RejectAllChanges.md +++ b/api/Excel.Workbook.RejectAllChanges.md @@ -27,7 +27,7 @@ Rejects all changes in the specified shared workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _When_|Optional| **Variant**|Specifies when all the changes are rejected.| | _Who_|Optional| **Variant**|Specifies by whom all the changes are rejected.| diff --git a/api/Excel.Workbook.ReloadAs.md b/api/Excel.Workbook.ReloadAs.md index 9cf4be8feb2..163b36197bf 100644 --- a/api/Excel.Workbook.ReloadAs.md +++ b/api/Excel.Workbook.ReloadAs.md @@ -27,7 +27,7 @@ Reloads a workbook based on an HTML document, using the specified document encod -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Encoding_|Required| **[MsoEncoding](./Office.MsoEncoding.md)**|The encoding that is to be applied to the workbook.| diff --git a/api/Excel.Workbook.RemoveDocumentInformation.md b/api/Excel.Workbook.RemoveDocumentInformation.md index adbef2dd230..72d4e71c4e5 100644 --- a/api/Excel.Workbook.RemoveDocumentInformation.md +++ b/api/Excel.Workbook.RemoveDocumentInformation.md @@ -27,7 +27,7 @@ Removes all information of the specified type from the workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _RemoveDocInfoType_|Required| **[XlRemoveDocInfoType](Excel.XlRemoveDocInfoType.md)**|Type of information to be removed.| diff --git a/api/Excel.Workbook.RemoveUser.md b/api/Excel.Workbook.RemoveUser.md index 5e29fc7b580..3fe31c87215 100644 --- a/api/Excel.Workbook.RemoveUser.md +++ b/api/Excel.Workbook.RemoveUser.md @@ -27,7 +27,7 @@ Disconnects the specified user from the shared workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Long**|The user index.| diff --git a/api/Excel.Workbook.ReplyWithChanges.md b/api/Excel.Workbook.ReplyWithChanges.md index cc48f2f5cde..5d9b0c6e4fe 100644 --- a/api/Excel.Workbook.ReplyWithChanges.md +++ b/api/Excel.Workbook.ReplyWithChanges.md @@ -27,7 +27,7 @@ Sends an e-mail message to the author of a workbook that has been sent out for r -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _ShowMessage_|Optional| **Variant**| **False** does not display the message. **True** displays the message.| diff --git a/api/Excel.Workbook.RowsetComplete.md b/api/Excel.Workbook.RowsetComplete.md index 2c96dc52194..78486e7ca7f 100644 --- a/api/Excel.Workbook.RowsetComplete.md +++ b/api/Excel.Workbook.RowsetComplete.md @@ -27,7 +27,7 @@ The event is raised when the user either drills through the recordset or invokes -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Description_|Required| **String**|A brief description of the event.| | _Sheet_|Required| **String**|Worksheet on which the recordset is created.| diff --git a/api/Excel.Workbook.RunAutoMacros.md b/api/Excel.Workbook.RunAutoMacros.md index 9cdc881f0c1..f6381b68b88 100644 --- a/api/Excel.Workbook.RunAutoMacros.md +++ b/api/Excel.Workbook.RunAutoMacros.md @@ -27,7 +27,7 @@ Runs the Auto_Open, Auto_Close, Auto_Activate, or Auto_Deactivate macro attached -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Which_|Required| **[XlRunAutoMacro](Excel.XlRunAutoMacro.md)**|Specifies the automatic macro to run.| diff --git a/api/Excel.Workbook.SaveAs.md b/api/Excel.Workbook.SaveAs.md index 89dd60e3456..392c8136141 100644 --- a/api/Excel.Workbook.SaveAs.md +++ b/api/Excel.Workbook.SaveAs.md @@ -27,7 +27,7 @@ Saves changes to the workbook in a different file. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Optional| **Variant**|A string that indicates the name of the file to be saved. You can include a full path; if you don't, Microsoft Excel saves the file in the current folder.| | _FileFormat_|Optional| **Variant**|The file format to use when you save the file. For a list of valid choices, see the **[XlFileFormat](Excel.XlFileFormat.md)** enumeration. For an existing file, the default format is the last file format specified; for a new file, the default is the format of the version of Excel being used.| diff --git a/api/Excel.Workbook.SaveAsXMLData.md b/api/Excel.Workbook.SaveAsXMLData.md index 75f274a2bed..a30222bd2fc 100644 --- a/api/Excel.Workbook.SaveAsXMLData.md +++ b/api/Excel.Workbook.SaveAsXMLData.md @@ -27,7 +27,7 @@ Exports the data that has been mapped to the specified XML schema map to an XML -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|A string that indicates the name of the file to be saved. You can include a full path; if you don't, Microsoft Excel saves the file in the current folder.| | _Map_|Required| **[XmlMap](Excel.XmlMap.md)**|The schema map to apply to the data.| diff --git a/api/Excel.Workbook.SaveCopyAs.md b/api/Excel.Workbook.SaveCopyAs.md index 09541e16492..025444a427b 100644 --- a/api/Excel.Workbook.SaveCopyAs.md +++ b/api/Excel.Workbook.SaveCopyAs.md @@ -27,7 +27,7 @@ Saves a copy of the workbook to a file but doesn't modify the open workbook in m -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **Variant**|Specifies the file name for the copy.| diff --git a/api/Excel.Workbook.SendFaxOverInternet.md b/api/Excel.Workbook.SendFaxOverInternet.md index d0ef1a1fdd5..906beb729d4 100644 --- a/api/Excel.Workbook.SendFaxOverInternet.md +++ b/api/Excel.Workbook.SendFaxOverInternet.md @@ -27,7 +27,7 @@ Sends a worksheet as a fax to the specfied recipients. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Recipients_|Optional| **Variant**|A **String** that represents the fax numbers and e-mail addresses of the people to whom the fax will be sent. Separate multiple recipients with a semicolon.| | _Subject_|Optional| **Variant**|A **String** that represents the subject line for the faxed document.| diff --git a/api/Excel.Workbook.SendForReview.md b/api/Excel.Workbook.SendForReview.md index 9ffd7bd9791..35415f3f6e7 100644 --- a/api/Excel.Workbook.SendForReview.md +++ b/api/Excel.Workbook.SendForReview.md @@ -27,7 +27,7 @@ Sends a workbook in an e-mail message for review to the specified recipients. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Recipients_|Optional| **Variant**|A string that lists the people to whom to send the message. These can be unresolved names and aliases in an e-mail phone book or full e-mail addresses. Separate multiple recipients with a semicolon (;). If left blank and _ShowMessage_ is **False** , you will receive an error message, and the message will not be sent.| | _Subject_|Optional| **Variant**|A string for the subject of the message. If left blank, the subject will be: Please review "filename".| diff --git a/api/Excel.Workbook.SendMail.md b/api/Excel.Workbook.SendMail.md index 18bdd60d310..04551d5d0c5 100644 --- a/api/Excel.Workbook.SendMail.md +++ b/api/Excel.Workbook.SendMail.md @@ -27,7 +27,7 @@ Sends the workbook by using the installed mail system. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Recipients_|Required| **Variant**|Specifies the name of the recipient as text, or as an array of text strings if there are multiple recipients. At least one recipient must be specified, and all recipients are added as To recipients.| | _Subject_|Optional| **Variant**|Specifies the subject of the message. If this argument is omitted, the document name is used.| diff --git a/api/Excel.Workbook.SendMailer.md b/api/Excel.Workbook.SendMailer.md index 6cf2c5593fa..1abbc962251 100644 --- a/api/Excel.Workbook.SendMailer.md +++ b/api/Excel.Workbook.SendMailer.md @@ -27,7 +27,7 @@ You have requested Help for a Visual Basic keyword used only on the Macintosh. F -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _FileFormat_|Optional| **Variant**|See help included with Microsoft Office Macintosh Edition.| | _Priority_|Optional| **XlPriority**|See help included with Microsoft Office Macintosh Edition.| diff --git a/api/Excel.Workbook.SetLinkOnData.md b/api/Excel.Workbook.SetLinkOnData.md index 40635fabc91..a675ce23c7e 100644 --- a/api/Excel.Workbook.SetLinkOnData.md +++ b/api/Excel.Workbook.SetLinkOnData.md @@ -27,7 +27,7 @@ Sets the name of a procedure that runs whenever a DDE link is updated. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **String**|The name of the DDE/OLE link, as returned from the **[LinkSources](Excel.Workbook.LinkSources.md)** method.| | _Procedure_|Optional| **Variant**|The name of the procedure to be run when the link is updated. This can be either a Microsoft Excel 4.0 macro or a Visual Basic procedure. Set this argument to an empty string ("") to indicate that no procedure should run when the link is updated.| diff --git a/api/Excel.Workbook.SetPasswordEncryptionOptions.md b/api/Excel.Workbook.SetPasswordEncryptionOptions.md index f936d107cbc..c7a8730dc54 100644 --- a/api/Excel.Workbook.SetPasswordEncryptionOptions.md +++ b/api/Excel.Workbook.SetPasswordEncryptionOptions.md @@ -27,7 +27,7 @@ Sets the options for encrypting workbooks using passwords. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _PasswordEncryptionProvider_|Optional| **Variant**|A case sensitive string of the encryption provider.| | _PasswordEncryptionAlgorithm_|Optional| **Variant**|A case sensitive string of the algorithmic short name (i.e. "RC4").| diff --git a/api/Excel.Workbook.SheetActivate.md b/api/Excel.Workbook.SheetActivate.md index c01192c2f9e..7062858a43e 100644 --- a/api/Excel.Workbook.SheetActivate.md +++ b/api/Excel.Workbook.SheetActivate.md @@ -27,7 +27,7 @@ Occurs when any sheet is activated. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The activated sheet. Can be a **[Chart](Excel.Chart(object).md)** or **[Worksheet](Excel.Worksheet.md)** object.| diff --git a/api/Excel.Workbook.SheetBeforeDoubleClick.md b/api/Excel.Workbook.SheetBeforeDoubleClick.md index 3415670372f..180b4480799 100644 --- a/api/Excel.Workbook.SheetBeforeDoubleClick.md +++ b/api/Excel.Workbook.SheetBeforeDoubleClick.md @@ -27,7 +27,7 @@ Occurs when any worksheet is double-clicked, before the default double-click act -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**| A **[Worksheet](Excel.Worksheet.md)** object that represents the sheet.| | _Target_|Required| **Range**|The cell nearest to the mouse pointer when the double-click occurred.| diff --git a/api/Excel.Workbook.SheetBeforeRightClick.md b/api/Excel.Workbook.SheetBeforeRightClick.md index 7e265d3cad5..9a7a82e4396 100644 --- a/api/Excel.Workbook.SheetBeforeRightClick.md +++ b/api/Excel.Workbook.SheetBeforeRightClick.md @@ -27,7 +27,7 @@ Occurs when any worksheet is right-clicked, before the default right-click actio -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|A **[Worksheet](Excel.Worksheet.md)** object that represents the sheet.| | _Target_|Required| **Range**|The cell nearest to the mouse pointer when the right-click occurred.| diff --git a/api/Excel.Workbook.SheetCalculate.md b/api/Excel.Workbook.SheetCalculate.md index bde145a6a77..a23317aba8c 100644 --- a/api/Excel.Workbook.SheetCalculate.md +++ b/api/Excel.Workbook.SheetCalculate.md @@ -27,7 +27,7 @@ Occurs after any worksheet is recalculated or after any changed data is plotted -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|Can be a **[Chart](Excel.Chart(object).md)** or **[Worksheet](Excel.Worksheet.md)** object.| diff --git a/api/Excel.Workbook.SheetChange.md b/api/Excel.Workbook.SheetChange.md index 2182156f6d8..14c9883ec41 100644 --- a/api/Excel.Workbook.SheetChange.md +++ b/api/Excel.Workbook.SheetChange.md @@ -27,7 +27,7 @@ Occurs when cells in any worksheet are changed by the user or by an external lin -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|A **[Worksheet](Excel.Worksheet.md)** object that represents the sheet.| | _Target_|Required| **Range**|The changed range.| diff --git a/api/Excel.Workbook.SheetDeactivate.md b/api/Excel.Workbook.SheetDeactivate.md index d133f61b50a..499e1020469 100644 --- a/api/Excel.Workbook.SheetDeactivate.md +++ b/api/Excel.Workbook.SheetDeactivate.md @@ -27,7 +27,7 @@ Occurs when any sheet is deactivated. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The sheet. Can be a **[Chart](Excel.Chart(object).md)** or **[Worksheet](Excel.Worksheet.md)** object.| diff --git a/api/Excel.Workbook.SheetFollowHyperlink.md b/api/Excel.Workbook.SheetFollowHyperlink.md index 1f4bb5e9428..e68520894ce 100644 --- a/api/Excel.Workbook.SheetFollowHyperlink.md +++ b/api/Excel.Workbook.SheetFollowHyperlink.md @@ -27,7 +27,7 @@ Occurs when you click any hyperlink in Microsoft Excel. For worksheet-level even -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The **[Worksheet](Excel.Worksheet.md)** object that contains the hyperlink.| | _Target_|Required| **Hyperlink**|The **[Hyperlink](Excel.Hyperlink.md)** object that represents the destination of the hyperlink.| diff --git a/api/Excel.Workbook.SheetPivotTableAfterValueChange.md b/api/Excel.Workbook.SheetPivotTableAfterValueChange.md index d49cbf9d341..8ccdfbf630c 100644 --- a/api/Excel.Workbook.SheetPivotTableAfterValueChange.md +++ b/api/Excel.Workbook.SheetPivotTableAfterValueChange.md @@ -27,13 +27,13 @@ Occurs after a cell or range of cells inside a PivotTable are edited or recalcul -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The worksheet that contains the PivotTable.| | _TargetPivotTable_|Required| **[PivotTable](Excel.PivotTable.md)**|The PivotTable that contains the edited or recalculated cells.| | _TargetRange_|Required| **[Range](Excel.Range(object).md)**|The range that contains all the edited or recalcuated cells.| -### Return Value +### Return value **Nothing** diff --git a/api/Excel.Workbook.SheetPivotTableBeforeAllocateChanges.md b/api/Excel.Workbook.SheetPivotTableBeforeAllocateChanges.md index 51e88af7ec5..fc59c9ee614 100644 --- a/api/Excel.Workbook.SheetPivotTableBeforeAllocateChanges.md +++ b/api/Excel.Workbook.SheetPivotTableBeforeAllocateChanges.md @@ -27,7 +27,7 @@ Occurs before changes are applied to a PivotTable. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The worksheet that contains the PivotTable.| | _TargetPivotTable_|Required| **[PivotTable](Excel.PivotTable.md)**|The PivotTable that contains the changes to apply.| @@ -35,7 +35,7 @@ Occurs before changes are applied to a PivotTable. | _ValueChangeEnd_|Required| **Long**|The index to the last change in the associated **PivotTableChangeList** collection. The index is specified by the **Order** property of the **ValueChange** object in the **PivotTableChangeList** collection.| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the changes are not applied to the PivotTable and all edits are lost.| -### Return Value +### Return value **Nothing** diff --git a/api/Excel.Workbook.SheetPivotTableBeforeCommitChanges.md b/api/Excel.Workbook.SheetPivotTableBeforeCommitChanges.md index 555ba058267..a1c4bdbccec 100644 --- a/api/Excel.Workbook.SheetPivotTableBeforeCommitChanges.md +++ b/api/Excel.Workbook.SheetPivotTableBeforeCommitChanges.md @@ -27,7 +27,7 @@ Occurs before changes are committed against the OLAP data source for a PivotTabl -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The worksheet that contains the PivotTable.| | _TargetPivotTable_|Required| **[PivotTable](Excel.PivotTable.md)**|The PivotTable that contains the changes to commit.| @@ -35,7 +35,7 @@ Occurs before changes are committed against the OLAP data source for a PivotTabl | _ValueChangeEnd_|Required| **Long**|The index to the last change in the associated **PivotTableChangeList** object. The index is specified by the **Order** property of the **ValueChange** object in the **PivotTableChangeList** collection.| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the changes are not committed against the OLAP data source of the PivotTable.| -### Return Value +### Return value **Nothing** diff --git a/api/Excel.Workbook.SheetPivotTableBeforeDiscardChanges.md b/api/Excel.Workbook.SheetPivotTableBeforeDiscardChanges.md index 52b0d5cd368..2ecbb5a2893 100644 --- a/api/Excel.Workbook.SheetPivotTableBeforeDiscardChanges.md +++ b/api/Excel.Workbook.SheetPivotTableBeforeDiscardChanges.md @@ -27,14 +27,14 @@ Occurs before changes to a PivotTable are discarded. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|| | _TargetPivotTable_|Required| **[PivotTable](Excel.PivotTable.md)**|The PivotTable that contains the changes to discard.| | _ValueChangeStart_|Required| **Long**|The index to the first change in the associated **[PivotTableChangeList](Excel.PivotTableChangeList.md)** object. The index is specified by the **[Order](Excel.ValueChange.Order.md)** property of the **[ValueChange](Excel.ValueChange.md)** object in the **PivotTableChangeList** collection.| | _ValueChangeEnd_|Required| **Long**|The index to the last change in the associated **PivotTableChangeList** object. The index is specified by the **Order** property of the **ValueChange** object in the **PivotTableChangeList** collection.| -### Return Value +### Return value **Nothing** diff --git a/api/Excel.Workbook.SheetPivotTableChangeSync.md b/api/Excel.Workbook.SheetPivotTableChangeSync.md index e378ddbc1b7..36be57cfe9b 100644 --- a/api/Excel.Workbook.SheetPivotTableChangeSync.md +++ b/api/Excel.Workbook.SheetPivotTableChangeSync.md @@ -27,12 +27,12 @@ Occurs after changes to a PivotTable. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The worksheet that contains the PivotTable.| | _Target_|Required| **[PivotTable](Excel.PivotTable.md)**|The PivotTable that was changed.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Workbook.SheetPivotTableUpdate.md b/api/Excel.Workbook.SheetPivotTableUpdate.md index b617253616d..df28949eaa9 100644 --- a/api/Excel.Workbook.SheetPivotTableUpdate.md +++ b/api/Excel.Workbook.SheetPivotTableUpdate.md @@ -27,7 +27,7 @@ Occurs after the sheet of the PivotTable report has been updated. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The selected sheet.| | _Target_|Required| **PivotTable**|The selected PivotTable report.| diff --git a/api/Excel.Workbook.SheetSelectionChange.md b/api/Excel.Workbook.SheetSelectionChange.md index 01633f3e0ec..c311a79efcc 100644 --- a/api/Excel.Workbook.SheetSelectionChange.md +++ b/api/Excel.Workbook.SheetSelectionChange.md @@ -27,7 +27,7 @@ Occurs when the selection changes on any worksheet (doesn't occur if the selecti -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Sh_|Required| **Object**|The worksheet that contains the new selection.| | _Target_|Required| **Range**|The new selected range.| diff --git a/api/Excel.Workbook.SlicerCaches.md b/api/Excel.Workbook.SlicerCaches.md index 0b2bb18687c..934edc8b666 100644 --- a/api/Excel.Workbook.SlicerCaches.md +++ b/api/Excel.Workbook.SlicerCaches.md @@ -23,7 +23,7 @@ Returns the **[SlicerCaches](Excel.SlicerCaches.md)** object associated with th _expression_ A variable that represents a [Workbook](./Excel.Workbook.md) object. -### Return Value +### Return value SlicerCaches diff --git a/api/Excel.Workbook.Unprotect.md b/api/Excel.Workbook.Unprotect.md index fb1cf74f882..5c1172d1400 100644 --- a/api/Excel.Workbook.Unprotect.md +++ b/api/Excel.Workbook.Unprotect.md @@ -27,7 +27,7 @@ Removes protection from a sheet or workbook. This method has no effect if the sh -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Password_|Optional| **Variant**|A string that denotes the case-sensitive password to use to unprotect the sheet or workbook. If the sheet or workbook isn't protected with a password, this argument is ignored. If you omit this argument for a sheet that's protected with a password, you'll be prompted for the password. If you omit this argument for a workbook that's protected with a password, the method fails.| diff --git a/api/Excel.Workbook.UnprotectSharing.md b/api/Excel.Workbook.UnprotectSharing.md index 7104e93bc5b..8bd599df0fa 100644 --- a/api/Excel.Workbook.UnprotectSharing.md +++ b/api/Excel.Workbook.UnprotectSharing.md @@ -27,7 +27,7 @@ Turns off protection for sharing and saves the workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SharingPassword_|Optional| **Variant**|The workbook password.| diff --git a/api/Excel.Workbook.UpdateLink.md b/api/Excel.Workbook.UpdateLink.md index a55f8bd9dd6..67a3040ac68 100644 --- a/api/Excel.Workbook.UpdateLink.md +++ b/api/Excel.Workbook.UpdateLink.md @@ -27,7 +27,7 @@ Updates a Microsoft Excel, DDE, or OLE link (or links). -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Optional| **Variant**|The name of the Microsoft Excel or DDE/OLE link to be updated, as returned from the **[LinkSources](Excel.Workbook.LinkSources.md)** method.| | _Type_|Optional| **Variant**|One of the constants of **[XlLinkType](Excel.XlLinkType.md)** specifying the type of link.| diff --git a/api/Excel.Workbook.WindowActivate.md b/api/Excel.Workbook.WindowActivate.md index 339881cd040..5055e3a1ab7 100644 --- a/api/Excel.Workbook.WindowActivate.md +++ b/api/Excel.Workbook.WindowActivate.md @@ -27,7 +27,7 @@ Occurs when any workbook window is activated. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wn_|Required| **Window**| The activated window.| diff --git a/api/Excel.Workbook.WindowDeactivate.md b/api/Excel.Workbook.WindowDeactivate.md index 5e9c5bf5568..e254681c323 100644 --- a/api/Excel.Workbook.WindowDeactivate.md +++ b/api/Excel.Workbook.WindowDeactivate.md @@ -27,7 +27,7 @@ Occurs when any workbook window is deactivated. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wn_|Required| **Window**|The deactivated window.| diff --git a/api/Excel.Workbook.WindowResize.md b/api/Excel.Workbook.WindowResize.md index dccbff1886c..07b2b581c78 100644 --- a/api/Excel.Workbook.WindowResize.md +++ b/api/Excel.Workbook.WindowResize.md @@ -27,7 +27,7 @@ Occurs when any workbook window is resized. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Wn_|Required| **Window**|The resized window.| diff --git a/api/Excel.Workbook.XmlImport.md b/api/Excel.Workbook.XmlImport.md index 13185aa044a..7c4a5af2743 100644 --- a/api/Excel.Workbook.XmlImport.md +++ b/api/Excel.Workbook.XmlImport.md @@ -27,14 +27,14 @@ Imports an XML data file into the current workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Url_|Required| **String**|A uniform resource locator (URL) or a uniform naming convention (UNC) path to a XML data file.| | _ImportMap_|Required| **[XmlMap](Excel.XmlMap.md)**|The schema map to apply when importing the file. If the data was previously imported, contains a reference to the **XmlMap** object containing the data.| | _Overwrite_|Optional| **Variant**|If a value is not specified for the Destination parameter, then this parameter specifies whether or not to overwrite data that has been mapped to the schema map specified in the ImportMap parameter. Set to **True** to overwrite the data or **False** to append the new data to the existing data. The default value is **True** . If a value is specified for the Destination parameter, then this parameter specifies whether or not to overwrite existing data. Set to **True** to overwrite existing data or **False** to cancel the import if data would be overwritten. The default value is **True** .| | _Destination_|Optional| **Variant**|Specifies the range where the list will be created. You only use the top left corner of the range.| -### Return Value +### Return value [XlXmlImportResult](Excel.XlXmlImportResult.md) diff --git a/api/Excel.Workbook.XmlImportXml.md b/api/Excel.Workbook.XmlImportXml.md index e1c75af104b..8f58b6b0607 100644 --- a/api/Excel.Workbook.XmlImportXml.md +++ b/api/Excel.Workbook.XmlImportXml.md @@ -27,14 +27,14 @@ Imports an XML data stream that has been previously loaded into memory. Excel us -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Data_|Required| **String**|The data to import.| | _ImportMap_|Required| **[XmlMap](Excel.XmlMap.md)**|The schema map to apply when importing the file.| | _Overwrite_|Optional| **Variant**|If a value is not specified for the Destination parameter, then this parameter specifies whether or not to overwrite data that has been mapped to the schema map specified in the ImportMap parameter. Set to **True** to overwrite the data or **False** to append the new data to the existing data. The default value is **True** . If a value is specified for the Destination parameter, then this parameter specifies whether or not to overwrite existing data. Set to **True** to overwrite existing data or **False** to cancel the import if data would be overwritten. The default value is **True** .| | _Destination_|Optional| **Variant**|Specifies the range where the list will be created. Excel only uses the top left corner of the range.| -### Return Value +### Return value [XlXmlImportResult](Excel.XlXmlImportResult.md) diff --git a/api/Excel.Workbooks.Add.md b/api/Excel.Workbooks.Add.md index 1cdcd28ad16..25690b2f820 100644 --- a/api/Excel.Workbooks.Add.md +++ b/api/Excel.Workbooks.Add.md @@ -27,11 +27,11 @@ Creates a new workbook. The new workbook becomes the active workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Template_|Optional| **Variant**|Determines how the new workbook is created. If this argument is a string specifying the name of an existing Microsoft Excel file, the new workbook is created with the specified file as a template. If this argument is a constant, the new workbook contains a single sheet of the specified type. Can be one of the following [XlWBATemplate](Excel.XlWBATemplate.md) constants: **xlWBATChart** , **xlWBATExcel4IntlMacroSheet** , **xlWBATExcel4MacroSheet** , or **xlWBATWorksheet** . If this argument is omitted, Microsoft Excel creates a new workbook with a number of blank sheets (the number of sheets is set by the **[SheetsInNewWorkbook](Excel.Application.SheetsInNewWorkbook.md)** property).| -### Return Value +### Return value A **[Workbook](Excel.Workbook.md)** object that represents the new workbook. diff --git a/api/Excel.Workbooks.CanCheckOut.md b/api/Excel.Workbooks.CanCheckOut.md index d8bbd86790d..a980e11d0a4 100644 --- a/api/Excel.Workbooks.CanCheckOut.md +++ b/api/Excel.Workbooks.CanCheckOut.md @@ -27,11 +27,11 @@ ms.date: 06/08/2017 -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|The name of the file to check out.| -### Return Value +### Return value Boolean diff --git a/api/Excel.Workbooks.CheckOut.md b/api/Excel.Workbooks.CheckOut.md index f1af6929776..806d56a18a5 100644 --- a/api/Excel.Workbooks.CheckOut.md +++ b/api/Excel.Workbooks.CheckOut.md @@ -27,7 +27,7 @@ Returns a **String** representing a specified workbook from a server to a local -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|The name of the file to check out.| diff --git a/api/Excel.Workbooks.Item.md b/api/Excel.Workbooks.Item.md index 148084627ef..f9c408683ca 100644 --- a/api/Excel.Workbooks.Item.md +++ b/api/Excel.Workbooks.Item.md @@ -27,7 +27,7 @@ Returns a single object from a collection. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Required| **Variant**|The name or index number of the object.| diff --git a/api/Excel.Workbooks.Open.md b/api/Excel.Workbooks.Open.md index 7c08dd2abc0..d649ad43864 100644 --- a/api/Excel.Workbooks.Open.md +++ b/api/Excel.Workbooks.Open.md @@ -27,7 +27,7 @@ Opens a workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _FileName_|Optional| **Variant**| **String** . The file name of the workbook to be opened.| | _UpdateLinks_|Optional| **Variant**|Specifies the way external references (links) in the file, such as the reference to a range in the Budget.xls workbook in the following formula =SUM([Budget.xls]Annual!C10:C25), are updated. If this argument is omitted, the user is prompted to specify how links will be updated. For more information about the values used by this parameter, see the Remarks section. If Microsoft Excel is opening a file in the WKS, WK1, or WK3 format and the UpdateLinks argument is 0, no charts are created; otherwise Microsoft Excel generates charts from the graphs attached to the file.| @@ -45,7 +45,7 @@ Opens a workbook. | _Local_|Optional| **Variant**| **True** saves files against the language of Microsoft Excel (including control panel settings). **False** (default) saves files against the language of Visual Basic for Applications (VBA) (which is typically United States English unless the VBA project where Workbooks.Open is run from is an old internationalized XL5/95 VBA project).| | _CorruptLoad_|Optional| **[XlCorruptLoad](Excel.XlCorruptLoad.md)**|Can be one of the following constants: **xlNormalLoad** , **xlRepairFile** and **xlExtractData** . The default behavior if no value is specified is **xlNormalLoad** and does not attempt recovery when initiated through the OM.| -### Return Value +### Return value A **[Workbook](Excel.Workbook.md)** object that represents the opened workbook. diff --git a/api/Excel.Workbooks.OpenDatabase.md b/api/Excel.Workbooks.OpenDatabase.md index 55d0bfa750e..47ab81df374 100644 --- a/api/Excel.Workbooks.OpenDatabase.md +++ b/api/Excel.Workbooks.OpenDatabase.md @@ -27,7 +27,7 @@ Returns a **Workbook** object representing a database. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|The connection string which contains the location and filename of the database.| | _CommandText_|Optional| **Variant**|The command text of the query.| @@ -35,7 +35,7 @@ Returns a **Workbook** object representing a database. | _BackgroundQuery_|Optional| **Variant**|This parameter is a variant data type but you can only pass a Boolean value. If you pass **True** , the query is performed in the background (asynchronously). The default value is **False** .| | _ImportDataAs_|Optional| **Variant**|This parameter uses one of the values of the **[XlImportDataAs](Excel.XlImportDataAs.md)** enumeration. The two values of this enum are **xlPivotTableReport** and **xlQueryTable** . Pass one of these values to return the data as a PivotTable or QueryTable. The default value is **xlQueryTable** .| -### Return Value +### Return value Workbook diff --git a/api/Excel.Workbooks.OpenText.md b/api/Excel.Workbooks.OpenText.md index e890964c912..875b1d4ab10 100644 --- a/api/Excel.Workbooks.OpenText.md +++ b/api/Excel.Workbooks.OpenText.md @@ -27,7 +27,7 @@ Loads and parses a text file as a new workbook with a single sheet that contains -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|Specifies the file name of the text file to be opened and parsed.| | _Origin_|Optional| **Variant**|Specifies the origin of the text file. Can be one of the following **XlPlatform** constants: **xlMacintosh** , **xlWindows** , or **xlMSDOS** . Additionally, this could be an integer representing the code page number of the desired code page. For example, "1256" would specify that the encoding of the source text file is Arabic (Windows). If this argument is omitted, the method uses the current setting of the **File Origin** option in the **Text Import Wizard**.| diff --git a/api/Excel.Workbooks.OpenXML.md b/api/Excel.Workbooks.OpenXML.md index f4e3f9eced7..9f856bf9ddb 100644 --- a/api/Excel.Workbooks.OpenXML.md +++ b/api/Excel.Workbooks.OpenXML.md @@ -27,13 +27,13 @@ Opens an XML data file. Returns a **[Workbook](Excel.Workbook.md)** object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Filename_|Required| **String**|The name of the file to open.| | _Stylesheets_|Optional| **Variant**|Either a single value or an array of values that specify which XSL Transformation (XSLT) stylesheet processing instructions to apply.| | _LoadOption_|Optional| **Variant**|Specifies how Excel opens the XML data file. Can be one of the **[XlXmlLoadOption](Excel.XlXmlLoadOption.md)** constants.| -### Return Value +### Return value Workbook diff --git a/api/Excel.Worksheet.Activate(even).md b/api/Excel.Worksheet.Activate(even).md index 69aab6a539b..4b13f3b1ff1 100644 --- a/api/Excel.Worksheet.Activate(even).md +++ b/api/Excel.Worksheet.Activate(even).md @@ -23,7 +23,7 @@ Occurs when a workbook, worksheet, chart sheet, or embedded chart is activated. _expression_ A variable that represents a [Worksheet](./Excel.Worksheet.md) object. -### Return Value +### Return value nothing diff --git a/api/Excel.Worksheet.BeforeDoubleClick.md b/api/Excel.Worksheet.BeforeDoubleClick.md index f5f74449647..aee34bbdb13 100644 --- a/api/Excel.Worksheet.BeforeDoubleClick.md +++ b/api/Excel.Worksheet.BeforeDoubleClick.md @@ -27,7 +27,7 @@ Occurs when a worksheet is double-clicked, before the default double-click actio -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Target_|Required| **Range**|The cell nearest to the mouse pointer when the double-click occurs.| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the default double-click action isn't performed when the procedure is finished.| diff --git a/api/Excel.Worksheet.BeforeRightClick.md b/api/Excel.Worksheet.BeforeRightClick.md index d1a16f2f174..6ad90a10bbc 100644 --- a/api/Excel.Worksheet.BeforeRightClick.md +++ b/api/Excel.Worksheet.BeforeRightClick.md @@ -27,7 +27,7 @@ Occurs when a worksheet is right-clicked, before the default right-click action. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Target_|Required| **Range**|The cell nearest to the mouse pointer when the right-click occurs.| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the default right-click action doesn't occur when the procedure is finished.| diff --git a/api/Excel.Worksheet.Calculate(even).md b/api/Excel.Worksheet.Calculate(even).md index 2e347b66849..c17a9009c42 100644 --- a/api/Excel.Worksheet.Calculate(even).md +++ b/api/Excel.Worksheet.Calculate(even).md @@ -23,7 +23,7 @@ Occurs after the worksheet is recalculated, for the **Worksheet** object. _expression_ A variable that represents a [Worksheet](./Excel.Worksheet.md) object. -### Return Value +### Return value nothing diff --git a/api/Excel.Worksheet.Change.md b/api/Excel.Worksheet.Change.md index 3fb49d2a707..1ff453edc8e 100644 --- a/api/Excel.Worksheet.Change.md +++ b/api/Excel.Worksheet.Change.md @@ -27,11 +27,11 @@ Occurs when cells on the worksheet are changed by the user or by an external lin -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Target_|Required| **[Range](Excel.Range(object).md)**|The changed range. Can be more than one cell.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Worksheet.ChartObjects.md b/api/Excel.Worksheet.ChartObjects.md index 3a4048b49b0..82f87bc3476 100644 --- a/api/Excel.Worksheet.ChartObjects.md +++ b/api/Excel.Worksheet.ChartObjects.md @@ -27,11 +27,11 @@ Returns an object that represents either a single embedded chart (a **[ChartObj -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The name or number of the chart. This argument can be an array, to specify more than one chart.| -### Return Value +### Return value Object diff --git a/api/Excel.Worksheet.CheckSpelling.md b/api/Excel.Worksheet.CheckSpelling.md index b7547dbd306..22883a9c344 100644 --- a/api/Excel.Worksheet.CheckSpelling.md +++ b/api/Excel.Worksheet.CheckSpelling.md @@ -27,7 +27,7 @@ Checks the spelling of an object. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _CustomDictionary_|Optional| **Variant**|A string that indicates the file name of the custom dictionary to be examined if the word isn't found in the main dictionary. If this argument is omitted, the currently specified dictionary is used.| | _IgnoreUppercase_|Optional| **Variant**| **True** to have Microsoft Excel ignore words that are all uppercase. **False** to have Microsoft Excel check words that are all uppercase. If this argument is omitted, the current setting will be used.| diff --git a/api/Excel.Worksheet.Copy.md b/api/Excel.Worksheet.Copy.md index 832d223c9d0..7646d22019f 100644 --- a/api/Excel.Worksheet.Copy.md +++ b/api/Excel.Worksheet.Copy.md @@ -27,7 +27,7 @@ Copies the sheet to another location in the current workbook or a new workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Before_|Optional| **Variant**|The sheet before which the copied sheet will be placed. You cannot specify _Before_ if you specify _After_.| | _After_|Optional| **Variant**|The sheet after which the copied sheet will be placed. You cannot specify _After_ if you specify _Before_.| diff --git a/api/Excel.Worksheet.Deactivate.md b/api/Excel.Worksheet.Deactivate.md index 5571555014b..6435d05211d 100644 --- a/api/Excel.Worksheet.Deactivate.md +++ b/api/Excel.Worksheet.Deactivate.md @@ -23,7 +23,7 @@ Occurs when the chart, worksheet, or workbook is deactivated. _expression_ A variable that represents a [Worksheet](./Excel.Worksheet.md) object. -### Return Value +### Return value nothing diff --git a/api/Excel.Worksheet.Delete.md b/api/Excel.Worksheet.Delete.md index 371035453c9..273da6bf6ef 100644 --- a/api/Excel.Worksheet.Delete.md +++ b/api/Excel.Worksheet.Delete.md @@ -23,7 +23,7 @@ Deletes the object. _expression_ A variable that represents a [Worksheet](Excel.Worksheet.md) object. -### Return Value +### Return value Boolean diff --git a/api/Excel.Worksheet.Evaluate.md b/api/Excel.Worksheet.Evaluate.md index 03ad8ac0eff..5205ac65d43 100644 --- a/api/Excel.Worksheet.Evaluate.md +++ b/api/Excel.Worksheet.Evaluate.md @@ -27,11 +27,11 @@ Converts a Microsoft Excel name to an object or a value. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Name_|Required| **Variant**|The name of the object, using the naming convention of Microsoft Excel.| -### Return Value +### Return value Variant diff --git a/api/Excel.Worksheet.ExportAsFixedFormat.md b/api/Excel.Worksheet.ExportAsFixedFormat.md index 75e3d23e252..e4b13175122 100644 --- a/api/Excel.Worksheet.ExportAsFixedFormat.md +++ b/api/Excel.Worksheet.ExportAsFixedFormat.md @@ -27,7 +27,7 @@ Exports to a file of the specified format. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Type_|Required| **XlFixedFormatType**|The type of file format to export to.| | _Filename_|Optional| **Variant**|The file name of the file to be saved. You can include a full path, or Excel saves the file in the current folder.| diff --git a/api/Excel.Worksheet.FollowHyperlink.md b/api/Excel.Worksheet.FollowHyperlink.md index ddeccab912c..f9fc7035505 100644 --- a/api/Excel.Worksheet.FollowHyperlink.md +++ b/api/Excel.Worksheet.FollowHyperlink.md @@ -27,7 +27,7 @@ Occurs when you click any hyperlink on a worksheet. For application- and workboo -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Target_|Required| **Hyperlink**|A **[Hyperlink](Excel.Hyperlink.md)** object that represents the destination of the hyperlink.| diff --git a/api/Excel.Worksheet.Move.md b/api/Excel.Worksheet.Move.md index ed60a473198..1b9ad2564ff 100644 --- a/api/Excel.Worksheet.Move.md +++ b/api/Excel.Worksheet.Move.md @@ -27,7 +27,7 @@ Moves the sheet to another location in the workbook. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Before_|Optional| **Variant**|The sheet before which the moved sheet will be placed. You cannot specify _Before_ if you specify _After_.| | _After_|Optional| **Variant**| The sheet after which the moved sheet will be placed. You cannot specify _After_ if you specify _Before_.| diff --git a/api/Excel.Worksheet.OLEObjects.md b/api/Excel.Worksheet.OLEObjects.md index e8bb3c178c1..cab108f9e0d 100644 --- a/api/Excel.Worksheet.OLEObjects.md +++ b/api/Excel.Worksheet.OLEObjects.md @@ -27,11 +27,11 @@ Returns an object that represents either a single OLE object (an **[OLEObject]( -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Index_|Optional| **Variant**|The name or number of the OLE object.| -### Return Value +### Return value Object diff --git a/api/Excel.Worksheet.Paste.md b/api/Excel.Worksheet.Paste.md index b86eb9546c8..03e46e67d0a 100644 --- a/api/Excel.Worksheet.Paste.md +++ b/api/Excel.Worksheet.Paste.md @@ -27,7 +27,7 @@ Pastes the contents of the Clipboard onto the sheet. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Destination_|Optional| **Variant**|A **Range** object that specifies where the Clipboard contents should be pasted. If this argument is omitted, the current selection is used. This argument can be specified only if the contents of the Clipboard can be pasted into a range. If this argument is specified, the _Link_ argument cannot be used.| | _Link_|Optional| **Variant**| **True** to establish a link to the source of the pasted data. If this argument is specified, the _Destination_ argument cannot be used. The default value is **False** .| diff --git a/api/Excel.Worksheet.PasteSpecial.md b/api/Excel.Worksheet.PasteSpecial.md index e164872ff76..651b049d6f1 100644 --- a/api/Excel.Worksheet.PasteSpecial.md +++ b/api/Excel.Worksheet.PasteSpecial.md @@ -25,7 +25,7 @@ Pastes the contents of the Clipboard onto the sheet, using a specified format. U -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Format_|Optional| **Variant**|A string that specifies the Clipboard format of the data.| | _Link_|Optional| **Variant**| **True** to establish a link to the source of the pasted data. If the source data isn't suitable for linking or the source application doesn't support linking, this parameter is ignored. The default value is **False**.| diff --git a/api/Excel.Worksheet.PivotTableAfterValueChange.md b/api/Excel.Worksheet.PivotTableAfterValueChange.md index b3ee3ceae9e..89daf79276b 100644 --- a/api/Excel.Worksheet.PivotTableAfterValueChange.md +++ b/api/Excel.Worksheet.PivotTableAfterValueChange.md @@ -27,12 +27,12 @@ Occurs after a cell or range of cells inside a PivotTable are edited or recalcul -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _TargetPivotTable_|Required| **[PivotTable](Excel.PivotTable.md)**|The PivotTable that contains the edited or recalculated cells.| | _TargetRange_|Required| **[Range](Excel.Range(object).md)**|The range that contains all the edited or recalcuated cells.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Worksheet.PivotTableBeforeAllocateChanges.md b/api/Excel.Worksheet.PivotTableBeforeAllocateChanges.md index 0f6b2bc6c73..b64d03439e0 100644 --- a/api/Excel.Worksheet.PivotTableBeforeAllocateChanges.md +++ b/api/Excel.Worksheet.PivotTableBeforeAllocateChanges.md @@ -27,14 +27,14 @@ Occurs before changes are applied to a PivotTable. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _TargetPivotTable_|Required| **[PivotTable](Excel.PivotTable.md)**|The PivotTable that contains the changes to apply.| | _ValueChangeStart_|Required| **Long**|The index to the first change in the associated **[PivotTableChangeList](Excel.PivotTableChangeList.md)** collection. The index is specified by the **[Order](Excel.ValueChange.Order.md)** property of the **[ValueChange](Excel.ValueChange.md)** object in the **PivotTableChangeList** collection.| | _ValueChangeEnd_|Required| **Long**|The index to the last change in the associated **PivotTableChangeList** collection. The index is specified by the **Order** property of the **ValueChange** object in the **PivotTableChangeList** collection.| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the changes are not applied to the PivotTable and all edits are lost.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Worksheet.PivotTableBeforeCommitChanges.md b/api/Excel.Worksheet.PivotTableBeforeCommitChanges.md index 371559285d5..d84c136fafc 100644 --- a/api/Excel.Worksheet.PivotTableBeforeCommitChanges.md +++ b/api/Excel.Worksheet.PivotTableBeforeCommitChanges.md @@ -27,14 +27,14 @@ Occurs before changes are committed against the OLAP data source for a PivotTabl -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _TargetPivotTable_|Required| **[PivotTable](Excel.PivotTable.md)**|The PivotTable that contains the changes to commit.| | _ValueChangeStart_|Required| **Long**|The index to the first change in the associated **[PivotTableChangeList](Excel.PivotTableChangeList.md)** object. The index is specified by the **[Order](Excel.ValueChange.Order.md)** property of the **[ValueChange](Excel.ValueChange.md)** object in the **PivotTableChangeList** collection.| | _ValueChangeEnd_|Required| **Long**|The index to the last change in the associated **PivotTableChangeList** object. The index is specified by the **Order** property of the **ValueChange** object in the **PivotTableChangeList** collection.| | _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the changes are not committed against the OLAP data source of the PivotTable.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Worksheet.PivotTableBeforeDiscardChanges.md b/api/Excel.Worksheet.PivotTableBeforeDiscardChanges.md index bfe5c5c5798..f90d9c11c4a 100644 --- a/api/Excel.Worksheet.PivotTableBeforeDiscardChanges.md +++ b/api/Excel.Worksheet.PivotTableBeforeDiscardChanges.md @@ -27,13 +27,13 @@ Occurs before changes to a PivotTable are discarded. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _TargetPivotTable_|Required| **[PivotTable](Excel.PivotTable.md)**|The PivotTable that contains the changes to discard.| | _ValueChangeStart_|Required| **Long**|The index to the first change in the associated **[PivotTableChangeList](Excel.PivotTableChangeList.md)** object. The index is specified by the **[Order](Excel.ValueChange.Order.md)** property of the **[ValueChange](Excel.ValueChange.md)** object in the **PivotTableChangeList** collection.| | _ValueChangeEnd_|Required| **Long**|The index to the last change in the associated **PivotTableChangeList** object. The index is specified by the **Order** property of the **ValueChange** object in the **PivotTableChangeList** collection.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Worksheet.PivotTableChangeSync.md b/api/Excel.Worksheet.PivotTableChangeSync.md index 0fcfdeb2e33..726cbc82689 100644 --- a/api/Excel.Worksheet.PivotTableChangeSync.md +++ b/api/Excel.Worksheet.PivotTableChangeSync.md @@ -27,11 +27,11 @@ Occurs after changes to a PivotTable. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Target_|Required| **[PivotTable](Excel.PivotTable.md)**|The PivotTable that was changed.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Worksheet.PivotTableUpdate.md b/api/Excel.Worksheet.PivotTableUpdate.md index 8115cf64633..b378c2ca632 100644 --- a/api/Excel.Worksheet.PivotTableUpdate.md +++ b/api/Excel.Worksheet.PivotTableUpdate.md @@ -27,11 +27,11 @@ Occurs after a PivotTable report is updated on a worksheet. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Target_|Required| **[PivotTable](Excel.PivotTable.md)**|The selected PivotTable report.| -### Return Value +### Return value Nothing diff --git a/api/Excel.Worksheet.PivotTableWizard.md b/api/Excel.Worksheet.PivotTableWizard.md index a7100f12d7a..66821185bfd 100644 --- a/api/Excel.Worksheet.PivotTableWizard.md +++ b/api/Excel.Worksheet.PivotTableWizard.md @@ -27,7 +27,7 @@ Creates a new PivotTable report. This method doesn?t display the PivotTable Wiza -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _SourceType_|Optional| **Variant**|An **[XlPivotTableSourceType](Excel.XlPivotTableSourceType.md)** value that represents the source of the report data. If you specify this argument, you must also specify _SourceData_. If _SourceType_ and _SourceData_ are omitted, Microsoft Excel assumes that the source type is **xlDatabase** , and the source data comes from the named range "Database." If this named range doesn?t exist, Microsoft Excel uses the current region if the current selection is in a range of more than 10 cells that contain data. If this isn?t true, this method will fail.| | _SourceData_|Optional| **Variant**|The data for the new report. Can be a **[Range](Excel.Range(object).md)** object, an array of ranges, or a text constant that represents the name of another report. For an external database, _SourceData_ is an array of strings containing the SQL query string, where each element is up to 255 characters in length. You should use the _Connection_ argument to specify the ODBC connection string. For compatibility with earlier versions of Excel, _SourceData_ can be a two-element array. The first element is the connection string specifying the ODBC source for the data. The second element is the SQL query string used to get the data. If you specify _SourceData_, you must also specify _SourceType_. If the active cell is inside the _SourceData_ range, you must specify _TableDestination_ as well.| @@ -46,7 +46,7 @@ Creates a new PivotTable report. This method doesn?t display the PivotTable Wiza | _ReadData_|Optional| **Variant**| **True** to create a PivotTable cache that contains all records from the external database; this cache can be very large. If _ReadData_ is **False** , you can set some of the fields asserver-based page fields before the data is actually read.| | _Connection_|Optional| **Variant**|A string that contains ODBC settings that allow Excel to connect to an ODBC data source. The connection string has the form "ODBC;| **Function_num** | **Function** |
|---|---|
| 1 | AVERAGE |
| 2 | COUNT |
| 3 | COUNTA |
| 4 | MAX |
| 5 | MIN |
| 6 | PRODUCT |
| 7 | STDEV.S |
| 8 | STDEV.P |
| 9 | SUM |
| 10 | VAR.S |
| 11 | VAR.P |
| 2 | MEDIAN |
| 13 | MODE.SNGL |
| 14 | LARGE |
| 15 | SMALL |
| 16 | PERCENTILE.INC |
| 17 | QUARTILE.INC |
| 18 | PERCENTILE.EXC |
| 19 | QUARTILE.EXC |
| **Option** | **Behavior** |
|---|---|
| 0 or omitted | Ignore nested SUBTOTAL and AGGREGATE functions |
| 1 | Ignore hidden rows, nested SUBTOTAL and AGGREGATE functions |
| 2 | Ignore error values, nested SUBTOTAL and AGGREGATE functions |
| 3 | Ignore hidden rows, error values, nested SUBTOTAL and AGGREGATE functions |
| 4 | Ignore nothing |
| 5 | Ignore hidden rows |
| 6 | Ignore error values |
| 7 | Ignore hidden rows and error values |
| **Note** |
|---|
| The absolute value of the multiple is used, so that the ISO_CEILING function returns the mathematical ceiling irrespective of the signs of number and significance. |
| **Weekend number** | **Weekend days** |
|---|---|
| 1 or omitted | Saturday, Sunday |
| 2 | Sunday, Monday |
| 3 | Monday, Tuesday |
| 4 | Tuesday, Wednesday |
| 5 | Wednesday, Thursday |
| 6 | Thursday, Friday |
| 7 | Friday, Saturday |
| 11 | Sunday only |
| 12 | Monday only |
| 13 | Tuesday only |
| 14 | Wednesday only |
| 15 | Thursday only |
| 16 | Friday only |
| 17 | Saturday only |
| **Weekend number** | **Weekend days** |
|---|---|
| 1 or omitted | Saturday, Sunday |
| 2 | Sunday, Monday |
| 3 | Monday, Tuesday |
| 4 | Tuesday, Wednesday |
| 5 | Wednesday, Thursday |
| 6 | Thursday, Friday |
| 7 | Friday, Saturday |
| 11 | Sunday only |
| 12 | Monday only |
| 13 | Tuesday only |
| 14 | Wednesday only |
| 15 | Thursday only |
| 16 | Friday only |
| 17 | Saturday only |
olViewSaveOptionAllFoldersOfType The view can be accessed in all folders of this type.
olViewSaveOptionThisFolderEveryOne The view can be accessed by all users in this folder only.
olViewSaveOptionThisFolderOnlyMe The view can be accessed in this folder only by the user.
If the Gantt Chart is active: pjBarRows , pjGanttCurrentDate , pjGanttPageBreaks , pjGanttProjectFinish , pjGanttProjectStart , pjGanttRows , pjGanttSheetColumns , pjGanttSheetRows , pjGanttStatusDate , pjGanttTitleHorizontal , pjGanttTitleVertical , pjMajorColumns , or pjMinorColumns .
If the Calendar view is active: pjCalendarDays , pjCalendarWeeks , pjTitleHorizontal , pjTitleVertical , pjDateBoxTop , or pjDateBoxBottom . @@ -39,7 +39,7 @@ Edits gridlines. | _IntervalType_|Optional|**Integer**|The type for secondary gridlines. Can be one of the **[PjLineType](Project.PjLineType.md)** constants.| | _IntervalColor_|Optional|**Integer**|The color of secondary gridlines. Can be one of the **[PjColor](Project.PjColor.md)** constants.| -### Return Value +### Return value **Boolean** diff --git a/api/Project.Application.GridlinesEditEx.md b/api/Project.Application.GridlinesEditEx.md index 001fb6d9b3a..79771747516 100644 --- a/api/Project.Application.GridlinesEditEx.md +++ b/api/Project.Application.GridlinesEditEx.md @@ -27,7 +27,7 @@ Edits gridlines, where colors can be hexadecimal values. -|**Name**|**Required/Optional**|**Data Type**|**Description**| +|Name|Required/Optional|Data type|Description| |:-----|:-----|:-----|:-----| | _Item_|Required|**Integer**|The gridline to edit. Can be one of the following **[PjGridline](Project.PjGridline.md)** constants:
If the Gantt Chart is active: pjBarRows , pjGanttCurrentDate , pjGanttPageBreaks , pjGanttProjectFinish , pjGanttProjectStart , pjGanttRows , pjGanttSheetColumns , pjGanttSheetRows , pjGanttStatusDate , pjGanttTitleHorizontal , pjGanttTitleVertical , pjMajorColumns , or pjMinorColumns .
If the Calendar view is active: pjCalendarDays , pjCalendarWeeks , pjTitleHorizontal , pjTitleVertical , pjDateBoxTop , or pjDateBoxBottom .
@@ -39,7 +39,7 @@ Edits gridlines, where colors can be hexadecimal values.
| _IntervalType_|Optional|**Integer**|The type for secondary gridlines. Can be one of the **[PjLineType](Project.PjLineType.md)** constants.|
| _IntervalColor_|Optional|**Long**|The color of secondary gridlines. Can be a hexadecimal RGB value, where red is the last byte.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.GroupApply.md b/api/Project.Application.GroupApply.md
index 351da6b8add..96210f19662 100644
--- a/api/Project.Application.GroupApply.md
+++ b/api/Project.Application.GroupApply.md
@@ -27,11 +27,11 @@ Sets the current group.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of the group to use.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.GroupBy.md b/api/Project.Application.GroupBy.md
index 90f3dc42424..c5995a9549b 100644
--- a/api/Project.Application.GroupBy.md
+++ b/api/Project.Application.GroupBy.md
@@ -23,7 +23,7 @@ Displays the **Customize Group By** dialog box.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.GroupClear.md b/api/Project.Application.GroupClear.md
index aa851c2998e..f53c32cc32f 100644
--- a/api/Project.Application.GroupClear.md
+++ b/api/Project.Application.GroupClear.md
@@ -23,7 +23,7 @@ Removes the current group from the view.
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.GroupMaintainHierarchy.md b/api/Project.Application.GroupMaintainHierarchy.md
index d5298419525..f2cbaa99da1 100644
--- a/api/Project.Application.GroupMaintainHierarchy.md
+++ b/api/Project.Application.GroupMaintainHierarchy.md
@@ -27,11 +27,11 @@ Shows or hides item hierarchy in task views or resource views where a group is a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _On_|Required|**Boolean**|**True** if hierarchy in the current group is maintained. **False** if hierarchy is not maintained.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.GroupNew.md b/api/Project.Application.GroupNew.md
index 69b51573593..cc28f744994 100644
--- a/api/Project.Application.GroupNew.md
+++ b/api/Project.Application.GroupNew.md
@@ -23,7 +23,7 @@ Displays the **Group Definition** dialog box.
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.Groups.md b/api/Project.Application.Groups.md
index be777c92a70..41680f79d32 100644
--- a/api/Project.Application.Groups.md
+++ b/api/Project.Application.Groups.md
@@ -23,7 +23,7 @@ Displays the **More Groups** dialog box, which prompts the user to apply a grou
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.HelpAbout.md b/api/Project.Application.HelpAbout.md
index 5457dab4313..df5dc728836 100644
--- a/api/Project.Application.HelpAbout.md
+++ b/api/Project.Application.HelpAbout.md
@@ -23,7 +23,7 @@ Displays the **About Microsoft Project** dialog box, which lists version, copyr
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.HelpAnswerWizard.md b/api/Project.Application.HelpAnswerWizard.md
index 345769d8754..8aa44bc86d4 100644
--- a/api/Project.Application.HelpAnswerWizard.md
+++ b/api/Project.Application.HelpAnswerWizard.md
@@ -23,7 +23,7 @@ Displays the **Project Help** window, with the **Help** Toolbar, **Assistance**
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.HelpContents.md b/api/Project.Application.HelpContents.md
index 8f3cdc7af60..d94fb67ab33 100644
--- a/api/Project.Application.HelpContents.md
+++ b/api/Project.Application.HelpContents.md
@@ -23,7 +23,7 @@ Displays the **Project Help** window, with the **Help** Toolbar, **Assistance**
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.HelpLaunch.md b/api/Project.Application.HelpLaunch.md
index 18215bc0372..94304721cc9 100644
--- a/api/Project.Application.HelpLaunch.md
+++ b/api/Project.Application.HelpLaunch.md
@@ -27,14 +27,14 @@ Starts a Help file.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Filename_|Optional|**String**|The file name (with either .hlp or .chm extension) of the Help file to start. If FileName is not specified and Search is **False**, the Project **Help** window appears with the navigation pane expanded.|
| _ContextNumber_|Optional|**Long**|The context number of a topic to display.|
| _Search_|Optional|**Boolean**|**True** if the **Help** window appears with the navigation pane expanded (CHM). If Search is **True**, ContextNumber is ignored. The default value is **False**.|
| _SearchKey_|Optional|**String**|Due to changes in the Project object model, this argument is no longer supported.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.HelpTechnicalSupport.md b/api/Project.Application.HelpTechnicalSupport.md
index 443f1a54216..b89fb7e1664 100644
--- a/api/Project.Application.HelpTechnicalSupport.md
+++ b/api/Project.Application.HelpTechnicalSupport.md
@@ -23,7 +23,7 @@ Displays the **Project Help** window, with the **Help** Toolbar, **Assistance**
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ImportCommitment.md b/api/Project.Application.ImportCommitment.md
index a4387a8d398..8f97dca34d1 100644
--- a/api/Project.Application.ImportCommitment.md
+++ b/api/Project.Application.ImportCommitment.md
@@ -27,12 +27,12 @@ Imports the specified deliverable into a project.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CommitmentDate_|Optional|**Variant**|The commitment date of the deliverable.|
| _CommitmentGuid_|Optional|**Variant**|The class identifier of the deliverable.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ImportOutlookTasks.md b/api/Project.Application.ImportOutlookTasks.md
index 735b68b886c..24c4bea2523 100644
--- a/api/Project.Application.ImportOutlookTasks.md
+++ b/api/Project.Application.ImportOutlookTasks.md
@@ -23,7 +23,7 @@ Displays the **Import Outlook Tasks** dialog box, which allows tasks to be impo
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.InactivateTaskToggle.md b/api/Project.Application.InactivateTaskToggle.md
index d5573223b3f..30849b78c00 100644
--- a/api/Project.Application.InactivateTaskToggle.md
+++ b/api/Project.Application.InactivateTaskToggle.md
@@ -27,11 +27,11 @@ Toggles the state of a task between inactive and active.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MakeActive_|Optional|**Variant**|Specifies whether to make the task active. If the task is active, **True** has no effect. If the task is inactive, **True** makes the task active.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.InformationDialog.md b/api/Project.Application.InformationDialog.md
index 686424a2c97..9f2ef141a3e 100644
--- a/api/Project.Application.InformationDialog.md
+++ b/api/Project.Application.InformationDialog.md
@@ -27,11 +27,11 @@ Displays the **Assignment Information**, **Resource Information**, or **Task
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Tab_|Optional|**Long**|The tab to display in the ** Assignment Information**, **Resource Information**, or **Task Information** dialog box.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.InsertBlankRow.md b/api/Project.Application.InsertBlankRow.md
index 25d26991d69..9be4cd46378 100644
--- a/api/Project.Application.InsertBlankRow.md
+++ b/api/Project.Application.InsertBlankRow.md
@@ -23,7 +23,7 @@ Inserts a blank row above the selected task row or cell in a Gantt chart.
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.InsertHyperlink.md b/api/Project.Application.InsertHyperlink.md
index b27b17c4c43..7eea2b6101f 100644
--- a/api/Project.Application.InsertHyperlink.md
+++ b/api/Project.Application.InsertHyperlink.md
@@ -27,14 +27,14 @@ Inserts a hyperlink on the selected assignment, resource, or task.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|The name of the hyperlink as it appears in the Hyperlink field.|
| _Address_|Optional|**String**|The address of the target document.|
| _SubAddress_|Optional|**String**|A location within the target document.|
| _ScreenTip_|Optional|**String**|The ScreenTip text for the hyperlink.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.InsertManualTask.md b/api/Project.Application.InsertManualTask.md
index d44850a9779..d51c09b310a 100644
--- a/api/Project.Application.InsertManualTask.md
+++ b/api/Project.Application.InsertManualTask.md
@@ -23,7 +23,7 @@ Inserts a new manually scheduled task above the selected task row or cell in a G
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.InsertMilestoneTask.md b/api/Project.Application.InsertMilestoneTask.md
index 2c430f4373b..234a3052025 100644
--- a/api/Project.Application.InsertMilestoneTask.md
+++ b/api/Project.Application.InsertMilestoneTask.md
@@ -23,7 +23,7 @@ Inserts a new milestone task above the selected task row or cell in a Gantt char
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.InsertNotes.md b/api/Project.Application.InsertNotes.md
index dfe063397c4..3101e377760 100644
--- a/api/Project.Application.InsertNotes.md
+++ b/api/Project.Application.InsertNotes.md
@@ -23,7 +23,7 @@ Prompts the user to enter notes for the active assignment, resource, or task. If
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.InsertResource.md b/api/Project.Application.InsertResource.md
index c5ff768c531..ef3584fb13f 100644
--- a/api/Project.Application.InsertResource.md
+++ b/api/Project.Application.InsertResource.md
@@ -27,11 +27,11 @@ Inserts a new resource in a resource view.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Optional|**PjResourceTypes**|Specifies whether the type is a cost, material, or work resource. Can be one of the **[PjResourceTypes](Project.PjResourceTypes.md)** constants. The default is **pjResourceTypeWork**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.InsertScheduledTask.md b/api/Project.Application.InsertScheduledTask.md
index 6de4481da8a..61e66484aa9 100644
--- a/api/Project.Application.InsertScheduledTask.md
+++ b/api/Project.Application.InsertScheduledTask.md
@@ -23,7 +23,7 @@ Inserts a new automatically scheduled task above the selected task row or cell i
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.InsertSummaryTask.md b/api/Project.Application.InsertSummaryTask.md
index 460f1f78f2a..c39ebe2935d 100644
--- a/api/Project.Application.InsertSummaryTask.md
+++ b/api/Project.Application.InsertSummaryTask.md
@@ -23,7 +23,7 @@ Inserts a new summary task above the selected task row or cell in a Gantt chart.
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.InsertTask.md b/api/Project.Application.InsertTask.md
index ef64e7e7fe5..0649f80773a 100644
--- a/api/Project.Application.InsertTask.md
+++ b/api/Project.Application.InsertTask.md
@@ -23,7 +23,7 @@ Inserts a new task of the default mode above the selected task row or cell in a
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.IsCommandEnabled.md b/api/Project.Application.IsCommandEnabled.md
index 8df6c9c98a8..816afbffe23 100644
--- a/api/Project.Application.IsCommandEnabled.md
+++ b/api/Project.Application.IsCommandEnabled.md
@@ -27,11 +27,11 @@ Shows whether the specified command is enabled.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CommandName_|Required|**String**|The name of a valid command.|
-### Return Value
+### Return value
**Long**
diff --git a/api/Project.Application.IsFunctionalitySupported.md b/api/Project.Application.IsFunctionalitySupported.md
index 2b7518699ae..6041f1f85a8 100644
--- a/api/Project.Application.IsFunctionalitySupported.md
+++ b/api/Project.Application.IsFunctionalitySupported.md
@@ -24,12 +24,12 @@ Occurs after the **LoadWebBrowserControl** method is called with the third para
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _bstrFunctionality_|Required|**String**|Name of the functionality.|
| _Info_|Required|**EventInfo**|EventInfo object.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.IsOfficeTaskPaneVisible.md b/api/Project.Application.IsOfficeTaskPaneVisible.md
index d5cd5acd4f0..370e8172d39 100644
--- a/api/Project.Application.IsOfficeTaskPaneVisible.md
+++ b/api/Project.Application.IsOfficeTaskPaneVisible.md
@@ -20,7 +20,7 @@ Returns **True** if any of the Office task panes are visible.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.IsOffline.md b/api/Project.Application.IsOffline.md
index 5d296b3c6c6..c7db824d7e9 100644
--- a/api/Project.Application.IsOffline.md
+++ b/api/Project.Application.IsOffline.md
@@ -20,7 +20,7 @@ Returns **False** if Project Professional is connected with Project Server.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.IsReducedFunctionalityMode.md b/api/Project.Application.IsReducedFunctionalityMode.md
index 6efc64f759a..b54c63a4fb7 100644
--- a/api/Project.Application.IsReducedFunctionalityMode.md
+++ b/api/Project.Application.IsReducedFunctionalityMode.md
@@ -20,7 +20,7 @@ Indicates whether the installed Project application is in reduced functionality
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.IsURLTrusted.md b/api/Project.Application.IsURLTrusted.md
index 41fbdbc4aef..83511c3e625 100644
--- a/api/Project.Application.IsURLTrusted.md
+++ b/api/Project.Application.IsURLTrusted.md
@@ -24,11 +24,11 @@ Verifies whether the Project Web App URL belongs to a trusted site in the user's
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _URL_|Required|**String**|The URL of Project Web App.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.IsUndoingOrRedoing.md b/api/Project.Application.IsUndoingOrRedoing.md
index e48d7c66223..70f486b4f04 100644
--- a/api/Project.Application.IsUndoingOrRedoing.md
+++ b/api/Project.Application.IsUndoingOrRedoing.md
@@ -20,7 +20,7 @@ Indicates whether Project is currently executing an undo or redo action.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.JobCompleted.md b/api/Project.Application.JobCompleted.md
index 2c39f0b4f50..bc4359cb689 100644
--- a/api/Project.Application.JobCompleted.md
+++ b/api/Project.Application.JobCompleted.md
@@ -24,7 +24,7 @@ Occurs when a queued job originating from Project Professional is completed.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _bstrName_|Required|**String**|Name of the project whose queue job was completed.|
| _bstrprojGuid_|Required|**String**|GUID of the project whose queue job was completed.|
@@ -32,7 +32,7 @@ Occurs when a queued job originating from Project Professional is completed.
| _jobType_|Required|**Long**|Type of the job that was completed. For example, **Project Save**, **Project Publish**, or **Project Status Update**.|
| _lResult_|Required|**Long**|**HResult** (error code) of the queue operation. For example, **0** indicates success and **E_FAIL** indicates failure.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.JobStart.md b/api/Project.Application.JobStart.md
index 81c53a1829a..c4da91157c3 100644
--- a/api/Project.Application.JobStart.md
+++ b/api/Project.Application.JobStart.md
@@ -24,7 +24,7 @@ Occurs before the queue job is put on the server queue. Project Professional onl
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _bstrName_|Required|**String**|Name of the project whose queue job was completed.|
| _bstrprojGuid_|Required|**String**|GUID of the project whose queue job was completed.|
@@ -32,7 +32,7 @@ Occurs before the queue job is put on the server queue. Project Professional onl
| _jobType_|Required|**Long**|Job Type of the job that was completed. For example, **Project Save**, **Project Publish**, **Project Status Update**.|
| _lResult_|Required|**Long**|**HResult** (error code) of the queue operation. For example, **0** indicates that the job succeeded, **E_FAIL** indicates failure|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.Layout.md b/api/Project.Application.Layout.md
index c2bb2000e1f..aea47b62315 100644
--- a/api/Project.Application.Layout.md
+++ b/api/Project.Application.Layout.md
@@ -23,7 +23,7 @@ Displays the **Layout** dialog box, which allows the user to set layout options
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.LayoutNow.md b/api/Project.Application.LayoutNow.md
index a6f9dd1b34e..7c61ae55b75 100644
--- a/api/Project.Application.LayoutNow.md
+++ b/api/Project.Application.LayoutNow.md
@@ -23,7 +23,7 @@ Lays out the active view according to its layout options.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.LayoutRelatedNow.md b/api/Project.Application.LayoutRelatedNow.md
index cd89cc1f062..d87777aaa7a 100644
--- a/api/Project.Application.LayoutRelatedNow.md
+++ b/api/Project.Application.LayoutRelatedNow.md
@@ -23,7 +23,7 @@ Positions all task boxes in the active Network Diagram that are successors or su
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.LayoutSelectionNow.md b/api/Project.Application.LayoutSelectionNow.md
index f480ee2bd5b..3e261178dc0 100644
--- a/api/Project.Application.LayoutSelectionNow.md
+++ b/api/Project.Application.LayoutSelectionNow.md
@@ -23,7 +23,7 @@ Positions the selected task boxes in the active Network Diagram view according t
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.LevelNow.md b/api/Project.Application.LevelNow.md
index e990e71dddf..9e55e4f1e2b 100644
--- a/api/Project.Application.LevelNow.md
+++ b/api/Project.Application.LevelNow.md
@@ -27,11 +27,11 @@ Levels overallocated resources.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _All_|Optional|**Variant**|**True** if all resources are leveled. **False** if only selected resources are leveled.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.LevelSelected.md b/api/Project.Application.LevelSelected.md
index d051fc7a4ee..41dd4af62cf 100644
--- a/api/Project.Application.LevelSelected.md
+++ b/api/Project.Application.LevelSelected.md
@@ -27,11 +27,11 @@ Levels the selected tasks to resolve resource conflicts or overallocations.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ResolveMethod_|Optional|**PjLevelSelectedOption**|Specifies what to resolve in the leveling process. Can be a **[PjLevelSelectedOption](Project.PjLevelSelectedOption.md)** constant. The default is **pjResolveSelectedTasks**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.LevelingClear.md b/api/Project.Application.LevelingClear.md
index 0d8d6ba619e..a092b30203e 100644
--- a/api/Project.Application.LevelingClear.md
+++ b/api/Project.Application.LevelingClear.md
@@ -27,11 +27,11 @@ Removes the effects of leveling.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _All_|Optional|**Boolean**|**True** if delays are removed from all tasks. **False** if delays are removed from selected tasks only.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.LevelingOptions.md b/api/Project.Application.LevelingOptions.md
index bdf5c65738f..1893c9d72a6 100644
--- a/api/Project.Application.LevelingOptions.md
+++ b/api/Project.Application.LevelingOptions.md
@@ -27,7 +27,7 @@ Specifies leveling options for the active project.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Automatic_|Optional|**Boolean**|**True** if Project automatically levels tasks in the active project.|
| _DelayInSlack_|Optional|**Boolean**|**True** if the active project can be leveled only within the available slack time. **False** if the project can be delayed in order to level resources.|
@@ -41,7 +41,7 @@ Specifies leveling options for the active project.
| _LevelingCanSplit_|Optional|**Boolean**|**True** if leveling can create splits in remaining work.|
| _LevelProposedBookings_|Optional|**Boolean**|**True** if leveling includes proposed resource bookings.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.LevelingOptionsEx.md b/api/Project.Application.LevelingOptionsEx.md
index ea962097b16..ace3a48fff0 100644
--- a/api/Project.Application.LevelingOptionsEx.md
+++ b/api/Project.Application.LevelingOptionsEx.md
@@ -27,7 +27,7 @@ Specifies leveling options for the active project, including leveling of manuall
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Automatic_|Optional|**Boolean**|**True** if Project automatically levels tasks in the active project. **False** if leveling is manual. The default value is **False**.|
| _DelayInSlack_|Optional|**Boolean**|**True** if the active project can be leveled only within the available slack time. **False** if the project can be delayed to level resources. The default value is **False**.|
@@ -42,7 +42,7 @@ Specifies leveling options for the active project, including leveling of manuall
| _LevelProposedBookings_|Optional|**Boolean**|**True** if leveling includes proposed resource bookings; otherwise, **False**. The default value is **False**.|
| _LevelPinnedTasks_|Optional|**Boolean**|**True** if manually scheduled tasks are leveled; otherwise, **False**. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.LinkTasks.md b/api/Project.Application.LinkTasks.md
index b45ccd54719..e56dc41bbcd 100644
--- a/api/Project.Application.LinkTasks.md
+++ b/api/Project.Application.LinkTasks.md
@@ -23,7 +23,7 @@ Links the selected tasks in the Gantt Chart, Calendar, Task Sheet, or Task Usage
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.LinkTasksEdit.md b/api/Project.Application.LinkTasksEdit.md
index adc62a868dc..e3ac2e2b143 100644
--- a/api/Project.Application.LinkTasksEdit.md
+++ b/api/Project.Application.LinkTasksEdit.md
@@ -27,7 +27,7 @@ Edits task dependencies (task links).
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _From_|Required|**Long**|**Long**. The identification number of a predecessor task.|
| _To_|Required|**Long**|**Long**. The identification number of a successor task.|
@@ -37,7 +37,7 @@ Edits task dependencies (task links).
| _PredecessorProjectName_|Optional|**String**|The name of the subproject in a consolidated project that contains the task identified with **From**. If **PredecessorProjectName** is omitted, the current project is assumed.|
| _SuccessorProjectName_|Optional|**String**|The name of the subproject in a consolidated project that contains the task identified with **To**. If **SuccessorProjectName** is omitted, the current project is assumed.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.LinksBetweenProjects.md b/api/Project.Application.LinksBetweenProjects.md
index aa445da4f76..8892eda6ab5 100644
--- a/api/Project.Application.LinksBetweenProjects.md
+++ b/api/Project.Application.LinksBetweenProjects.md
@@ -27,11 +27,11 @@ Specifies whether the **Links between Projects** dialog box appears when openin
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _AcceptAll_|Optional|**Boolean**|**True** if all changes to external predecessors and successors are accepted. **False** if the **Links between Projects** dialog box appears. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.LoadWebBrowserControlEx.md b/api/Project.Application.LoadWebBrowserControlEx.md
index 15aab2b0237..56d8273c8d4 100644
--- a/api/Project.Application.LoadWebBrowserControlEx.md
+++ b/api/Project.Application.LoadWebBrowserControlEx.md
@@ -27,13 +27,13 @@ Displays HTML pages within Project when the **Project Guide** is shown or hidde
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TargetPage_|Required|**String**| A numeric ID that identifies the HTML target page that needs to be displayed. **TargetPage** can also be set to a URL, an XML stream, a pointer to an XML file, or any other string value.|
| _WrapperPage_|Optional|**Variant**|A pointer to an HTML page that provides wrapper functionality for the page being displayed in Project. The wrapper page contains event-handling code that allows Project functionality, such as saving files or changing views, to work when a Web page is being displayed. The WrapperPage parameter is used only when the **Project Guide** is hidden. When the **Project Guide** is shown, mainpage.htm is used as the wrapper page, and a WrapperPage parameter, if specified, is ignored. If no WrapperPage parameter is specified, Project uses the default wrapper page, gbui://wrapper.htm.|
| _FunctionalityName_|Optional|**Variant**|Name of the Project Guide function in the goal area.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.LoadWebPage.md b/api/Project.Application.LoadWebPage.md
index df6a3c2c424..d5e1f4af482 100644
--- a/api/Project.Application.LoadWebPage.md
+++ b/api/Project.Application.LoadWebPage.md
@@ -24,12 +24,12 @@ Occurs after the **LoadWebBrowserControl** method is called. The method loads t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required|**Window**|The window from where the LoadWebBrowserControl method was called.|
| _TargetPage_|Required|**String**|The same TargetPage parameter that was used to call the LoadWebBrowserControl method.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.LoadWebPane.md b/api/Project.Application.LoadWebPane.md
index c03efd27a03..e749ef1376e 100644
--- a/api/Project.Application.LoadWebPane.md
+++ b/api/Project.Application.LoadWebPane.md
@@ -24,12 +24,12 @@ Occurs when Project loads a Web pane for **Task Drivers**, **Deliverables**, o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required|**Window**|The window from where the **LoadWebBrowserControl** method was called.|
| _TargetPage_|Required|**String**|The same TargetPage parameter that was used to call the **LoadWebBrowserControl** method.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.LoadWebPaneControl.md b/api/Project.Application.LoadWebPaneControl.md
index 3fb9cffffb1..fd7dbe86d29 100644
--- a/api/Project.Application.LoadWebPaneControl.md
+++ b/api/Project.Application.LoadWebPaneControl.md
@@ -27,12 +27,12 @@ Supports the Web pane that hosts the **Task Drivers**, **Project/Resource Impo
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TargetPage_|Required|**String**|A numeric ID that identifies the HTML target page that needs to be displayed. **TargetPage** can also be set to a URL, an XML stream, a pointer to an XML file, or any other string value.|
| _WrapperPage_|Optional|**Variant**|A pointer to an HTML page that provides wrapper functionality for the page being displayed in Project. The wrapper page contains event-handling code that allows Project functionality, such as saving files or changing views, to work when a web page is being displayed. The WrapperPage parameter is only used when the **Project Guid**e is hidden. When the **Project Guide** is shown, mainpage.htm is used as the wrapper page, and a **WrapperPage** parameter, if specified, is ignored. If no WrapperPage parameter is specified, Project's default wrapper page, gbui://wrapper.htm, is used|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.LocaleID.md b/api/Project.Application.LocaleID.md
index 87110e0b664..cffc2b0a6e4 100644
--- a/api/Project.Application.LocaleID.md
+++ b/api/Project.Application.LocaleID.md
@@ -20,7 +20,7 @@ Returns the locale ID of the currently installed version of Project. .
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Project.Application.LookUpTableAddEx.md b/api/Project.Application.LookUpTableAddEx.md
index 7efa81819cb..6bc3581b9bf 100644
--- a/api/Project.Application.LookUpTableAddEx.md
+++ b/api/Project.Application.LookUpTableAddEx.md
@@ -27,7 +27,7 @@ Appends items to the lookup table of a custom outline code definition.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FieldID_|Required|**Long**|Specifies the custom outline code to edit. Can be one of the **[PjCustomField](Project.PjCustomField.md)** constants.|
| _Level_|Optional|**Long**|Specifies the level of the new code. The default value is the level of the last item in the lookup table.|
@@ -35,7 +35,7 @@ Appends items to the lookup table of a custom outline code definition.
| _Description_|Optional|**String**|A description for the field specified in the Code argument.|
| _Phonetic_|Optional|**String**|The phonetic spelling of the Code argument, used for sorting order in Japanese. For languages other than Japanese, Phonetic is ignored.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.Macro.md b/api/Project.Application.Macro.md
index 4716c0fd58a..41a27b109b4 100644
--- a/api/Project.Application.Macro.md
+++ b/api/Project.Application.Macro.md
@@ -27,11 +27,11 @@ Runs a macro.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|The name of the macro to run. If **Name** is omitted, the **Macros** dialog box appears.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.MacroSecurity.md b/api/Project.Application.MacroSecurity.md
index 93d3b980b07..073e264b90f 100644
--- a/api/Project.Application.MacroSecurity.md
+++ b/api/Project.Application.MacroSecurity.md
@@ -23,7 +23,7 @@ Displays the **Security** dialog box, which can be used to set the security lev
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.MacroShowCode.md b/api/Project.Application.MacroShowCode.md
index f5e93c09a73..8dc6bff3321 100644
--- a/api/Project.Application.MacroShowCode.md
+++ b/api/Project.Application.MacroShowCode.md
@@ -23,7 +23,7 @@ Starts the Visual Basic Editor and displays any macro code in the active project
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.MacroShowVba.md b/api/Project.Application.MacroShowVba.md
index 72372d1ae4d..cee9f8e171d 100644
--- a/api/Project.Application.MacroShowVba.md
+++ b/api/Project.Application.MacroShowVba.md
@@ -23,7 +23,7 @@ Starts the Visual Basic Editor.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.MailLogoff.md b/api/Project.Application.MailLogoff.md
index 1bc6e553b48..eed67c527eb 100644
--- a/api/Project.Application.MailLogoff.md
+++ b/api/Project.Application.MailLogoff.md
@@ -20,7 +20,7 @@ Closes an established MAPI mail session.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Project.Application.MailLogon.md b/api/Project.Application.MailLogon.md
index 9af74132ba5..837a75b042d 100644
--- a/api/Project.Application.MailLogon.md
+++ b/api/Project.Application.MailLogon.md
@@ -24,7 +24,7 @@ Logs on to a MAPI mail system and establishes a mail session. A mail session mus
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|The mail account name.|
| _Password_|Optional|**String**|The mail account password.|
diff --git a/api/Project.Application.MailPostDocument.md b/api/Project.Application.MailPostDocument.md
index 43b38e5519c..381537ec97c 100644
--- a/api/Project.Application.MailPostDocument.md
+++ b/api/Project.Application.MailPostDocument.md
@@ -23,7 +23,7 @@ Displays the **Send To Exchange Folder** dialog box to post a document to Micro
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.MailRoutingSlip.md b/api/Project.Application.MailRoutingSlip.md
index 3a6139dbaf5..42616065e25 100644
--- a/api/Project.Application.MailRoutingSlip.md
+++ b/api/Project.Application.MailRoutingSlip.md
@@ -27,7 +27,7 @@ Adds a mail routing slip for the active project.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _To_|Optional|**String**|The user names of the recipients of the message, separated by commas.|
| _Subject_|Optional|**String**| The subject of the message.|
@@ -38,7 +38,7 @@ Adds a mail routing slip for the active project.
| _Clear_|Optional|**Boolean**|**True** if the list of user names in the **Routing Slip** dialog box is cleared. The default value is **False**.|
| _SendNow_|Optional|**Boolean**|**True** if the project is sent. **False** if the mail slip is edited without sending the project. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.MailSend.md b/api/Project.Application.MailSend.md
index 5e9f80c8c8b..76b5de2d988 100644
--- a/api/Project.Application.MailSend.md
+++ b/api/Project.Application.MailSend.md
@@ -27,7 +27,7 @@ Sends a mail message.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _To_|Optional|**String**|The user names of the primary recipients of the message, separated by commas.|
| _Cc_|Optional|**String**|The user names of the secondary recipients of the message, separated by commas.|
@@ -41,7 +41,7 @@ Sends a mail message.
| _SaveCopy_|Optional|**Boolean**|**True** if a copy of the message is saved in the SentItems folder. This argument is only supported in Microsoft Project for the Macintosh version 4.0.|
| _AddRecipient_|Optional|**Boolean**|**True** if recipients of the message are added to a personal address book. This argument is only supported in Microsoft Project for the Macintosh version 4.0.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.MailSession.md b/api/Project.Application.MailSession.md
index fcb76ce9889..ca80b289e21 100644
--- a/api/Project.Application.MailSession.md
+++ b/api/Project.Application.MailSession.md
@@ -20,7 +20,7 @@ Returns the MAPI mail session number as a hexadecimal string if there is an acti
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**String**
diff --git a/api/Project.Application.MailSystem.md b/api/Project.Application.MailSystem.md
index b4c437d83e0..6d4d91e7925 100644
--- a/api/Project.Application.MailSystem.md
+++ b/api/Project.Application.MailSystem.md
@@ -20,7 +20,7 @@ Returns the type of e-mail system installed on the host machine.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
[PjMailSystem](Project.PjMailSystem.md)
diff --git a/api/Project.Application.MakeFieldEnterprise.md b/api/Project.Application.MakeFieldEnterprise.md
index f5f774102eb..dd557a4dbd8 100644
--- a/api/Project.Application.MakeFieldEnterprise.md
+++ b/api/Project.Application.MakeFieldEnterprise.md
@@ -27,13 +27,13 @@ Adds a local custom field to Project Server as an enterprise custom field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FieldID_|Required|**Long**|Identification number of the local custom field. Use the **[FieldNameToFieldConstant](Project.Application.FieldNameToFieldConstant.md)** method to get the FieldID argument.|
| _FieldName_|Required|**String**|Name of the enterprise custom field to create.|
| _LookupTableName_|Optional|**String**|Name of the lookup table to create. The default value is an empty string ("").|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.MakeLocalCalendarEnterprise.md b/api/Project.Application.MakeLocalCalendarEnterprise.md
index 7aa8b0274be..e766fd4242d 100644
--- a/api/Project.Application.MakeLocalCalendarEnterprise.md
+++ b/api/Project.Application.MakeLocalCalendarEnterprise.md
@@ -27,12 +27,12 @@ Converts a local calendar to an enterprise calendar.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _OldName_|Optional|**String**|Name of the local calander.|
| _NewName_|Optional|**String**|Name of the Enterprise calander.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ManageSiteColumns.md b/api/Project.Application.ManageSiteColumns.md
index 88c4cab9545..4d67ba3bd94 100644
--- a/api/Project.Application.ManageSiteColumns.md
+++ b/api/Project.Application.ManageSiteColumns.md
@@ -23,7 +23,7 @@ Displays the **Manage Fields** dialog box, which enables synchronizing built-in
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.MapEdit.md b/api/Project.Application.MapEdit.md
index 9f9b0f77a88..89b9a084e60 100644
--- a/api/Project.Application.MapEdit.md
+++ b/api/Project.Application.MapEdit.md
@@ -27,7 +27,7 @@ Creates or edits an import/export map.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|The name of the map to create, copy, or edit.|
| _Create_|Optional|**Boolean**|**True** if Project should create a new map. If NewName is not specified, the new map is given the name specified with Name. Otherwise, the new map is a copy of the map specified with Name and is given the name specified with NewName. The default value is **False**.|
@@ -50,7 +50,7 @@ Creates or edits an import/export map.
| _IncludeImage_|Optional|**Boolean**|**True** if a reference to an image file should be included when exporting to HTML. The default value is **False**.|
| _ImageFile_|Optional|**String**|The name of an image file to include when exporting to HTML.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.Message.md b/api/Project.Application.Message.md
index af16eb3b832..b04298df4ea 100644
--- a/api/Project.Application.Message.md
+++ b/api/Project.Application.Message.md
@@ -27,14 +27,14 @@ Displays a message in a message box.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Message_|Required|**String**|The message to display in the dialog box.|
| _Type_|Optional|**Long**|The buttons to include in the message dialog box. Can be one of the **[PjMessageType](Project.PjMessageType.md)** constants. The default value is **pjOKOnly**.|
| _YesText_|Optional|**String**|The text to be displayed on the **Yes** button. The YesText argument is ignored unless Type is **pjYesNo** or **pjYesNoCancel**. The default value is "Yes".|
| _NoText_|Optional|**String**|The text to be displayed on the **No** button. The NoText argument is ignored unless Type is **pjYesNo** or **pjYesNoCancel**. The default value is "No".|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.NewProject.md b/api/Project.Application.NewProject.md
index cd4460554da..c23e108b263 100644
--- a/api/Project.Application.NewProject.md
+++ b/api/Project.Application.NewProject.md
@@ -24,7 +24,7 @@ Occurs when a new project is created, including the default project that is crea
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**| The project that was created.|
diff --git a/api/Project.Application.NewTasksStartOn.md b/api/Project.Application.NewTasksStartOn.md
index 724f24c2815..ece96b301de 100644
--- a/api/Project.Application.NewTasksStartOn.md
+++ b/api/Project.Application.NewTasksStartOn.md
@@ -27,11 +27,11 @@ Specifies how the start date of a new task is set.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StartOnDate_|Optional|**PjNewTasksStartOnDate**|Specifies whether new tasks start on the project date, the current date, or no date. Can be one of the **[PjNewTasksStartOnDate](Project.PjNewTasksStartOnDate.md)** constants. The default is **pjProjectDate**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ObjectChangeIcon.md b/api/Project.Application.ObjectChangeIcon.md
index ccd23579525..7fee4a719fd 100644
--- a/api/Project.Application.ObjectChangeIcon.md
+++ b/api/Project.Application.ObjectChangeIcon.md
@@ -23,7 +23,7 @@ Displays the **Change Icon** dialog box to enable changing the icon of an activ
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ObjectConvert.md b/api/Project.Application.ObjectConvert.md
index 29239758d24..9a0713387ff 100644
--- a/api/Project.Application.ObjectConvert.md
+++ b/api/Project.Application.ObjectConvert.md
@@ -23,7 +23,7 @@ Displays the **Convert** dialog box, which prompts the user to convert the acti
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ObjectInsert.md b/api/Project.Application.ObjectInsert.md
index aaa3387a589..c9105abdb35 100644
--- a/api/Project.Application.ObjectInsert.md
+++ b/api/Project.Application.ObjectInsert.md
@@ -23,7 +23,7 @@ Displays the **Insert Object** dialog box, which prompts the user to insert an
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ObjectLinks.md b/api/Project.Application.ObjectLinks.md
index 2bef5585924..7904441c350 100644
--- a/api/Project.Application.ObjectLinks.md
+++ b/api/Project.Application.ObjectLinks.md
@@ -23,7 +23,7 @@ Displays the **Links** dialog box, which prompts the user to edit OLE links in
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ObjectVerb.md b/api/Project.Application.ObjectVerb.md
index 3d32726694e..cc96a372a87 100644
--- a/api/Project.Application.ObjectVerb.md
+++ b/api/Project.Application.ObjectVerb.md
@@ -27,11 +27,11 @@ Instructs the active object to perform an action.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Verb_|Optional|**Long**|The action that the active object should perform.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OfficeOnTheWeb.md b/api/Project.Application.OfficeOnTheWeb.md
index 6980d1032b1..0b5a6569ffc 100644
--- a/api/Project.Application.OfficeOnTheWeb.md
+++ b/api/Project.Application.OfficeOnTheWeb.md
@@ -23,7 +23,7 @@ Navigates to the area of the Office.com web site that is dedicated to Microsoft
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OnUndoOrRedo.md b/api/Project.Application.OnUndoOrRedo.md
index 90ca0478888..c7c09d2f549 100644
--- a/api/Project.Application.OnUndoOrRedo.md
+++ b/api/Project.Application.OnUndoOrRedo.md
@@ -27,13 +27,13 @@ Occurs when a transaction is undone or redone.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _bstrLabel_|Required|**String**|Label of the transaction just undone or redone.|
| _bstrGUID_|Required|**String**|GUID of the transaction or NULL.|
| _fUndo_|Required|**Boolean**|**True** if the transaction was undone or **False** if it was redone.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.OpenFromSharePoint.md b/api/Project.Application.OpenFromSharePoint.md
index fe4c036df47..8bfa2b4e579 100644
--- a/api/Project.Application.OpenFromSharePoint.md
+++ b/api/Project.Application.OpenFromSharePoint.md
@@ -27,12 +27,12 @@ Opens a project from a task list in SharePoint 2013.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SiteURL_|Optional|**String**|Specifies the URL of the SharePoint site.|
| _ListName_|Optional|**String**|Specifies the name of the task list.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OpenServerPage.md b/api/Project.Application.OpenServerPage.md
index d78e3459b77..b0a0820a4c8 100644
--- a/api/Project.Application.OpenServerPage.md
+++ b/api/Project.Application.OpenServerPage.md
@@ -27,11 +27,11 @@ Opens the specified page from Project Web App.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Optional|**PjServerPage**|Specifies the page to open from Project Web App. Can be one of the **[PjServerPage](Project.PjServerPage.md)** constants. The default is **pjServerPageApprovals**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OpenUndoTransaction.md b/api/Project.Application.OpenUndoTransaction.md
index 4455f7d22f1..cbc5aed3371 100644
--- a/api/Project.Application.OpenUndoTransaction.md
+++ b/api/Project.Application.OpenUndoTransaction.md
@@ -24,7 +24,7 @@ Create an undo transaction set for a series of operations.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Label_|Required|**String**|Name that appears in the drop-down list for the **Undo Transaction** command.|
| _guid_|Optional|**Variant**|GUID that uniquely identifies Label.|
diff --git a/api/Project.Application.OpenXML.md b/api/Project.Application.OpenXML.md
index 127f3960075..8f0b8bba27f 100644
--- a/api/Project.Application.OpenXML.md
+++ b/api/Project.Application.OpenXML.md
@@ -24,11 +24,11 @@ Opens a project from an XML string.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _XML_|Required|**String**|String containing a valid Project XML string that conforms to the Project XML schema.|
-### Return Value
+### Return value
**Long**
diff --git a/api/Project.Application.OptionsCalculation.md b/api/Project.Application.OptionsCalculation.md
index 6c276191e84..c1ae9909cfc 100644
--- a/api/Project.Application.OptionsCalculation.md
+++ b/api/Project.Application.OptionsCalculation.md
@@ -27,7 +27,7 @@ Sets calculation options.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Automatic_|Optional|**Boolean**|**True** if the calculation mode is automatic.|
| _AutoTrack_|Optional|**Boolean**|**True** if task tracking fields automatically update resource assignments.|
@@ -46,7 +46,7 @@ Sets calculation options.
| _EVMethod_|Optional|**Long**|The default method for calculating earned value. Can be one of the following **[PJEarnedValueMethod](Project.PjEarnedValueMethod.md)** constants: **pjPercentComplete** or **pjPhysicalPercentComplete**.|
| _EVBaseline_|Optional|**Long**|The baseline to use when calculating earned value. Can be one of the following **[PjBaselines](Project.PjBaselines.md)** constants: **pjBaseline**, or **pjBaseline1**. . . **pjBaseline10**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OptionsCalendar.md b/api/Project.Application.OptionsCalendar.md
index bb24c946d03..12607f69cd2 100644
--- a/api/Project.Application.OptionsCalendar.md
+++ b/api/Project.Application.OptionsCalendar.md
@@ -27,7 +27,7 @@ Sets options for the calendar of the active project.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StartWeekOnMonday_|Optional|**Boolean**|**True** if the calendar week starts on Monday. **False** if the calendar week starts on Sunday. If _StartWeekOn_ is specified, _StartWeekOnMonday_ is ignored. (The _StartWeekOn_ argument is a better way to specify the start of the week.)|
| _StartYearIn_|Optional|**Long**|The first month of the fiscal year. Can be one of the **[PjMonth](Project.PjMonth.md)** constants.|
@@ -40,7 +40,7 @@ Sets options for the calendar of the active project.
| _UseFYStartYear_|Optional|**Boolean**|**True** if a fiscal year is determined by the year of the first month of that fiscal year. **False** if determined by the last month of the fiscal year.For example, if _StartYearIn_ is pjJuly (to denote July 2012) and _UseFYStartYear_ is **True**, the fiscal year ending in June 2012 would be FY2012.|
| _DaysPerMonth_|Optional|**Double**|The default number of work days per month.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OptionsEditEx.md b/api/Project.Application.OptionsEditEx.md
index 5d48c7f5f8e..a7b2d4306ff 100644
--- a/api/Project.Application.OptionsEditEx.md
+++ b/api/Project.Application.OptionsEditEx.md
@@ -27,7 +27,7 @@ Sets options for Project, where colors can be hexadecimal values, or opens the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MoveAfterReturn_|Optional|**Boolean**|**True** if the next cell or field becomes active when ENTER is pressed. **False** if the current cell or field remains active. The **Move selection after enter** option is on the **Advanced** tab of the **Project Options** dialog box.|
| _DragAndDrop_|Optional|**Boolean**|**True** if cells may be copied or moved by dragging them; otherwise, **False**. The **Allow cell drag and drop** option is on the **Advanced** tab.|
@@ -50,7 +50,7 @@ Sets options for Project, where colors can be hexadecimal values, or opens the
| _SetDefaultsHyperlink_|Optional|**Boolean**|**True** if the hyperlink options specified in the **Display options for this project**section (**Advanced** tab) are used as the default values for new projects. The default value is **False**, which means that the hyperlink options are set only for the active project.|
| _InCellEditing_|Optional|**Boolean**|**True** if in-cell editing is enabled; otherwise, **False**. Corresponds to the **Edit directly in cell** option in the **Edit** section of the **Advanced** tab.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OptionsGeneralEx.md b/api/Project.Application.OptionsGeneralEx.md
index 0784c885d28..dca5bf22ffe 100644
--- a/api/Project.Application.OptionsGeneralEx.md
+++ b/api/Project.Application.OptionsGeneralEx.md
@@ -27,7 +27,7 @@ Sets some options that are on the **General**, **Schedule**, and **Advanced**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PlanningWizard_|Optional|**Boolean**|**True** if the Planning Wizard is active. Planning Wizard settings are on the **Advanced** tab ofn the **Project Options** dialog box.|
| _WizardUsage_|Optional|**Boolean**|**True** if the Planning Wizard displays tips about using Project more effectively.|
@@ -50,7 +50,7 @@ Sets some options that are on the **General**, **Schedule**, and **Advanced**
| _ShowStartupWorkpane_|Optional||Because of changes in the Project object model, this argument no longer has an effect. It is retained for backward compatibility.|
| _MaxUndoRecords_|Optional|**Variant**|The maximum number of records stored in the undo stack.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OptionsInterfaceEx.md b/api/Project.Application.OptionsInterfaceEx.md
index 917913f37ef..670561c762c 100644
--- a/api/Project.Application.OptionsInterfaceEx.md
+++ b/api/Project.Application.OptionsInterfaceEx.md
@@ -27,7 +27,7 @@ Sets some display options and Project Guide options.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShowResourceAssignmentIndicators_|Optional|**Boolean**|**True** if Project displays indicators and options buttons for resource assignments. The default value is **False**.|
| _ShowEditToStartFinishDates_|Optional|**Boolean**|**True** if Project displays actions on the undo stack for edits to start and finish dates. The default value is **False**.|
@@ -41,7 +41,7 @@ Sets some display options and Project Guide options.
| _SetAsDefaults_|Optional|**Boolean**|**True** if the Project Guide settings for the active project should be used as the default for all new projects. The default value is **False**.|
| _UseOMIDs_|Optional|**Variant**|**True** if Project uses internal IDs to match different-language or renamed Organizer items between projects. The default is **True**. See also the **[UseOMIDs](Project.Application.UseOMIDs.md)** property.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OptionsSave.md b/api/Project.Application.OptionsSave.md
index bd00beb3328..9787f183851 100644
--- a/api/Project.Application.OptionsSave.md
+++ b/api/Project.Application.OptionsSave.md
@@ -27,7 +27,7 @@ Sets save options for project files.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DefaultSaveFormat_|Optional|**String**|Specifies the default format when saving a file. Can be one of the following strings: "MSProject.mpp", "MSProject.mpt", "MSProject.mpp12", or "MSProject.mpp9".|
| _DefaultProjectsPath_|Optional|**String**|Specifies the default location for project files.|
@@ -40,7 +40,7 @@ Sets save options for project files.
| _AutomaticSavePrompt_|Optional|**Boolean**|**True** if alerts display when automatically saving files.|
| _SetDefaultsDatabase_|Optional|**Boolean**|**True** if the value specified in the **Database save options** section, found on the **Save** tab of the **Options** dialog box, is used as the default value for new projects. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OptionsSchedule.md b/api/Project.Application.OptionsSchedule.md
index c6b9fd70e82..100d84be7e9 100644
--- a/api/Project.Application.OptionsSchedule.md
+++ b/api/Project.Application.OptionsSchedule.md
@@ -27,7 +27,7 @@ Sets scheduling options.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ScheduleMessages_|Optional|**Variant**|**Boolean**. **True** if messages display when scheduling problems occur; otherwise, **False**.|
| _StartOnCurrentDate_|Optional|**Boolean**|**True** if new tasks start on the current date. **False** if new tasks start on the project start date (projects scheduled from the start date) or on the project finish date (projects scheduled from the finish date).|
@@ -45,7 +45,7 @@ Sets scheduling options.
| _ShowEstimated_|Optional|**Boolean**|**True** if task durations in new projects are displayed with the estimated character; otherwise, **False**.|
| _NewTasksEstimated_|Optional|**Boolean**|**True** if new tasks in the active project have estimated durations; otherwise, **False**.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Project.Application.OptionsSecurityEx.md b/api/Project.Application.OptionsSecurityEx.md
index 3d8903dc333..e5b352a305a 100644
--- a/api/Project.Application.OptionsSecurityEx.md
+++ b/api/Project.Application.OptionsSecurityEx.md
@@ -27,13 +27,13 @@ Sets legacy security options that are available in the **Trust Center** dialog
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RemoveFileProperties_|Optional|**Boolean**|**True** if Project removes personal information from file properties upon saving. The default value is **False**. Corresponds to the **Document-specific settings** section on the **Privacy Options** tab of the **Trust Center** dialog box.|
| _TrustWSS_|Optional|**Boolean**|**True** if Project Server and project workspace sites need not be added to the Internet Explorer Trusted Sites list. **False** if the SharePoint sites for Project Server and project workspaces are already trusted. Corresponds to the setting on the **Project Server** tab of the **Trust Center** dialog box.|
| _LegacyFileFormats_|Optional|**Integer**|Sets the option for opening or saving files with legacy or non-default file formats. Valid values are 0?2. Corresponds to the setting on the **Legacy Formats** tab of the **Trust Center** dialog box. Can be one of the constants in the **[PjLegacyFileFormats](Project.PjLegacyFileFormats.md)** enumeration.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OptionsSecurityTab.md b/api/Project.Application.OptionsSecurityTab.md
index ebed42eaf22..597c12ad9ea 100644
--- a/api/Project.Application.OptionsSecurityTab.md
+++ b/api/Project.Application.OptionsSecurityTab.md
@@ -27,11 +27,11 @@ Displays a specific tab of the **Trust Center** dialog box in Project.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DefaultTab_|Optional|**PjOptionsSecurityTab**|Specifies the tab to open in the **Trust Center** dialog box. Can be one of the **[PjOptionsSecurityTab](Project.PjOptionsSecurityTab.md)** constants. The default is **pjOptionsSecurityTabPublishers** for the **Trusted Publishers** tab.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OptionsSpelling.md b/api/Project.Application.OptionsSpelling.md
index 3dcf8f3e08a..1fd9dcfe6cb 100644
--- a/api/Project.Application.OptionsSpelling.md
+++ b/api/Project.Application.OptionsSpelling.md
@@ -27,7 +27,7 @@ Sets options for the spelling checker.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TaskName_|Optional|**Boolean**|**True** if task names are checked.|
| _TaskNotes_|Optional|**Boolean**|**True** if task notes are checked.|
@@ -56,7 +56,7 @@ Sets options for the spelling checker.
| _AlwaysSuggest_|Optional|**Boolean**|**True** if Project always suggests alternate spellings to misspelled words.|
| _UseCustomDictionary_|Optional|**Boolean**|**True** if the custom dictionary is used.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OptionsViewEx.md b/api/Project.Application.OptionsViewEx.md
index 4ba9115e570..9be988920ac 100644
--- a/api/Project.Application.OptionsViewEx.md
+++ b/api/Project.Application.OptionsViewEx.md
@@ -27,7 +27,7 @@ Sets display options for the **General**, **Display**, and **Advanced** tabs
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DefaultView_|Optional|**String**|The name of the default view.|
| _DateFormat_|Optional|**Long**|The date format. Can be one of the **[PjDateFormat](Project.PjDateFormat.md)** constants.|
@@ -53,7 +53,7 @@ Sets display options for the **General**, **Display**, and **Advanced** tabs
| _CalendarType_|Optional|**Integer**|Sets the type of calendar for displaying Project content on the screen. Can be one of the **[pjCalendarType](Project.PjCalendarType.md)** values.|
| _Use3DLook_|Optional|**Boolean**|**True** if bars and shapes in Gantt views have a 3-dimensional appearance; otherwise **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.Organizer.md b/api/Project.Application.Organizer.md
index 04d8f9c940c..fae8397ce8b 100644
--- a/api/Project.Application.Organizer.md
+++ b/api/Project.Application.Organizer.md
@@ -27,12 +27,12 @@ Displays the **Organizer** dialog box, which enables the user to manage views,
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Optional|**Long**|The type of item to manage. Can be one of the **[PjOrganizer](Project.PjOrganizer.md)** constants. The default value is **pjViews**.|
| _Task_|Optional|**Boolean**|**True** if the item applies to tasks. **False** if the item applies to resources. The default value is **True**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OrganizerDeleteItem.md b/api/Project.Application.OrganizerDeleteItem.md
index 043f41327c2..65b508c81a9 100644
--- a/api/Project.Application.OrganizerDeleteItem.md
+++ b/api/Project.Application.OrganizerDeleteItem.md
@@ -27,14 +27,14 @@ Deletes an item from the Organizer.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Optional|**Long**|The type of item to delete. Can be one of the **[PjOrganizer](Project.PjOrganizer.md)** constants. The default value is **pjViews**.|
| _Filename_|Required|**String**|The name of the file containing the item to delete.|
| _Name_|Required|**String**|The name of the item to delete.|
| _Task_|Optional|**Boolean**|**True** if the item applies to tasks. **False** if the item applies to resources. The default value is **True**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OrganizerMoveItem.md b/api/Project.Application.OrganizerMoveItem.md
index 507049cf8d7..6abb48f8495 100644
--- a/api/Project.Application.OrganizerMoveItem.md
+++ b/api/Project.Application.OrganizerMoveItem.md
@@ -27,7 +27,7 @@ Moves an item in the Organizer.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Optional|**Long**|The type of item to move. Can be one of the **[PjOrganizer](Project.PjOrganizer.md)** constants. The default value is **pjViews**.|
| _Filename_|Required|**String**|The name of the file containing the item to move.|
@@ -35,7 +35,7 @@ Moves an item in the Organizer.
| _Name_|Optional|**String**|The name of the item to move. The default is to move all items specified with **Type**.|
| _Task_|Optional|**Boolean**|**True** if the item applies to tasks. **False** if the item applies to resources. The default value is **True**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OrganizerRenameItem.md b/api/Project.Application.OrganizerRenameItem.md
index 58b03541552..88b4a8daa1f 100644
--- a/api/Project.Application.OrganizerRenameItem.md
+++ b/api/Project.Application.OrganizerRenameItem.md
@@ -27,7 +27,7 @@ Renames an item in the Organizer.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Optional|**Long**|The type of item to rename. Can be one of the **[PjOrganizer](Project.PjOrganizer.md)** constants. The default value is **pjViews**.|
| _Filename_|Required|**String**|The name of the file containing the item to rename.|
@@ -35,7 +35,7 @@ Renames an item in the Organizer.
| _NewName_|Required|**String**|The new name for the item specified by **Name**.|
| _Task_|Optional|**Boolean**|**True** if the item applies to tasks. **False** if the item applies to resources. The default value is **True**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OutlineHideSubTasks.md b/api/Project.Application.OutlineHideSubTasks.md
index 9abe7853a6f..9c78ce5fbc0 100644
--- a/api/Project.Application.OutlineHideSubTasks.md
+++ b/api/Project.Application.OutlineHideSubTasks.md
@@ -23,7 +23,7 @@ Hides the subtasks of the selected task or tasks.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OutlineIndent.md b/api/Project.Application.OutlineIndent.md
index 0fdebd20863..7ea02ffe7ec 100644
--- a/api/Project.Application.OutlineIndent.md
+++ b/api/Project.Application.OutlineIndent.md
@@ -27,11 +27,11 @@ Indents a task in the outline.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Levels_|Optional|**Long**|A number that specifies how many levels to indent the task. Applies to **Application** object only. The default value is 1.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OutlineOutdent.md b/api/Project.Application.OutlineOutdent.md
index 678224aa8c8..120da188c4b 100644
--- a/api/Project.Application.OutlineOutdent.md
+++ b/api/Project.Application.OutlineOutdent.md
@@ -27,11 +27,11 @@ Promotes a task in the outline.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Levels_|Optional|**Long**|A number that specifies how many levels to indent the task. Applies to **Application** object only. The default value is 1.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OutlineShowAllTasks.md b/api/Project.Application.OutlineShowAllTasks.md
index 9c85bca5b2b..722a3e3f022 100644
--- a/api/Project.Application.OutlineShowAllTasks.md
+++ b/api/Project.Application.OutlineShowAllTasks.md
@@ -23,7 +23,7 @@ Expands all summary tasks in the project.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OutlineShowSubTasks.md b/api/Project.Application.OutlineShowSubTasks.md
index 4427cd440bb..56f54667952 100644
--- a/api/Project.Application.OutlineShowSubTasks.md
+++ b/api/Project.Application.OutlineShowSubTasks.md
@@ -23,7 +23,7 @@ Shows the subtasks of the selected task or tasks.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OutlineShowTasks.md b/api/Project.Application.OutlineShowTasks.md
index f2b81833281..635bd96d5d4 100644
--- a/api/Project.Application.OutlineShowTasks.md
+++ b/api/Project.Application.OutlineShowTasks.md
@@ -27,12 +27,12 @@ Expands an outline to show all tasks up to the specified level and collapses any
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _OutlineNumber_|Optional|**Long**|The outline level to display. Higher outline levels are expanded to show this level. The level specified with **OutlineNumber** and lower (if any) are collapsed. Can be one of the **[PjTaskOutlineShowLevel](Project.PJTaskOutlineShowLevel.md)** constants.|
| _ExpandInsertedProjects_|Optional|**Boolean**|**True** if tasks from subprojects are affected by the value specified with **OutlineNumber**. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.OutlineSymbolsToggle.md b/api/Project.Application.OutlineSymbolsToggle.md
index 791b6dbf9ea..8c3194a43c4 100644
--- a/api/Project.Application.OutlineSymbolsToggle.md
+++ b/api/Project.Application.OutlineSymbolsToggle.md
@@ -27,11 +27,11 @@ Shows or hides outline symbols.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Show_|Optional|**Boolean**|**True** if Project displays outline symbols. The default value is **True** if outline symbols are hidden and **False** if they are visible.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.PageBreakRemove.md b/api/Project.Application.PageBreakRemove.md
index 2a1f1876e6b..ae56d1b0a39 100644
--- a/api/Project.Application.PageBreakRemove.md
+++ b/api/Project.Application.PageBreakRemove.md
@@ -23,7 +23,7 @@ Removes a manual page break from the active row.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.PageBreakSet.md b/api/Project.Application.PageBreakSet.md
index a33484fd518..d8929c14df9 100644
--- a/api/Project.Application.PageBreakSet.md
+++ b/api/Project.Application.PageBreakSet.md
@@ -23,7 +23,7 @@ Sets a page break in the active row.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.PageBreaksRemoveAll.md b/api/Project.Application.PageBreaksRemoveAll.md
index bf3f1679d4c..0d2e04832a6 100644
--- a/api/Project.Application.PageBreaksRemoveAll.md
+++ b/api/Project.Application.PageBreaksRemoveAll.md
@@ -23,7 +23,7 @@ Removes all manual page breaks in the active project.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.PageBreaksShow.md b/api/Project.Application.PageBreaksShow.md
index e2ce2d91cef..fa5513212e7 100644
--- a/api/Project.Application.PageBreaksShow.md
+++ b/api/Project.Application.PageBreaksShow.md
@@ -27,11 +27,11 @@ Shows or hides page breaks on the Network Diagram.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Show_|Optional|**Boolean**|**True** if page breaks appear on the Network Diagram. The default is to toggle the current setting.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.PanZoomPanTo.md b/api/Project.Application.PanZoomPanTo.md
index f52310e4ffc..90a0297bc9d 100644
--- a/api/Project.Application.PanZoomPanTo.md
+++ b/api/Project.Application.PanZoomPanTo.md
@@ -24,11 +24,11 @@ Pans the Gantt chart in the active view to the specified start date.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Start_|Required|**Variant**|Specifies the start date for the left side of the Gantt chart.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Project.Application.PanZoomZoomTo.md b/api/Project.Application.PanZoomZoomTo.md
index dd6e9c0203a..2cbbe093408 100644
--- a/api/Project.Application.PanZoomZoomTo.md
+++ b/api/Project.Application.PanZoomZoomTo.md
@@ -24,12 +24,12 @@ Zooms the time range in or out for the Gantt chart in the active view.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Start_|Required|**Variant**|Specifies the start date for the left side of the Gantt chart.|
| _Finish_|Required|**Variant**|Specifies the finish date for the right side of the Gantt chart.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Project.Application.PaneActivate.md b/api/Project.Application.PaneActivate.md
index bef28383526..30df9c74c1a 100644
--- a/api/Project.Application.PaneActivate.md
+++ b/api/Project.Application.PaneActivate.md
@@ -20,7 +20,7 @@ Occurs when the pane is activated.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.PaneClose.md b/api/Project.Application.PaneClose.md
index fd23d7af017..9c68f44cf91 100644
--- a/api/Project.Application.PaneClose.md
+++ b/api/Project.Application.PaneClose.md
@@ -23,7 +23,7 @@ Closes the lower pane of the active window.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.PaneCreate.md b/api/Project.Application.PaneCreate.md
index 516645b6187..2829175520f 100644
--- a/api/Project.Application.PaneCreate.md
+++ b/api/Project.Application.PaneCreate.md
@@ -23,7 +23,7 @@ Creates a lower pane for the active window.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.PaneNext.md b/api/Project.Application.PaneNext.md
index 8a102717b70..e261503940a 100644
--- a/api/Project.Application.PaneNext.md
+++ b/api/Project.Application.PaneNext.md
@@ -23,7 +23,7 @@ Activates the lower pane if the upper pane is active; activates the upper pane i
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ProgressLines.md b/api/Project.Application.ProgressLines.md
index 7f3aa1cc34c..879969d08f6 100644
--- a/api/Project.Application.ProgressLines.md
+++ b/api/Project.Application.ProgressLines.md
@@ -23,7 +23,7 @@ Displays the **Progress Lines** dialog box.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ProjectAfterSave.md b/api/Project.Application.ProjectAfterSave.md
index be15db0f47f..e9c40eeeb31 100644
--- a/api/Project.Application.ProjectAfterSave.md
+++ b/api/Project.Application.ProjectAfterSave.md
@@ -20,7 +20,7 @@ Occurs after a project has been saved.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectAssignmentNew.md b/api/Project.Application.ProjectAssignmentNew.md
index e1114df057f..64da8acac74 100644
--- a/api/Project.Application.ProjectAssignmentNew.md
+++ b/api/Project.Application.ProjectAssignmentNew.md
@@ -24,12 +24,12 @@ Occurs when a new assignment is created.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project where the assignment was just created.|
| _ID_|Required|**Long**|The ID of the assignment that was just created.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeAssignmentChange.md b/api/Project.Application.ProjectBeforeAssignmentChange.md
index bf9a3078b77..f46fc0b65f6 100644
--- a/api/Project.Application.ProjectBeforeAssignmentChange.md
+++ b/api/Project.Application.ProjectBeforeAssignmentChange.md
@@ -24,7 +24,7 @@ Occurs before the user changes the value of an assignment field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _asg_|Required|**Assignment**|The assignment whose field is being changed.|
| _Field_|Required|**PjAssignmentField**| The field being changed. If more than one field is changed by the user, the event is triggered for each field changed. Can be one of the following **[PjAssignmentField](Project.PjAssignmentField.md)** constants.|
diff --git a/api/Project.Application.ProjectBeforeAssignmentChange2.md b/api/Project.Application.ProjectBeforeAssignmentChange2.md
index 38e6e7ca699..98fe6dbd0cb 100644
--- a/api/Project.Application.ProjectBeforeAssignmentChange2.md
+++ b/api/Project.Application.ProjectBeforeAssignmentChange2.md
@@ -24,14 +24,14 @@ Occurs before the user changes the value of an assignment field. Uses the **Eve
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _asg_|Required|**Assignment**|The assignment whose field is being changed.|
| _Field_|Required|**PjAssignmentField**|The field being changed. If more than one field is changed by the user, the event is fired for each field changed. Can be one of the **[PjAssignmentField](Project.PjAssignmentField.md)** constants.|
| _NewVal_|Required|**Variant**|The new value for the field specified with Field.|
| _Info_|Required|**EventInfo**|EventInfo.Cancel is **False** when the event occurs. If the event procedure sets this argument to **True**, the value for the field specified with Field is not changed.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeAssignmentDelete.md b/api/Project.Application.ProjectBeforeAssignmentDelete.md
index 6ee78df5ded..213fa2994fe 100644
--- a/api/Project.Application.ProjectBeforeAssignmentDelete.md
+++ b/api/Project.Application.ProjectBeforeAssignmentDelete.md
@@ -24,12 +24,12 @@ Occurs before an assignment is removed or replaced.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _asg_|Required|**Assignment**| The assignment that is being removed.|
| _Cancel_|Required|**Boolean**|**False** when the event occurs. If the event procedure sets this argument to **True**, the assignment is not removed. If the assignment is being removed because the associated resource has been deleted, Cancel is ignored.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeAssignmentDelete2.md b/api/Project.Application.ProjectBeforeAssignmentDelete2.md
index 3d259579e10..b004fe6a93c 100644
--- a/api/Project.Application.ProjectBeforeAssignmentDelete2.md
+++ b/api/Project.Application.ProjectBeforeAssignmentDelete2.md
@@ -24,12 +24,12 @@ Occurs before an assignment is removed or replaced. Uses the **EventInfo** obje
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _asg_|Required|**Assignment**|The assignment that is being removed.|
| _Info_|Required|**EventInfo**|EventInfo.Cancel is **False** when the event occurs. If the event procedure sets this argument to **True**, the assignment is not removed. If the assignment is being removed because the associated resource has been deleted, Info is ignored.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeAssignmentNew.md b/api/Project.Application.ProjectBeforeAssignmentNew.md
index 671a2d850c4..47158ab18aa 100644
--- a/api/Project.Application.ProjectBeforeAssignmentNew.md
+++ b/api/Project.Application.ProjectBeforeAssignmentNew.md
@@ -24,12 +24,12 @@ Occurs before one or more assignments are created.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project in which an assignment or assignments are being created.|
| _Cancel_|Required|**Boolean**|**False** when the event occurs. If the event procedure sets this argument to **True**, the new assignment(s) are not created.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeAssignmentNew2.md b/api/Project.Application.ProjectBeforeAssignmentNew2.md
index c5137c86d2e..e747b6d951f 100644
--- a/api/Project.Application.ProjectBeforeAssignmentNew2.md
+++ b/api/Project.Application.ProjectBeforeAssignmentNew2.md
@@ -24,12 +24,12 @@ Occurs before one or more assignments are created. Uses the **EventInfo** objec
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project in which an assignment or assignments are being created.|
| _Info_|Required|**EventInfo**|EventInfo.Cancel is **False** when the event occurs. If the event procedure sets this argument to **True**, the new assignment(s) are not created.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeClearBaseline.md b/api/Project.Application.ProjectBeforeClearBaseline.md
index 4bb42ff5d10..7883f076444 100644
--- a/api/Project.Application.ProjectBeforeClearBaseline.md
+++ b/api/Project.Application.ProjectBeforeClearBaseline.md
@@ -24,7 +24,7 @@ Occurs before a baseline is cleared. Uses the **EventInfo** object parameter.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**| The project displayed in the deactivated window.|
| _Interim_|Required|**Boolean**|**True** if clearing an interim baseline plan. **False** if clearing a full baseline plan.|
@@ -33,7 +33,7 @@ Occurs before a baseline is cleared. Uses the **EventInfo** object parameter.
| _AllTasks_|Required|**Boolean**|**True** if clearing the entire project.|
| _Info_|Required|**EventInfo**|EventInfo.Cancel is **False** when the event occurs. If the event procedure sets this argument to **True**, the baseline is not cleared.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeClose.md b/api/Project.Application.ProjectBeforeClose.md
index 808c5f5e89b..b62dd83d4fd 100644
--- a/api/Project.Application.ProjectBeforeClose.md
+++ b/api/Project.Application.ProjectBeforeClose.md
@@ -24,12 +24,12 @@ Occurs before a project is closed.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project to be closed|
| _Cancel_|Required|**Boolean**|**False** when the event occurs. If the event procedure sets this argument to **True**, the project will not be closed.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeClose2.md b/api/Project.Application.ProjectBeforeClose2.md
index bcdb4adc4c8..d9745763ab9 100644
--- a/api/Project.Application.ProjectBeforeClose2.md
+++ b/api/Project.Application.ProjectBeforeClose2.md
@@ -24,12 +24,12 @@ Occurs before a project is closed. Uses the **EventInfo** object parameter.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project to be closed|
| _Info_|Required|**EventInfo**|EventInfo.Cancel is **False** when the event occurs. If the event procedure sets this argument to **True**, the project will not be closed.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforePrint.md b/api/Project.Application.ProjectBeforePrint.md
index 5bda22b1e53..09f656d84ce 100644
--- a/api/Project.Application.ProjectBeforePrint.md
+++ b/api/Project.Application.ProjectBeforePrint.md
@@ -24,12 +24,12 @@ Occurs before a project is printed.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**| The project to be printed.|
| _Cancel_|Required|**Boolean**|**False** when the event occurs. If the event procedure sets this argument to **True**, the project will not be printed.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforePrint2.md b/api/Project.Application.ProjectBeforePrint2.md
index 15602b43b51..9d2741d9c8b 100644
--- a/api/Project.Application.ProjectBeforePrint2.md
+++ b/api/Project.Application.ProjectBeforePrint2.md
@@ -24,12 +24,12 @@ Occurs before a project is printed. Uses the **EventInfo** object parameter.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project to be printed.|
| _Info_|Required|**EventInfo**|EventInfo.Cancel is **False** when the event occurs. If the event procedure sets this argument to **True**, the project will not be printed.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforePublish.md b/api/Project.Application.ProjectBeforePublish.md
index 80943816ed8..6f518aa6243 100644
--- a/api/Project.Application.ProjectBeforePublish.md
+++ b/api/Project.Application.ProjectBeforePublish.md
@@ -24,12 +24,12 @@ Occurs before a **Publish** operation is placed on the server queue. The **Proj
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|Project object.|
| _Cancel_|Required|**Boolean**|**True** to cancel the **Publish** job.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Project.Application.ProjectBeforeResourceChange.md b/api/Project.Application.ProjectBeforeResourceChange.md
index fb15712da3f..adafda45022 100644
--- a/api/Project.Application.ProjectBeforeResourceChange.md
+++ b/api/Project.Application.ProjectBeforeResourceChange.md
@@ -21,7 +21,7 @@ _expression_ A variable that represents an **Application** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _res_|Required|**Resource**|The resource whose field is being changed.|
| _Field_|Required|**Long**|The field being changed. If more than one field is changed by the user, the event is fired for each field changed. Can be one of the **[PjField constants](#pjfield-constants)**.|
diff --git a/api/Project.Application.ProjectBeforeResourceChange2.md b/api/Project.Application.ProjectBeforeResourceChange2.md
index 38dd7cc4338..82718e1cff2 100644
--- a/api/Project.Application.ProjectBeforeResourceChange2.md
+++ b/api/Project.Application.ProjectBeforeResourceChange2.md
@@ -22,7 +22,7 @@ _expression_ A variable that represents an **Application** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _res_|Required|**Resource**|The resource whose field is being changed.|
| _Field_|Required|**Long**|The field being changed. If more than one field is changed by the user, the event is fired for each field changed. Can be one of the **[PjField constants](#pjfield-constants)**.|
diff --git a/api/Project.Application.ProjectBeforeResourceDelete.md b/api/Project.Application.ProjectBeforeResourceDelete.md
index 23f73060824..587f54ac401 100644
--- a/api/Project.Application.ProjectBeforeResourceDelete.md
+++ b/api/Project.Application.ProjectBeforeResourceDelete.md
@@ -24,12 +24,12 @@ Occurs before a resource is deleted.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _res_|Required|**Resource**| The resource that is being deleted.|
| _Cancel_|Required|**Boolean**|**False** when the event occurs. If the event procedure sets this argument to **True**, the resource is not deleted.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeResourceDelete2.md b/api/Project.Application.ProjectBeforeResourceDelete2.md
index d1e678e6b1d..25cf8854787 100644
--- a/api/Project.Application.ProjectBeforeResourceDelete2.md
+++ b/api/Project.Application.ProjectBeforeResourceDelete2.md
@@ -24,12 +24,12 @@ Occurs before a resource is deleted. Uses the **EventInfo** object parameter.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _res_|Required|**Resource**| The resource that is being deleted.|
| _Info_|Required|**EventInfo**|EventInfo.Cancel is **False** when the event occurs. If the event procedure sets this argument to **True**, the resource is not deleted.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeResourceNew.md b/api/Project.Application.ProjectBeforeResourceNew.md
index 9f0d50fb4c7..92fd941961e 100644
--- a/api/Project.Application.ProjectBeforeResourceNew.md
+++ b/api/Project.Application.ProjectBeforeResourceNew.md
@@ -24,12 +24,12 @@ Occurs before one or more resources are created.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project in which the resource or resources are being created.|
| _Cancel_|Required|**Boolean**|**False** when the event occurs. If the event procedure sets this argument to **True**, the new resource or resources are not created.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeResourceNew2.md b/api/Project.Application.ProjectBeforeResourceNew2.md
index a1ac000d306..58c487603fc 100644
--- a/api/Project.Application.ProjectBeforeResourceNew2.md
+++ b/api/Project.Application.ProjectBeforeResourceNew2.md
@@ -24,12 +24,12 @@ Occurs before one or more resources are created. Uses the **EventInfo** object
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project in which the resource or resources are being created.|
| _Info_|Required|**EventInfo**|EventInfo.Cancel is **False** when the event occurs. If the event procedure sets this argument to **True**, the new resource or resources are not created.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeSave.md b/api/Project.Application.ProjectBeforeSave.md
index c3f54783a4b..96f564b8a41 100644
--- a/api/Project.Application.ProjectBeforeSave.md
+++ b/api/Project.Application.ProjectBeforeSave.md
@@ -24,13 +24,13 @@ Occurs before a project is saved.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project to be saved.|
| _SaveAsUi_|Required|**Boolean**|**True** if the **Save As** dialog box is displayed.|
| _Cancel_|Required|**Boolean**|**False** when the event occurs. If the event procedure sets this argument to **True**, the project will not be saved.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeSave2.md b/api/Project.Application.ProjectBeforeSave2.md
index d0a4ded44b8..83355a701d5 100644
--- a/api/Project.Application.ProjectBeforeSave2.md
+++ b/api/Project.Application.ProjectBeforeSave2.md
@@ -24,13 +24,13 @@ Occurs before a project is saved. Uses the **EventInfo** object parameter.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project to be saved.|
| _SaveAsUi_|Required|**Boolean**|**True** if the **Save As** dialog box is displayed.|
| _Info_|Required|**EventInfo**|EventInfo.Cancel is **False** when the event occurs. If the event procedure sets this argument to **True**, the project will not be saved when the procedure is finished.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeSaveBaseline.md b/api/Project.Application.ProjectBeforeSaveBaseline.md
index 396b0fb72fd..515c42d1457 100644
--- a/api/Project.Application.ProjectBeforeSaveBaseline.md
+++ b/api/Project.Application.ProjectBeforeSaveBaseline.md
@@ -24,7 +24,7 @@ Occurs before a baseline is saved. Uses the **EventInfo** object parameter.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project displayed in the window.|
| _Interim_|Required|**Boolean**|**True** if saving an interim baseline. **False** if saving a full baseline.|
@@ -36,7 +36,7 @@ Occurs before a baseline is saved. Uses the **EventInfo** object parameter.
| _RollupFromSubtasks_|Required|**Boolean**|**True** if you wish to roll up baselines from subtasks.|
| _Info_|Required|**EventInfo**|EventInfo.Cancel is **False** when the event occurs. If the event procedure sets this argument to **True**, the baseline is not saved.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeTaskChange.md b/api/Project.Application.ProjectBeforeTaskChange.md
index 33828577495..eb1dc48155e 100644
--- a/api/Project.Application.ProjectBeforeTaskChange.md
+++ b/api/Project.Application.ProjectBeforeTaskChange.md
@@ -24,7 +24,7 @@ Occurs before the user changes the value of a task field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _tsk_|Required|**Task**|The task whose field is being changed.|
| _Field_|Required|**Long**|The field being changed. If more than one field is changed by the user, the event is fired for each field changed. Can be one of the **[PjField](Project.PjField.md)** constants.|
diff --git a/api/Project.Application.ProjectBeforeTaskChange2.md b/api/Project.Application.ProjectBeforeTaskChange2.md
index c7a18eb7d85..4f917068a36 100644
--- a/api/Project.Application.ProjectBeforeTaskChange2.md
+++ b/api/Project.Application.ProjectBeforeTaskChange2.md
@@ -22,7 +22,7 @@ _expression_ A variable that represents an **Application** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _tsk_|Required|**Task**|The task whose field is being changed.|
| _Field_|Required|**PjField**|The field being changed. If more than one field is changed by the user, the event is fired for each field changed. Can be one of the **[PjField constants](#pjfield-constants)**.|
diff --git a/api/Project.Application.ProjectBeforeTaskDelete.md b/api/Project.Application.ProjectBeforeTaskDelete.md
index 0d27e7dacfe..fbfd9cd8ddd 100644
--- a/api/Project.Application.ProjectBeforeTaskDelete.md
+++ b/api/Project.Application.ProjectBeforeTaskDelete.md
@@ -24,12 +24,12 @@ Occurs before a task is deleted.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _tsk_|Required|**Task**| The task that is being deleted.|
| _Cancel_|Required|**Boolean**|**False** when the event occurs. If the event procedure sets this argument to **True**, the task is not deleted.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeTaskDelete2.md b/api/Project.Application.ProjectBeforeTaskDelete2.md
index 9c022022782..31783051dbc 100644
--- a/api/Project.Application.ProjectBeforeTaskDelete2.md
+++ b/api/Project.Application.ProjectBeforeTaskDelete2.md
@@ -24,12 +24,12 @@ Occurs before a task is deleted. Uses the **EventInfo** object parameter.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _tsk_|Required|**Task**| The task that is being deleted.|
| _Info_|Required|**EventInfo**|EventInfo.Cancel is **False** when the event occurs. If the event procedure sets this argument to **True**, the task is not deleted when the procedure is finished.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeTaskNew.md b/api/Project.Application.ProjectBeforeTaskNew.md
index c5e53505562..037ac046d96 100644
--- a/api/Project.Application.ProjectBeforeTaskNew.md
+++ b/api/Project.Application.ProjectBeforeTaskNew.md
@@ -24,12 +24,12 @@ Occurs before one or more tasks are created.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project in which a task or tasks are being created.|
| _Cancel_|Required|**Boolean**|**False** when the event occurs. If the event procedure sets this argument to **True**, the new task or tasks are not created.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectBeforeTaskNew2.md b/api/Project.Application.ProjectBeforeTaskNew2.md
index d2fae7c4540..8246e35d6cc 100644
--- a/api/Project.Application.ProjectBeforeTaskNew2.md
+++ b/api/Project.Application.ProjectBeforeTaskNew2.md
@@ -24,12 +24,12 @@ Occurs before one or more tasks are created. Uses the **EventInfo** object para
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project in which a task or tasks are being created.|
| _Info_|Required|**EventInfo**|EventInfo.Cancel is **False** when the event occurs. If the event procedure sets this argument to **True**, the new task or tasks are not created.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectCalculate.md b/api/Project.Application.ProjectCalculate.md
index 033295564a5..bba9927ee58 100644
--- a/api/Project.Application.ProjectCalculate.md
+++ b/api/Project.Application.ProjectCalculate.md
@@ -24,11 +24,11 @@ Occurs after a project is calculated.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project that was calculated.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectMove.md b/api/Project.Application.ProjectMove.md
index 738bb3d49f4..90dcdd0721d 100644
--- a/api/Project.Application.ProjectMove.md
+++ b/api/Project.Application.ProjectMove.md
@@ -27,12 +27,12 @@ Moves the project start date to a new date.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Date_|Optional|**Variant**|Specifies the new project start date.|
| _MoveDeadline_|Optional|**Boolean**|**True** if deadlines are also moved; otherwise **false**. The default is **true**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ProjectResourceNew.md b/api/Project.Application.ProjectResourceNew.md
index 906a7efb3b8..ec18c7cea1a 100644
--- a/api/Project.Application.ProjectResourceNew.md
+++ b/api/Project.Application.ProjectResourceNew.md
@@ -24,12 +24,12 @@ Occurs before one or more resources is created.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project in which the resource or resources are being created.|
| _ID_|Required|**Long**|ID of the new resource in the project.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.ProjectStatistics.md b/api/Project.Application.ProjectStatistics.md
index 026cea0a23f..d41e7cfafdd 100644
--- a/api/Project.Application.ProjectStatistics.md
+++ b/api/Project.Application.ProjectStatistics.md
@@ -27,11 +27,11 @@ Displays the **Project Statistics** dialog box.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Project_|Optional|**String**|The name of a project.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ProjectSummaryInfo.md b/api/Project.Application.ProjectSummaryInfo.md
index f172b91a825..6fdacbbd439 100644
--- a/api/Project.Application.ProjectSummaryInfo.md
+++ b/api/Project.Application.ProjectSummaryInfo.md
@@ -27,7 +27,7 @@ Sets information about a project.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Project_|Optional|**String**|The file name of the project that should have its project information edited.|
| _Title_|Optional|**String**|The title of the project.|
@@ -46,7 +46,7 @@ Sets information about a project.
| _Priority_|Optional|**Integer**|The priority, ranging from 0 to 1000, of the active project.|
| _PartiallyDisabled_|Optional|**Boolean**|**True** if Project displays the **Project Information** dialog box with all elements disabled except for the **Enterprise Custom Fields** section.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ProjectTaskNew.md b/api/Project.Application.ProjectTaskNew.md
index 8a2da9b16a2..e186eed33fc 100644
--- a/api/Project.Application.ProjectTaskNew.md
+++ b/api/Project.Application.ProjectTaskNew.md
@@ -24,12 +24,12 @@ Occurs when a new task is created.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project where the task was created.|
| _ID_|Required|**Long**|The ID of the task that was created.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.Publish.md b/api/Project.Application.Publish.md
index 53cf02c2a99..fe24bb45dc0 100644
--- a/api/Project.Application.Publish.md
+++ b/api/Project.Application.Publish.md
@@ -27,12 +27,12 @@ Sends message to the Project Server Queueing Service to publish the local projec
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Republish_|Optional|**Boolean**|If **True**, publish the entire project plan.|
| _WssUrl_|Optional|**String**|URL for the SharePoint site where the project workspace is to be provisioned. If NULL, no workspace is provisioned.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.Quit.md b/api/Project.Application.Quit.md
index 85a24002ef0..97c1c368f1b 100644
--- a/api/Project.Application.Quit.md
+++ b/api/Project.Application.Quit.md
@@ -27,7 +27,7 @@ Exits Microsoft Project.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SaveChanges_|Optional|**Long**|Specifies whether Project saves changes before quitting. Can be one of the following **[PjSaveType](Project.PjSaveType.md)** constants: **pjDoNotSave**, **pjSave**, or **pjPromptSave**. The default is **pjPromptSave** for new project files and projects that have changed since the last save.|
diff --git a/api/Project.Application.ReassignSelectedAssns.md b/api/Project.Application.ReassignSelectedAssns.md
index fcd17e3f015..c845c54567c 100644
--- a/api/Project.Application.ReassignSelectedAssns.md
+++ b/api/Project.Application.ReassignSelectedAssns.md
@@ -27,11 +27,11 @@ Reassigns the selected assignments in the Team Planner view.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ResourceUniqueID_|Required|**Long**|Identification number of the resource for the new assignment, or -65535 for unassigned.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.RecurringTaskInsert.md b/api/Project.Application.RecurringTaskInsert.md
index 641331f8283..281ac17469d 100644
--- a/api/Project.Application.RecurringTaskInsert.md
+++ b/api/Project.Application.RecurringTaskInsert.md
@@ -23,7 +23,7 @@ Displays the **Recurring Task Information** dialog box, which prompts the user
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.Redo.md b/api/Project.Application.Redo.md
index 13e5e9cf6d2..99130006032 100644
--- a/api/Project.Application.Redo.md
+++ b/api/Project.Application.Redo.md
@@ -27,11 +27,11 @@ Executes a redo action on items in the **Redo** list.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _HowManyRedos_|Optional|**Long**|Specifies the number of items from the list to redo. The default is 1.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.RegisterProject.md b/api/Project.Application.RegisterProject.md
index 97d53ff9e7a..0ba15c4052b 100644
--- a/api/Project.Application.RegisterProject.md
+++ b/api/Project.Application.RegisterProject.md
@@ -27,11 +27,11 @@ Registers the active project on Project Server.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _WaitForCompletion_|Required|**Boolean**|**True** if Project waits until the registration is complete before returning notification that the operation was successful or returning an error code if the operation failed. The default value is **False**.|
-### Return Value
+### Return value
**Long**
diff --git a/api/Project.Application.ReminderSet.md b/api/Project.Application.ReminderSet.md
index 1bff4d86d8b..e999e9f0dd4 100644
--- a/api/Project.Application.ReminderSet.md
+++ b/api/Project.Application.ReminderSet.md
@@ -27,12 +27,12 @@ Sets a reminder in Microsoft Outlook for the start time or finish time of the ac
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Start_|Optional|**Boolean**|**True** if the reminder is set for the start time of the active tasks. **False** if the reminder is set for the finish time. The default value is **True**.|
| _LeadTime_|Optional|**String**|The amount of lead time for Microsoft Outlook reminders. The default value is "15m", which triggers reminders 15 minutes before the start time (Start is **True**) or after the finish time (Start is **False**).|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.Replace.md b/api/Project.Application.Replace.md
index 1631c07200a..52423fea4bb 100644
--- a/api/Project.Application.Replace.md
+++ b/api/Project.Application.Replace.md
@@ -25,7 +25,7 @@ _expression_ A variable that represents an **Application** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Field_|Optional|**String**|The name of the field to search.|
| _Test_|Optional|**String**|The type of comparison made between _Field_ and _Value_. Can be one of the [comparison strings](#comparison-strings).|
diff --git a/api/Project.Application.ReplaceEx.md b/api/Project.Application.ReplaceEx.md
index c55d636e54c..11dd45c89cc 100644
--- a/api/Project.Application.ReplaceEx.md
+++ b/api/Project.Application.ReplaceEx.md
@@ -24,7 +24,7 @@ _expression_ An expression that returns an **Application** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Field_|Optional|**String**|The name of the field to search.|
| _Test_|Optional|**String**|The type of comparison made between _Field_ and _Value_. Can be one of the [comparison strings](#comparison-strings).|
diff --git a/api/Project.Application.ReportPrint.md b/api/Project.Application.ReportPrint.md
index c4bea2b012e..6f3fca6fa7f 100644
--- a/api/Project.Application.ReportPrint.md
+++ b/api/Project.Application.ReportPrint.md
@@ -27,7 +27,7 @@ Deprecated in Project. Prints a report.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|The name of the report to print|
| _FromPage_|Optional|**Integer**|A number that specifies the first page to print.|
@@ -40,7 +40,7 @@ Deprecated in Project. Prints a report.
| _Preview_|Optional|**Boolean**|**True** if Project previews the active view rather than printing it. The default value is **False**.|
| _Color_|Optional|**Boolean**|**True** if Project prints the report in color. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ReportPrintPreview.md b/api/Project.Application.ReportPrintPreview.md
index f71a36b814a..34b51181634 100644
--- a/api/Project.Application.ReportPrintPreview.md
+++ b/api/Project.Application.ReportPrintPreview.md
@@ -27,11 +27,11 @@ Deprecated in Project. Shows an on-screen preview of a printed report.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|The name of a report for which to show an on-screen preview. |
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.Reports.md b/api/Project.Application.Reports.md
index c6960bf60e5..7a5ab17bc97 100644
--- a/api/Project.Application.Reports.md
+++ b/api/Project.Application.Reports.md
@@ -23,7 +23,7 @@ The **Reports** method is deprecated in Project.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.RequestProgressInformation.md b/api/Project.Application.RequestProgressInformation.md
index 37c67d48cc1..1f0b2f5f5ee 100644
--- a/api/Project.Application.RequestProgressInformation.md
+++ b/api/Project.Application.RequestProgressInformation.md
@@ -24,7 +24,7 @@ Requests progress information from resources, republishes, and saves the active
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShowDialog_|Optional|**Boolean**|**True** if Project displays the corresponding dialog box for the message type. The default value is **False**.|
| _ItemsScope_|Optional|**Long**|Specifies the scope of assignments to be published. Can be one of the following **[PjPublishScope](Project.PjPublishScope.md)** constants: **pjPublishScopeAll**, **pjPublishScopeDefault**, **pjPublishScopeSelected**, or **pjPublishScopeVisible**. The default value is **pjPublishScopeAll**.|
diff --git a/api/Project.Application.RescheduleToNextAvailable.md b/api/Project.Application.RescheduleToNextAvailable.md
index a6e52c9de93..69cc545e014 100644
--- a/api/Project.Application.RescheduleToNextAvailable.md
+++ b/api/Project.Application.RescheduleToNextAvailable.md
@@ -27,11 +27,11 @@ Reschedules the specified task to the next available time.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TaskID_|Optional|**Long**|Unique ID of the task to reschedule.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResetTPStyle.md b/api/Project.Application.ResetTPStyle.md
index efdd287a009..0916efb0393 100644
--- a/api/Project.Application.ResetTPStyle.md
+++ b/api/Project.Application.ResetTPStyle.md
@@ -27,11 +27,11 @@ Resets the specified Team Planner style to the default values.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required|**PjTeamPlannerStyle**|Can be one of the **[PjTeamPlannerStyle](Project.PjTeamPlannerStyle.md)** constants.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResourceActiveDirectory.md b/api/Project.Application.ResourceActiveDirectory.md
index 5a0df8daade..f8728b5df8e 100644
--- a/api/Project.Application.ResourceActiveDirectory.md
+++ b/api/Project.Application.ResourceActiveDirectory.md
@@ -23,7 +23,7 @@ Displays the **Select Users or Groups** dialog box, where users can select reso
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResourceAddressBook.md b/api/Project.Application.ResourceAddressBook.md
index 51ebc4061cc..5c49ac37584 100644
--- a/api/Project.Application.ResourceAddressBook.md
+++ b/api/Project.Application.ResourceAddressBook.md
@@ -23,7 +23,7 @@ Displays a MAPI-compliant address book from which the user can select resources
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResourceAssignment.md b/api/Project.Application.ResourceAssignment.md
index 54501e52803..d290397be77 100644
--- a/api/Project.Application.ResourceAssignment.md
+++ b/api/Project.Application.ResourceAssignment.md
@@ -24,7 +24,7 @@ _expression_ A variable that represents an **Application** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Resources_|Optional|**String**|The names of the resources to be assigned, removed, or replaced in the selected tasks.
**Note** Project will not assign a resource if thousands separators or decimal separators are included in the unit values.|
| _Operation_|Optional|**Long**|If _Operation_ is omitted, Project assigns the resources to the selected tasks. The default value is **pjAssign**. Can be one of the **[PjResAssignOperation constants](#pjresassignoperation-constants)**.|
diff --git a/api/Project.Application.ResourceAssignmentDialog.md b/api/Project.Application.ResourceAssignmentDialog.md
index 5bb2c4d5887..7c238b28667 100644
--- a/api/Project.Application.ResourceAssignmentDialog.md
+++ b/api/Project.Application.ResourceAssignmentDialog.md
@@ -27,7 +27,7 @@ Displays the **Assign Resources** dialog box, expands or collapses the **Resour
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShowResourceListOptions_|Optional|**Boolean**|**True** if Project expands the **Resource list options**. The default value is **False**.|
| _ResourceListFields_|Optional|**Long**|The fields listing data from the active project. Can be one of the following **PjAssignResourcesListFields** constants: **pjAllColumns** or **pjBasic**. The default value is **pjAllColumns**.|
@@ -36,7 +36,7 @@ Displays the **Assign Resources** dialog box, expands or collapses the **Resour
| _UseAvailableToWorkFilter_|Optional|**Boolean**|**True** if Project filters the resource list by a resource's availability to work.|
| _AvailableToWork_|Optional|**Variant**|The number of hours a resource is available to work, without the letter indicating the units.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResourceCalendarEditDays.md b/api/Project.Application.ResourceCalendarEditDays.md
index 79ecbb3e93e..148be45e54b 100644
--- a/api/Project.Application.ResourceCalendarEditDays.md
+++ b/api/Project.Application.ResourceCalendarEditDays.md
@@ -27,7 +27,7 @@ Edits days in a resource calendar.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ProjectName_|Required|**String**|The name of the project containing the resource calendar to edit.|
| _ResourceName_|Required|**String**|The name of the resource to edit.|
@@ -47,7 +47,7 @@ Edits days in a resource calendar.
| _From5_|Optional|**Variant**|The start time of the fifth shift.|
| _To5_|Optional|**Variant**|The end time of the fifth shift.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResourceCalendarReset.md b/api/Project.Application.ResourceCalendarReset.md
index 059d24052d6..34cafe9c82f 100644
--- a/api/Project.Application.ResourceCalendarReset.md
+++ b/api/Project.Application.ResourceCalendarReset.md
@@ -27,13 +27,13 @@ Resets a resource calendar.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ProjectName_|Required|**String**|The name of the project containing the resource calendar to reset.|
| _ResourceName_|Required|**String**|The name of the resource for the calendar to reset.|
| _BaseCalendar_|Optional|**String**|The name of the base calendar used to reset the resource calendar. The default value is the name of the current base calendar for the resource.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResourceCalendars.md b/api/Project.Application.ResourceCalendars.md
index 41cc1b649f6..01ceb998864 100644
--- a/api/Project.Application.ResourceCalendars.md
+++ b/api/Project.Application.ResourceCalendars.md
@@ -27,12 +27,12 @@ Displays the **Change Working Time** dialog box, which prompts the user to mana
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Optional|**String**|The resource index number or resource name.|
| _Locked_|Optional|**Boolean**|**False** if the user can set working time for selected dates for a resource. **True** if the fields are locked for editing. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResourceComparison.md b/api/Project.Application.ResourceComparison.md
index 5438243dc21..dec2e25d6c0 100644
--- a/api/Project.Application.ResourceComparison.md
+++ b/api/Project.Application.ResourceComparison.md
@@ -23,7 +23,7 @@ In a project comparison report, shows the Resource Sheet view in all three proje
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResourceDetails.md b/api/Project.Application.ResourceDetails.md
index b56160e3dd4..623df20b176 100644
--- a/api/Project.Application.ResourceDetails.md
+++ b/api/Project.Application.ResourceDetails.md
@@ -27,11 +27,11 @@ Displays the details from a MAPI-compliant address book for a resource.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|The name of a resource to locate in the address book. If the name is found, the **Properties** dialog box for the individual is displayed. If an exact match is not found, the mail system displays the **Check Names** dialog box to allow the user to choose a valid name from the address book. If Name is omitted, the selected resource is used.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResourceGraphBarStyles.md b/api/Project.Application.ResourceGraphBarStyles.md
index cc3f0b482bc..3257ccf9859 100644
--- a/api/Project.Application.ResourceGraphBarStyles.md
+++ b/api/Project.Application.ResourceGraphBarStyles.md
@@ -27,7 +27,7 @@ Sets the styles of bars on the Resource Graph view.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TopLeftShowAs_|Optional|**Integer**|The bar type for the overallocated resources category in the upper-left corner of the **Bar Styles** dialog box. Can be one of the following **[PjResourceGraphStyle](Project.PjResourceGraphStyle.md)** constants: **pjBar**, **pjArea**, **pjStep**, **pjLine**, **pjStepLine**, or **pjDoNotShow**.|
| _TopLeftColor_|Optional|**Integer**|The bar color for the overallocated resources category in the upper-left corner of the **Bar Styles** dialog box. Can be one of the **[PjColor](Project.PjColor.md)** constants.|
@@ -51,7 +51,7 @@ Sets the styles of bars on the Resource Graph view.
| _ProposedRightColor_|Optional|**Integer**|The bar color for the proposed bookings category in the bottom right section of the **Bar Styles** dialog box. Can be one of the **PjColor** constants.|
| _ProposedRightPattern_|Optional|**Integer**|The bar pattern for the proposed bookings category in the bottom right section of the **Bar Styles** dialog box. Can be one of the **PjResourceGraphPattern** constants.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResourceGraphBarStylesEx.md b/api/Project.Application.ResourceGraphBarStylesEx.md
index 7c98448a589..052c40eb53e 100644
--- a/api/Project.Application.ResourceGraphBarStylesEx.md
+++ b/api/Project.Application.ResourceGraphBarStylesEx.md
@@ -27,7 +27,7 @@ Sets the styles of bars on the Resource Graph view, where colors can be hexadeci
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TopLeftShowAs_|Optional|**Integer**|The bar type for the overallocated resources category in the upper-left corner of the **Bar Styles** dialog box. Can be one of the following **[PjResourceGraphStyle](Project.PjResourceGraphStyle.md)** constants: **pjBar**, **pjArea**, **pjStep**, **pjLine**, **pjStepLine**, or **pjDoNotShow**.|
| _TopLeftColor_|Optional|**Integer**|The bar color for the overallocated resources category in the upper-left corner of the **Bar Styles** dialog box. Can be a hexadecimal value, where red is the last byte. For example, the value &;HFF0000 is blue and &;H00FFFF is yellow.|
@@ -51,7 +51,7 @@ Sets the styles of bars on the Resource Graph view, where colors can be hexadeci
| _ProposedRightColor_|Optional|**Integer**|The bar color for the proposed bookings category in the bottom right section of the **Bar Styles** dialog box. Can be a hexadecimal value, where red is the last byte.|
| _ProposedRightPattern_|Optional|**Integer**|The bar pattern for the proposed bookings category in the bottom right section of the **Bar Styles** dialog box. Can be one of the **PjResourceGraphPattern** constants.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResourceMappingDialog.md b/api/Project.Application.ResourceMappingDialog.md
index bb622aae741..72281d9385c 100644
--- a/api/Project.Application.ResourceMappingDialog.md
+++ b/api/Project.Application.ResourceMappingDialog.md
@@ -23,7 +23,7 @@ Displays the **Map Project Resources onto Enterprise Resources** dialog box, fo
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResourceSharing.md b/api/Project.Application.ResourceSharing.md
index 3e157d893ec..50a44e35fca 100644
--- a/api/Project.Application.ResourceSharing.md
+++ b/api/Project.Application.ResourceSharing.md
@@ -27,13 +27,13 @@ Controls resource sharing, for local resources and projects.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Share_|Optional|**Boolean**|**True** if local resources are shared. If **Name** is specified, **Share** is ignored.|
| _Name_|Optional|**String**|The file name of the project that contains the local resource pool.|
| _Pool_|Optional|**Boolean**|**True** if resources in the local pool take precedence over resources in the project .|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResourceSharingPoolAction.md b/api/Project.Application.ResourceSharingPoolAction.md
index a8102559353..7b512cd2bb9 100644
--- a/api/Project.Application.ResourceSharingPoolAction.md
+++ b/api/Project.Application.ResourceSharingPoolAction.md
@@ -27,13 +27,13 @@ Performs the specified action on a local resource pool.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _action_|Required|**Long**|The actions to perform on the resource pool. Can be one of the **[PjPoolAction](Project.PjPoolAction.md)** constants.|
| _Filename_|Optional|**String**|The file name of the resource pool on which to perform the action.|
| _ReadOnly_|Optional|**Boolean**|**True** if the files specified with **FileName** are opened read-only.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResourceSharingPoolRefresh.md b/api/Project.Application.ResourceSharingPoolRefresh.md
index 48735d9e69a..1e7451cc1a9 100644
--- a/api/Project.Application.ResourceSharingPoolRefresh.md
+++ b/api/Project.Application.ResourceSharingPoolRefresh.md
@@ -23,7 +23,7 @@ Refreshes the local resource sharing pool.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResourceSharingPoolUpdate.md b/api/Project.Application.ResourceSharingPoolUpdate.md
index 680b0a9078e..d6b14f8aba1 100644
--- a/api/Project.Application.ResourceSharingPoolUpdate.md
+++ b/api/Project.Application.ResourceSharingPoolUpdate.md
@@ -27,11 +27,11 @@ Synchronizes the information in the sharer project with the information in the l
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _allSharers_|Optional|**Boolean**|**True** if the information from all open sharers is updated in the pool. **False** if only the information from sharers in the active project is updated in the pool. If **AllSharers** is omitted and only one sharer is open, that information is updated in the pool; otherwise, the user is prompted to specify whether all open sharers or just those in the active project should be updated in the pool.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ResourceWindowsAccount.md b/api/Project.Application.ResourceWindowsAccount.md
index 13d4d7e23ce..d58286df92c 100644
--- a/api/Project.Application.ResourceWindowsAccount.md
+++ b/api/Project.Application.ResourceWindowsAccount.md
@@ -27,12 +27,12 @@ Sets the security identifier for Microsoft Windows authentication for the select
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|The name of a resource for whom a security identifier is to be obtained. If an exact match is not found, the mail system will bring up the **Check Names** dialog box for manual selection. If Name is not specified, security identifier(s) will be obtained for the selected resource(s).|
| _ShowDialog_|Optional|**Boolean**|**True** if the user is prompted to confirm adding the security identifier to the **Windows User Account** field for each resource specified with Name. The default value is **True**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.RestoreSheetSelection.md b/api/Project.Application.RestoreSheetSelection.md
index 51c5d185b51..c0793804d2e 100644
--- a/api/Project.Application.RestoreSheetSelection.md
+++ b/api/Project.Application.RestoreSheetSelection.md
@@ -23,7 +23,7 @@ Restores saved row and column information of a selected sheet view.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.RowClear.md b/api/Project.Application.RowClear.md
index d0efec63921..bc7291daacc 100644
--- a/api/Project.Application.RowClear.md
+++ b/api/Project.Application.RowClear.md
@@ -23,7 +23,7 @@ Clears the active row.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.RowDelete.md b/api/Project.Application.RowDelete.md
index 2431b2d00ed..2d4cb7d6784 100644
--- a/api/Project.Application.RowDelete.md
+++ b/api/Project.Application.RowDelete.md
@@ -23,7 +23,7 @@ Deletes the active row or the row that contains the active cell.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.RowInsert.md b/api/Project.Application.RowInsert.md
index be8b9f3fd74..14780734829 100644
--- a/api/Project.Application.RowInsert.md
+++ b/api/Project.Application.RowInsert.md
@@ -23,7 +23,7 @@ Inserts a row above the active row.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.Run.md b/api/Project.Application.Run.md
index fae5897ea0f..147bd7070fa 100644
--- a/api/Project.Application.Run.md
+++ b/api/Project.Application.Run.md
@@ -27,7 +27,7 @@ Runs the specified procedure.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of the macro to run.|
| _Arg1_|Optional|**Variant**|Any argument to pass to the macro specified in Name.|
diff --git a/api/Project.Application.SaveCompletedToServer.md b/api/Project.Application.SaveCompletedToServer.md
index 018b25a9a18..8f85d10c6de 100644
--- a/api/Project.Application.SaveCompletedToServer.md
+++ b/api/Project.Application.SaveCompletedToServer.md
@@ -24,12 +24,12 @@ Occurs when Project Professional successfully puts the **Project Save** job in
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _bstrName_|Required|**String**|Name of the project.|
| _bstrprojGuid_|Required|**String**|GUID of the project|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.SaveForSharing.md b/api/Project.Application.SaveForSharing.md
index fba8255d6da..14c2818aba3 100644
--- a/api/Project.Application.SaveForSharing.md
+++ b/api/Project.Application.SaveForSharing.md
@@ -27,11 +27,11 @@ Saves a local copy of the active project for sharing, to make changes and then m
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Filename_|Optional|**Variant**|Full path and the name of the project file saved for sharing.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SaveSheetSelection.md b/api/Project.Application.SaveSheetSelection.md
index 3a8596a3ceb..ac44862e760 100644
--- a/api/Project.Application.SaveSheetSelection.md
+++ b/api/Project.Application.SaveSheetSelection.md
@@ -23,7 +23,7 @@ Saves row and column information for a selected sheet view.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SaveStartingToServer.md b/api/Project.Application.SaveStartingToServer.md
index 7562c792fd4..707b4b19b3b 100644
--- a/api/Project.Application.SaveStartingToServer.md
+++ b/api/Project.Application.SaveStartingToServer.md
@@ -24,12 +24,12 @@ Occurs when Project Professional starts to save project changes to the Project S
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _bstrName_|Required|**String**|Name of the project.|
| _bstrprojGuid_|Required|**String**|GUID of the project.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.SecondaryViewChange.md b/api/Project.Application.SecondaryViewChange.md
index dfff1cf7ee6..6f5d37ae244 100644
--- a/api/Project.Application.SecondaryViewChange.md
+++ b/api/Project.Application.SecondaryViewChange.md
@@ -24,14 +24,14 @@ Event occurs when a secondary view pane changes within a project window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required|**Window**|The name of the Project file.|
| _prevView_|Required|**View**|The name of the previous topic pane view before the view change occurred. If the user was not in a project view before applying the current view, the prevView argument returns **null**.|
| _newView_|Required|**View**|The name of the new top pane view that the user applied. |
| _success_|Required|**Boolean**|**True** if the view change action succeeded.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.SegmentBorderColor.md b/api/Project.Application.SegmentBorderColor.md
index e2c29fa4646..e15d107bdfd 100644
--- a/api/Project.Application.SegmentBorderColor.md
+++ b/api/Project.Application.SegmentBorderColor.md
@@ -27,11 +27,11 @@ Sets the border color for the assignment segments of a selected task in the Team
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Color_|Required|**Long**|Border color of the assignment segments. The color is a hexadecimal RGB value, where red is the last byte.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SegmentFillColor.md b/api/Project.Application.SegmentFillColor.md
index 09ab6ad2604..e372cdd09d3 100644
--- a/api/Project.Application.SegmentFillColor.md
+++ b/api/Project.Application.SegmentFillColor.md
@@ -27,11 +27,11 @@ Sets the fill color for the assignment segments of a selected task in the Team P
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Color_|Required|**Long**|Fill color of the assignment segments. The color is a hexadecimal RGB value, where red is the last byte.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectAll.md b/api/Project.Application.SelectAll.md
index 47ef3152d52..392f99b5d13 100644
--- a/api/Project.Application.SelectAll.md
+++ b/api/Project.Application.SelectAll.md
@@ -23,7 +23,7 @@ Selects all cells on the active sheet.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectBeginning.md b/api/Project.Application.SelectBeginning.md
index cb6e2f52bd1..c93ea717870 100644
--- a/api/Project.Application.SelectBeginning.md
+++ b/api/Project.Application.SelectBeginning.md
@@ -27,11 +27,11 @@ Selects the first cell in the active table or view.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Extend_|Optional|**Boolean**|**True** if the current selection is extended to the first cell. If the active view is the Network Diagram or Resource Graph, Extend is ignored. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectCell.md b/api/Project.Application.SelectCell.md
index 0d3f539251d..0033aed2255 100644
--- a/api/Project.Application.SelectCell.md
+++ b/api/Project.Application.SelectCell.md
@@ -27,13 +27,13 @@ Selects a cell.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Row_|Optional|**Long**|The row number (**RowRelative** is **False**) or the relative row position (**RowRelative** is **True**) of the cell to select.|
| _Column_|Optional|**Integer**|The column number of the cell to select.|
| _RowRelative_|Optional|**Boolean**|**True** if the row number is relative to the active cell. The default value is **True**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectCellDown.md b/api/Project.Application.SelectCellDown.md
index 0ba17f8ec63..d449bf8448f 100644
--- a/api/Project.Application.SelectCellDown.md
+++ b/api/Project.Application.SelectCellDown.md
@@ -27,12 +27,12 @@ Selects cells directly below the current selection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NumCells_|Optional|**Long**|The number of cells to select downward from the current selection. The default value is 1.|
| _Extend_|Optional|**Boolean**|**True** if the current selection is extended to the specified cell. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectCellLeft.md b/api/Project.Application.SelectCellLeft.md
index 531b0cae348..e3f12a696d6 100644
--- a/api/Project.Application.SelectCellLeft.md
+++ b/api/Project.Application.SelectCellLeft.md
@@ -27,12 +27,12 @@ Selects cells to the left of the current selection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NumCells_|Optional|**Long**|The number of cells to select to the left of the current selection. The default value is 1.|
| _Extend_|Optional|**Boolean**|**True** if the current selection is extended to the specified cell. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectCellRight.md b/api/Project.Application.SelectCellRight.md
index 5a891f0fa2a..b714929f96c 100644
--- a/api/Project.Application.SelectCellRight.md
+++ b/api/Project.Application.SelectCellRight.md
@@ -27,12 +27,12 @@ Selects cells to the right of the current selection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NumCells_|Optional|**Long**|The number of cells to select to the right of the current selection. The default value is 1.|
| _Extend_|Optional|**Boolean**|**True** if the current selection is extended to the specified cell. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectCellUp.md b/api/Project.Application.SelectCellUp.md
index d222fd99de9..d3f0b40b90d 100644
--- a/api/Project.Application.SelectCellUp.md
+++ b/api/Project.Application.SelectCellUp.md
@@ -27,12 +27,12 @@ Selects cells upward from the current selection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NumCells_|Optional|**Long**|The number of cells to select upward from the current selection. The default value is 1.|
| _Extend_|Optional|**Boolean**|**True** if the current selection is extended to the specified cell. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectColumn.md b/api/Project.Application.SelectColumn.md
index 49904263059..79362e72b3d 100644
--- a/api/Project.Application.SelectColumn.md
+++ b/api/Project.Application.SelectColumn.md
@@ -27,14 +27,14 @@ Selects one or more columns.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Column_|Optional|**Integer**| The number of the column to select. (Columns are numbered from left to right, starting with 2.) The default is the active column.|
| _Additional_|Optional|**Integer**|The number of columns to select in addition to the active column.|
| _Extend_|Optional|**Boolean**|**True** if the active selection is extended into the new selection. The default value is **False**.|
| _Add_|Optional|**Boolean**|**True** if the new selection is added to the active selection. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectEnd.md b/api/Project.Application.SelectEnd.md
index 72d46b9ad0d..825f24f9226 100644
--- a/api/Project.Application.SelectEnd.md
+++ b/api/Project.Application.SelectEnd.md
@@ -27,11 +27,11 @@ Selects the last cell in the active table that contains a resource or task.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Extend_|Optional|**Boolean**|**True** if the current selection is extended to the last cell. If the active view is the Network Diagram or Resource Graph, **Extend** is ignored. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectRange.md b/api/Project.Application.SelectRange.md
index 56d3f47e20b..5f438baca6c 100644
--- a/api/Project.Application.SelectRange.md
+++ b/api/Project.Application.SelectRange.md
@@ -27,7 +27,7 @@ Selects one or more cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Row_|Required|**Long**|The number of the row containing the cell to select.|
| _Column_|Required|**Integer**|The number of the column containing the cell to select. (Columns are numbered from left to right, starting with 2.)|
@@ -37,7 +37,7 @@ Selects one or more cells.
| _Extend_|Optional|**Boolean**|**True** if the active selection is extended into the new selection. The default value is **False**.|
| _Add_|Optional|**Boolean**|**True** if the new selection is added to the active selection. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectResourceCell.md b/api/Project.Application.SelectResourceCell.md
index edd26cac05a..d7763414b26 100644
--- a/api/Project.Application.SelectResourceCell.md
+++ b/api/Project.Application.SelectResourceCell.md
@@ -27,13 +27,13 @@ Selects a cell containing resource information.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Row_|Optional|**Long**|The row number (RowRelative is **False**) or the relative row position (RowRelative is **True**) of the cell to select.|
| _Column_|Optional|**String**|The field name of the cell to select.|
| _RowRelative_|Optional|**Boolean**|**True** if the row number is relative to the active cell. The default value is **True**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectResourceColumn.md b/api/Project.Application.SelectResourceColumn.md
index e8432b2194f..ab18c14da64 100644
--- a/api/Project.Application.SelectResourceColumn.md
+++ b/api/Project.Application.SelectResourceColumn.md
@@ -27,14 +27,14 @@ Selects a column containing resource information.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Column_|Optional|**String**|The field name of the column to select. The default is the column containing the active cell.|
| _Additional_|Optional|**Integer**|The number of additional columns to select to the right of **Column**. If **Extend** is **True**, **Additional** is ignored. The default value is 0.|
| _Extend_|Optional|**Boolean**|**True** if all columns between the current selection and **Column** are selected. The default value is **False**.|
| _Add_|Optional|**Boolean**|**True** if the current column is included in the selection. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectResourceField.md b/api/Project.Application.SelectResourceField.md
index 7cdabf1c4c0..06a02584406 100644
--- a/api/Project.Application.SelectResourceField.md
+++ b/api/Project.Application.SelectResourceField.md
@@ -27,7 +27,7 @@ Selects a resource field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Row_|Required|**Long**|The number of the row containing the field to select.|
| _Column_|Required|**String**|The name of the column containing the field to select.|
@@ -37,7 +37,7 @@ Selects a resource field.
| _Extend_|Optional|**Boolean**|**True** if the active selection is extended into the new selection. The default value is **False**.|
| _Add_|Optional|**Boolean**|**True** if the new selection is added to the active selection. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectRow.md b/api/Project.Application.SelectRow.md
index 6c2b974d706..50aaefd2d88 100644
--- a/api/Project.Application.SelectRow.md
+++ b/api/Project.Application.SelectRow.md
@@ -27,7 +27,7 @@ Selects one or more rows.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Row_|Optional|**Long**|The number of the row to select. The default is the active row.|
| _RowRelative_|Optional|**Boolean**|**True** if the location of the new selection is relative to the active selection. The default value is **True**.|
@@ -35,7 +35,7 @@ Selects one or more rows.
| _Extend_|Optional|**Boolean**|**True** if the active selection is extended into the new selection. The default value is **False**.|
| _Add_|Optional|**Boolean**|**True** if the new selection is added to the active selection. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectRowEnd.md b/api/Project.Application.SelectRowEnd.md
index 30111ba8409..c6a90e277a6 100644
--- a/api/Project.Application.SelectRowEnd.md
+++ b/api/Project.Application.SelectRowEnd.md
@@ -27,11 +27,11 @@ Selects the last cell in the row containing the active cell.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Extend_|Optional|**Boolean**|**True** if the current selection is extended to the last cell. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectRowStart.md b/api/Project.Application.SelectRowStart.md
index 5caa9fcd614..4fffb6191e9 100644
--- a/api/Project.Application.SelectRowStart.md
+++ b/api/Project.Application.SelectRowStart.md
@@ -27,11 +27,11 @@ Selects the first cell in the row containing the active cell.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Extend_|Optional|**Boolean**|**True** if the current selection is extended to the first cell. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectSheet.md b/api/Project.Application.SelectSheet.md
index 4bb8426bc6a..e42caf5bdfe 100644
--- a/api/Project.Application.SelectSheet.md
+++ b/api/Project.Application.SelectSheet.md
@@ -23,7 +23,7 @@ Selects all cells in the active table.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectTPLineHeight.md b/api/Project.Application.SelectTPLineHeight.md
index c40c5fd9c25..d95600fa1fe 100644
--- a/api/Project.Application.SelectTPLineHeight.md
+++ b/api/Project.Application.SelectTPLineHeight.md
@@ -27,11 +27,11 @@ Sets the number of text lines for assignment rows in the Team Planner.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _LineMultiple_|Required|**Integer**|Number of text lines.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectTPTask.md b/api/Project.Application.SelectTPTask.md
index 579b6a385ab..cbe7c973fba 100644
--- a/api/Project.Application.SelectTPTask.md
+++ b/api/Project.Application.SelectTPTask.md
@@ -27,11 +27,11 @@ Selects the specified task in the Team Planner view.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TaskUniqueID_|Optional|**Variant**|Unique ID of the task to select.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectTaskAssns.md b/api/Project.Application.SelectTaskAssns.md
index 0ae6a3c7067..2a5c69261cd 100644
--- a/api/Project.Application.SelectTaskAssns.md
+++ b/api/Project.Application.SelectTaskAssns.md
@@ -23,7 +23,7 @@ Selects all assignments for a selected task in the Team Planner view.
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectTaskCell.md b/api/Project.Application.SelectTaskCell.md
index dde065d55ce..7be5b4620ad 100644
--- a/api/Project.Application.SelectTaskCell.md
+++ b/api/Project.Application.SelectTaskCell.md
@@ -27,13 +27,13 @@ Selects a cell containing task information.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Row_|Optional|**Long**|The row number (RowRelative is **False**) or the relative row position (RowRelative is **True**) of the cell to select.|
| _Column_|Optional|**String**|The field name of the cell to select.|
| _RowRelative_|Optional|**Boolean**|**True** if the row number is relative to the active cell. The default value is **True**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectTaskColumn.md b/api/Project.Application.SelectTaskColumn.md
index 3ed608b42e3..819bfe3f152 100644
--- a/api/Project.Application.SelectTaskColumn.md
+++ b/api/Project.Application.SelectTaskColumn.md
@@ -27,14 +27,14 @@ Selects a column containing task information.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Column_|Optional|**String**|The field name of the column to select. The default is the column containing the active cell.|
| _Additional_|Optional|**Integer**|The number of additional columns to select to the right of **Column**. If **Extend** is **True**, **Additional** is ignored. The default value is 0.|
| _Extend_|Optional|**Boolean**|**True** if all columns between the current selection and **Column** are selected. The default value is **False**.|
| _Add_|Optional|**Boolean**|**True** if the current column is included in the selection. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectTaskField.md b/api/Project.Application.SelectTaskField.md
index 50ccac8261a..d23b722ff9a 100644
--- a/api/Project.Application.SelectTaskField.md
+++ b/api/Project.Application.SelectTaskField.md
@@ -27,7 +27,7 @@ Selects a task field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Row_|Required|**Long**|The number of the row containing the field to select.|
| _Column_|Required|**String**|The name of the column containing the field to select.|
@@ -37,7 +37,7 @@ Selects a task field.
| _Extend_|Optional|**Boolean**|**True** if the active selection is extended into the new selection. The default value is **False.**|
| _Add_|Optional|**Boolean**|**True** if the new selection is added to the active selection. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectTimescaleRange.md b/api/Project.Application.SelectTimescaleRange.md
index d9d30a9b893..885ab75e30d 100644
--- a/api/Project.Application.SelectTimescaleRange.md
+++ b/api/Project.Application.SelectTimescaleRange.md
@@ -27,14 +27,14 @@ Selects one or more timescale data cells in a usage view.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Row_|Required|**Long**|The number of the row containing the cell to select.|
| _StartTime_|Required|**String**|A time (from the timescale) that functions as the starting point of the selection.|
| _Width_|Required|**Integer**| The number of columns to select.|
| _Height_|Required|**Long**|The number of rows to select.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectToEnd.md b/api/Project.Application.SelectToEnd.md
index 4a91ea95a6a..f59fb593156 100644
--- a/api/Project.Application.SelectToEnd.md
+++ b/api/Project.Application.SelectToEnd.md
@@ -23,7 +23,7 @@ For the selected assignment in the Team Planner view, selects from the beginning
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SelectionExtend.md b/api/Project.Application.SelectionExtend.md
index 165e269ccef..834d955f4cf 100644
--- a/api/Project.Application.SelectionExtend.md
+++ b/api/Project.Application.SelectionExtend.md
@@ -27,12 +27,12 @@ Turns selection extension on or off.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Extend_|Optional|**Boolean**|**True** if extend mode is active. (If extend mode is active, all items between the selection and the active item become part of the selection.) If **Extend** is **True**, **Add** is ignored. The default value is **False**.|
| _Add_|Optional|**Boolean**|**True** if add mode is active. (If add mode is active, only the active item is added to the selection.) The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ServiceOptionsDialog.md b/api/Project.Application.ServiceOptionsDialog.md
index 46e6034422f..4f551045772 100644
--- a/api/Project.Application.ServiceOptionsDialog.md
+++ b/api/Project.Application.ServiceOptionsDialog.md
@@ -23,7 +23,7 @@ Opens the **Service Options** dialog box.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SetActiveCell.md b/api/Project.Application.SetActiveCell.md
index 66f824a8b5f..b1ab0c6da7d 100644
--- a/api/Project.Application.SetActiveCell.md
+++ b/api/Project.Application.SetActiveCell.md
@@ -27,12 +27,12 @@ Sets the value of the active cell.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Value_|Required|**String**| The new value for the active cell.|
| _Create_|Optional|**Boolean**|**True** if a new assignment, resource, or task should be created when setting the value of the active cell, if one doesn't already exist. The default value is **True**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SetAutoFilter.md b/api/Project.Application.SetAutoFilter.md
index 19406e6dd94..97d536bfd91 100644
--- a/api/Project.Application.SetAutoFilter.md
+++ b/api/Project.Application.SetAutoFilter.md
@@ -24,7 +24,7 @@ _expression_ An expression that returns an **Application** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FieldName_|Required|**String**|Name of the field.|
| _FilterType_|Optional|**PjAutoFilterType**|Type of filter; can be one of the **[PjAutoFilterType](Project.PjAutoFilterType.md)** constants. The default value is **pjAutoFilterClear**, which clears the AutoFilter.|
diff --git a/api/Project.Application.SetField.md b/api/Project.Application.SetField.md
index 2b4f425c8b6..1cef8c381fb 100644
--- a/api/Project.Application.SetField.md
+++ b/api/Project.Application.SetField.md
@@ -27,13 +27,13 @@ Sets the value of a local custom field or enterprise custom field for the select
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Field_|Required|**String**| The name of the field to set.|
| _Value_|Required|**String**|The value of the field.|
| _Create_|Optional|**Boolean**|**True** if a new value is created; otherwise **false**. The default value is **true**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SetMatchingField.md b/api/Project.Application.SetMatchingField.md
index 845ab4d8461..a8b3eff5795 100644
--- a/api/Project.Application.SetMatchingField.md
+++ b/api/Project.Application.SetMatchingField.md
@@ -25,7 +25,7 @@ _expression_ A variable that represents an **Application** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Field_|Required|**String**|The name of the field to set.|
| _Value_|Required|**String**|The value to which the field is set.|
diff --git a/api/Project.Application.SetResourceField.md b/api/Project.Application.SetResourceField.md
index 7fd56c2b04c..a9ae45793a8 100644
--- a/api/Project.Application.SetResourceField.md
+++ b/api/Project.Application.SetResourceField.md
@@ -27,7 +27,7 @@ Sets the value of a resource field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Field_|Required|**String**|The name of the resource field to set.|
| _Value_|Required|**String**|The value of the resource field.|
@@ -36,7 +36,7 @@ Sets the value of a resource field.
| _ResourceID_|Optional|**Long**|The identification number of the resource containing the field to set. If AllSelectedResources is **True**, ResourceID is ignored.|
| _ProjectName_|Optional|**String**|If the active project is a consolidated project, specifies the name of the project for the resource specified by ResourceID . If ResourceID is not specified, ProjectName is ignored. The default value is the name of the active project.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SetResourceFieldByID.md b/api/Project.Application.SetResourceFieldByID.md
index 86dcee7348d..f64d10d9f58 100644
--- a/api/Project.Application.SetResourceFieldByID.md
+++ b/api/Project.Application.SetResourceFieldByID.md
@@ -27,7 +27,7 @@ Sets the value of a resource field specified by the field identification number.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FieldID_|Required|**PjField**|Field identification number. Can be one of the resource fields specified by a **[PjField](Project.PjField.md)** constant or a number returned by the **[FieldNameToFieldConstant](Project.Application.FieldNameToFieldConstant.md)** method.|
| _Value_|Required|**String**|The value of the resource field.|
@@ -36,7 +36,7 @@ Sets the value of a resource field specified by the field identification number.
| _ResourceID_|Optional|**Long**|The identification number of the resource containing the field to set. If AllSelectedResources is **True**, ResourceID is ignored.|
| _ProjectName_|Optional|**String**|If the active project is a consolidated project, specifies the name of the project for the resource specified by _ResourceID_. If _ResourceID_ is not specified, _ProjectName_ is ignored. The default value is the name of the active project.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SetRowHeight.md b/api/Project.Application.SetRowHeight.md
index 6dc285d6013..793001d3feb 100644
--- a/api/Project.Application.SetRowHeight.md
+++ b/api/Project.Application.SetRowHeight.md
@@ -27,13 +27,13 @@ Sets the height of the specified rows.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional|**Integer**|The height of the rows, in lines. The maximum value for Unit is 20.|
| _Rows_|Optional|**String**|The row(s) to select. The value for Rows can be a single row (for example, "5"), a range of rows (for example, "1-8"), a list of discontiguous rows (for example, "5,7-9,12"), or "ALL" to select every row. If Rows is not specified and an existing selection exists, the selection will be used. The default with no existing selection is to use the active row.|
| _UseUniqueID_|Optional|**Boolean**|**True** if the value specified with Rows is the unique identification number(s) for resources or tasks. **False** if Rows specifies row numbers. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SetShowTaskSuggestions.md b/api/Project.Application.SetShowTaskSuggestions.md
index 58873b210a6..9e3eaccf150 100644
--- a/api/Project.Application.SetShowTaskSuggestions.md
+++ b/api/Project.Application.SetShowTaskSuggestions.md
@@ -27,11 +27,11 @@ Sets the global **Show Suggestions** option for tasks.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Set_|Optional|**Variant**|If **True**, turns on the **Show Suggestions** option. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SetShowTaskWarnings.md b/api/Project.Application.SetShowTaskWarnings.md
index d801f423e57..50504c0284f 100644
--- a/api/Project.Application.SetShowTaskWarnings.md
+++ b/api/Project.Application.SetShowTaskWarnings.md
@@ -27,11 +27,11 @@ Sets the global **Show Warnings** option for tasks.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Set_|Optional|**Variant**|If **True**, turns on the **Show Warnings** option. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SetSidepaneStateButton.md b/api/Project.Application.SetSidepaneStateButton.md
index 3115da09389..88dfdf4817a 100644
--- a/api/Project.Application.SetSidepaneStateButton.md
+++ b/api/Project.Application.SetSidepaneStateButton.md
@@ -24,7 +24,7 @@ Sets the state of the **Toggle** button in the Project Guide. Deprecated in Pro
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DisplayState_|Required|**Boolean**|**False** if the button should be in normal state, indicating the side pane is hidden. **True** if the button should be in depressed state, indicating the side pane is showing.|
diff --git a/api/Project.Application.SetSplitBar.md b/api/Project.Application.SetSplitBar.md
index 78574321b98..7662092a9c7 100644
--- a/api/Project.Application.SetSplitBar.md
+++ b/api/Project.Application.SetSplitBar.md
@@ -27,11 +27,11 @@ Positions the vertical split bar in a sheet view to display the specified number
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShowColumns_|Optional|**Long**|Specifies the number of columns to display, including the locked **ID** column. The value can be 1 through 75. The default value is the total number of columns currently displayed, including any partially hidden column.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SetTPField.md b/api/Project.Application.SetTPField.md
index 22a3e46b289..f2b181a8fb0 100644
--- a/api/Project.Application.SetTPField.md
+++ b/api/Project.Application.SetTPField.md
@@ -27,7 +27,7 @@ Sets a value for the percent complete field of one or more tasks in the Team Pla
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Field_|Required|**String**|The _Field_ argument can be only "% Complete". You can also use the **FieldConstantToFieldName** method with **pjTaskPercentComplete**, as in the example.|
| _Value_|Required|**String**|Value of the _Field_ argument. Values can range from "0" to "100" for percent complete.|
@@ -36,7 +36,7 @@ Sets a value for the percent complete field of one or more tasks in the Team Pla
| _TaskID_|Optional|**Long**|Not used in Project.|
| _ProjectName_|Optional|**String**|Not used in Project.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SetTaskField.md b/api/Project.Application.SetTaskField.md
index 16a6eb1987f..8ab3cdc21e6 100644
--- a/api/Project.Application.SetTaskField.md
+++ b/api/Project.Application.SetTaskField.md
@@ -27,7 +27,7 @@ Sets the value of a task field specified by the name of the field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Field_|Required|**String**|The name of the task field to set.|
| _Value_|Required|**String**|The value of the task field.|
@@ -36,7 +36,7 @@ Sets the value of a task field specified by the name of the field.
| _TaskID_|Optional|**Long**|The identification number of the task containing the field to set. If _AllSelectedTasks_ is **True**, _TaskID_ is ignored.|
| _ProjectName_|Optional|**String**|If the active project is a consolidated project, specifies the name of the project for the task specified by _TaskID_. If _TaskID_ is not specified, _ProjectName_ is ignored. The default value is the name of the active project.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SetTaskFieldByID.md b/api/Project.Application.SetTaskFieldByID.md
index 164204d4091..9555e5072bc 100644
--- a/api/Project.Application.SetTaskFieldByID.md
+++ b/api/Project.Application.SetTaskFieldByID.md
@@ -27,7 +27,7 @@ Sets the value of a task field specified by the field identification number.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FieldID_|Required|**PjField**|Field identification number. Can be one of the task fields specified by a **[PjField](Project.PjField.md)** constant or a number returned by the **[FieldNameToFieldConstant](Project.Application.FieldNameToFieldConstant.md)** method.|
| _Value_|Required|**String**|The value of the task field.|
@@ -36,7 +36,7 @@ Sets the value of a task field specified by the field identification number.
| _TaskID_|Optional|**Variant**|The identification number of the task containing the field to set. If _AllSelectedResources_ is **True**, _TaskID_ is ignored.|
| _ProjectName_|Optional|**Variant**|If the active project is a consolidated project, specifies the name of the project for the task specified by _TaskID_. If _TaskID_ is not specified, _ProjectName_ is ignored. The default value is the name of the active project.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SetTaskMode.md b/api/Project.Application.SetTaskMode.md
index 89ff262b800..e0ea9b41725 100644
--- a/api/Project.Application.SetTaskMode.md
+++ b/api/Project.Application.SetTaskMode.md
@@ -27,12 +27,12 @@ Changes the mode of the selected tasks, to manually scheduled or automatically s
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Manual_|Optional|**Boolean**|If **true**, changes the selected tasks to manually scheduled. If **false**, changes the tasks to automatically scheduled.|
| _IsStickyDates_|Optional|**Boolean**|If **true**, when a manually scheduled task is changed to automatically scheduled, the constraint type is set to **Start No Earlier Than** and the constraint date is set to the previous start date.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SetTitleRowHeight.md b/api/Project.Application.SetTitleRowHeight.md
index 3673cfedfb6..63d83e4327a 100644
--- a/api/Project.Application.SetTitleRowHeight.md
+++ b/api/Project.Application.SetTitleRowHeight.md
@@ -27,11 +27,11 @@ Sets the title row height of the active view.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TitleHeight_|Optional|**Integer**|The height of the title row of the active view.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ShareProjectOnline.md b/api/Project.Application.ShareProjectOnline.md
index 638a30b9766..be5cce7cf77 100644
--- a/api/Project.Application.ShareProjectOnline.md
+++ b/api/Project.Application.ShareProjectOnline.md
@@ -23,7 +23,7 @@ Opens the URL for information about sharing projects in the **Share with Projec
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ShowAddNewColumn.md b/api/Project.Application.ShowAddNewColumn.md
index ee4e1ac4742..9cfcae10d50 100644
--- a/api/Project.Application.ShowAddNewColumn.md
+++ b/api/Project.Application.ShowAddNewColumn.md
@@ -27,11 +27,11 @@ Shows or hides the **Add New Column** column at the right side of the active sh
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Show_|Optional|**Boolean**|**True** if the **Show 'Add New Column' interface** option is selected. **False** if the option is cleared. The default value is **True**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ShowIgnoredTaskWarnings.md b/api/Project.Application.ShowIgnoredTaskWarnings.md
index fe5c7d54926..639f59d9fbc 100644
--- a/api/Project.Application.ShowIgnoredTaskWarnings.md
+++ b/api/Project.Application.ShowIgnoredTaskWarnings.md
@@ -23,7 +23,7 @@ Shows any ignored warnings for tasks; turns on the warning symbol in the **Indi
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SidepaneTaskChange.md b/api/Project.Application.SidepaneTaskChange.md
index 2bfde13fade..befb7279bfe 100644
--- a/api/Project.Application.SidepaneTaskChange.md
+++ b/api/Project.Application.SidepaneTaskChange.md
@@ -27,12 +27,12 @@ Changes the side pane that is displayed in **Project Guide**.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ID_|Required|**Integer**|The ID number of the side pane in the **Project Guide**.|
| _IsGoalArea_|Optional|**Boolean**|**True** if trying to change to a different goal area in the **Project Guide**. **False** if trying to change to a different **Project Guide** task.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SidepaneToggle.md b/api/Project.Application.SidepaneToggle.md
index 78cdb59e8e5..b676b2a0026 100644
--- a/api/Project.Application.SidepaneToggle.md
+++ b/api/Project.Application.SidepaneToggle.md
@@ -27,11 +27,11 @@ Triggers the **[WindowSidepaneDisplayChange](Project.Application.WindowSidepane
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Show_|Optional|**Boolean**|**True** if Project shows the side pane for the **Project Guide**. **False** if Project hides the side pane for the **Project Guide**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.Sort.md b/api/Project.Application.Sort.md
index d7913a7f720..19088e6a722 100644
--- a/api/Project.Application.Sort.md
+++ b/api/Project.Application.Sort.md
@@ -27,7 +27,7 @@ Sorts the tasks or resources in the active pane.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Key1_|Optional|**String**|The name of a primary field to sort. If Key1 is omitted, Project displays the **Sort** dialog box.|
| _Ascending1_|Optional|**Boolean**|**True** if the primary field will be sorted in ascending order. The default value is **True**.|
@@ -38,7 +38,7 @@ Sorts the tasks or resources in the active pane.
| _Renumber_|Optional|**Boolean**|**True** if Project renumbers tasks after sorting them. For task views, Renumber can be **True** only if Outline is **True**. If Outline is **True**, then Renumber defaults to the current setting in the **Sort** dialog box. If Outline is **False**, Renumber is ignored.|
| _Outline_|Optional|**Boolean**|**True** if the outline level of tasks or resources will be preserved after sorting them. The default value is **True**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SpellCheckField.md b/api/Project.Application.SpellCheckField.md
index 116eecebd59..510c5f50fff 100644
--- a/api/Project.Application.SpellCheckField.md
+++ b/api/Project.Application.SpellCheckField.md
@@ -27,12 +27,12 @@ Checks the spelling of text custom fields.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FieldName_|Optional|**PjSpellingField**|One of the **[PjSpellingField](Project.PjSpellingField.md)** enumeration values.|
| _EnableSpellCheck_|Optional|**Variant**|**True** if spell check is enabled; otherwise, **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SpellingCheck.md b/api/Project.Application.SpellingCheck.md
index 9aa6d468f94..342e34d0437 100644
--- a/api/Project.Application.SpellingCheck.md
+++ b/api/Project.Application.SpellingCheck.md
@@ -23,7 +23,7 @@ Checks the spelling in the active project.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SplitTask.md b/api/Project.Application.SplitTask.md
index 847d4c2e2bc..ef0310f7841 100644
--- a/api/Project.Application.SplitTask.md
+++ b/api/Project.Application.SplitTask.md
@@ -27,11 +27,11 @@ Enters the interactive task split mode, enabling the user to manually create tas
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Lock_|Optional|**Boolean**|**True** if the task split pointer stays active after a split is made, enabling more task splits to be made. **False** if the pointer returns to normal after making a split. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.StopWebBrowserControlNavigation.md b/api/Project.Application.StopWebBrowserControlNavigation.md
index 5aaca554ad0..efbd1fcdba3 100644
--- a/api/Project.Application.StopWebBrowserControlNavigation.md
+++ b/api/Project.Application.StopWebBrowserControlNavigation.md
@@ -23,7 +23,7 @@ Stops a Web page from loading in the active window. The **StopWebBrowserControl
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SummaryResourceAssignmentsRefresh.md b/api/Project.Application.SummaryResourceAssignmentsRefresh.md
index 92f66421f6d..3293cb31904 100644
--- a/api/Project.Application.SummaryResourceAssignmentsRefresh.md
+++ b/api/Project.Application.SummaryResourceAssignmentsRefresh.md
@@ -23,7 +23,7 @@ Refreshes the summary resource assignments of a project by getting the latest av
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SummaryTasksShow.md b/api/Project.Application.SummaryTasksShow.md
index ca700477568..6acad8d29e7 100644
--- a/api/Project.Application.SummaryTasksShow.md
+++ b/api/Project.Application.SummaryTasksShow.md
@@ -27,11 +27,11 @@ Shows or hides summary tasks in the active Network Diagram.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Show_|Optional|**Boolean**|**True** if summary tasks display in the active view. The default value is **True** if summary tasks are hidden and **False** if they are visible.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.SynchronizeWithSite.md b/api/Project.Application.SynchronizeWithSite.md
index 93aef4c4b30..66efd23f610 100644
--- a/api/Project.Application.SynchronizeWithSite.md
+++ b/api/Project.Application.SynchronizeWithSite.md
@@ -27,12 +27,12 @@ Synchronizes a local project in Project Professional with a SharePoint 2013 task
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SiteURL_|Optional|**String**|URL of the SharePoint site.|
| _ListName_|Optional|**String**|Name of the tasks list. For a local project, Project Professional creates the tasks list if it does not exist.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TableApply.md b/api/Project.Application.TableApply.md
index da68af9e3c5..1fd6215bf4d 100644
--- a/api/Project.Application.TableApply.md
+++ b/api/Project.Application.TableApply.md
@@ -27,11 +27,11 @@ Applies a table to the active view.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**| The name of the table to apply.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TableCopy.md b/api/Project.Application.TableCopy.md
index 5a53b174a72..7b3ba8e81e4 100644
--- a/api/Project.Application.TableCopy.md
+++ b/api/Project.Application.TableCopy.md
@@ -27,11 +27,11 @@ Makes a copy of the active table, adds it to the **Tables** drop-down menu, and
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|Name of the copied table.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TableEdit.md b/api/Project.Application.TableEdit.md
index 0e6e978af1c..efbb5740d54 100644
--- a/api/Project.Application.TableEdit.md
+++ b/api/Project.Application.TableEdit.md
@@ -27,7 +27,7 @@ Creates, edits, or copies a table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**| The name of a table to edit, create, or copy.|
| _TaskTable_|Required|**Boolean**|**True** if the active table contains information about tasks or resources; otherwise, **False**.|
@@ -48,7 +48,7 @@ Creates, edits, or copies a table.
| _HeaderAutoRowHeightAdjustment_|Optional|**Boolean**|**True** if Project automatically adjusts the row height of the table; otherwise, **False**. The default value is **True**.|
| _HeaderTextWrap_|Optional|**Boolean**|**True** if Project wraps text in the header of the table; otherwise, **False**. The default value is **True**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TableEditEx.md b/api/Project.Application.TableEditEx.md
index f8133e685cf..0602fbb2891 100644
--- a/api/Project.Application.TableEditEx.md
+++ b/api/Project.Application.TableEditEx.md
@@ -27,7 +27,7 @@ Creates, edits, or copies a table that can wrap text and include the **Add New
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**| The name of a table to edit, create, or copy.|
| _TaskTable_|Required|**Boolean**|**True** if the active table contains information about tasks or resources; otherwise, **False**.|
@@ -50,7 +50,7 @@ Creates, edits, or copies a table that can wrap text and include the **Add New
| _WrapText_|Optional|**Boolean**|**True** if the table wraps text in the rows; otherwise, **False**.|
| _ShowAddNewColumn_|Optional|**Boolean**|True if the table shows the **Add New Column** feature in the far-right column; otherwise, **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TableReset.md b/api/Project.Application.TableReset.md
index 1bcb494ec98..f5398d29d65 100644
--- a/api/Project.Application.TableReset.md
+++ b/api/Project.Application.TableReset.md
@@ -23,7 +23,7 @@ Resets the active table to the default table definition.
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.Tables.md b/api/Project.Application.Tables.md
index 43a784f858d..c6e1305a618 100644
--- a/api/Project.Application.Tables.md
+++ b/api/Project.Application.Tables.md
@@ -23,7 +23,7 @@ Displays the **More Tables** dialog box, which prompts the user to manage table
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TaskComparison.md b/api/Project.Application.TaskComparison.md
index b866cec0b92..ea56dec0181 100644
--- a/api/Project.Application.TaskComparison.md
+++ b/api/Project.Application.TaskComparison.md
@@ -23,7 +23,7 @@ In a project comparison report, shows the Gantt Chart view in all three project
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TaskDeliverableCreate.md b/api/Project.Application.TaskDeliverableCreate.md
index fa09ea13c72..0d2d32679e9 100644
--- a/api/Project.Application.TaskDeliverableCreate.md
+++ b/api/Project.Application.TaskDeliverableCreate.md
@@ -27,11 +27,11 @@ Creates or removes a deliverable for the selected task. Available only in Projec
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Create_|Optional|**Variant**|If the selected task has no associated deliverable, **True** creates a deliverable. If the selected task does have an associated deliverable, **False** removes the deliverable. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TaskDeliverableSync.md b/api/Project.Application.TaskDeliverableSync.md
index 914911442ef..147eb625a1d 100644
--- a/api/Project.Application.TaskDeliverableSync.md
+++ b/api/Project.Application.TaskDeliverableSync.md
@@ -23,7 +23,7 @@ Synchronizes selected task deliverables in the active project with changes made
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TaskDependencySync.md b/api/Project.Application.TaskDependencySync.md
index 5f68c72843d..8056b053ca9 100644
--- a/api/Project.Application.TaskDependencySync.md
+++ b/api/Project.Application.TaskDependencySync.md
@@ -23,7 +23,7 @@ Synchronizes task dependencies in the active project with changes in deliverable
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TaskDrivers.md b/api/Project.Application.TaskDrivers.md
index 3f64ee3d221..395341d57bf 100644
--- a/api/Project.Application.TaskDrivers.md
+++ b/api/Project.Application.TaskDrivers.md
@@ -23,7 +23,7 @@ Shows the **Task Inspector** pane.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TaskInspector.md b/api/Project.Application.TaskInspector.md
index 8b40573f004..77c662366b0 100644
--- a/api/Project.Application.TaskInspector.md
+++ b/api/Project.Application.TaskInspector.md
@@ -23,7 +23,7 @@ Displays the **Task Inspector** pane.
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TaskMove.md b/api/Project.Application.TaskMove.md
index f5c60a25173..8a47591c21c 100644
--- a/api/Project.Application.TaskMove.md
+++ b/api/Project.Application.TaskMove.md
@@ -27,13 +27,13 @@ Moves the start date of one or more selected tasks the specified number of days.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MoveForward_|Optional|**Variant**|**True** if the task moves forward in time. **False** if the task moves backward in time. The default is **True**.|
| _IsWorkingDuration_|Optional|**Variant**|**True** if the the number of days specified by _MoveDays_ is only for working days. **False** if the number of days specified by _MoveDays_ includes both working and nonworking days. The default is **True**.|
| _MoveDays_|Optional|**Integer**|Specifies the number of days to move the selected tasks. The default value is 1.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TaskMoveToStatusDate.md b/api/Project.Application.TaskMoveToStatusDate.md
index 253c7c8671e..88dbe3ed9df 100644
--- a/api/Project.Application.TaskMoveToStatusDate.md
+++ b/api/Project.Application.TaskMoveToStatusDate.md
@@ -27,12 +27,12 @@ Moves completed or incomplete parts of one or more selected tasks to the status
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MoveCompleted_|Optional|**Boolean**|**True** if the completed parts of tasks are moved to the status date; otherwise, **False**. The default is **False**.|
| _MoveIncomplete_|Optional|**Boolean**|**True** if the incomple parts of tasks are moved to the status date; otherwise, **False**. The default is **True**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TaskOnTimeline.md b/api/Project.Application.TaskOnTimeline.md
index 5f31ea264cc..bd9be3a1933 100644
--- a/api/Project.Application.TaskOnTimeline.md
+++ b/api/Project.Application.TaskOnTimeline.md
@@ -27,14 +27,14 @@ Manages tasks on the Timeline pane or for a specified custom timeline.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TaskID_|Optional|**Long**|Specifies the identification number of a task to add to the timeline or remove from the timeline. If _TaskID_ is specified, selected tasks are ignored.|
| _Remove_|Optional|**Boolean**|**True** if the task specified by _TaskID_ or the selected tasks are removed from the timeline; otherwise, **False**. The default value is **False**.|
| _TimelineViewName_|Optional|**String**|Specifies the name of a timeline to use. The name can be the built-in "Timeline" or an existing custom timeline such as "My Timeline". The default value is the name of the active timeline.|
| _ShowDialog_|Optional|**Boolean**|**True** if Project displays the **Add Tasks to Timeline** dialog box; otherwise, **False**. Any tasks that are already on the timeline have a check by their names. If _ShowDialog_ is **True**, Project ignores the _TaskID_ and _Remove_ arguments. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TaskRespectLinks.md b/api/Project.Application.TaskRespectLinks.md
index c6b387948e4..1610e83febd 100644
--- a/api/Project.Application.TaskRespectLinks.md
+++ b/api/Project.Application.TaskRespectLinks.md
@@ -23,7 +23,7 @@ Moves one or more selected tasks so that their dates are determined by their tas
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TextStyles32Ex.md b/api/Project.Application.TextStyles32Ex.md
index f70ac322fdf..aaf0af36124 100644
--- a/api/Project.Application.TextStyles32Ex.md
+++ b/api/Project.Application.TextStyles32Ex.md
@@ -24,7 +24,7 @@ _expression_ An expression that returns an **Application** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Item_|Optional|**Integer**|The type of text to change. Can be one of the following **[PjTextItem](Project.PjTextItem.md)** constants. See [If the Gantt Chart is active](#if-the-gantt-chart-is-active).|
| _Font_|Optional|**String**|The name of the font. The _Font_ argument is ignored if the active view is the **Network Diagram**, and Item is not **pjAll**.|
diff --git a/api/Project.Application.TextStylesEx.md b/api/Project.Application.TextStylesEx.md
index 4748c3833a4..d72e027a029 100644
--- a/api/Project.Application.TextStylesEx.md
+++ b/api/Project.Application.TextStylesEx.md
@@ -24,7 +24,7 @@ _expression_ A variable that represents an **Application** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Item_|Optional|**Integer**|The type of text to change. Can be one of the following **[PjTextItem](Project.PjTextItem.md)** constants. See [If the Gantt Chart is active](#if-the-gantt-chart-is-active).|
| _Font_|Optional|**String**|The name of the font. The _Font_ argument is ignored if the active view is the **Network Diagram** and _Item_ is not **pjAll**.|
diff --git a/api/Project.Application.TimelineExport.md b/api/Project.Application.TimelineExport.md
index 6f55114333c..cadfc7be866 100644
--- a/api/Project.Application.TimelineExport.md
+++ b/api/Project.Application.TimelineExport.md
@@ -27,12 +27,12 @@ Copies an image of the active Timeline view to the Clipboard, for pasting into o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SelectionOnly_|Optional|**Boolean**|**True** if the exported timeline includes only the selected items; otherwise, **False**. The default is **False**, where the entire visible timeline is exported.|
| _ExportWidth_|Optional|**Long**|Specifies the approximate width in pixels of the exported timeline. Values can effectively range from 100 to 10,000. The default value is the actual width of the Timeline pane in Project.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TimelineFormat.md b/api/Project.Application.TimelineFormat.md
index 4517fca2026..583bdedef24 100644
--- a/api/Project.Application.TimelineFormat.md
+++ b/api/Project.Application.TimelineFormat.md
@@ -27,12 +27,12 @@ Formats the **Timeline** view to specify the number of text lines in timeline t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NumLines_|Optional|**Variant**|Number of text lines to show in tasks on the timeline. Values can be 1 through 10; other values are ignored.|
| _Minimized_|Optional|**Boolean**|If **true**, minimizes the timeline so that tasks do not show details. If **false**, vertically expands the timeline so that tasks show detail text lines.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TimelineGotoSelectedTask.md b/api/Project.Application.TimelineGotoSelectedTask.md
index 1ae2d42d578..64fc386da0a 100644
--- a/api/Project.Application.TimelineGotoSelectedTask.md
+++ b/api/Project.Application.TimelineGotoSelectedTask.md
@@ -23,7 +23,7 @@ When a task is selected in the Timeline view, **TimelineGotoSelectedTask** sele
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TimelineInsertTask.md b/api/Project.Application.TimelineInsertTask.md
index e3f911bdd53..81f8e7aab84 100644
--- a/api/Project.Application.TimelineInsertTask.md
+++ b/api/Project.Application.TimelineInsertTask.md
@@ -27,11 +27,11 @@ When the Timeline view is selected, displays the **Task Information** dialog bo
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required|**PjTimelineInsertTaskType**|Specifies the type of task; that is, whether the task is a regular task, a milestone, or a callout task. Can be one of the following **[PjTimelineInsertTaskType](Project.PjTimelineInsertTaskType.md)** constants: **pjTimelineInsertTask**, **pjTimelineInsertMilestone**, or **pjTimelineInsertCalloutTask**. Any of the task types can be manually or automatically scheduled.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TimelineShowHide.md b/api/Project.Application.TimelineShowHide.md
index 5e0bef504aa..e6f8fb0f263 100644
--- a/api/Project.Application.TimelineShowHide.md
+++ b/api/Project.Application.TimelineShowHide.md
@@ -27,12 +27,12 @@ Shows or hides the specified feature in the Timeline view.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Item_|Required|**PjTimelineShowHide**|Specifies the feature to show or hide. Can be one of the **[PjTimelineShowHide](Project.PjTimelineShowHide.md)** constants.|
| _Show_|Optional|**Boolean**|**False** if the feature is hidden; otherwise, **True**. The default value is **True**, which shows the feature.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TimelineTextOnBar.md b/api/Project.Application.TimelineTextOnBar.md
index 03e684c0e3f..d871d15bf50 100644
--- a/api/Project.Application.TimelineTextOnBar.md
+++ b/api/Project.Application.TimelineTextOnBar.md
@@ -27,11 +27,11 @@ Changes the format of text to display as a callout or within the Timeline bar, f
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TextOnBar_|Optional|**Boolean**|**False** if the selected tasks should be displayed as callouts; otherwise, **True**. The default value is **True**, which makes the task text show within the Timeline bar.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TimelineViewToggle.md b/api/Project.Application.TimelineViewToggle.md
index f4d4ef090bf..f22bab9f90f 100644
--- a/api/Project.Application.TimelineViewToggle.md
+++ b/api/Project.Application.TimelineViewToggle.md
@@ -23,7 +23,7 @@ Shows or hides the Timeline view.
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.Timescale.md b/api/Project.Application.Timescale.md
index 48d99d9c45c..c49306570b2 100644
--- a/api/Project.Application.Timescale.md
+++ b/api/Project.Application.Timescale.md
@@ -23,7 +23,7 @@ Displays the **Timescale** dialog box, which prompts the user to set timescale
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TimescaleEdit.md b/api/Project.Application.TimescaleEdit.md
index 9422ac75c11..5b14f19b294 100644
--- a/api/Project.Application.TimescaleEdit.md
+++ b/api/Project.Application.TimescaleEdit.md
@@ -27,7 +27,7 @@ Enables changing the scale and format of a timescale in a Gantt chart or other t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MajorUnits_|Optional|**Variant**|Time units for the middle timescale tier. Specify with the **[PjTimescaleUnit](Project.PjTimescaleUnit.md)** enumeration. The default value is **pjTimescaleWeeks** (3).|
| _MinorUnits_|Optional|**Variant**|Time units for the bottom timescale tier. Specify with the **[PjTimescaleUnit](Project.PjTimescaleUnit.md)** enumeration. The default value is **pjTimescaleDays** (2).|
@@ -51,7 +51,7 @@ Enables changing the scale and format of a timescale in a Gantt chart or other t
| _TopUseFY_|Optional|**Variant**|Specifies whether to base the top tier labels on the fiscal year. The default value is **False**.|
| _TierCount_|Optional|**Variant**|Specifies the number of timescale tiers. The integer value 3 shows all three tiers; the value 2 is default and shows the middle and bottom tiers; the value 1 shows only the middle tier.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TimescaleNonWorking.md b/api/Project.Application.TimescaleNonWorking.md
index e9d90de94cb..8858bfc2f70 100644
--- a/api/Project.Application.TimescaleNonWorking.md
+++ b/api/Project.Application.TimescaleNonWorking.md
@@ -27,14 +27,14 @@ Sets the format of nonworking times.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Draw_|Optional|**Integer**|How nonworking times are denoted in relation to Gantt bars. Can be one of the following **[PjNonWorkingPlacement](Project.PjNonWorkingPlacement.md)** constants: **pjBehind**, **pjInFront**, or **pjDoNotDraw**.|
| _Calendar_|Optional|**String**|The name of the calendar to format.|
| _Color_|Optional|**Integer**|The color of nonworking times. Can be one of the **[PjColor](Project.PjColor.md)** constants.|
| _Pattern_|Optional|**Integer**|The pattern for nonworking times. Can be one of the **[PjFillPattern](Project.PjFillPattern.md)** constants.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TimescaleNonWorkingEx.md b/api/Project.Application.TimescaleNonWorkingEx.md
index c457a2ec6f8..e052c402d67 100644
--- a/api/Project.Application.TimescaleNonWorkingEx.md
+++ b/api/Project.Application.TimescaleNonWorkingEx.md
@@ -27,14 +27,14 @@ Sets the format of nonworking times, where color values can be hexadecimal RGB v
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Draw_|Optional|**Integer**|How nonworking times are denoted in relation to Gantt bars. Can be one of the following **[PjNonWorkingPlacement](Project.PjNonWorkingPlacement.md)** constants: **pjBehind**, **pjInFront**, or **pjDoNotDraw**.|
| _Calendar_|Optional|**String**|The name of the calendar to format.|
| _Color_|Optional|**Long**|The color of nonworking times. Can be a hexadecimal value for the RGB color, where red is the last byte. For example, the value &;HFF0000 is blue and &;H00FFFF is yellow. |
| _Pattern_|Optional|**Integer**|The pattern for nonworking times. Can be one of the **[PjFillPattern](Project.PjFillPattern.md)** constants.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ToggleAssignments.md b/api/Project.Application.ToggleAssignments.md
index ea42937c927..108b1b746a8 100644
--- a/api/Project.Application.ToggleAssignments.md
+++ b/api/Project.Application.ToggleAssignments.md
@@ -23,7 +23,7 @@ Shows or hides assignments for one or more selected task or resources in usage v
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ToggleChangeHighlighting.md b/api/Project.Application.ToggleChangeHighlighting.md
index e493fb1b9cd..6663deaada0 100644
--- a/api/Project.Application.ToggleChangeHighlighting.md
+++ b/api/Project.Application.ToggleChangeHighlighting.md
@@ -23,7 +23,7 @@ Toggles calculation **Change Highlighting** on or off.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.TogglePreventResOveralloc.md b/api/Project.Application.TogglePreventResOveralloc.md
index a5f6ae19af1..70ff87b19b7 100644
--- a/api/Project.Application.TogglePreventResOveralloc.md
+++ b/api/Project.Application.TogglePreventResOveralloc.md
@@ -23,7 +23,7 @@ Toggles the **Prevent Overallocations** command for the Team Planner view.
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ToggleResourceDetails.md b/api/Project.Application.ToggleResourceDetails.md
index 6c26a58f455..043ed7a92a3 100644
--- a/api/Project.Application.ToggleResourceDetails.md
+++ b/api/Project.Application.ToggleResourceDetails.md
@@ -23,7 +23,7 @@ Shows or hides the **Resource Form** in the bottom pane of a split view.
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ToggleTPAutoExpand.md b/api/Project.Application.ToggleTPAutoExpand.md
index 4709bd662ac..1d3c64e95d9 100644
--- a/api/Project.Application.ToggleTPAutoExpand.md
+++ b/api/Project.Application.ToggleTPAutoExpand.md
@@ -23,7 +23,7 @@ Expands or collapses resource rows in the Team Planner view, where there is more
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ToggleTPResourceExpand.md b/api/Project.Application.ToggleTPResourceExpand.md
index 18c49806373..b143ecb916f 100644
--- a/api/Project.Application.ToggleTPResourceExpand.md
+++ b/api/Project.Application.ToggleTPResourceExpand.md
@@ -27,11 +27,11 @@ Expands or collapses the specified resource row in the Team Planner view, when t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ResourceUniqueID_|Optional|**Long**|Unique identification number of the resource.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ToggleTPUnassigned.md b/api/Project.Application.ToggleTPUnassigned.md
index 85d4c3072c6..1c4f6c49690 100644
--- a/api/Project.Application.ToggleTPUnassigned.md
+++ b/api/Project.Application.ToggleTPUnassigned.md
@@ -23,7 +23,7 @@ Shows or hides the **Unassigned Tasks** section in the Team Planner view.
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ToggleTPUnscheduled.md b/api/Project.Application.ToggleTPUnscheduled.md
index ff351ab39cc..e0ed0b79c7f 100644
--- a/api/Project.Application.ToggleTPUnscheduled.md
+++ b/api/Project.Application.ToggleTPUnscheduled.md
@@ -23,7 +23,7 @@ Shows or hides the **Unscheduled Tasks** column in the Team Planner view.
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ToggleTaskDetails.md b/api/Project.Application.ToggleTaskDetails.md
index e56a53ac332..c6182cc1323 100644
--- a/api/Project.Application.ToggleTaskDetails.md
+++ b/api/Project.Application.ToggleTaskDetails.md
@@ -23,7 +23,7 @@ Shows or hides the **Task Form** in the bottom pane of a split view.
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.Undo.md b/api/Project.Application.Undo.md
index 1b42902b178..9bcdf97815f 100644
--- a/api/Project.Application.Undo.md
+++ b/api/Project.Application.Undo.md
@@ -27,11 +27,11 @@ Executes an undo action on items in the **Undo** list.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _HowManyUndos_|Optional|**Long**|Specifies the number of items from the list to undo. The default is 1.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.UndoClear.md b/api/Project.Application.UndoClear.md
index 1d2829b7424..8c8cdf896b4 100644
--- a/api/Project.Application.UndoClear.md
+++ b/api/Project.Application.UndoClear.md
@@ -23,7 +23,7 @@ Clears the **Undo** list.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Project.Application.UnlinkTasks.md b/api/Project.Application.UnlinkTasks.md
index be450eb669f..208978d899a 100644
--- a/api/Project.Application.UnlinkTasks.md
+++ b/api/Project.Application.UnlinkTasks.md
@@ -23,7 +23,7 @@ Unlinks the selected tasks.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.UnloadWebBrowserControl.md b/api/Project.Application.UnloadWebBrowserControl.md
index 540119f6326..8e4844763b5 100644
--- a/api/Project.Application.UnloadWebBrowserControl.md
+++ b/api/Project.Application.UnloadWebBrowserControl.md
@@ -24,7 +24,7 @@ Unloads the Web browser control and returns to the regular Project interface.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Optional|**Variant**|Window to be activated.|
diff --git a/api/Project.Application.UpdateFromProjectServer.md b/api/Project.Application.UpdateFromProjectServer.md
index 63f37bf9b65..5c057ecc758 100644
--- a/api/Project.Application.UpdateFromProjectServer.md
+++ b/api/Project.Application.UpdateFromProjectServer.md
@@ -27,7 +27,7 @@ Updates a project from Project Server.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataFile_|Required|**String**|The data file to update from Project Server.|
diff --git a/api/Project.Application.UpdateProject.md b/api/Project.Application.UpdateProject.md
index 8589d40d6da..3160e4056d7 100644
--- a/api/Project.Application.UpdateProject.md
+++ b/api/Project.Application.UpdateProject.md
@@ -27,13 +27,13 @@ Updates progress information and reschedules work for tasks in a project.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _All_|Optional|**Boolean**|**True** if all tasks in the active project are updated. **False** if only the selected tasks are updated. The default value is **True**.|
| _UpdateDate_|Optional|**Variant**|The update date to use for the specified action. |
| _action_|Optional|**Integer**|The action to take with the specified tasks. Can be one of the following **[PjProjectUpdate](Project.PjProjectUpdate.md)** constants: **pj0or100Percent**, **pj0to100Percent**, or **pjReschedule**. The default is **pj0to100Percent**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.UpdateTasks.md b/api/Project.Application.UpdateTasks.md
index 0cd62780f6c..56045b3aa60 100644
--- a/api/Project.Application.UpdateTasks.md
+++ b/api/Project.Application.UpdateTasks.md
@@ -27,7 +27,7 @@ Updates the selected tasks.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PercentComplete_|Optional|**Variant**|The percent complete of the active tasks.|
| _ActualDuration_|Optional|**Variant**|The actual duration of the selected tasks.|
@@ -36,7 +36,7 @@ Updates the selected tasks.
| _ActualFinish_|Optional|**Variant**|The actual finish date of the selected tasks.|
| _Notes_|Optional|**String**|Comments in the Notes field for the selected tasks. The value can be text only, not Rich Text Format (RTF) as in the **Notes** dialog box.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.UsageViewEntryEx.md b/api/Project.Application.UsageViewEntryEx.md
index 0150c102ae5..84c4916161a 100644
--- a/api/Project.Application.UsageViewEntryEx.md
+++ b/api/Project.Application.UsageViewEntryEx.md
@@ -27,7 +27,7 @@ Adds fields to the **Details** pane and option menu for the Task Usage or Resou
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CurIndex_|Optional|**Integer**|Current zero-based index of fields in the **Show these fields** list in the **Detail Styles** dialog box. Values greater than the number of fields currently shown are reduced to the next highest value in the actual list. For example, if there are two fields showing and _CurIndex_ = 8, the value of _CurIndex_ is reduced to 2. The default value is 0.|
| _Order_|Optional|**Integer**|Order of the field in an internal array of fields. For valid values, see the table of field names in the Remarks section.|
@@ -38,7 +38,7 @@ Adds fields to the **Details** pane and option menu for the Task Usage or Resou
| _DisplayField_|Optional|**Boolean**|**True** if the field is displayed in the **Details** pane; otherwise, **False**. The DisplayField parameter has no effect on fields that are already displayed.|
| _FontColor_|Optional|**Long**|Color of text in the **Details** column for usage entry. Can be a hexadecimal RGB value, where red is the last byte. For example, &;HFF00FF is purple.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewApply.md b/api/Project.Application.ViewApply.md
index a07aa393b18..8ae36d99c0c 100644
--- a/api/Project.Application.ViewApply.md
+++ b/api/Project.Application.ViewApply.md
@@ -27,13 +27,13 @@ Applies a view to the active window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|The name of the view to display in the active window.|
| _SinglePane_|Optional|**Boolean**|**True** if an existing split is removed and the active window displays a single-pane view. The default value is **False**.|
| _Toggle_|Optional|**Boolean**|**True** if the active window switches from one pane to two panes, or from two panes to one pane. Toggle is ignored if SinglePane is **True**. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewApplyEx.md b/api/Project.Application.ViewApplyEx.md
index 159e5383a31..5bb29a9f2da 100644
--- a/api/Project.Application.ViewApplyEx.md
+++ b/api/Project.Application.ViewApplyEx.md
@@ -24,7 +24,7 @@ _expression_ An expression that returns an **Application** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|The name of the view to display in the active window.|
| _SinglePane_|Optional|**Boolean**|**True** if an existing split is removed and the active window displays a single-pane view. The default value is **False**.|
diff --git a/api/Project.Application.ViewBar.md b/api/Project.Application.ViewBar.md
index d7524087a49..b6438e30ad6 100644
--- a/api/Project.Application.ViewBar.md
+++ b/api/Project.Application.ViewBar.md
@@ -23,7 +23,7 @@ Shows or hides the View Bar.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewCopy.md b/api/Project.Application.ViewCopy.md
index 93f3d436c24..fe1f232c3e9 100644
--- a/api/Project.Application.ViewCopy.md
+++ b/api/Project.Application.ViewCopy.md
@@ -27,7 +27,7 @@ Copies the current view.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|Name of the copy of the view.|
| _ApplyTo_|Optional|**Integer**|Specifies which pane of a split view is copied. The value can be one of the following:
@@ -40,7 +40,7 @@ Copies the current view.
|5|Primary pane, or the Timeline if it is active|
|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewEditCombination.md b/api/Project.Application.ViewEditCombination.md
index cf71a13c588..1aa68a8462a 100644
--- a/api/Project.Application.ViewEditCombination.md
+++ b/api/Project.Application.ViewEditCombination.md
@@ -27,7 +27,7 @@ Creates, edits, or copies a combination view.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|The name of a two-pane view to edit, create, or copy. The default is the name of the active view.|
| _Create_|Optional|**Boolean**|**True** if Project creates a two-pane view. If NewName is an empty string (""), the new view is given the name specified with Name. Otherwise, the new view is a copy of the view specified with Name and is given the name specified with NewName. The default value is **False.**|
@@ -36,7 +36,7 @@ Creates, edits, or copies a combination view.
| _BottomView_|Optional|**String**|The name of the view to display in the lower pane. The view specified by Name displays in the upper pane.|
| _ShowInMenu_|Optional|**Boolean**|**True** if the view name appears on the **Other Views** drop-down menu. The default value is **False.**|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewEditSingle.md b/api/Project.Application.ViewEditSingle.md
index aaaf4a1c1f4..e37a76cb8d3 100644
--- a/api/Project.Application.ViewEditSingle.md
+++ b/api/Project.Application.ViewEditSingle.md
@@ -27,7 +27,7 @@ Creates, edits, or copies a single-pane view.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**| The name of a single-pane view to edit, create, or copy. The default is the name of the active view.|
| _Create_|Optional|**Boolean**|**True** if Project creates a single-pane view. If NewName is an empty string (""), the new view is given the name specified with Name. Otherwise, the new view is a copy of the view specified with Name and is given the name specified with NewName. The default value is **False**.|
@@ -39,7 +39,7 @@ Creates, edits, or copies a single-pane view.
| _Filter_|Optional|**String**|The name of a filter to apply to the view. Required for a new view.|
| _Group_|Optional|**String**|The name of a group to apply to the view. If a group is required for the view, but none is specified, the default value is "No Group". The Group value is ignored if the view specified with the Screen argument does not use groups.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewReset.md b/api/Project.Application.ViewReset.md
index 6b06218f0e8..cd1017ea315 100644
--- a/api/Project.Application.ViewReset.md
+++ b/api/Project.Application.ViewReset.md
@@ -23,7 +23,7 @@ Resets the current view back to the global view definition.
_expression_ An expression that returns an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewShowCost.md b/api/Project.Application.ViewShowCost.md
index 1d928cdd863..f3cf9593210 100644
--- a/api/Project.Application.ViewShowCost.md
+++ b/api/Project.Application.ViewShowCost.md
@@ -23,7 +23,7 @@ Displays cost information in the active view.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewShowCumulativeCost.md b/api/Project.Application.ViewShowCumulativeCost.md
index b2753e85aef..8b9be67a471 100644
--- a/api/Project.Application.ViewShowCumulativeCost.md
+++ b/api/Project.Application.ViewShowCumulativeCost.md
@@ -23,7 +23,7 @@ Displays cumulative cost information in the active Resource Graph view.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewShowCumulativeWork.md b/api/Project.Application.ViewShowCumulativeWork.md
index 0e64ecaaffa..bb5ae73a795 100644
--- a/api/Project.Application.ViewShowCumulativeWork.md
+++ b/api/Project.Application.ViewShowCumulativeWork.md
@@ -23,7 +23,7 @@ Displays cumulative work information in the active Resource Graph view.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewShowNotes.md b/api/Project.Application.ViewShowNotes.md
index 1b9c816ca8f..5a2702c855c 100644
--- a/api/Project.Application.ViewShowNotes.md
+++ b/api/Project.Application.ViewShowNotes.md
@@ -23,7 +23,7 @@ Displays notes for the task or resource in the active details view.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewShowObjects.md b/api/Project.Application.ViewShowObjects.md
index d5feb80a2fe..c383befc32d 100644
--- a/api/Project.Application.ViewShowObjects.md
+++ b/api/Project.Application.ViewShowObjects.md
@@ -23,7 +23,7 @@ Displays information about the task or resource object in the active details vie
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewShowOverallocation.md b/api/Project.Application.ViewShowOverallocation.md
index 2ecbc9cac1d..cbbdfb6095b 100644
--- a/api/Project.Application.ViewShowOverallocation.md
+++ b/api/Project.Application.ViewShowOverallocation.md
@@ -23,7 +23,7 @@ Displays overallocation information in the active Resource Graph view.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewShowPeakUnits.md b/api/Project.Application.ViewShowPeakUnits.md
index 1c32874e269..c3532a6175d 100644
--- a/api/Project.Application.ViewShowPeakUnits.md
+++ b/api/Project.Application.ViewShowPeakUnits.md
@@ -23,7 +23,7 @@ Displays peak units information in the active Resource Graph view.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewShowPercentAllocation.md b/api/Project.Application.ViewShowPercentAllocation.md
index e0dbae0468d..301c752edc3 100644
--- a/api/Project.Application.ViewShowPercentAllocation.md
+++ b/api/Project.Application.ViewShowPercentAllocation.md
@@ -23,7 +23,7 @@ Displays percent allocation information in the active Resource Graph view.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewShowPredecessorsSuccessors.md b/api/Project.Application.ViewShowPredecessorsSuccessors.md
index 549d3c2319d..84ea1b86070 100644
--- a/api/Project.Application.ViewShowPredecessorsSuccessors.md
+++ b/api/Project.Application.ViewShowPredecessorsSuccessors.md
@@ -23,7 +23,7 @@ Displays information about predecessor and successor tasks in the active task de
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewShowRemainingAvailability.md b/api/Project.Application.ViewShowRemainingAvailability.md
index 4496eedfe92..372bccc0de7 100644
--- a/api/Project.Application.ViewShowRemainingAvailability.md
+++ b/api/Project.Application.ViewShowRemainingAvailability.md
@@ -23,7 +23,7 @@ Displays remaining availability information in the active Resource Graph view.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewShowResourcesPredecessors.md b/api/Project.Application.ViewShowResourcesPredecessors.md
index 810408eb24f..4119d7d169f 100644
--- a/api/Project.Application.ViewShowResourcesPredecessors.md
+++ b/api/Project.Application.ViewShowResourcesPredecessors.md
@@ -23,7 +23,7 @@ Displays information about resource assignments and predecessor tasks in the act
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewShowResourcesSuccessors.md b/api/Project.Application.ViewShowResourcesSuccessors.md
index 627a5aa9b4e..1609cee884a 100644
--- a/api/Project.Application.ViewShowResourcesSuccessors.md
+++ b/api/Project.Application.ViewShowResourcesSuccessors.md
@@ -23,7 +23,7 @@ Displays information about resource assignments and successor tasks in the activ
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewShowSchedule.md b/api/Project.Application.ViewShowSchedule.md
index 5358eb2ab7e..89298e0cf3e 100644
--- a/api/Project.Application.ViewShowSchedule.md
+++ b/api/Project.Application.ViewShowSchedule.md
@@ -23,7 +23,7 @@ Displays the schedule fields in a resource or task form.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewShowUnitAvailability.md b/api/Project.Application.ViewShowUnitAvailability.md
index 034c9aac384..d8fceb606d3 100644
--- a/api/Project.Application.ViewShowUnitAvailability.md
+++ b/api/Project.Application.ViewShowUnitAvailability.md
@@ -23,7 +23,7 @@ Displays unit availability information in the active Resource Graph view.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewShowWork.md b/api/Project.Application.ViewShowWork.md
index 03470306252..ae4978c0324 100644
--- a/api/Project.Application.ViewShowWork.md
+++ b/api/Project.Application.ViewShowWork.md
@@ -23,7 +23,7 @@ Displays work information in the active details pane.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewShowWorkAvailability.md b/api/Project.Application.ViewShowWorkAvailability.md
index 96982e234d2..ae8fe30b15a 100644
--- a/api/Project.Application.ViewShowWorkAvailability.md
+++ b/api/Project.Application.ViewShowWorkAvailability.md
@@ -23,7 +23,7 @@ Displays work availability information in the active Resource Graph view.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.Views.md b/api/Project.Application.Views.md
index 354e1c5f013..a91698faf35 100644
--- a/api/Project.Application.Views.md
+++ b/api/Project.Application.Views.md
@@ -23,7 +23,7 @@ Displays the **More Views** dialog box with the current view selected, which pr
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ViewsEx.md b/api/Project.Application.ViewsEx.md
index 07673fad295..89893d7efc0 100644
--- a/api/Project.Application.ViewsEx.md
+++ b/api/Project.Application.ViewsEx.md
@@ -27,7 +27,7 @@ Displays the **More Views** dialog box with the specified pane of the current v
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ApplyTo_|Optional|**Integer**|Specifies which pane of a split view is selected. The value can be one of the following:
|||
@@ -39,7 +39,7 @@ Displays the **More Views** dialog box with the specified pane of the current v
|5|Primary pane, or the Timeline if it is active|
|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.VisualReports.md b/api/Project.Application.VisualReports.md
index 75dced92f2b..a05e94c1255 100644
--- a/api/Project.Application.VisualReports.md
+++ b/api/Project.Application.VisualReports.md
@@ -27,11 +27,11 @@ Opens the **Visual Reports - Create Report** dialog box to the specified tab.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PjVisualReportsTab_|Optional|**Long**|Specifies which tab to display. Can be one of the **[PjVisualReportsTab](Project.PjVisualReportsTab.md)** constants. The default is **pjTabAll**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.VisualReportsEdit.md b/api/Project.Application.VisualReportsEdit.md
index ed809e7e24c..0cb60e2efe2 100644
--- a/api/Project.Application.VisualReportsEdit.md
+++ b/api/Project.Application.VisualReportsEdit.md
@@ -27,12 +27,12 @@ Opens the default or a specified Visual Reports template for editing.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _strVisualReportTemplateFile_|Optional|**String**|Full path and the name of template file.|
| _PjVisualReportsDataLevel_|Optional|**Long**|Data level for the template. Can be one of the **[PjVisualReportsDataLevel](Project.PjVisualReportsDataLevel.md)** constants. The default is **pjLevelAutomatic**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.VisualReportsNewTemplate.md b/api/Project.Application.VisualReportsNewTemplate.md
index b277d94deeb..80cd98db76c 100644
--- a/api/Project.Application.VisualReportsNewTemplate.md
+++ b/api/Project.Application.VisualReportsNewTemplate.md
@@ -27,14 +27,14 @@ Creates a Visual Reports template for Microsoft Excel or Microsoft Visio.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PjVisualReportsTemplateType_|Optional|**Long**|Template type. Can be one of the **[PjVisualReportsTemplateType](Project.PjVisualReportsTemplateType.md)** constants. Default is **pjExcel**.|
| _PjVisualReportsCubeType_|Optional|**Long**|Cube type. Can be one of the **[PjVisualReportsCubeType](Project.PjVisualReportsCubeType.md)** constants. Default is **pjTaskTP**.|
| _ReportAlLFields_|Optional|**Boolean**|If **True**, all noncustom fields are included in the report.|
| _PjVisualReportsDataLevel_|Optional|**Long**|Data level. Can be one of the **[PjVisualReportsDataLevel](Project.PjVisualReportsDataLevel.md)** constants. Default is **pjLevelAutomatic**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.VisualReportsSaveCube.md b/api/Project.Application.VisualReportsSaveCube.md
index d2e74869b3d..e1dc61109e5 100644
--- a/api/Project.Application.VisualReportsSaveCube.md
+++ b/api/Project.Application.VisualReportsSaveCube.md
@@ -27,14 +27,14 @@ Saves a Visual Reports cube to the default directory or to a specified directory
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _strNamePath_|Optional|**String**|Name and full path of the location to which to save the cube file (.cub).|
| _PjVisualReportsCubeType_|Optional|**Long**|Save cube type. Can be one of the **[PjVisualReportsCubeType](Project.PjVisualReportsCubeType.md)** consants. Default is **pjTaskTP**.|
| _ReportAlLFields_|Optional|**Boolean**|If **True**, all noncustom fields are included in the report. Default is **False**.|
| _PjVisualReportsDataLevel_|Optional|**Long**|Save data level. Can be one of the **[PjVisualReportsDataLevel](Project.PjVisualReportsDataLevel.md)** constants. Default is **pjLevelAutomatic**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.VisualReportsSaveDatabase.md b/api/Project.Application.VisualReportsSaveDatabase.md
index 568fd13b95e..32e725a4294 100644
--- a/api/Project.Application.VisualReportsSaveDatabase.md
+++ b/api/Project.Application.VisualReportsSaveDatabase.md
@@ -27,12 +27,12 @@ Saves a Visual Reports database to the default directory or to a specified direc
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _strNamePath_|Optional|**String**|Name and full path of the location to which to save the database file (.mbd).|
| _PjVisualReportsDataLevel_|Optional|**Long**|Save data level. Can be one of the **[PjVisualReportsDataLevel](Project.PjVisualReportsDataLevel.md)** constants. Default is **pjLevelAutomatic**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.VisualReportsView.md b/api/Project.Application.VisualReportsView.md
index d4b71ce6e05..2c1abc4370e 100644
--- a/api/Project.Application.VisualReportsView.md
+++ b/api/Project.Application.VisualReportsView.md
@@ -27,12 +27,12 @@ Opens the specified Visual Reports template with the specified level of time.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _strVisualReportTemplateFile_|Optional|**String**|Full path and name of template file.|
| _PjVisualReportsDataLevel_|Optional|**Long**|The time level of data, determined automatically or specified from days to years . Can be one of the **[PjVisualReportsDataLevel](Project.PjVisualReportsDataLevel.md)** constants. The default value is **pjLevelAutomatic**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WBSCodeMaskEdit.md b/api/Project.Application.WBSCodeMaskEdit.md
index 50cbf4bfd74..cf099e67c2b 100644
--- a/api/Project.Application.WBSCodeMaskEdit.md
+++ b/api/Project.Application.WBSCodeMaskEdit.md
@@ -27,7 +27,7 @@ Edits the work breakdown structure (WBS) code mask.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CodePrefix_|Optional|**String**|The WBS code prefix for the project.|
| _Level_|Optional|**Long**|The level of code mask to edit. The default value is one greater than the highest level currently specified for the field.|
@@ -37,7 +37,7 @@ Edits the work breakdown structure (WBS) code mask.
| _CodeGenerate_|Optional|**Boolean**|**True** if a new WBS code is generated whenever a new task is created.|
| _VerifyUniqueness_|Optional|**Boolean**|**True** if new WBS codes are verified to be unique.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WBSCodeRenumber.md b/api/Project.Application.WBSCodeRenumber.md
index b54727fa72d..8d0ca9a77af 100644
--- a/api/Project.Application.WBSCodeRenumber.md
+++ b/api/Project.Application.WBSCodeRenumber.md
@@ -27,11 +27,11 @@ Renumbers work breakdown structure (WBS) codes for either the active project or
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _All_|Optional|**Boolean**|**True** if all tasks in the active project should be renumbered. **False** if only the selected tasks should be renumbered.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WebAddToFavorites.md b/api/Project.Application.WebAddToFavorites.md
index f53bf319389..e14725899f3 100644
--- a/api/Project.Application.WebAddToFavorites.md
+++ b/api/Project.Application.WebAddToFavorites.md
@@ -27,11 +27,11 @@ Adds a link to the current document or selection to the Favorites folder for the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CurrentLink_|Optional|**Boolean**|**True** if a link will be added to the current selection. **False** if a link will be added to the current document. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WebCopyHyperlink.md b/api/Project.Application.WebCopyHyperlink.md
index a8818e4e9a6..3b182b52ef8 100644
--- a/api/Project.Application.WebCopyHyperlink.md
+++ b/api/Project.Application.WebCopyHyperlink.md
@@ -23,7 +23,7 @@ Copies the hyperlink of the selected item to the Clipboard.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WebGoBack.md b/api/Project.Application.WebGoBack.md
index c45324f6368..64fde4c6e8e 100644
--- a/api/Project.Application.WebGoBack.md
+++ b/api/Project.Application.WebGoBack.md
@@ -23,7 +23,7 @@ Goes to the previous document in the history list.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WebGoForward.md b/api/Project.Application.WebGoForward.md
index d447b793e1a..356400ed086 100644
--- a/api/Project.Application.WebGoForward.md
+++ b/api/Project.Application.WebGoForward.md
@@ -23,7 +23,7 @@ Goes to the next document in the history list.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WebHideToolbars.md b/api/Project.Application.WebHideToolbars.md
index 4d381fab67d..0238de53daa 100644
--- a/api/Project.Application.WebHideToolbars.md
+++ b/api/Project.Application.WebHideToolbars.md
@@ -27,11 +27,11 @@ Shows or hides all toolbars except the **Menu** and **Web** toolbars. Obsolete
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Hide_|Optional|**Boolean**|**True** if all toolbars except the **Menu** and **Web** toolbars are hidden. The default value is **True** if toolbars other than **Menu** and **Web** are displayed, and **False** if they are not.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WebOpenFavorites.md b/api/Project.Application.WebOpenFavorites.md
index 00b23fecce1..793c013dbab 100644
--- a/api/Project.Application.WebOpenFavorites.md
+++ b/api/Project.Application.WebOpenFavorites.md
@@ -23,7 +23,7 @@ Opens the Favorites folder.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WebOpenHyperlink.md b/api/Project.Application.WebOpenHyperlink.md
index d6f444332ca..7a1b59f1cce 100644
--- a/api/Project.Application.WebOpenHyperlink.md
+++ b/api/Project.Application.WebOpenHyperlink.md
@@ -27,14 +27,14 @@ Opens the document specified by a hyperlink address.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Address_|Optional|**String**|The address of the target document. If **Address** is omitted, the text of the selected field is used.|
| _SubAddress_|Optional|**String**|A location within the target document.|
| _AddHistory_|Optional|**Boolean**|**True** if the target document is added to the History folder. The default value is **True**.|
| _NewWindow_|Optional|**Boolean**|**True** if the target document displays in a new window. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WebOpenSearchPage.md b/api/Project.Application.WebOpenSearchPage.md
index 8822bc761f0..432ee62297a 100644
--- a/api/Project.Application.WebOpenSearchPage.md
+++ b/api/Project.Application.WebOpenSearchPage.md
@@ -23,7 +23,7 @@ Opens the Search Page.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WebOpenStartPage.md b/api/Project.Application.WebOpenStartPage.md
index ac29905bbb0..b45d621cd81 100644
--- a/api/Project.Application.WebOpenStartPage.md
+++ b/api/Project.Application.WebOpenStartPage.md
@@ -23,7 +23,7 @@ Opens the Start Page.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WebRefresh.md b/api/Project.Application.WebRefresh.md
index 98c3fd31c31..5e58e128554 100644
--- a/api/Project.Application.WebRefresh.md
+++ b/api/Project.Application.WebRefresh.md
@@ -23,7 +23,7 @@ Displays the previously viewed document, without reading it from the cache.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WebSetSearchPage.md b/api/Project.Application.WebSetSearchPage.md
index 5eba5066347..8e39bbb700f 100644
--- a/api/Project.Application.WebSetSearchPage.md
+++ b/api/Project.Application.WebSetSearchPage.md
@@ -27,11 +27,11 @@ Specifies a document as the Search Page in Microsoft Internet Explorer.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Address_|Optional|**String**|The address to use as a Search Page. If **Address** is omitted, the current document is set as the Search Page.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WebSetStartPage.md b/api/Project.Application.WebSetStartPage.md
index c0ede1756c9..cf7380b3fe5 100644
--- a/api/Project.Application.WebSetStartPage.md
+++ b/api/Project.Application.WebSetStartPage.md
@@ -27,11 +27,11 @@ Specifies a document as the Start Page in Microsoft Internet Explorer.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Address_|Optional|**String**|The address to use as a Start Page. If **Address** is omitted, the current document is set as the Start Page.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WebStopLoading.md b/api/Project.Application.WebStopLoading.md
index c2d74663308..86dcaa5ec40 100644
--- a/api/Project.Application.WebStopLoading.md
+++ b/api/Project.Application.WebStopLoading.md
@@ -23,7 +23,7 @@ Stops loading the document.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Project.Application.WebToolbar.md b/api/Project.Application.WebToolbar.md
index 45996b9798b..f453cc16907 100644
--- a/api/Project.Application.WebToolbar.md
+++ b/api/Project.Application.WebToolbar.md
@@ -27,11 +27,11 @@ Shows or hides the Web toolbar. Obsolete in Project.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Show_|Optional|**Boolean**|**True** if the Web toolbar is shown. The default is to toggle the current setting.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WindowActivate(even).md b/api/Project.Application.WindowActivate(even).md
index bd6c2724199..52a325d6907 100644
--- a/api/Project.Application.WindowActivate(even).md
+++ b/api/Project.Application.WindowActivate(even).md
@@ -24,11 +24,11 @@ Occurs when any window within Project is activated. The **WindowActivate** even
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _activatedWindow_|Required|**Window**|The activated window.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.WindowActivate(method).md b/api/Project.Application.WindowActivate(method).md
index 8a67ce6f1a4..1da6e32c302 100644
--- a/api/Project.Application.WindowActivate(method).md
+++ b/api/Project.Application.WindowActivate(method).md
@@ -27,13 +27,13 @@ Activates a window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _WindowName_|Optional|**String**|The name of the window to activate. The name of a window is the exact text that appears in the title bar of the window. The default is the name of the active window.|
| _DialogID_|Optional|**Long**|A constant specifying the dialog box to activate. Can be the following **[PjDialog](Project.PjDialog.md)** constant: **pjResourceAssignment**.|
| _TopPane_|Optional|**Boolean**|**True** if Project should activate the upper pane. The default value is **True**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WindowArrangeAll.md b/api/Project.Application.WindowArrangeAll.md
index bb8b212542d..2bb1a4a07d9 100644
--- a/api/Project.Application.WindowArrangeAll.md
+++ b/api/Project.Application.WindowArrangeAll.md
@@ -23,7 +23,7 @@ Arranges all of the open windows in Project.
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WindowBeforeViewChange.md b/api/Project.Application.WindowBeforeViewChange.md
index fdd74ec9a4a..10d164cfc9b 100644
--- a/api/Project.Application.WindowBeforeViewChange.md
+++ b/api/Project.Application.WindowBeforeViewChange.md
@@ -24,7 +24,7 @@ Occurs when the top pane view is changed within a window in Project.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required|**Window**|The window where the view change occurs.|
| _prevView_|Required|**View**|The previous view (top pane) the user is in. If the user was not in a project view before applying the current view, this value will return **Null**.|
@@ -32,7 +32,7 @@ Occurs when the top pane view is changed within a window in Project.
| _projectHasViewWindow_|Required|**Boolean**|True if the Project **View Bar** is currently visible.|
| _Info_|Required|**EventInfo**|EventInfo.Cancel is **False** when the event occurs. If the event procedure sets this argument to **True**, the value for the field specified with Field is not changed.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.WindowDeactivate.md b/api/Project.Application.WindowDeactivate.md
index 2aa211d0411..e1b896ffcef 100644
--- a/api/Project.Application.WindowDeactivate.md
+++ b/api/Project.Application.WindowDeactivate.md
@@ -24,11 +24,11 @@ Occurs when any window within Project is deactivated. The **WindowDeactivate**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _deactivatedWindow_|Required|**Window**| The deactivated window.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.WindowGoalAreaChange.md b/api/Project.Application.WindowGoalAreaChange.md
index f80ab9b0e33..6bde70e6f4f 100644
--- a/api/Project.Application.WindowGoalAreaChange.md
+++ b/api/Project.Application.WindowGoalAreaChange.md
@@ -24,12 +24,12 @@ Occurs after a user clicks a different goal area in the Project Guide.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required|**Window**|The window where the **Project Guide** is being changed.|
| _goalArea_|Required|**Long**|The ID of the goal area the user just clicked.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.WindowHide.md b/api/Project.Application.WindowHide.md
index 24d1d5b31c0..9ff2efb8ec6 100644
--- a/api/Project.Application.WindowHide.md
+++ b/api/Project.Application.WindowHide.md
@@ -27,11 +27,11 @@ Hides a window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|The name of the window to hide. The name of a window is the exact text that appears in the title bar of the window. The default is the active window.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WindowMoreWindows.md b/api/Project.Application.WindowMoreWindows.md
index e31081ddc1c..b7dcfe3637b 100644
--- a/api/Project.Application.WindowMoreWindows.md
+++ b/api/Project.Application.WindowMoreWindows.md
@@ -23,7 +23,7 @@ Displays the **Activate** dialog box, which prompts the user to activate a wind
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WindowNewWindow.md b/api/Project.Application.WindowNewWindow.md
index 9600057f7bc..de77a5bb97d 100644
--- a/api/Project.Application.WindowNewWindow.md
+++ b/api/Project.Application.WindowNewWindow.md
@@ -27,14 +27,14 @@ Creates a window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Projects_|Optional|**String**|The names of one or more projects, separated by the list separator character. The new window contains data from the projects you specify. The default is to create a copy of the active window.|
| _View_|Optional|**String**|The name of an initial view for the new window. The default is equal to the value returned by the **DefaultView** property.|
| _AllProjects_|Optional|**Boolean**|**True** if the new window contains data from all open projects. When **True**, AllProjects overrides Projects. The default value is **False**.|
| _ShowDialog_|Optional|**Boolean**|**True** if the **New Window** dialog box is displayed so that a view or project can be selected. The default value is **False.**|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WindowNext.md b/api/Project.Application.WindowNext.md
index 30dc127813e..0387b12fb58 100644
--- a/api/Project.Application.WindowNext.md
+++ b/api/Project.Application.WindowNext.md
@@ -27,11 +27,11 @@ Activates the next window in the order in which windows were opened.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NoWrap_|Optional|**Boolean**|**True** if using **WindowNext** on the last opened window doesn't wrap around to the first opened window. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WindowPrev.md b/api/Project.Application.WindowPrev.md
index fa3bc75ea5e..1cfd29cbd5e 100644
--- a/api/Project.Application.WindowPrev.md
+++ b/api/Project.Application.WindowPrev.md
@@ -27,11 +27,11 @@ Activates the window that was previously opened.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NoWrap_|Optional|**Boolean**|**True** if using **WindowPrev** on the first opened window doesn't wrap around to the last opened window. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WindowSelectionChange.md b/api/Project.Application.WindowSelectionChange.md
index c17765bb2c8..be97ec098d0 100644
--- a/api/Project.Application.WindowSelectionChange.md
+++ b/api/Project.Application.WindowSelectionChange.md
@@ -24,13 +24,13 @@ Occurs when the selection handle is changed within a window in Project.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required|**Window**|The window where the selection occurs.|
| _sel_|Required|**Selection**|The selection.|
| _selType_|Required|**Long**|The type of data included in the selection. Can be one of the following **PjItemType** constants: **pjOtherItem**, **pjResourceItem**, or **pjTaskItem**.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.WindowSidepaneDisplayChange.md b/api/Project.Application.WindowSidepaneDisplayChange.md
index 1bcf68d2758..ba026432ee7 100644
--- a/api/Project.Application.WindowSidepaneDisplayChange.md
+++ b/api/Project.Application.WindowSidepaneDisplayChange.md
@@ -24,12 +24,12 @@ Occurs when the user shows or hides the Project Guide.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required|**Window**| The window where the **Project Guide** is shown or hidden.|
| _Close_|Required|**Boolean**|**False** if the user is closing the **Project Guide**. **True** if the user is showing the **Project Guide**.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.WindowSidepaneTaskChange.md b/api/Project.Application.WindowSidepaneTaskChange.md
index 87ab5645b9e..287601b0936 100644
--- a/api/Project.Application.WindowSidepaneTaskChange.md
+++ b/api/Project.Application.WindowSidepaneTaskChange.md
@@ -24,13 +24,13 @@ Occurs when a user selects different items in the **Next Steps and Related Acti
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required|**Window**|The window where the **Project Guide** is being changed.|
| _ID_|Required|**Long**|The ID of the task in the **Project Guide** you are trying to display.|
| _IsGoalArea_|Required|**Boolean**|**True** if trying to change to a different goal area in the **Project Guide**. **False** if trying to change to a different **Project Guide** task.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.WindowSplit.md b/api/Project.Application.WindowSplit.md
index a7a30c59c9e..17ed141b9ac 100644
--- a/api/Project.Application.WindowSplit.md
+++ b/api/Project.Application.WindowSplit.md
@@ -23,7 +23,7 @@ Creates a lower pane for the active window. Closes the lower pane, if it already
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WindowUnhide.md b/api/Project.Application.WindowUnhide.md
index e05a5e4de88..4501a516a95 100644
--- a/api/Project.Application.WindowUnhide.md
+++ b/api/Project.Application.WindowUnhide.md
@@ -27,11 +27,11 @@ Shows a hidden window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|The name of a hidden window to show. The name of a window is the exact text that appears in the title bar of the window. If Name is omitted, the **Unhide** dialog box appears, which prompts the user to show a hidden window in the active project.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WindowViewChange.md b/api/Project.Application.WindowViewChange.md
index 2901ad71269..c85c9f511f0 100644
--- a/api/Project.Application.WindowViewChange.md
+++ b/api/Project.Application.WindowViewChange.md
@@ -24,14 +24,14 @@ Occurs after the top pane view is changed within a project window. The **Window
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required|**Window**|The window where the view change occurs.|
| _prevView_|Required|**View**|The previous topic pane view the user was in before the view change occurred. If the user was not in a project view before applying the current view, the prevView argument returns null.|
| _newView_|Required|**View**|The new top pane view the user has now applied.|
| _success_|Required|**Boolean**|**True** if the view change action succeeded.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.WorkOffline.md b/api/Project.Application.WorkOffline.md
index 462be66b97c..a067f1c94fa 100644
--- a/api/Project.Application.WorkOffline.md
+++ b/api/Project.Application.WorkOffline.md
@@ -27,11 +27,11 @@ Opens or closes the connection to Project Server.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _fOffline_|Optional|**Boolean**|**True** closes the connection to Project Server. **False** opens the connection to Project Server.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.WorkpaneDisplayChange.md b/api/Project.Application.WorkpaneDisplayChange.md
index 346a4f68304..b3d09cafca7 100644
--- a/api/Project.Application.WorkpaneDisplayChange.md
+++ b/api/Project.Application.WorkpaneDisplayChange.md
@@ -24,11 +24,11 @@ Occurs when the Project Guide is hidden or shown.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DisplayState_|Required|**Boolean**|**True** if the **Project Guide** is shown. **False** if the **Project Guide** is hidden.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Application.WrapText.md b/api/Project.Application.WrapText.md
index 1479322209e..7bda2d8ef2f 100644
--- a/api/Project.Application.WrapText.md
+++ b/api/Project.Application.WrapText.md
@@ -27,11 +27,11 @@ Toggles the **Wrap Text** setting in a column.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Column_|Optional|**Integer**|The target column identifier. If omitted, the **WrapText** method is applied to the column containing the active cell.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.Zoom.md b/api/Project.Application.Zoom.md
index 7e324ac10b4..389885e60ba 100644
--- a/api/Project.Application.Zoom.md
+++ b/api/Project.Application.Zoom.md
@@ -23,7 +23,7 @@ Displays the **Zoom** dialog box, which prompts the user to change the timescal
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ZoomCalendar.md b/api/Project.Application.ZoomCalendar.md
index 794fe11ac06..8a3513f3d9a 100644
--- a/api/Project.Application.ZoomCalendar.md
+++ b/api/Project.Application.ZoomCalendar.md
@@ -27,13 +27,13 @@ Zooms in on or out from the Calendar.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NumWeeks_|Optional|**Long**|The number of weeks to display. If StartDate and EndDate are specified, NumWeeks is ignored.|
| _StartDate_|Optional|**Variant**|The first date to display.|
| _EndDate_|Optional|**Variant**|The last date to display.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ZoomIn.md b/api/Project.Application.ZoomIn.md
index 4000ab17023..41c6752b224 100644
--- a/api/Project.Application.ZoomIn.md
+++ b/api/Project.Application.ZoomIn.md
@@ -23,7 +23,7 @@ Zooms in on the active view. Not available on the Resource Sheet, Task Sheet, or
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ZoomOut.md b/api/Project.Application.ZoomOut.md
index 4d7c5cf4750..925e546fcd1 100644
--- a/api/Project.Application.ZoomOut.md
+++ b/api/Project.Application.ZoomOut.md
@@ -23,7 +23,7 @@ Zooms out from the active view. Not available on the Resource Sheet, Task Sheet,
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Application.ZoomTimescale.md b/api/Project.Application.ZoomTimescale.md
index 80d8aa818bd..774a9e832af 100644
--- a/api/Project.Application.ZoomTimescale.md
+++ b/api/Project.Application.ZoomTimescale.md
@@ -27,14 +27,14 @@ Zooms in on or out from the Gantt Chart, Resource Graph, Resource Usage, or Task
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Duration_|Optional|**Variant**|The duration to display in the view.|
| _Entire_|Optional|**Boolean**|**True** if the view resizes to fit the entire project onto the screen. The default value is **False**.|
| _Selection_|Optional|**Boolean**|**True** if the view resizes to fit only the selected tasks onto the screen. The default value is **False**.|
| _Reset_|Optional|**Boolean**|**True** if the view is reset to its default size. The default value is **False**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Assignment.AppendNotes.md b/api/Project.Assignment.AppendNotes.md
index cb1be80a04b..d8d1b29345a 100644
--- a/api/Project.Assignment.AppendNotes.md
+++ b/api/Project.Assignment.AppendNotes.md
@@ -24,7 +24,7 @@ Appends text to the Notes field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Value_|Required|**String**|The text to append to the existing notes.|
diff --git a/api/Project.Assignment.EnterpriseTeamMember.md b/api/Project.Assignment.EnterpriseTeamMember.md
index f795694390a..d4511615966 100644
--- a/api/Project.Assignment.EnterpriseTeamMember.md
+++ b/api/Project.Assignment.EnterpriseTeamMember.md
@@ -24,11 +24,11 @@ Indicates whether the specified assignment belongs to the project. **True** if
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Project_|Required|**Object**|The **Project** object against which the expression is checked. For example, **ActiveProject**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Assignment.Replan.md b/api/Project.Assignment.Replan.md
index 9965c22dd79..d632f2da378 100644
--- a/api/Project.Assignment.Replan.md
+++ b/api/Project.Assignment.Replan.md
@@ -27,11 +27,11 @@ Replans the assignment by decreasing work or increasing duration.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _action_|Required|**PjAssignmentReplanAction**|Can be one of the following constants in **[PjAssignmentReplanAction](Project.PjAssignmentReplanAction.md)**: **pjConstrainToMaxUnitsByDecreasingWork** or **pjConstrainToMaxUnitsByIncreasingDuration**.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Project.Assignment.TimeScaleData.md b/api/Project.Assignment.TimeScaleData.md
index 4944ca89a95..2ed12236ee6 100644
--- a/api/Project.Assignment.TimeScaleData.md
+++ b/api/Project.Assignment.TimeScaleData.md
@@ -24,7 +24,7 @@ Sets options for displaying timephased data.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StartDate_|Required|**Variant**|The start date for the timephased data. If the start date falls within an interval, it is "rounded" to the start of the interval. For example, if TimeScaleUnit is **pjTimescaleWeeks** and StartDate specifies a Wednesday, the start date is rounded to the preceding Monday (assuming that the work week starts on a Monday).|
| _EndDate_|Required|**Variant**|The end date for the timephased data. If the end date falls within an interval, it is "rounded" to the end of the interval.|
@@ -32,7 +32,7 @@ Sets options for displaying timephased data.
| _TimeScaleUnit_|Optional|**Long**|Can be one of the **[PjTimescaleUnit](Project.PjTimescaleUnit.md)** constants. The default value is **pjTimescaleWeeks**.|
| _Count_|Optional|**Long**|The number of timescale units to group together. The default value is 1. |
-### Return Value
+### Return value
**TimeScaleValues**
diff --git a/api/Project.Assignments.Add.md b/api/Project.Assignments.Add.md
index a2cdece1cb0..f9df4e6b46f 100644
--- a/api/Project.Assignments.Add.md
+++ b/api/Project.Assignments.Add.md
@@ -24,13 +24,13 @@ Adds an **Assignment** object to an **Assignments** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TaskID_|Optional|**Long**|The identification number of a task. Required if the parent object is a resource. The task is assigned the resource specified by ResourceID. The default value of **TaskID** is the identification number of the parent object of the **Assignments** collection if the parent object is a **Task** object.|
| _ResourceID_|Optional|**Long**|The identification number of a resource. Required if the parent object is a task. The resource is assigned the task specified with the TaskID argument. The default value of ResourceID is the identification number of the parent object of the **Assignments** collection if the parent object is a **Resource** object.|
| _Units_|Optional|**Variant**|The number of resource units, expressed as a decimal or percentage, to assign to the task. The default value is 1 or 100%, depending on whether the **Show assignment units as a** setting is **Decimal** or **Percentage**, on the **Schedule** tab of the **Project Options** dialog box. If the maximum number of units is less than 1 (or the maximum percentage is less than 100%), the default value of the Units argument is the maximum number of units (or the maximum percentage).|
-### Return Value
+### Return value
**Assignment**
diff --git a/api/Project.Assignments.Item.md b/api/Project.Assignments.Item.md
index bdc9b942861..3bb878e517d 100644
--- a/api/Project.Assignments.Item.md
+++ b/api/Project.Assignments.Item.md
@@ -24,7 +24,7 @@ Gets a single **Assignment** object from the **Assignments** collection. Read-o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Assignments.UniqueID.md b/api/Project.Assignments.UniqueID.md
index 0bf7295906b..da034fd58fa 100644
--- a/api/Project.Assignments.UniqueID.md
+++ b/api/Project.Assignments.UniqueID.md
@@ -24,7 +24,7 @@ Gets an **[Assignment](Project.Assignment.md)** object from its containing coll
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Long**|The position of the object within its containing collection.|
diff --git a/api/Project.Availabilities.Add.md b/api/Project.Availabilities.Add.md
index 7d5f4e2f3a4..8bab28d90a5 100644
--- a/api/Project.Availabilities.Add.md
+++ b/api/Project.Availabilities.Add.md
@@ -24,13 +24,13 @@ Adds an **Availability** object to an **Availabilities** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _AvailableFrom_|Required|**Variant**|The earliest date the resource is available for work on the project.|
| _AvailableTo_|Required|**Variant**| The latest date the resource is available for work on the project.|
| _AvailableUnit_|Required|**Double**|The unit value for the availability period.|
-### Return Value
+### Return value
**Availability**
diff --git a/api/Project.Availabilities.Item.md b/api/Project.Availabilities.Item.md
index d379c895a23..45f8b07f56f 100644
--- a/api/Project.Availabilities.Item.md
+++ b/api/Project.Availabilities.Item.md
@@ -24,7 +24,7 @@ Gets a single **Availability** object from the **Availabilities** collection. R
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Calendar.Period.md b/api/Project.Calendar.Period.md
index 544403f4d8a..7cca4843055 100644
--- a/api/Project.Calendar.Period.md
+++ b/api/Project.Calendar.Period.md
@@ -24,12 +24,12 @@ Gets a **[Period](Project.Period.md)** object representing a period of time in
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Start_|Required|**Variant**|The start date of the desired period.|
| _Finish_|Optional|**Variant**| The finish date of the desired period. The default value is the same date as Start.|
-### Return Value
+### Return value
**Period**
diff --git a/api/Project.CalendarDrivers.Item.md b/api/Project.CalendarDrivers.Item.md
index 8cd5b0c854b..64b953464ef 100644
--- a/api/Project.CalendarDrivers.Item.md
+++ b/api/Project.CalendarDrivers.Item.md
@@ -24,7 +24,7 @@ Gets a single **Resource** object from the **CalendarDrivers** collection. Read
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Long**|The index number of the object to return.|
diff --git a/api/Project.Calendars.Item.md b/api/Project.Calendars.Item.md
index 154ae599f67..c2d7d20ce32 100644
--- a/api/Project.Calendars.Item.md
+++ b/api/Project.Calendars.Item.md
@@ -24,7 +24,7 @@ Gets a single **Calendar** object from the **Calendars** collection. Read-only
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.ChildDrivers.Item.md b/api/Project.ChildDrivers.Item.md
index a2af187c324..9ed73d7a249 100644
--- a/api/Project.ChildDrivers.Item.md
+++ b/api/Project.ChildDrivers.Item.md
@@ -24,7 +24,7 @@ Gets a single **Task** object from the **ChildDrivers** collection. Read-only *
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Long**|The index number of the object to return.|
diff --git a/api/Project.CodeMask.Add.md b/api/Project.CodeMask.Add.md
index c309b8043bc..e573150501d 100644
--- a/api/Project.CodeMask.Add.md
+++ b/api/Project.CodeMask.Add.md
@@ -27,13 +27,13 @@ Returns a **[CodeMaskLevel ](Project.CodeMaskLevel.md)** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Sequence_|Optional|**Long**|Specifies the type of sequence in the code mask. Can be one of the **[PjCustomOutlineCodeSequence](Project.PjCustomOutlineCodeSequence.md)** constants. The default value is **pjCustomOutlineCodeNumbers**.|
| _Length_|Optional|**Variant**|Specifies the length for a given level in the code mask. Can be the string "Any" or an integer value between 1 and 255. |
| _Separator_|Optional|**String**|The character that separates the level of a code mask from the next code mask. Can be one of the following characters: ".", "-", "+", or "/". |
-### Return Value
+### Return value
**CodeMaskLevel**
diff --git a/api/Project.CodeMask.Item.md b/api/Project.CodeMask.Item.md
index 8968aed8deb..8b5c681b366 100644
--- a/api/Project.CodeMask.Item.md
+++ b/api/Project.CodeMask.Item.md
@@ -24,7 +24,7 @@ Gets a single **CodeMaskLevel** object from the **CodeMask** collection. Read-o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.CostRateTables.Item.md b/api/Project.CostRateTables.Item.md
index 16c4fe01d6b..322fb4afb2a 100644
--- a/api/Project.CostRateTables.Item.md
+++ b/api/Project.CostRateTables.Item.md
@@ -24,7 +24,7 @@ Gets a single **CostRateTable** object from the **CostRateTables** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Days.Item.md b/api/Project.Days.Item.md
index d0b2e63b914..61ae179ecb7 100644
--- a/api/Project.Days.Item.md
+++ b/api/Project.Days.Item.md
@@ -24,7 +24,7 @@ Gets a single **Day** object from the **Days** collection. Read-only **Day**.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Exceptions.Add.md b/api/Project.Exceptions.Add.md
index b590b175af1..08ebe16bc30 100644
--- a/api/Project.Exceptions.Add.md
+++ b/api/Project.Exceptions.Add.md
@@ -24,7 +24,7 @@ Adds an **Exception** object to an **Exceptions** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required|**Long**|Exception type. Can be one of the **[PjExceptionType](Project.PjExceptionType.md)** constants.|
| _Start_|Required|**Variant**|Start date of the exception.|
@@ -38,7 +38,7 @@ Adds an **Exception** object to an **Exceptions** collection.
| _Month_|Optional|**Long**|Specifies the month, if the Type argument is **pjYearlyMonthDay** or **pjYearlyPositional**. Can be one of the **[pjMonth](Project.PjMonth.md)** constants.|
| _MonthDay_|Optional|**Long**|Day of month for **ByMonthDay** type exceptions.|
-### Return Value
+### Return value
**Exception**
diff --git a/api/Project.Exceptions.Item.md b/api/Project.Exceptions.Item.md
index 466431b3534..148dc04b301 100644
--- a/api/Project.Exceptions.Item.md
+++ b/api/Project.Exceptions.Item.md
@@ -24,7 +24,7 @@ Gets a single **Exception** object from the **Exceptions** collection. Read-onl
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Filter.Apply.md b/api/Project.Filter.Apply.md
index 465646c43a0..705854ae6d5 100644
--- a/api/Project.Filter.Apply.md
+++ b/api/Project.Filter.Apply.md
@@ -27,11 +27,11 @@ Applies the filter to the current view.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Highlight_|Optional|**Boolean**|If **True**, highlights the filtered items within the list of all items. If **False**, shows only the filtered items in the view. The default is **False**.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Project.Filters.Copy.md b/api/Project.Filters.Copy.md
index a0c1129e0e0..82df15ee169 100644
--- a/api/Project.Filters.Copy.md
+++ b/api/Project.Filters.Copy.md
@@ -27,12 +27,12 @@ Makes a copy of a group definition for the **Filters** collection and returns a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Source_|Required|**String**|The name of the filter to copy.|
| _NewName_|Required|**String**|The name of the new filter.|
-### Return Value
+### Return value
**Filter**
diff --git a/api/Project.Filters.Item.md b/api/Project.Filters.Item.md
index ad140980daf..ed472fe9857 100644
--- a/api/Project.Filters.Item.md
+++ b/api/Project.Filters.Item.md
@@ -24,7 +24,7 @@ Gets a single **Filter** object from the **Filters** collection. Read-only **Fi
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Group2.Application.md b/api/Project.Group2.Application.md
index 15593c7ed5a..2fe022dc1ab 100644
--- a/api/Project.Group2.Application.md
+++ b/api/Project.Group2.Application.md
@@ -20,7 +20,7 @@ Gets the **[Application](Project.Application.md)** object. Read-only **Applicat
_expression_ An expression that returns a [Group2](./Project.Group2.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Project.GroupCriteria.Add.md b/api/Project.GroupCriteria.Add.md
index 661f0335113..9b680e9713e 100644
--- a/api/Project.GroupCriteria.Add.md
+++ b/api/Project.GroupCriteria.Add.md
@@ -24,7 +24,7 @@ Adds a **GroupCriterion** object to a **GroupCriteria** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FieldName_|Required|**String**|The name of the field being grouped by.|
| _Ascending_|Optional|**Boolean**|**True** if the field in a group definition should be grouped in ascending order. **False** if the field should be grouped in descending order. The default value is **True**.|
@@ -40,7 +40,7 @@ Adds a **GroupCriterion** object to a **GroupCriteria** collection.
| _StartAt_|Optional|**Variant**|The start of the intervals in a group definition. The default value is 0 for all fields except date fields, where it is the string "Project Start Date".|
| _GroupInterval_|Optional|**Variant**|The interval in a group definition. The default value is 1.|
-### Return Value
+### Return value
**GroupCriterion**
diff --git a/api/Project.GroupCriteria.Item.md b/api/Project.GroupCriteria.Item.md
index e3e471065b5..96cfdf02ec6 100644
--- a/api/Project.GroupCriteria.Item.md
+++ b/api/Project.GroupCriteria.Item.md
@@ -24,7 +24,7 @@ Gets a single **GroupCriterion** object from the **GroupCriteria** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Long**|The index number of the object to return.|
diff --git a/api/Project.GroupCriteria2.Add.md b/api/Project.GroupCriteria2.Add.md
index cf3b8f3e8a4..25d5729bd7a 100644
--- a/api/Project.GroupCriteria2.Add.md
+++ b/api/Project.GroupCriteria2.Add.md
@@ -24,7 +24,7 @@ Adds a **GroupCriterion2** object to the **GroupCriteria2** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FieldName_|Required|**String**|The name of the field being grouped by.|
| _Ascending_|Optional|**Boolean**|**True** if the field in a group definition should be grouped in ascending order. **False** if the field should be grouped in descending order. The default value is **True**.|
@@ -40,7 +40,7 @@ Adds a **GroupCriterion2** object to the **GroupCriteria2** collection.
| _StartAt_|Optional|**Variant**|The start of the intervals in a group definition. The default value is 0 for all fields except date fields, where it is the string "Project Start Date".|
| _GroupInterval_|Optional|**Variant**|The interval in a group definition. The default value is 1.|
-### Return Value
+### Return value
GroupCriterion2
diff --git a/api/Project.GroupCriteria2.AddEx.md b/api/Project.GroupCriteria2.AddEx.md
index 4a846fcb9fe..9fb829b9550 100644
--- a/api/Project.GroupCriteria2.AddEx.md
+++ b/api/Project.GroupCriteria2.AddEx.md
@@ -27,7 +27,7 @@ Adds a **GroupCriterion2** object to the **GroupCriteria2** collection, where *
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FieldName_|Required|**String**|The name of the field being grouped by.|
| _Ascending_|Optional|**Boolean**|**True** if the field in a group definition should be grouped in ascending order. **False** if the field should be grouped in descending order. The default value is **True**.|
@@ -43,7 +43,7 @@ Adds a **GroupCriterion2** object to the **GroupCriteria2** collection, where *
| _StartAt_|Optional|**Variant**|The start of the intervals in a group definition. The default value is 0 for all fields except date fields, where it is the string "Project Start Date".|
| _GroupInterval_|Optional|**Variant**|The interval in a group definition. The default value is 1.|
-### Return Value
+### Return value
**GroupCriterion2**
diff --git a/api/Project.GroupCriteria2.Item.md b/api/Project.GroupCriteria2.Item.md
index a47e45e3c60..52b9e19e451 100644
--- a/api/Project.GroupCriteria2.Item.md
+++ b/api/Project.GroupCriteria2.Item.md
@@ -24,7 +24,7 @@ Gets a single item from a collection. Read-only **GroupCriterion2**.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Long**|The name or index number of the object to return.|
diff --git a/api/Project.GroupCriterion2.Application.md b/api/Project.GroupCriterion2.Application.md
index 1a6debb88ea..97365f53819 100644
--- a/api/Project.GroupCriterion2.Application.md
+++ b/api/Project.GroupCriterion2.Application.md
@@ -20,7 +20,7 @@ Gets the **[Application](Project.Application.md)** object. Read-only **Applicat
_expression_ An expression that returns a [GroupCriterion2](./Project.GroupCriterion2.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Project.Groups.Add.md b/api/Project.Groups.Add.md
index 2e74857279d..4052d92a2a1 100644
--- a/api/Project.Groups.Add.md
+++ b/api/Project.Groups.Add.md
@@ -24,12 +24,12 @@ Adds a **Group** object to a **Groups** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of the group|
| _FieldName_|Required|**String**|The name of the field being grouped by.|
-### Return Value
+### Return value
**Group**
diff --git a/api/Project.Groups.Copy.md b/api/Project.Groups.Copy.md
index 8da8a304036..82d928e1a39 100644
--- a/api/Project.Groups.Copy.md
+++ b/api/Project.Groups.Copy.md
@@ -24,12 +24,12 @@ Makes a copy of a group definition for the **Groups** collection and returns a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of the group to copy.|
| _NewName_|Required|**String**|The name of the new group.|
-### Return Value
+### Return value
**Group**
diff --git a/api/Project.Groups.Item.md b/api/Project.Groups.Item.md
index f8a4c5a41aa..fd1f588e816 100644
--- a/api/Project.Groups.Item.md
+++ b/api/Project.Groups.Item.md
@@ -24,7 +24,7 @@ Gets a single **Group** object from the **Groups** collection. Read-only **Grou
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Groups2.Add.md b/api/Project.Groups2.Add.md
index da7d10d1521..41ed60f7eb7 100644
--- a/api/Project.Groups2.Add.md
+++ b/api/Project.Groups2.Add.md
@@ -24,12 +24,12 @@ Adds a **[Group2](Project.Group2.md)** object to a **Groups2** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of the group.|
| _FieldName_|Required|**String**|The name of the field being grouped by.|
-### Return Value
+### Return value
**Group2**
diff --git a/api/Project.Groups2.Copy.md b/api/Project.Groups2.Copy.md
index 03e99fdbd7e..4246c67b2cf 100644
--- a/api/Project.Groups2.Copy.md
+++ b/api/Project.Groups2.Copy.md
@@ -24,12 +24,12 @@ Makes a copy of a group definition from the **Groups2** collection and returns
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of the group to copy.|
| _NewName_|Required|**String**|The name of the new group.|
-### Return Value
+### Return value
**Group2**
diff --git a/api/Project.Groups2.Item.md b/api/Project.Groups2.Item.md
index 8d1185c2ba8..51564f50be1 100644
--- a/api/Project.Groups2.Item.md
+++ b/api/Project.Groups2.Item.md
@@ -24,7 +24,7 @@ Gets a single **Group2** object from a **Groups2** collection. Read-only **[Gro
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or number of the item in the collection.|
diff --git a/api/Project.List.Item.md b/api/Project.List.Item.md
index cf397051628..a0a46cf5710 100644
--- a/api/Project.List.Item.md
+++ b/api/Project.List.Item.md
@@ -24,7 +24,7 @@ Gets a single item from the **List** object. Read-only **String**.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.LookupTable.AddChild.md b/api/Project.LookupTable.AddChild.md
index 4427be9a969..f527f7ca156 100644
--- a/api/Project.LookupTable.AddChild.md
+++ b/api/Project.LookupTable.AddChild.md
@@ -27,12 +27,12 @@ Adds a lookup table entry to a **[LookupTable](Project.lookuptable.md)** collec
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of the lookup table entry.|
| _ParentUniqueID_|Optional|**Long**|If this value is not specified, the entry is inserted at the top level. Otherwise, the entry is inserted as the child of the entry with the specified unique identifier (UID). The method ensures that the entry with the specified UID is in the correct lookup table.|
-### Return Value
+### Return value
**LookupTableEntry**
diff --git a/api/Project.LookupTable.Item.md b/api/Project.LookupTable.Item.md
index c5c162bfe0d..58ca6e22aa7 100644
--- a/api/Project.LookupTable.Item.md
+++ b/api/Project.LookupTable.Item.md
@@ -24,7 +24,7 @@ Gets a single **LookupTableEntry** object from the **LookupTable** collection o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Months.Item.md b/api/Project.Months.Item.md
index 94c65a6c2bd..e9f4d9e2dd7 100644
--- a/api/Project.Months.Item.md
+++ b/api/Project.Months.Item.md
@@ -24,7 +24,7 @@ Gets a single **Month** object from the **Months** collection. Read-only **Mont
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.OutlineCodes.Add.md b/api/Project.OutlineCodes.Add.md
index b5c98af28ce..635a00793c3 100644
--- a/api/Project.OutlineCodes.Add.md
+++ b/api/Project.OutlineCodes.Add.md
@@ -24,12 +24,12 @@ Adds an **OutlineCode** object to an **OutlineCodes** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FieldID_|Required|**Long**| Specifies the type of custom field for the outline code. Can be one of the **[PjCustomField](Project.PjCustomField.md)** constants.|
| _Name_|Required|**String**|The name of the outline code to add.|
-### Return Value
+### Return value
**OutlineCode**
diff --git a/api/Project.OutlineCodes.Item.md b/api/Project.OutlineCodes.Item.md
index f505e000c2d..48265f4499f 100644
--- a/api/Project.OutlineCodes.Item.md
+++ b/api/Project.OutlineCodes.Item.md
@@ -24,7 +24,7 @@ Gets a single **OutlineCode** object from the **OutlineCodes** collection. Read
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.OverAllocatedAssignments.Item.md b/api/Project.OverAllocatedAssignments.Item.md
index 9f615e3142b..0939f083067 100644
--- a/api/Project.OverAllocatedAssignments.Item.md
+++ b/api/Project.OverAllocatedAssignments.Item.md
@@ -24,7 +24,7 @@ Gets a single **Assignment** object from the **OverAllocatedAssignments** colle
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Long**|The index number of the **Assignment** to return.|
diff --git a/api/Project.PJTaskOutlineShowLevel.md b/api/Project.PJTaskOutlineShowLevel.md
index 24ff4ec4d43..a7b78e1b515 100644
--- a/api/Project.PJTaskOutlineShowLevel.md
+++ b/api/Project.PJTaskOutlineShowLevel.md
@@ -14,7 +14,7 @@ Contains constants that specify the task outline levels to display.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjTaskOutlineShowLevel1**|1|Display level 1.|
|**pjTaskOutlineShowLevel2**|2|Display levels 1 and 2.|
diff --git a/api/Project.Pane.Close.md b/api/Project.Pane.Close.md
index 8291d22404a..531de80f01c 100644
--- a/api/Project.Pane.Close.md
+++ b/api/Project.Pane.Close.md
@@ -20,7 +20,7 @@ Closes the bottom pane of a window.
_expression_ An expression that returns a [Pane](./Project.Pane.md) object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Project.Pane.View.md b/api/Project.Pane.View.md
index b254e16ec15..7ec0aa5e430 100644
--- a/api/Project.Pane.View.md
+++ b/api/Project.Pane.View.md
@@ -20,7 +20,7 @@ Returns the active **View** object.
_expression_ A variable that represents a [Pane](./Project.Pane.md) object.
-### Return Value
+### Return value
**View**
diff --git a/api/Project.PayRates.Add.md b/api/Project.PayRates.Add.md
index 19547e8b23e..a448c2f5cb2 100644
--- a/api/Project.PayRates.Add.md
+++ b/api/Project.PayRates.Add.md
@@ -24,14 +24,14 @@ Adds a **PayRate** object to a **PayRates** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _EffectiveDate_|Required|**Variant**|The date the new rate comes into effect.|
| _StdRate_|Optional|**Variant**|The new standard rate. If not specified, the rate is the same as for the previous date period.|
| _OvtRate_|Optional|**Variant**|The new overtime rate. If not specified, the rate is the same as for the previous date period.|
| _CostPerUse_|Optional|**Variant**|The new cost per use. If not specified, the rate is the same as for the previous date period.|
-### Return Value
+### Return value
**PayRate**
diff --git a/api/Project.PayRates.Item.md b/api/Project.PayRates.Item.md
index cba817f2bf3..ace1dcc411d 100644
--- a/api/Project.PayRates.Item.md
+++ b/api/Project.PayRates.Item.md
@@ -24,7 +24,7 @@ Gets a single **PayRate** object from the **PayRates** collection. Read-only **
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.PjAccountType.md b/api/Project.PjAccountType.md
index 933b273abcc..0ef02859f31 100644
--- a/api/Project.PjAccountType.md
+++ b/api/Project.PjAccountType.md
@@ -14,7 +14,7 @@ Contains constants that specify the Project Server account type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjManagerAccount**|1|Manager account.|
|**pjResourceAccount**|0|Resource account.|
diff --git a/api/Project.PjAccrueAt.md b/api/Project.PjAccrueAt.md
index 5d12c5b993f..15e5647077d 100644
--- a/api/Project.PjAccrueAt.md
+++ b/api/Project.PjAccrueAt.md
@@ -14,7 +14,7 @@ Contains constants that specify how the cost of a resource is accrued.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjEnd**|2|Task accrues the resource cost when the task ends.|
|**pjProrated**|3|Task accrues the resource cost as the task progresses.|
diff --git a/api/Project.PjAlign.md b/api/Project.PjAlign.md
index dd552d2f7a7..01821d54189 100644
--- a/api/Project.PjAlign.md
+++ b/api/Project.PjAlign.md
@@ -14,7 +14,7 @@ Contains constants that specify which side or portion of a box to use for the al
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAlignBottoms**|5|Aligns the bottom edges of the boxes.|
|**pjAlignCenters**|1|Aligns the boxes vertically.|
diff --git a/api/Project.PjAlignment.md b/api/Project.PjAlignment.md
index c954392e492..2b2a2412556 100644
--- a/api/Project.PjAlignment.md
+++ b/api/Project.PjAlignment.md
@@ -14,7 +14,7 @@ Contains constants that specify how data is aligned in a container, for example
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCenter**|1|Align data in the center.|
|**pjLeft**|0|Align data at the left.|
diff --git a/api/Project.PjAssignResourcesListFields.md b/api/Project.PjAssignResourcesListFields.md
index a0af1572989..b9867971914 100644
--- a/api/Project.PjAssignResourcesListFields.md
+++ b/api/Project.PjAssignResourcesListFields.md
@@ -14,7 +14,7 @@ Contains constants that specify the fields listing data.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAllColumns**|2|All columns.|
|**pjBasic**|1|Basic columns.|
diff --git a/api/Project.PjAssignmentField.md b/api/Project.PjAssignmentField.md
index df2dd478399..3cc0eb54f06 100644
--- a/api/Project.PjAssignmentField.md
+++ b/api/Project.PjAssignmentField.md
@@ -14,7 +14,7 @@ Contains constants that specify an assignment field in the Project database. For
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAssignmentActualCost**|255852572|Represents the Actual Cost (Assignment) field.|
|**pjAssignmentActualFinish**|255852567|Represents the Actual Finish (Assignment) field.|
diff --git a/api/Project.PjAssignmentReplanAction.md b/api/Project.PjAssignmentReplanAction.md
index cc34b3cfa81..e3e71e478ce 100644
--- a/api/Project.PjAssignmentReplanAction.md
+++ b/api/Project.PjAssignmentReplanAction.md
@@ -14,7 +14,7 @@ Contains constants that specify the replan action for assignments.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjConstrainToMaxUnitsByDecreasingWork**|1|Constrain assignments to the maximum units by decreasing work.|
|**pjConstrainToMaxUnitsByIncreasingDuration**|0|Constrain assignments to the maximum units by increasing duration.|
diff --git a/api/Project.PjAssignmentTimescaledData.md b/api/Project.PjAssignmentTimescaledData.md
index af9590b6c91..377e1b78462 100644
--- a/api/Project.PjAssignmentTimescaledData.md
+++ b/api/Project.PjAssignmentTimescaledData.md
@@ -14,7 +14,7 @@ Contains constants that specify a field for timescaled data in the Project datab
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAssignmentTimescaledActualCost**|28|Represents the Actual Cost (Assignment) field. |
|**pjAssignmentTimescaledActualOvertimeWork**|13|Represents the Actual Overtime Work (Assignment) field.|
diff --git a/api/Project.PjAssignmentUnits.md b/api/Project.PjAssignmentUnits.md
index 674e8da28c8..ee53bca28ec 100644
--- a/api/Project.PjAssignmentUnits.md
+++ b/api/Project.PjAssignmentUnits.md
@@ -14,7 +14,7 @@ Contains constants that specify assignment units.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDecimalAssignmentUnits**|1|Decimal.|
|**pjPercentageAssignmentUnits**|0|Percentage.|
diff --git a/api/Project.PjAuthentication.md b/api/Project.PjAuthentication.md
index 47c26aaf8cc..7daa1c81713 100644
--- a/api/Project.PjAuthentication.md
+++ b/api/Project.PjAuthentication.md
@@ -14,7 +14,7 @@ Contains constants that specify how the user is authenticated.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjUserName**|0|Authenticated by user name.|
|**pjWindowsUserAccount**|1|Authenticated by user Windows account.|
diff --git a/api/Project.PjAutoFilterType.md b/api/Project.PjAutoFilterType.md
index 3f3c6a4f3ec..a9919f806a1 100644
--- a/api/Project.PjAutoFilterType.md
+++ b/api/Project.PjAutoFilterType.md
@@ -14,7 +14,7 @@ Contains constants that specify how to set the automatic filter.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAutoFilter1DayOrLess**|22|Filter for items that are one day or shorter.|
|**pjAutoFilter1WeekOrLonger**|24|Filter for items that are one week or longer.|
diff --git a/api/Project.PjAutomaticSaveOptions.md b/api/Project.PjAutomaticSaveOptions.md
index 19bdb12d188..d4c49aef797 100644
--- a/api/Project.PjAutomaticSaveOptions.md
+++ b/api/Project.PjAutomaticSaveOptions.md
@@ -14,7 +14,7 @@ Contains constants that specify the files to save.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAutomaticSaveActiveProjectOnly**|1|Save only the active files.|
|**pjAutomaticSaveAllOpenProjectFiles**|2|Save all the open files.|
diff --git a/api/Project.PjBackgroundPattern.md b/api/Project.PjBackgroundPattern.md
index 213b02f8dd7..71c0c231ce1 100644
--- a/api/Project.PjBackgroundPattern.md
+++ b/api/Project.PjBackgroundPattern.md
@@ -14,7 +14,7 @@ Contains constants that specify the background pattern.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjBackgroundDarkDiagonalLeft**|7|Dark diagonal left.|
|**pjBackgroundDarkDiagonalRight**|8|Dark diagonal right.|
diff --git a/api/Project.PjBarEndShape.md b/api/Project.PjBarEndShape.md
index 538ba9ac3bc..642a9f08bb8 100644
--- a/api/Project.PjBarEndShape.md
+++ b/api/Project.PjBarEndShape.md
@@ -14,7 +14,7 @@ Contains constants that specify the shape of a task bar on a Gantt chart.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjArrowDown**|14|Arrow pointing down.|
|**pjArrowUp**|8|Arrow pointing up.|
diff --git a/api/Project.PjBarItem.md b/api/Project.PjBarItem.md
index fe231f5b25b..04ccb97a3f5 100644
--- a/api/Project.PjBarItem.md
+++ b/api/Project.PjBarItem.md
@@ -17,7 +17,7 @@ Contains constants that specify a bar item type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjBarCritical**|1|Critical bar item.|
|**pjBarExternalTask**|8|External task bar item.|
diff --git a/api/Project.PjBarShape.md b/api/Project.PjBarShape.md
index cf1f0b2841d..f949e27e54b 100644
--- a/api/Project.PjBarShape.md
+++ b/api/Project.PjBarShape.md
@@ -14,7 +14,7 @@ Contains constants that specify the middle shape of a bar.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjLineBottom**|7|Bottom line.|
|**pjLineMiddle**|6|Middle line.|
diff --git a/api/Project.PjBarSize.md b/api/Project.PjBarSize.md
index bbcdb6f9b2a..7a25ef0d81a 100644
--- a/api/Project.PjBarSize.md
+++ b/api/Project.PjBarSize.md
@@ -14,7 +14,7 @@ Contains constants that specify the height of a bar in points.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjBarSize10**|10|Bar size 10 points.|
|**pjBarSize12**|12|Bar size 12 points.|
diff --git a/api/Project.PjBarType.md b/api/Project.PjBarType.md
index ce7f9f1e16b..b6785058c74 100644
--- a/api/Project.PjBarType.md
+++ b/api/Project.PjBarType.md
@@ -14,7 +14,7 @@ Contains constants that specify the bar type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDashed**|2|Dashed.|
|**pjFramed**|1|Framed.|
diff --git a/api/Project.PjBaselines.md b/api/Project.PjBaselines.md
index 445a1fea2b8..3fec62f6564 100644
--- a/api/Project.PjBaselines.md
+++ b/api/Project.PjBaselines.md
@@ -14,7 +14,7 @@ Contains constants that specify a baseline.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjBaseline**|0|Baseline.|
|**pjBaseline1**|1|Baseline1.|
diff --git a/api/Project.PjBookingTypes.md b/api/Project.PjBookingTypes.md
index d17185eaaf3..79a16999588 100644
--- a/api/Project.PjBookingTypes.md
+++ b/api/Project.PjBookingTypes.md
@@ -14,7 +14,7 @@ Contains constants that specify the booking type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjBookingTypeCommitted**|0|Committed.|
|**pjBookingTypeProposed**|1|Proposed.|
diff --git a/api/Project.PjBorder.md b/api/Project.PjBorder.md
index aebfc1f56cd..6a6094adeec 100644
--- a/api/Project.PjBorder.md
+++ b/api/Project.PjBorder.md
@@ -14,7 +14,7 @@ Contains constants that specify the type borders.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAroundEveryPage**|1|Around every page.|
|**pjNoBorder**|0|No border.|
diff --git a/api/Project.PjBoxSet.md b/api/Project.PjBoxSet.md
index bf2210a1e22..6f262035497 100644
--- a/api/Project.PjBoxSet.md
+++ b/api/Project.PjBoxSet.md
@@ -14,7 +14,7 @@ Contains constants that specify the creation, selection, or movement of a task i
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjBoxAddToSelection**|0|Selects the task, retaining any existing selection.|
|**pjBoxCreate**|1|Creates a new task, clearing any existing selection.|
diff --git a/api/Project.PjBoxShape.md b/api/Project.PjBoxShape.md
index 2fa732bb702..c137d19bbfc 100644
--- a/api/Project.PjBoxShape.md
+++ b/api/Project.PjBoxShape.md
@@ -14,7 +14,7 @@ Contains constants that specify the shape of a box.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjBoxCapsule**|4|Capsule.|
|**pjBoxDownTrapezoid**|9|Down trapezoid.|
diff --git a/api/Project.PjBoxStyle.md b/api/Project.PjBoxStyle.md
index 2fab157e443..6ff19e2c804 100644
--- a/api/Project.PjBoxStyle.md
+++ b/api/Project.PjBoxStyle.md
@@ -14,7 +14,7 @@ Contains constants that specify the box style.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjBoxCritical**|0|Critical style.|
|**pjBoxCriticalExternalTask**|10|Critical external task style.|
diff --git a/api/Project.PjCalculation.md b/api/Project.PjCalculation.md
index 4a3f7732153..d39b0f07d50 100644
--- a/api/Project.PjCalculation.md
+++ b/api/Project.PjCalculation.md
@@ -14,7 +14,7 @@ Contains constants that specify the calculation mode.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAutomatic**|-1|Automatic.|
|**pjManual**|0|Manual.|
diff --git a/api/Project.PjCalendarBarType.md b/api/Project.PjCalendarBarType.md
index c33f24211d0..1054498b4af 100644
--- a/api/Project.PjCalendarBarType.md
+++ b/api/Project.PjCalendarBarType.md
@@ -14,7 +14,7 @@ Contains constants that specify a calendar bar type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjLineBar**|1|Line bar.|
|**pjNoBar**|2|No bar.|
diff --git a/api/Project.PjCalendarDateLabel.md b/api/Project.PjCalendarDateLabel.md
index 6e4f1a6458c..98da86fc073 100644
--- a/api/Project.PjCalendarDateLabel.md
+++ b/api/Project.PjCalendarDateLabel.md
@@ -14,7 +14,7 @@ Contains constants that specify the format for top and bottom date panes of each
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCalendarLabelDay_ddd**|19|Examples: Mon, Tue.|
|**pjCalendarLabelDay_ddd_dd**|105|Examples: Mon 30, Tue 1.|
diff --git a/api/Project.PjCalendarShading.md b/api/Project.PjCalendarShading.md
index 846a4217b48..2181dd07c2e 100644
--- a/api/Project.PjCalendarShading.md
+++ b/api/Project.PjCalendarShading.md
@@ -14,7 +14,7 @@ Contains constants that specify shading in the Calendar.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjBaseNondefaultWorking**|2|In a base calendar, working days for which the working hours differ from the default working hours.|
|**pjBaseNonworking**|1|Nonworking days in a base calendar.|
diff --git a/api/Project.PjCalendarType.md b/api/Project.PjCalendarType.md
index 569d9c45521..e07b584f92d 100644
--- a/api/Project.PjCalendarType.md
+++ b/api/Project.PjCalendarType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of calandar.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjGregorianCalendar**|1|Gregorian Calendar.|
|**pjHijriCalendar**|6|Hijri Calendar.|
diff --git a/api/Project.PjCell.md b/api/Project.PjCell.md
index 1668820c095..18ed48ab84a 100644
--- a/api/Project.PjCell.md
+++ b/api/Project.PjCell.md
@@ -14,7 +14,7 @@ Contains constants that specify a cell.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCell1_1**|0|Column 1, row 1.|
|**pjCell1_2**|4|Column 1, row 2.|
diff --git a/api/Project.PjCheckOutType.md b/api/Project.PjCheckOutType.md
index 2862e6659d8..9170494746f 100644
--- a/api/Project.PjCheckOutType.md
+++ b/api/Project.PjCheckOutType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of checkout.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjReadOnly**|0|Check out as read-only.|
|**pjReadWrite**|1|Check out as read/write.|
diff --git a/api/Project.PjColor.md b/api/Project.PjColor.md
index 72b60520b9d..62cd4676e31 100644
--- a/api/Project.PjColor.md
+++ b/api/Project.PjColor.md
@@ -14,7 +14,7 @@ Contains constants that specify a color.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAqua**|4|Color is aqua.|
|**pjBlack**|0|Color is black.|
diff --git a/api/Project.PjCommitmentTaskLinkType.md b/api/Project.PjCommitmentTaskLinkType.md
index 5ff08fe7cc8..e2c09c38170 100644
--- a/api/Project.PjCommitmentTaskLinkType.md
+++ b/api/Project.PjCommitmentTaskLinkType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of task link for a deliverable.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjNoLink**|0|No task link.|
|**pjTargetFinish**|2|A link that targets the date the task deliverable ends.|
diff --git a/api/Project.PjCompareVersionColumns.md b/api/Project.PjCompareVersionColumns.md
index 865d37fdab1..41295c2f5cf 100644
--- a/api/Project.PjCompareVersionColumns.md
+++ b/api/Project.PjCompareVersionColumns.md
@@ -14,7 +14,7 @@ Contains constants that specify how to compare views of project versions.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCompareVersionColumnsDataAndDifferences**|0|Show both column differences and column data.|
|**pjCompareVersionColumnsDataOnly**|1|Show only column data.|
diff --git a/api/Project.PjCompareVersionItems.md b/api/Project.PjCompareVersionItems.md
index 0a03f0cd0c5..87e697aaf11 100644
--- a/api/Project.PjCompareVersionItems.md
+++ b/api/Project.PjCompareVersionItems.md
@@ -14,7 +14,7 @@ Contains constants that specify how to compare items when comparing two project
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCompareVersionItemsAllDifferences**|0|Show all differences.|
|**pjCompareVersionItemsAllItems**|6|Show all items.|
diff --git a/api/Project.PjComparison.md b/api/Project.PjComparison.md
index 07d15d065f9..da0f158de73 100644
--- a/api/Project.PjComparison.md
+++ b/api/Project.PjComparison.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of comparsion.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCompareAnyValue**|11|The custom field's value can be anything.|
|**pjCompareContains**|7|The custom field's value contains **Value**.|
diff --git a/api/Project.PjConstraint.md b/api/Project.PjConstraint.md
index 8f99a82458c..b0b949cbe66 100644
--- a/api/Project.PjConstraint.md
+++ b/api/Project.PjConstraint.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of constraint.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjALAP**|1|Task occurs as late as possible in the schedule without delaying subsequent tasks.|
|**pjASAP**|0|Task occurs as soon as possible in the schedule. This is the default constraint type for tasks.|
diff --git a/api/Project.PjCopyPictureFor.md b/api/Project.PjCopyPictureFor.md
index 6c8140548fe..261f03ae5e7 100644
--- a/api/Project.PjCopyPictureFor.md
+++ b/api/Project.PjCopyPictureFor.md
@@ -14,7 +14,7 @@ Contains constants that specify the intended target of the copy of a picture.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjGIF**|2|For a Graphics Interchange Format (GIF) image.|
|**pjPrinter**|1|For a printer.|
diff --git a/api/Project.PjCopyPictureRows.md b/api/Project.PjCopyPictureRows.md
index ea73c7626ab..26aecef840c 100644
--- a/api/Project.PjCopyPictureRows.md
+++ b/api/Project.PjCopyPictureRows.md
@@ -14,7 +14,7 @@ Contains constants that specify which rows to copy to a picture.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCopyOnScreen**|0|Copy all rows that have content.|
|**pjCopySelected**|1|Copy only selected rows.|
diff --git a/api/Project.PjCopyPictureScaleOption.md b/api/Project.PjCopyPictureScaleOption.md
index 3aaf2387d56..7b4ddf60391 100644
--- a/api/Project.PjCopyPictureScaleOption.md
+++ b/api/Project.PjCopyPictureScaleOption.md
@@ -14,7 +14,7 @@ Contains constants that specify how to treat a picture of the active view if it
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCopyPictureKeepRange**|1|Maintains the selection, regardless of size. If the picture exceeds the amount of available memory, it is cropped to the maximum available size.|
|**pjCopyPictureScale**|2|Scales the picture to **MaxImageWidth** by **MaxImageHeight MeasurementUnits** without maintaining the aspect ratio.|
diff --git a/api/Project.PjCostRateTable.md b/api/Project.PjCostRateTable.md
index 1d7aa91adad..5a577741003 100644
--- a/api/Project.PjCostRateTable.md
+++ b/api/Project.PjCostRateTable.md
@@ -14,7 +14,7 @@ Contains constants that specify one of the five resource cost rate tables.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCostRateTableA**|0|Cost rate table A.|
|**pjCostRateTableB**|1|Cost rate table B.|
diff --git a/api/Project.PjCriteriaList.md b/api/Project.PjCriteriaList.md
index 317ec47a15c..156199c0da5 100644
--- a/api/Project.PjCriteriaList.md
+++ b/api/Project.PjCriteriaList.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of task where a custom field indicator
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCriteriaNonSummary**|0|Tasks are not summary tasks.|
|**pjCriteriaProjectSummary**|2|The task is the project summary task (task ID 0).|
diff --git a/api/Project.PjCustomField.md b/api/Project.PjCustomField.md
index c6624b8980e..475023ada16 100644
--- a/api/Project.PjCustomField.md
+++ b/api/Project.PjCustomField.md
@@ -14,7 +14,7 @@ Contains constants that specify a custom field in Project.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCustomProjectEnterpriseCost1**|188744529|Represents the Custom Enterprise Cost1 (Project) field.|
|**pjCustomProjectEnterpriseCost10**|188744538|Represents the Custom Enterprise Cost10 (Project) field.|
diff --git a/api/Project.PjCustomFieldAttribute.md b/api/Project.PjCustomFieldAttribute.md
index 4ed68e29c96..254e9361e24 100644
--- a/api/Project.PjCustomFieldAttribute.md
+++ b/api/Project.PjCustomFieldAttribute.md
@@ -14,7 +14,7 @@ Contains constants that specify a field attribute.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjFieldAttributeFormula**|1|Foumula.|
|**pjFieldAttributeNone**|0|None.|
diff --git a/api/Project.PjCustomFieldType.md b/api/Project.PjCustomFieldType.md
index 1a41dbd909a..09cd4406684 100644
--- a/api/Project.PjCustomFieldType.md
+++ b/api/Project.PjCustomFieldType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of a custom field.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCostCustomField**|0|Cost.|
|**pjDateCustomField**|1|Date.|
diff --git a/api/Project.PjCustomOutlineCodeSequence.md b/api/Project.PjCustomOutlineCodeSequence.md
index c23332c3491..6a552383598 100644
--- a/api/Project.PjCustomOutlineCodeSequence.md
+++ b/api/Project.PjCustomOutlineCodeSequence.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of the outline code sequence.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCustomOutlineCodeCharacters**|3|Characters.|
|**pjCustomOutlineCodeLowercaseLetters**|2|Lowercase letters.|
diff --git a/api/Project.PjCustomizeMailAction.md b/api/Project.PjCustomizeMailAction.md
index 03d456382fa..d1636a8508a 100644
--- a/api/Project.PjCustomizeMailAction.md
+++ b/api/Project.PjCustomizeMailAction.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of action. Obsolete.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjMailDefineField**|2|Field definitions.|
|**pjMailEndFields**|0|Number of fields.|
diff --git a/api/Project.PjDataCategories.md b/api/Project.PjDataCategories.md
index 97f100dd7a2..23c77a7b7e3 100644
--- a/api/Project.PjDataCategories.md
+++ b/api/Project.PjDataCategories.md
@@ -14,7 +14,7 @@ Contains constants that specify the category of data.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjMapAssignments**|2|Map assignments.|
|**pjMapResources**|1|Map resources.|
diff --git a/api/Project.PjDataTemplate.md b/api/Project.PjDataTemplate.md
index d21f5be2162..306ca1d49e1 100644
--- a/api/Project.PjDataTemplate.md
+++ b/api/Project.PjDataTemplate.md
@@ -14,7 +14,7 @@ Contains constants that specify the operation to be performed on a box data temp
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDataTemplateCopy**|1|Copy the template.|
|**pjDataTemplateDelete**|3|Delete the template.|
diff --git a/api/Project.PjDateFormat.md b/api/Project.PjDateFormat.md
index fc50f528e1a..0cf81bd6bae 100644
--- a/api/Project.PjDateFormat.md
+++ b/api/Project.PjDateFormat.md
@@ -14,7 +14,7 @@ Contains constants that specify the date format. The following table shows vario
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDate_dd**|13|30|
|**pjDate_ddd_dd**|17|Tue 30|
diff --git a/api/Project.PjDateLabel.md b/api/Project.PjDateLabel.md
index 6a025f06ba1..8da55a39574 100644
--- a/api/Project.PjDateLabel.md
+++ b/api/Project.PjDateLabel.md
@@ -14,7 +14,7 @@ Contains constants that specify the display format for date and time labels in a
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDay_ddd**|19|Examples: Mon, Tue. Requires the time unit to be **pjTimescaleDays**.|
|**pjDay_ddd_dd**|105|Examples: Mon 30, Tue 1|
diff --git a/api/Project.PjDateOrder.md b/api/Project.PjDateOrder.md
index dc35431ae76..4354d72511c 100644
--- a/api/Project.PjDateOrder.md
+++ b/api/Project.PjDateOrder.md
@@ -14,7 +14,7 @@ Contains constants that specify the order of a date value.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDayMonthYear**|0|Order is the day, the month, and then the year.|
|**pjMonthDayYear**|1|Order is the month, the day, and then the year.|
diff --git a/api/Project.PjDayLabel.md b/api/Project.PjDayLabel.md
index 0710f1ab796..85ac678b2bd 100644
--- a/api/Project.PjDayLabel.md
+++ b/api/Project.PjDayLabel.md
@@ -14,7 +14,7 @@ Contains constants that specify the display format for days in a timescale.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDayLabelDay_ddd**|19|Examples: Mon, Tue|
|**pjDayLabelDay_dddd**|18|Examples: Monday, Tuesday|
diff --git a/api/Project.PjDialog.md b/api/Project.PjDialog.md
index e3e996dd3a7..187487da1f6 100644
--- a/api/Project.PjDialog.md
+++ b/api/Project.PjDialog.md
@@ -14,7 +14,7 @@ Contains constants that specify the dialog box to activate.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjResourceAssignment**|4087|**Resource Assignment** dialog box.|
diff --git a/api/Project.PjDocExportType.md b/api/Project.PjDocExportType.md
index 9b53990d7fc..98ca3ede1ba 100644
--- a/api/Project.PjDocExportType.md
+++ b/api/Project.PjDocExportType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of document export.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjPDF**|0|Export to a PDF document.|
|**pjXPS**|1|Export to an XPS document.|
diff --git a/api/Project.PjEarnedValueMethod.md b/api/Project.PjEarnedValueMethod.md
index 53653aa5cfd..faab1818fc6 100644
--- a/api/Project.PjEarnedValueMethod.md
+++ b/api/Project.PjEarnedValueMethod.md
@@ -14,7 +14,7 @@ Contains constants that specify the way that earned value is calculated.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjPercentComplete**|0|Percent complete.|
|**pjPhysicalPercentComplete**|1|Percent complete physically.|
diff --git a/api/Project.PjEditionType.md b/api/Project.PjEditionType.md
index af5523ab202..0bff878dadb 100644
--- a/api/Project.PjEditionType.md
+++ b/api/Project.PjEditionType.md
@@ -14,7 +14,7 @@ Contains constants that specify the edition of Project.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjEditionProfessional**|1|Professional edition.|
|**pjEditionStandard**|0|Standard edition.|
diff --git a/api/Project.PjEnableCancelKey.md b/api/Project.PjEnableCancelKey.md
index f31df1f7595..4a33634840e 100644
--- a/api/Project.PjEnableCancelKey.md
+++ b/api/Project.PjEnableCancelKey.md
@@ -14,7 +14,7 @@ Contains constants that specify how to handle the ** CTRL+BREAK** key combinatio
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDisabled**|0|**CTRL+BREAK** is ignored.|
|**pjErrorHandler**|2|Sends the interrupt to the macro as a trappable error. The error code is 18.|
diff --git a/api/Project.PjExceptionItem.md b/api/Project.PjExceptionItem.md
index dcd24334b1f..d3b6816bd2a 100644
--- a/api/Project.PjExceptionItem.md
+++ b/api/Project.PjExceptionItem.md
@@ -14,7 +14,7 @@ Contains constants that specify the day on which a calendar exception occurs.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjItemFriday**|8|The exception occurs on a Friday.|
|**pjItemMonday**|4|The exception occurs on a Monday.|
diff --git a/api/Project.PjExceptionPosition.md b/api/Project.PjExceptionPosition.md
index 541e87e975e..5dce921c20f 100644
--- a/api/Project.PjExceptionPosition.md
+++ b/api/Project.PjExceptionPosition.md
@@ -14,7 +14,7 @@ Contains constants that specify the week in a month in which an exception occurs
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjFirst**|0|First week of the month.|
|**pjFourth**|3|Fourth week of the month.|
diff --git a/api/Project.PjExceptionType.md b/api/Project.PjExceptionType.md
index 20d334dae8c..57de66be2f6 100644
--- a/api/Project.PjExceptionType.md
+++ b/api/Project.PjExceptionType.md
@@ -14,7 +14,7 @@ Contains constants that specify a type of calendar exception.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDaily**|1|The exception recurrence pattern is daily.|
|**pjDayCount**|7|The exception daily recurrence ends after a specified number of occurrences.|
diff --git a/api/Project.PjField.md b/api/Project.PjField.md
index ccde5d1611e..5c6b6c9188a 100644
--- a/api/Project.PjField.md
+++ b/api/Project.PjField.md
@@ -14,7 +14,7 @@ Contains constants that specify a resource or task field in Project.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjImportResource**|205521651|Represents the Import (Resource) field. |
|**pjResourceAccrueAt**|205520915|Represents the Accrue At (Resource) field. |
diff --git a/api/Project.PjFieldType.md b/api/Project.PjFieldType.md
index 9cde641bcac..582ca68d1b9 100644
--- a/api/Project.PjFieldType.md
+++ b/api/Project.PjFieldType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of entity for a field.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjProject**|2|Project entity.|
|**pjResource**|1|Resouce entity.|
diff --git a/api/Project.PjFieldTypes.md b/api/Project.PjFieldTypes.md
index 02e7bfa8459..904b5f8de24 100644
--- a/api/Project.PjFieldTypes.md
+++ b/api/Project.PjFieldTypes.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of custom field.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCostField**|0|Cost custom field.|
|**pjDateField**|1|Date custom field.|
diff --git a/api/Project.PjFileFormat.md b/api/Project.PjFileFormat.md
index bbb3dfc13c4..0e078816bf4 100644
--- a/api/Project.PjFileFormat.md
+++ b/api/Project.PjFileFormat.md
@@ -14,7 +14,7 @@ Contains constants that specify the file format.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCSV**|4|Comma separated value (CSV) file.|
|**pjMPP**|0|Project or Project file.|
diff --git a/api/Project.PjFillPattern.md b/api/Project.PjFillPattern.md
index 59c97311c4b..381a6ab1d08 100644
--- a/api/Project.PjFillPattern.md
+++ b/api/Project.PjFillPattern.md
@@ -14,7 +14,7 @@ Contains constants that specify a fill pattern.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDarkFillPattern**|4|Dark fill pattern.|
|**pjDiagonalCrossPattern**|7|Diagonal cross pattern.|
diff --git a/api/Project.PjFilterViewType.md b/api/Project.PjFilterViewType.md
index 5877c82f51f..a7068d46e3d 100644
--- a/api/Project.PjFilterViewType.md
+++ b/api/Project.PjFilterViewType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of filter for a view.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjFilterViewTypeResource**|1|Resource view type.|
|**pjFilterViewTypeTask**|0|Task view type.|
diff --git a/api/Project.PjFormatUnit.md b/api/Project.PjFormatUnit.md
index 60174337748..bece5f563ad 100644
--- a/api/Project.PjFormatUnit.md
+++ b/api/Project.PjFormatUnit.md
@@ -14,7 +14,7 @@ Contains constants that specify the format of the units.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDays**|7|Days.|
|**pjDaysEstimated**|39|Estimated days.|
diff --git a/api/Project.PjGanttBarLink.md b/api/Project.PjGanttBarLink.md
index 3856d58fd56..5f40f4e39a7 100644
--- a/api/Project.PjGanttBarLink.md
+++ b/api/Project.PjGanttBarLink.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of Gnatt bar links.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjNoGanttBarLinks**|0|No Gantt bar links.|
|**pjToEnd**|2|At the end.|
diff --git a/api/Project.PjGridline.md b/api/Project.PjGridline.md
index 1d1b0914a7b..ec77a2e9cb6 100644
--- a/api/Project.PjGridline.md
+++ b/api/Project.PjGridline.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of gridline.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjBarRows**|1|Bar rows.|
|**pjCalendarDays**|0|Calendar days.|
diff --git a/api/Project.PjGroupOn.md b/api/Project.PjGroupOn.md
index fbba6721d58..858e869e617 100644
--- a/api/Project.PjGroupOn.md
+++ b/api/Project.PjGroupOn.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of grouping.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjGroupOnDateDay**|13|Group on date by day.|
|**pjDateEachValue**|10|Group on date for each value.|
diff --git a/api/Project.PjIMEMode.md b/api/Project.PjIMEMode.md
index e580a7423fd..1932c117259 100644
--- a/api/Project.PjIMEMode.md
+++ b/api/Project.PjIMEMode.md
@@ -14,7 +14,7 @@ Contains constants that specify the Input Method Editor (IME) mode.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjIMEModeAlpha**|8|Alpha mode.|
|**pjIMEModeAlphaFull**|7|Full alpha mode.|
diff --git a/api/Project.PjImportMethods.md b/api/Project.PjImportMethods.md
index a17ed2fb16c..d490f3681b8 100644
--- a/api/Project.PjImportMethods.md
+++ b/api/Project.PjImportMethods.md
@@ -14,7 +14,7 @@ Contains constants that specify the method to use when importing data.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjImportAppend**|1|Imported data is appended to the end of the active project.|
|**pjImportMerge**|2|Imported data is merged into the active project.|
diff --git a/api/Project.PjIndicator.md b/api/Project.PjIndicator.md
index 929bac0eeb0..19d2d63fe7e 100644
--- a/api/Project.PjIndicator.md
+++ b/api/Project.PjIndicator.md
@@ -14,7 +14,7 @@ Contains constants that specify a graphical indicator.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjIndicatorArrowDouble**|42|The indicator is a double arrow.|
|**pjIndicatorArrowDown**|44|The indicator is a down arrow.|
diff --git a/api/Project.PjInformationTab.md b/api/Project.PjInformationTab.md
index 5925213083b..85300e05afc 100644
--- a/api/Project.PjInformationTab.md
+++ b/api/Project.PjInformationTab.md
@@ -14,7 +14,7 @@ Contains constants that specify which information tab to display.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAssignmentGeneralTab**|0|General tab of the Assignment Information dialog box.|
|**pjAssignmentNotesTab**|2|Notes tab of the Assignment Information dialog box.|
diff --git a/api/Project.PjIsCommandEnabled.md b/api/Project.PjIsCommandEnabled.md
index 4513e244117..2bf3bc6209e 100644
--- a/api/Project.PjIsCommandEnabled.md
+++ b/api/Project.PjIsCommandEnabled.md
@@ -14,7 +14,7 @@ Contains constants that specify whether a command is enabled.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCommandDisabled**|1|The command is disabled.|
|**pjCommandEnabled**|0|The command is enabled.|
diff --git a/api/Project.PjItemType.md b/api/Project.PjItemType.md
index 916c8fef5a1..be83c99069c 100644
--- a/api/Project.PjItemType.md
+++ b/api/Project.PjItemType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of an item.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjOtherItem**|2|Other item.|
|**pjResourceItem**|1|Resource item.|
diff --git a/api/Project.PjLayoutMode.md b/api/Project.PjLayoutMode.md
index 1819c62aacb..7c535e0e75d 100644
--- a/api/Project.PjLayoutMode.md
+++ b/api/Project.PjLayoutMode.md
@@ -14,7 +14,7 @@ Contains constants that specify the layout mode.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjLayoutAutomatic**|1|Layout is done automatically.|
|**pjLayoutManual**|2|Layout is done manually.|
diff --git a/api/Project.PjLayoutScheme.md b/api/Project.PjLayoutScheme.md
index 2f6733425a3..3072ed991e5 100644
--- a/api/Project.PjLayoutScheme.md
+++ b/api/Project.PjLayoutScheme.md
@@ -14,7 +14,7 @@ Contains constants that specify the positioning scheme to use for display.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjLayoutCenteredFromLeft**|5|Layout centered from left.|
|**pjLayoutCenteredFromTop**|6|Layout centered from top.|
diff --git a/api/Project.PjLegacyFileFormats.md b/api/Project.PjLegacyFileFormats.md
index 6ad3f56390e..6bc875a56ac 100644
--- a/api/Project.PjLegacyFileFormats.md
+++ b/api/Project.PjLegacyFileFormats.md
@@ -14,7 +14,7 @@ Constants that specify the action for loading legacy files.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDoNotLoadLegacyFiles**|0|Do not load legacy files.|
|**pjEnableLegacyFilesLoad**|2|Load legacy files.|
diff --git a/api/Project.PjLegend.md b/api/Project.PjLegend.md
index dbc0439fe8e..a6ac2be1afa 100644
--- a/api/Project.PjLegend.md
+++ b/api/Project.PjLegend.md
@@ -14,7 +14,7 @@ Contains constants that specify the pages on which the legend appears.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAfterLastPage**|1|Legend appears after the last page.|
|**pjNoLegend**|0|No legend.|
diff --git a/api/Project.PjLevelOrder.md b/api/Project.PjLevelOrder.md
index 36bc5968369..b9253a40d21 100644
--- a/api/Project.PjLevelOrder.md
+++ b/api/Project.PjLevelOrder.md
@@ -14,7 +14,7 @@ Contains constants that specify the leveling order.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjLevelID**|0|Level ID.|
|**pjLevelPriority**|2|Level priority.|
diff --git a/api/Project.PjLevelPeriodBasis.md b/api/Project.PjLevelPeriodBasis.md
index 1f7054f53db..ed3e192fe2c 100644
--- a/api/Project.PjLevelPeriodBasis.md
+++ b/api/Project.PjLevelPeriodBasis.md
@@ -14,7 +14,7 @@ Contains constants that specify the time period for leveling.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDayByDay**|2|Day by day.|
|**pjHourByHour**|1|Hour by hour.|
diff --git a/api/Project.PjLevelSelectedOption.md b/api/Project.PjLevelSelectedOption.md
index 443f3449eac..d07aa7880d1 100644
--- a/api/Project.PjLevelSelectedOption.md
+++ b/api/Project.PjLevelSelectedOption.md
@@ -14,7 +14,7 @@ Contains constants that specify the leveling option.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjResolveForResource**|1|Resolve leveling for the resource.|
|**pjResolveForSelectedResources**|3|Resolve leveling for the selected resources.|
diff --git a/api/Project.PjLineType.md b/api/Project.PjLineType.md
index 1c9474ded30..603998faaa1 100644
--- a/api/Project.PjLineType.md
+++ b/api/Project.PjLineType.md
@@ -14,7 +14,7 @@ Contains constants that specify a line pattern.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCloseDot**|2|Close dot.|
|**pjContinuous**|1|Continous line.|
diff --git a/api/Project.PjLinkColorMode.md b/api/Project.PjLinkColorMode.md
index 8377f1aea50..8751af4213c 100644
--- a/api/Project.PjLinkColorMode.md
+++ b/api/Project.PjLinkColorMode.md
@@ -14,7 +14,7 @@ Contains constants that specify whether the colors of link lines in a Network Di
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjColorModeCustom**|1|Critical and noncritical colors can be custom values.|
|**pjColorModePredecessor**|2|Critical and noncritical colors are inherited from the predecessor task.|
diff --git a/api/Project.PjLinkStyle.md b/api/Project.PjLinkStyle.md
index 6fac2569c7f..3ed6592a7ff 100644
--- a/api/Project.PjLinkStyle.md
+++ b/api/Project.PjLinkStyle.md
@@ -14,7 +14,7 @@ Contains constants that specify the style of link lines between boxes in a Netwo
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjLinkRectilinear**|2|Lines follow paths along 90? angles.|
|**pjLinkStraight**|1|Lines are straight between boxes.|
diff --git a/api/Project.PjListOrder.md b/api/Project.PjListOrder.md
index 3650d2999c4..bb6a0db3554 100644
--- a/api/Project.PjListOrder.md
+++ b/api/Project.PjListOrder.md
@@ -14,7 +14,7 @@ Contains constants that specify the order in which the items in a list are displ
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjListOrderAscending**|1|Ascending.|
|**pjListOrderDefault**|0|Default.|
diff --git a/api/Project.PjLoginType.md b/api/Project.PjLoginType.md
index 59865cebf2c..d6d6c845116 100644
--- a/api/Project.PjLoginType.md
+++ b/api/Project.PjLoginType.md
@@ -14,7 +14,7 @@ Contains constants that specify the login type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjProjectServerLogin**|2|Project Server.|
|**pjWindowsLogin**|1|Windows.|
diff --git a/api/Project.PjMSApplication.md b/api/Project.PjMSApplication.md
index 169cca29fe7..5ad3da7a58c 100644
--- a/api/Project.PjMSApplication.md
+++ b/api/Project.PjMSApplication.md
@@ -14,7 +14,7 @@ Contains constants that specify the Microsoft application to activate.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjMicrosoftAccess**|3|Microsoft Access.|
|**pjMicrosoftExcel**|5|Microsoft Excel.|
diff --git a/api/Project.PjMailField.md b/api/Project.PjMailField.md
index 765de6000da..16c0ac365aa 100644
--- a/api/Project.PjMailField.md
+++ b/api/Project.PjMailField.md
@@ -14,7 +14,7 @@ Contains constants that specify the mail field. Obsolete.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjMailActualWork**|32773|Represents the Actual Work field. |
|**pjMailComments**|32769|Represents the Comments field.|
diff --git a/api/Project.PjMailSystem.md b/api/Project.PjMailSystem.md
index 40d283705ed..c1833858ad9 100644
--- a/api/Project.PjMailSystem.md
+++ b/api/Project.PjMailSystem.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of e-mail system.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjMAPI**|1|Microsoft Mail.|
|**pjMAPICompatible**|2|E-mail system that is compatible with MAPI .|
diff --git a/api/Project.PjMeasurementUnits.md b/api/Project.PjMeasurementUnits.md
index d3fc072816f..ec9268dfe07 100644
--- a/api/Project.PjMeasurementUnits.md
+++ b/api/Project.PjMeasurementUnits.md
@@ -14,7 +14,7 @@ Contains constants that specify the units of measurement.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCentimeters**|1|The **MaxImageWidth** and **MaxImageHeight** values are in centimeters.|
|**pjDefault**|2|The **MaxImageWidth** and **MaxImageHeight** values are in the default system measurement units. The default **Measurement System** is selected in the **Regional and Language Options** of the **Windows Control Panel**.|
diff --git a/api/Project.PjMergeType.md b/api/Project.PjMergeType.md
index 975f91881dc..f10896ba4d2 100644
--- a/api/Project.PjMergeType.md
+++ b/api/Project.PjMergeType.md
@@ -14,7 +14,7 @@ Contains constants that specify how to merge data.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAppend**|3|Append the data.|
|**pjDoNotMerge**|0|Do not merge.|
diff --git a/api/Project.PjMessageType.md b/api/Project.PjMessageType.md
index 65dea870215..b8b6c757de6 100644
--- a/api/Project.PjMessageType.md
+++ b/api/Project.PjMessageType.md
@@ -14,7 +14,7 @@ Contains constants that specify the buttons to be included in a message dialog b
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjOKCancel**|1|Display **OK** and **Cancel** buttons.|
|**pjOKOnly**|0|Display **OK** button.|
diff --git a/api/Project.PjMonth.md b/api/Project.PjMonth.md
index b8022f99867..dc785eaeaff 100644
--- a/api/Project.PjMonth.md
+++ b/api/Project.PjMonth.md
@@ -14,7 +14,7 @@ Contains constants that specify a month.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjApril**|4|April.|
|**pjAugust**|8|August.|
diff --git a/api/Project.PjMonthLabel.md b/api/Project.PjMonthLabel.md
index b95c1838297..15ba2d7d59b 100644
--- a/api/Project.PjMonthLabel.md
+++ b/api/Project.PjMonthLabel.md
@@ -14,7 +14,7 @@ Contains constants that specify the display format for months in a timescale. Th
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjMonthLabelMonth_m**|11|Examples: S, O, N, D|
|**pjMonthLabelMonth_mm**|57|Examples: 9, 10|
diff --git a/api/Project.PjNewTasksStartOnDate.md b/api/Project.PjNewTasksStartOnDate.md
index 33ddcee952e..26de7c6895e 100644
--- a/api/Project.PjNewTasksStartOnDate.md
+++ b/api/Project.PjNewTasksStartOnDate.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of date that new tasks start on.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCurrentDate**|1|New tasks start on the current date.|
|**pjNoDate**|2|New tasks start on no specified date.|
diff --git a/api/Project.PjNonWorkingPlacement.md b/api/Project.PjNonWorkingPlacement.md
index df3853c035d..4b10fb60412 100644
--- a/api/Project.PjNonWorkingPlacement.md
+++ b/api/Project.PjNonWorkingPlacement.md
@@ -14,7 +14,7 @@ Contains constants that specify how nonworking times are denoted in relation to
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjBehind**|0|Behind the Gantt bars.|
|**pjDoNotDraw**|2|Do not draw.|
diff --git a/api/Project.PjOptionsSecurityTab.md b/api/Project.PjOptionsSecurityTab.md
index e85c8b31660..15c00450f4e 100644
--- a/api/Project.PjOptionsSecurityTab.md
+++ b/api/Project.PjOptionsSecurityTab.md
@@ -14,7 +14,7 @@ Contains constants that specify the tabs for settings that are available in the
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjOptionsSecurityTabAddins**|1|Represents the **Add-ins** tab, for add-in security options.|
|**pjOptionsSecurityTabLegacy**|4|Represents the **Legacy Formats** tab, for options on opening or saving legacy file formats.|
diff --git a/api/Project.PjOrganizer.md b/api/Project.PjOrganizer.md
index 36cd1e588f8..a76ffbbd72d 100644
--- a/api/Project.PjOrganizer.md
+++ b/api/Project.PjOrganizer.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of items in the Organizer.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCalendars**|5|Calendars.|
|**pjDrawings**|11|Drawings|
diff --git a/api/Project.PjOverallocationType.md b/api/Project.PjOverallocationType.md
index 4fdb601a4ac..8599c354cc4 100644
--- a/api/Project.PjOverallocationType.md
+++ b/api/Project.PjOverallocationType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of resource overallocation.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjOverallocationTypeAboveMaxUnits**|1|The resource allocation is above the maximum resource units.|
|**pjOverallocationTypeNone**|0|There is no overallocation.|
diff --git a/api/Project.PjPageSetupCalendarItem.md b/api/Project.PjPageSetupCalendarItem.md
index 31428e22435..6cd5d3514ce 100644
--- a/api/Project.PjPageSetupCalendarItem.md
+++ b/api/Project.PjPageSetupCalendarItem.md
@@ -14,7 +14,7 @@ Contains constants that specify the calendar item to format.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAdditionalTasks**|3|Additional tasks.|
|**pjAllCalendarItems**|0|All calendar items.|
diff --git a/api/Project.PjPaperSize.md b/api/Project.PjPaperSize.md
index 3a6845f8c7d..c91db16a94a 100644
--- a/api/Project.PjPaperSize.md
+++ b/api/Project.PjPaperSize.md
@@ -14,7 +14,7 @@ Contains constants that specify the paper size.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjPaper10x11**|45|10x11 inches size.|
|**pjPaper10x14**|16|10x14 inches size.|
diff --git a/api/Project.PjPasteSpecialType.md b/api/Project.PjPasteSpecialType.md
index 9deb7df815a..6c5ed319acb 100644
--- a/api/Project.PjPasteSpecialType.md
+++ b/api/Project.PjPasteSpecialType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of object to paste or link.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjEmbedObject**|0|Paste an embedded object.|
|**pjHTMLData**|4|Paste HTML data.|
diff --git a/api/Project.PjPhoneticType.md b/api/Project.PjPhoneticType.md
index 32e885c13ab..0b9488359d8 100644
--- a/api/Project.PjPhoneticType.md
+++ b/api/Project.PjPhoneticType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of characters used to display phonetic
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjHiragana**|2|Hiragana characters.|
|**pjKatakana**|1|Katakana characters.|
diff --git a/api/Project.PjPlacement.md b/api/Project.PjPlacement.md
index 69e191129eb..16f2f16f6ed 100644
--- a/api/Project.PjPlacement.md
+++ b/api/Project.PjPlacement.md
@@ -14,7 +14,7 @@ Contains constants that specify the placement of a symbol.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAfter**|1|After.|
|**pjAfterWithSpace**|3|After with a space.|
diff --git a/api/Project.PjPoolAction.md b/api/Project.PjPoolAction.md
index fe02eacc2c8..154b6af9ae3 100644
--- a/api/Project.PjPoolAction.md
+++ b/api/Project.PjPoolAction.md
@@ -14,7 +14,7 @@ Contains constants that specify actions to perform on the resource pool.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjOpenAllSharers**|4|Opens all sharers into a consolidated project.|
|**pjOpenSharer**|3|Opens the specified sharer.|
diff --git a/api/Project.PjPoolOpen.md b/api/Project.PjPoolOpen.md
index ee1fd31f310..4ee0f775750 100644
--- a/api/Project.PjPoolOpen.md
+++ b/api/Project.PjPoolOpen.md
@@ -14,7 +14,7 @@ Contains constants that specify the action to take when opening a resource pool
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDoNotOpenPool**|4|Do not open the pool.|
|**pjPoolAndSharers**|3|Open pool and sharers.|
diff --git a/api/Project.PjPriority.md b/api/Project.PjPriority.md
index 5a7529ec715..3f3e4cbfa25 100644
--- a/api/Project.PjPriority.md
+++ b/api/Project.PjPriority.md
@@ -14,7 +14,7 @@ The **PjPriority** enumeration is obsolete and should not be used. Actual task
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjPriorityDoNotLevel**|9|Do not level.|
|**pjPriorityHigh**|5|High priority.|
diff --git a/api/Project.PjProfileConnectionState.md b/api/Project.PjProfileConnectionState.md
index 5b1e58fac14..d20100bdaab 100644
--- a/api/Project.PjProfileConnectionState.md
+++ b/api/Project.PjProfileConnectionState.md
@@ -14,7 +14,7 @@ Contains constants that specify the connection state.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjProfileOffline**|0|Offline.|
|**pjProfileOnline**|1|Online.|
diff --git a/api/Project.PjProfileType.md b/api/Project.PjProfileType.md
index 07858b76714..2bf6b913beb 100644
--- a/api/Project.PjProfileType.md
+++ b/api/Project.PjProfileType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of profile.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjLocalProfile**|0|Local profile.|
|**pjServerProfile**|1|Server profile.|
diff --git a/api/Project.PjProjectServerTrackingMethod.md b/api/Project.PjProjectServerTrackingMethod.md
index 7a604c6139f..6865af0ca07 100644
--- a/api/Project.PjProjectServerTrackingMethod.md
+++ b/api/Project.PjProjectServerTrackingMethod.md
@@ -14,7 +14,7 @@ Contains constants that specify the way Project Server tracks actuals for a proj
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjTrackingMethodDefault**|0|Use the default tracking method.|
|**pjTrackingMethodPercentComplete**|2|Tracking is by percent complete.|
diff --git a/api/Project.PjProjectType.md b/api/Project.PjProjectType.md
index 1973959401e..819949f1b4d 100644
--- a/api/Project.PjProjectType.md
+++ b/api/Project.PjProjectType.md
@@ -14,7 +14,7 @@ Contains constants that specify the project type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjProjectTypeBasicProjectSite**|8|Project type is a basic project site in SharePoint.|
|**pjProjectTypeEnterpriseCheckedOut**|2|Project type is enterprise checked out.|
diff --git a/api/Project.PjProjectUpdate.md b/api/Project.PjProjectUpdate.md
index 5cfaaaf7c62..c716076913a 100644
--- a/api/Project.PjProjectUpdate.md
+++ b/api/Project.PjProjectUpdate.md
@@ -14,7 +14,7 @@ Contains constants that specify the action to take with the specified tasks.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pj0or100Percent**|0|Sets only the Actual Start and Actual Finish dates.|
|**pj0to100Percent**|1|Sets the percent complete to reflect the update date.|
diff --git a/api/Project.PjPublishScope.md b/api/Project.PjPublishScope.md
index 8a9e70304eb..82447befdca 100644
--- a/api/Project.PjPublishScope.md
+++ b/api/Project.PjPublishScope.md
@@ -14,7 +14,7 @@ Contains constants that specify the scope of assignments to be published.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjPublishScopeAll**|1|All.|
|**pjPublishScopeDefault**|0|Default.|
diff --git a/api/Project.PjRecalcDriverType.md b/api/Project.PjRecalcDriverType.md
index 30627be7976..0be72a0ce34 100644
--- a/api/Project.PjRecalcDriverType.md
+++ b/api/Project.PjRecalcDriverType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of driver that affects task recalculati
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDriverActuals**|1|The task driver is actual work.|
|**pjDriverCalendar**|32|The task driver is a resource calendar.|
diff --git a/api/Project.PjResAssignOperation.md b/api/Project.PjResAssignOperation.md
index 89c7d9a3248..b211251e6e6 100644
--- a/api/Project.PjResAssignOperation.md
+++ b/api/Project.PjResAssignOperation.md
@@ -14,7 +14,7 @@ Contains constants that specify the assignment of resources.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAssign**|0|Assigns the specified resources to the selected tasks.|
|**pjChange**|3|Changes the resource units for the specified resource. This constant can be used only for a single resource.|
diff --git a/api/Project.PjResSubstitutionPoolOption.md b/api/Project.PjResSubstitutionPoolOption.md
index 63cb07f4b05..a3719e94999 100644
--- a/api/Project.PjResSubstitutionPoolOption.md
+++ b/api/Project.PjResSubstitutionPoolOption.md
@@ -14,7 +14,7 @@ Contains constants that specify the resource pooling option.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjResSubstitutionResInList**|2|Use resources specified in the list of resources in the **EnterpriseResSubstitutionWizard** method.|
|**pjResSubstitutionResInProject**|0|Use resources already specified in the project.|
diff --git a/api/Project.PjResourceGraphPattern.md b/api/Project.PjResourceGraphPattern.md
index c2804c2b43a..cd94a786f46 100644
--- a/api/Project.PjResourceGraphPattern.md
+++ b/api/Project.PjResourceGraphPattern.md
@@ -14,7 +14,7 @@ Contains constants that specify the pattern of a resource graph.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDarkFill**|4|Dark fill.|
|**pjDashDot**|4|Dash dot.|
diff --git a/api/Project.PjResourceGraphStyle.md b/api/Project.PjResourceGraphStyle.md
index f83ebd1ecb7..3a55120038d 100644
--- a/api/Project.PjResourceGraphStyle.md
+++ b/api/Project.PjResourceGraphStyle.md
@@ -14,7 +14,7 @@ Contains constants that specify the resource graph style.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjArea**|1|Area.|
|**pjBar**|0|Bar.|
diff --git a/api/Project.PjResourceRequestType.md b/api/Project.PjResourceRequestType.md
index 2788430e7b2..178c8ee1091 100644
--- a/api/Project.PjResourceRequestType.md
+++ b/api/Project.PjResourceRequestType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of resource request.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjResourceRequestTypeDemand**|2|Demand.|
|**pjResourceRequestTypeNone**|0|None.|
diff --git a/api/Project.PjResourceTimescaledData.md b/api/Project.PjResourceTimescaledData.md
index 41038897e80..4c50896883e 100644
--- a/api/Project.PjResourceTimescaledData.md
+++ b/api/Project.PjResourceTimescaledData.md
@@ -14,7 +14,7 @@ Contains constants that specify a resource field for timescaled data in the Proj
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjResourceTimescaledActualCost**|11|Actual Cost (resource) field.|
|**pjResourceTimescaledActualOvertimeWork**|39|Actual Overtime Work (resource) field.|
diff --git a/api/Project.PjResourceTypes.md b/api/Project.PjResourceTypes.md
index 8b7658c503f..3d6fab13afd 100644
--- a/api/Project.PjResourceTypes.md
+++ b/api/Project.PjResourceTypes.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of resource.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjResourceTypeCost**|2|Resource type is **Cost**.|
|**pjResourceTypeMaterial**|1|Resource type is **Material**.|
diff --git a/api/Project.PjRowColSize.md b/api/Project.PjRowColSize.md
index 099a5cc08ed..ae6bd48d429 100644
--- a/api/Project.PjRowColSize.md
+++ b/api/Project.PjRowColSize.md
@@ -14,7 +14,7 @@ Contains constants that specify the size of a row or a column.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjSizeBestFit**|0|Best fit.|
|**pjSizeFixed**|1|Fixed.|
diff --git a/api/Project.PjSaveBaselineFrom.md b/api/Project.PjSaveBaselineFrom.md
index 3c96dcf8998..bd4b4ba1548 100644
--- a/api/Project.PjSaveBaselineFrom.md
+++ b/api/Project.PjSaveBaselineFrom.md
@@ -14,7 +14,7 @@ Contains constants that specify which fields to copy from.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCopyBaseline**|1|Baseline start and baseline finish dates.|
|**pjCopyBaseline1**|12|Baseline1 start and Baseline1 finish dates.|
diff --git a/api/Project.PjSaveBaselineTo.md b/api/Project.PjSaveBaselineTo.md
index 2afd5b5f429..8446a6e9fa7 100644
--- a/api/Project.PjSaveBaselineTo.md
+++ b/api/Project.PjSaveBaselineTo.md
@@ -14,7 +14,7 @@ Contains constants that specify which fields to copy into.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjIntoBaseline**|0|All baseline information in the active project.|
|**pjIntoBaseline1**|11|Baseline1 start and Baseline1 finish dates.|
diff --git a/api/Project.PjSaveType.md b/api/Project.PjSaveType.md
index 14b6d67a9da..5a31794aff1 100644
--- a/api/Project.PjSaveType.md
+++ b/api/Project.PjSaveType.md
@@ -14,7 +14,7 @@ Contains constants that specify save behavior.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDoNotSave**|0|Do not save.|
|**pjPromptSave**|2|Prompt the user before saving.|
diff --git a/api/Project.PjScheduleProjectFrom.md b/api/Project.PjScheduleProjectFrom.md
index 51b8c9f4109..3291f13f72b 100644
--- a/api/Project.PjScheduleProjectFrom.md
+++ b/api/Project.PjScheduleProjectFrom.md
@@ -14,7 +14,7 @@ Contains constants that specify the scheduling of a project.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjProjectFinish**|2|Schedule project from finish.|
|**pjProjectStart**|1|Schedule project from start.|
diff --git a/api/Project.PjServerPage.md b/api/Project.PjServerPage.md
index a1db87d7dd4..0ac0a537132 100644
--- a/api/Project.PjServerPage.md
+++ b/api/Project.PjServerPage.md
@@ -14,7 +14,7 @@ Contains constants that specify the page to show in Project Web App or in a proj
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjServerPageApprovals**|0|Show the Approvals page.|
|**pjServerPageDocuments**|7|Show the Documents page from the project site.|
diff --git a/api/Project.PjServerVersionInfo.md b/api/Project.PjServerVersionInfo.md
index 1f7517a876b..0c042514a62 100644
--- a/api/Project.PjServerVersionInfo.md
+++ b/api/Project.PjServerVersionInfo.md
@@ -14,7 +14,7 @@ Contains constants that specify how to format data from Project Server versions.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjServerVersionInfo_Unknown**|-2|The Project Server version is unknown.|
|**pjServerVersionInfo_Error**|-1|Format error information.|
diff --git a/api/Project.PjShape.md b/api/Project.PjShape.md
index 8471a38e574..c968f142e16 100644
--- a/api/Project.PjShape.md
+++ b/api/Project.PjShape.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of drawing.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjArc**|6|Arc.|
|**pjArrow**|3|Arrow.|
diff --git a/api/Project.PjSpellingField.md b/api/Project.PjSpellingField.md
index 6649f67b291..023835223dd 100644
--- a/api/Project.PjSpellingField.md
+++ b/api/Project.PjSpellingField.md
@@ -14,7 +14,7 @@ Contains constants that specify the field for spelling check.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjSpellAssignmentEnterpriseText1**|255853045|Enterprise Text1 (Assignment) field.|
|**pjSpellAssignmentEnterpriseText10**|255853054|Enterprise Text10 (Assignment) field.|
diff --git a/api/Project.PjStatusType.md b/api/Project.PjStatusType.md
index 07b879ebbdc..a2741a2996d 100644
--- a/api/Project.PjStatusType.md
+++ b/api/Project.PjStatusType.md
@@ -14,7 +14,7 @@ Contains constants that specify the staus of a task.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjComplete**|0|Task complete.|
|**pjFutureTask**|3|Task for future.|
diff --git a/api/Project.PjSummaryCalc.md b/api/Project.PjSummaryCalc.md
index daeb6bbe0f9..ef4515dbc7a 100644
--- a/api/Project.PjSummaryCalc.md
+++ b/api/Project.PjSummaryCalc.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of calculation to be performed for summ
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCalcFormula**|11|Use formula.|
|**pjCalcNone**|10|No calculation.|
diff --git a/api/Project.PjTaskFixedType.md b/api/Project.PjTaskFixedType.md
index d879fea6201..4a07f97a808 100644
--- a/api/Project.PjTaskFixedType.md
+++ b/api/Project.PjTaskFixedType.md
@@ -14,7 +14,7 @@ Contains constants that specify the task type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjFixedDuration**|1|Fixed duration.|
|**pjFixedUnits**|0|Fixed units.|
diff --git a/api/Project.PjTaskLinkType.md b/api/Project.PjTaskLinkType.md
index 42afffcda82..5bcd7bdf2d4 100644
--- a/api/Project.PjTaskLinkType.md
+++ b/api/Project.PjTaskLinkType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of links between tasks.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjFinishToFinish**|0|Link tasks from finish to finish.|
|**pjFinishToStart**|1|Link tasks from finish to start.|
diff --git a/api/Project.PjTaskTimescaledData.md b/api/Project.PjTaskTimescaledData.md
index 10545fcaac3..ebbb1be0abc 100644
--- a/api/Project.PjTaskTimescaledData.md
+++ b/api/Project.PjTaskTimescaledData.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of field for task timescaled data in th
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjTaskTimescaledActualCost**|7|Actual Cost (task) field.|
|**pjTaskTimescaledActualFixedCost**|171|Actual Fixed Cost (task) field.|
diff --git a/api/Project.PjTaskWarnings.md b/api/Project.PjTaskWarnings.md
index f5a8645d3cd..33690a0a2cc 100644
--- a/api/Project.PjTaskWarnings.md
+++ b/api/Project.PjTaskWarnings.md
@@ -14,7 +14,7 @@ Contains constants that specify warnings for tasks or assignments.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjTaskWarningAssnOverallocatedInNonWorkingTime**|16384|The assignment is in overallocated non-working time.|
|**pjTaskWarningResourceBeyondMaxUnit**|64|The assignment is more than the maximum resource units available.|
diff --git a/api/Project.PjTeamPlannerStyle.md b/api/Project.PjTeamPlannerStyle.md
index 383a4435522..224eb8e8071 100644
--- a/api/Project.PjTeamPlannerStyle.md
+++ b/api/Project.PjTeamPlannerStyle.md
@@ -14,7 +14,7 @@ Contains constants that specify the Team Planner style to edit in Project.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjTPActualWork**|1|Set the **Actual Work** style in the Team Planner.|
|**pjTPLateTask**|3|Set the ** Late Task** style in the Team Planner.|
diff --git a/api/Project.PjTeamStatusCompletedWork.md b/api/Project.PjTeamStatusCompletedWork.md
index eab7e632c11..71fe0f2ceeb 100644
--- a/api/Project.PjTeamStatusCompletedWork.md
+++ b/api/Project.PjTeamStatusCompletedWork.md
@@ -14,7 +14,7 @@ Contains constants that specify how completed work should be reported.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjBrokenDownByDay**|1|Report work by day.|
|**pjBrokenDownByWeek**|2|Report work by week.|
diff --git a/api/Project.PjTextFileOrigin.md b/api/Project.PjTextFileOrigin.md
index 9a95cadcb58..d3979bebee7 100644
--- a/api/Project.PjTextFileOrigin.md
+++ b/api/Project.PjTextFileOrigin.md
@@ -14,7 +14,7 @@ Contains constants that specify the character set under which a text file was cr
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjTextOriginDOS**|1|DOS character set (including OS/2).|
|**pjTextOriginMac**|2|Macintosh character set.|
diff --git a/api/Project.PjTextItem.md b/api/Project.PjTextItem.md
index 13b3c236f14..fd763a030fa 100644
--- a/api/Project.PjTextItem.md
+++ b/api/Project.PjTextItem.md
@@ -14,7 +14,7 @@ Contains constants that specify the text item in the Project database. For more
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAll**|0|Represents the All text item.|
|**pjAllocated**|1|Represents the Allocated text item.|
diff --git a/api/Project.PjThemeElement.md b/api/Project.PjThemeElement.md
index 09b3976f03f..6ee3f60f5a6 100644
--- a/api/Project.PjThemeElement.md
+++ b/api/Project.PjThemeElement.md
@@ -14,7 +14,7 @@ Contains constants that specify the theme element in Project Guide pages.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjThemeElementWPBkgd**|32 (&;H20)|Page background.|
|**pjThemeElementWPCtlBdr**|40 (&;H28)|Control builder element.|
diff --git a/api/Project.PjTimelineInsertTaskType.md b/api/Project.PjTimelineInsertTaskType.md
index 3faa7a04c93..59b355f4017 100644
--- a/api/Project.PjTimelineInsertTaskType.md
+++ b/api/Project.PjTimelineInsertTaskType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of task to insert on the Timeline view
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjTimelineInsertCalloutTask**|2|Insert a callout task, where the task information is shown in a callout box attached to the timeline.|
|**pjTimelineInsertMilestone**|1|Insert a milestone (a task with 0 days duration).|
diff --git a/api/Project.PjTimelineShowHide.md b/api/Project.PjTimelineShowHide.md
index a7edae63ec8..dad9a33af86 100644
--- a/api/Project.PjTimelineShowHide.md
+++ b/api/Project.PjTimelineShowHide.md
@@ -14,7 +14,7 @@ Contains constants that toggle the visibility of parts of the Project timeline.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjTimelineShowHidePanZoom**|1|Shows or hides the timeline pan and zoom functionality.|
|**pjTimelineShowHideTaskDates**|4|Shows or hides task dates on the timeline.|
diff --git a/api/Project.PjTimescaleUnit.md b/api/Project.PjTimescaleUnit.md
index 9738961379b..0eb1611b8c3 100644
--- a/api/Project.PjTimescaleUnit.md
+++ b/api/Project.PjTimescaleUnit.md
@@ -14,7 +14,7 @@ Contains constants that specify the unit of time for any tier of a timescale in
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjTimescaleDays**|4|Days.|
|**pjTimescaleHalfYears**|8|Half years.|
diff --git a/api/Project.PjTimescaledData.md b/api/Project.PjTimescaledData.md
index 38b647d77ba..bf5f4ed3f4f 100644
--- a/api/Project.PjTimescaledData.md
+++ b/api/Project.PjTimescaledData.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of field for timescaled data in the Pro
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjActualCost**|10|Actual Cost field.|
|**pjActualFixedCost**|47|Actual Fixed Cost field.|
diff --git a/api/Project.PjToolbarAction.md b/api/Project.PjToolbarAction.md
index a7121fcbe9e..cf2c6f0c3c4 100644
--- a/api/Project.PjToolbarAction.md
+++ b/api/Project.PjToolbarAction.md
@@ -14,7 +14,7 @@ Contains constants that specify toolbar actions.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCopy**|4|Copy.|
|**pjDelete**|2|Delete.|
diff --git a/api/Project.PjUnit.md b/api/Project.PjUnit.md
index fdd4ef6c910..63a7a76e8fc 100644
--- a/api/Project.PjUnit.md
+++ b/api/Project.PjUnit.md
@@ -14,7 +14,7 @@ Contains constants that specify a unit of time.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjDay**|7|Day.|
|**pjHour**|5|Hour.|
diff --git a/api/Project.PjValueListItem.md b/api/Project.PjValueListItem.md
index 8dfa3ff0286..d3d19ad7b3a 100644
--- a/api/Project.PjValueListItem.md
+++ b/api/Project.PjValueListItem.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of information in the list item.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjValueListDescription**|1|Description.|
|**pjValueListPhonetics**|2|Phonetics.|
diff --git a/api/Project.PjVerticalAlignment.md b/api/Project.PjVerticalAlignment.md
index 7e47a7ef010..5e9d2dd5fe8 100644
--- a/api/Project.PjVerticalAlignment.md
+++ b/api/Project.PjVerticalAlignment.md
@@ -14,7 +14,7 @@ Contains constants that specify the vertical alignment.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjBottom**|2|Bottom.|
|**pjMiddle**|1|Middle.|
diff --git a/api/Project.PjViewScreen.md b/api/Project.PjViewScreen.md
index 5c93ee34668..f325ba92972 100644
--- a/api/Project.PjViewScreen.md
+++ b/api/Project.PjViewScreen.md
@@ -14,7 +14,7 @@ Contains constants that specify the screen type for a view in Project.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCalendar**|13|**Calendar** view.|
|**pjGantt**|1|**Gantt** view.|
diff --git a/api/Project.PjVisualReportsCubeType.md b/api/Project.PjVisualReportsCubeType.md
index 2baa20b2fcc..944f1ce8f4c 100644
--- a/api/Project.PjVisualReportsCubeType.md
+++ b/api/Project.PjVisualReportsCubeType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of report cube on which to operate.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAssignmentNTP**|6|Nontimephased assignment cube.|
|**pjAssignmentTP**|3|Timephased assignment cube.|
diff --git a/api/Project.PjVisualReportsDataLevel.md b/api/Project.PjVisualReportsDataLevel.md
index a770da44520..3273c2e0b1b 100644
--- a/api/Project.PjVisualReportsDataLevel.md
+++ b/api/Project.PjVisualReportsDataLevel.md
@@ -14,7 +14,7 @@ Contains constants that specify the time level of data to use in Visual Reports.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjLevelAutomatic**|5|Automatically determine the time level based on the data time range.|
|**pjLevelDays**|4|The time level is days.|
diff --git a/api/Project.PjVisualReportsTab.md b/api/Project.PjVisualReportsTab.md
index 7a2503c5ad1..f44f538cb8a 100644
--- a/api/Project.PjVisualReportsTab.md
+++ b/api/Project.PjVisualReportsTab.md
@@ -14,7 +14,7 @@ Contains constants that specify which tab in the **Visual Reports - Create Repo
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjTabAll**|0|Show the **All** tab, which contains all report types.|
|**pjTabAssignmentNTP**|6|Show the tab for nontimephased assignment reports (the **Assignment Summary** tab).|
diff --git a/api/Project.PjVisualReportsTemplateType.md b/api/Project.PjVisualReportsTemplateType.md
index 6cc898d5450..43f4668743f 100644
--- a/api/Project.PjVisualReportsTemplateType.md
+++ b/api/Project.PjVisualReportsTemplateType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of report template for the Visual Repor
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjExcel**|1|Microsoft Excel report template.|
|**pjVisioMetric**|2|Microsoft Visio template with metric units.|
diff --git a/api/Project.PjWBSSequence.md b/api/Project.PjWBSSequence.md
index 0f1882697be..6b0f450d22a 100644
--- a/api/Project.PjWBSSequence.md
+++ b/api/Project.PjWBSSequence.md
@@ -14,7 +14,7 @@ Contains constants that specify the work breakdown structure (WBS) sequence.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjWBSOrderedLowercaseLetters**|2|Lowercase letters.|
|**pjWBSOrderedNumbers**|0|Numbers.|
diff --git a/api/Project.PjWeekLabel.md b/api/Project.PjWeekLabel.md
index 7c8541c4619..65d70749d3c 100644
--- a/api/Project.PjWeekLabel.md
+++ b/api/Project.PjWeekLabel.md
@@ -14,7 +14,7 @@ Contains constants that specify the display format for weeks in a timescale.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjWeekLabelNoDateFormat**|35|No date is displayed.|
|**pjWeekLabelWeek_ddd_dd**|88|Examples: Mon 30, Tue 1|
diff --git a/api/Project.PjWeekday.md b/api/Project.PjWeekday.md
index c4703b997cf..56747d9e09e 100644
--- a/api/Project.PjWeekday.md
+++ b/api/Project.PjWeekday.md
@@ -14,7 +14,7 @@ Contains constants that specify the day of the week.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjFriday**|6|Friday.|
|**pjMonday**|2|Monday.|
diff --git a/api/Project.PjWindowState.md b/api/Project.PjWindowState.md
index be321f0aad8..a254cc4d983 100644
--- a/api/Project.PjWindowState.md
+++ b/api/Project.PjWindowState.md
@@ -14,7 +14,7 @@ Contains constants that specify the window state.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjMaximized**|3|Maximized.|
|**pjMinimized**|2|Minimized.|
diff --git a/api/Project.PjWorkContourType.md b/api/Project.PjWorkContourType.md
index 96b09a235d0..e9de17e33dc 100644
--- a/api/Project.PjWorkContourType.md
+++ b/api/Project.PjWorkContourType.md
@@ -14,7 +14,7 @@ Contains constants that specify the type of a work contour.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjBackLoaded**|1|Back-loaded.|
|**pjBell**|6|Bell.|
diff --git a/api/Project.PjYesNoAutomatic.md b/api/Project.PjYesNoAutomatic.md
index 278a8877faa..ccee0685d95 100644
--- a/api/Project.PjYesNoAutomatic.md
+++ b/api/Project.PjYesNoAutomatic.md
@@ -14,7 +14,7 @@ Contains constants that specify Yes, No, or Automatic.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAuto**|2|Automatic.|
|**pjNo**|0|No.|
diff --git a/api/Project.PredecessorDrivers.Item.md b/api/Project.PredecessorDrivers.Item.md
index 85741657080..0ee2d56cd8f 100644
--- a/api/Project.PredecessorDrivers.Item.md
+++ b/api/Project.PredecessorDrivers.Item.md
@@ -24,7 +24,7 @@ Gets a single **TaskDependency** object from a **PredecessorDrivers** collectio
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Long**|The index number of the object to return.|
diff --git a/api/Project.Profiles.Add.md b/api/Project.Profiles.Add.md
index 946a1668211..b5969827bce 100644
--- a/api/Project.Profiles.Add.md
+++ b/api/Project.Profiles.Add.md
@@ -24,14 +24,14 @@ Adds an account **[Profile](Project.Profile.md)** object to the **Profiles** co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**| The name of the profile.|
| _Server_|Required|**String**|A string representing the URL of the Project Server.|
| _LoginType_|Optional|**Long**|The login type for the Project Server. Can be one of the **[PjLoginType](Project.PjLoginType.md)** constants. The default value is **pjWindowsLogin**.|
| _UserName_|Optional|**String**| A string representing the user name.|
-### Return Value
+### Return value
**Profile**
diff --git a/api/Project.Profiles.Item.md b/api/Project.Profiles.Item.md
index a9eefbd56a6..50c0c184ab9 100644
--- a/api/Project.Profiles.Item.md
+++ b/api/Project.Profiles.Item.md
@@ -24,7 +24,7 @@ Gets a single **Profile** object from the **Profiles** collection. Read-only **
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Project.Activate(even).md b/api/Project.Project.Activate(even).md
index 5ee7229a70c..13bb5c760aa 100644
--- a/api/Project.Project.Activate(even).md
+++ b/api/Project.Project.Activate(even).md
@@ -24,7 +24,7 @@ Occurs when switching to the project from another project, including when the pr
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project that was activated.|
diff --git a/api/Project.Project.AppendNotes.md b/api/Project.Project.AppendNotes.md
index 821bfc6093e..555139298f1 100644
--- a/api/Project.Project.AppendNotes.md
+++ b/api/Project.Project.AppendNotes.md
@@ -24,7 +24,7 @@ Appends text to the Notes field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Value_|Required|**String**|The text to append to the existing notes.|
diff --git a/api/Project.Project.BaselineSavedDate.md b/api/Project.Project.BaselineSavedDate.md
index 8ee5a4af07c..299a5e37a0f 100644
--- a/api/Project.Project.BaselineSavedDate.md
+++ b/api/Project.Project.BaselineSavedDate.md
@@ -24,7 +24,7 @@ Gets date the specified baseline was last saved. Read-only **Variant**.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Baseline_|Required|**Long**|Can be one of the **[PjBaselines](Project.PjBaselines.md)** constants.|
diff --git a/api/Project.Project.BeforeClose.md b/api/Project.Project.BeforeClose.md
index c0526ea1c3f..ea57c649c89 100644
--- a/api/Project.Project.BeforeClose.md
+++ b/api/Project.Project.BeforeClose.md
@@ -24,11 +24,11 @@ Occurs before a project is closed.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project that will be closed.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Project.BeforePrint.md b/api/Project.Project.BeforePrint.md
index 1521e2ac79b..8f7be559812 100644
--- a/api/Project.Project.BeforePrint.md
+++ b/api/Project.Project.BeforePrint.md
@@ -24,11 +24,11 @@ Occurs before a project is printed.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project that will be printed.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Project.BeforeSave.md b/api/Project.Project.BeforeSave.md
index ebec23163a9..f2c7744ad40 100644
--- a/api/Project.Project.BeforeSave.md
+++ b/api/Project.Project.BeforeSave.md
@@ -24,11 +24,11 @@ Occurs before a project is saved.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project that will be saved.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Project.Calculate.md b/api/Project.Project.Calculate.md
index a18476a811d..a0a5527c96d 100644
--- a/api/Project.Project.Calculate.md
+++ b/api/Project.Project.Calculate.md
@@ -24,11 +24,11 @@ Occurs when a project schedule is recalculated.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project that is rescheduled.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Project.Change.md b/api/Project.Project.Change.md
index 8b26de94eaa..bb6da2b4593 100644
--- a/api/Project.Project.Change.md
+++ b/api/Project.Project.Change.md
@@ -24,11 +24,11 @@ Occurs when a change is made to data in the project. An action affecting several
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project that changed.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Project.CheckIn.md b/api/Project.Project.CheckIn.md
index 43bb996d8c7..edd5ebb5449 100644
--- a/api/Project.Project.CheckIn.md
+++ b/api/Project.Project.CheckIn.md
@@ -27,7 +27,7 @@ Checks in the working copy of the project from a local computer to the SharePoin
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SaveChanges_|Optional|**Boolean**|**True** saves changes and checks in the document. **False** returns the document to a checked-in status without saving revisions.|
| _Comment_|Optional|**String**|Comments for the revision of the project being checked in (applies only if SaveChanges equals **True**).|
diff --git a/api/Project.Project.Deactivate.md b/api/Project.Project.Deactivate.md
index 413a6689bbf..306c8fd7da7 100644
--- a/api/Project.Project.Deactivate.md
+++ b/api/Project.Project.Deactivate.md
@@ -27,11 +27,11 @@ Occurs when switching from the current project to another project.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project that was deactivated.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Project.DeliverableAcceptChanges.md b/api/Project.Project.DeliverableAcceptChanges.md
index 5e62208a333..e8e6d715cd7 100644
--- a/api/Project.Project.DeliverableAcceptChanges.md
+++ b/api/Project.Project.DeliverableAcceptChanges.md
@@ -24,11 +24,11 @@ Accepts the changes on the server for a deliverable.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DeliverableGuid_|Required|**String**|The GUID of the deliverable for which to accept changes.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Project.DeliverableCreate.md b/api/Project.Project.DeliverableCreate.md
index 8e41c50febc..0066e86769c 100644
--- a/api/Project.Project.DeliverableCreate.md
+++ b/api/Project.Project.DeliverableCreate.md
@@ -24,14 +24,14 @@ Creates a deliverable for a published project that has a project workspace.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DeliverableName_|Required|**String**|Name of the deliverable.|
| _DeliverableStartDate_|Required|**Variant**|Start date for the deliverable.|
| _DeliverableFinishDate_|Required|**Variant**|Finish date for the deliverable.|
| _TaskGuid_|Required|**String**|GUID of the task to which to link the deliverable.|
-### Return Value
+### Return value
**String**
diff --git a/api/Project.Project.DeliverableDelete.md b/api/Project.Project.DeliverableDelete.md
index 2e4f4d0bab7..2e56c61f769 100644
--- a/api/Project.Project.DeliverableDelete.md
+++ b/api/Project.Project.DeliverableDelete.md
@@ -24,11 +24,11 @@ Deletes the deliverable.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DeliverableGuid_|Required|**String**|The GUID of the deliverable to delete.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Project.DeliverableDependencyCreate.md b/api/Project.Project.DeliverableDependencyCreate.md
index fecac31e1b6..464cb2ea00b 100644
--- a/api/Project.Project.DeliverableDependencyCreate.md
+++ b/api/Project.Project.DeliverableDependencyCreate.md
@@ -24,12 +24,12 @@ Creates a dependency on a deliverable and links the dependency to a task in the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DeliverableGuid_|Required|**String**|The GUID of the deliverable on which to create the dependency.|
| _TaskGuid_|Required|**String**|The GUID of the task to link the dependency.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Project.DeliverableDependencyDelete.md b/api/Project.Project.DeliverableDependencyDelete.md
index 256ff84ba2a..7e5f0b9af77 100644
--- a/api/Project.Project.DeliverableDependencyDelete.md
+++ b/api/Project.Project.DeliverableDependencyDelete.md
@@ -24,11 +24,11 @@ Deletes the dependency on the deliverable.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DeliverableGuid_|Required|**String**|The GUID of the deliverable from which to delete the dependency.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Project.DeliverableLinkToProject.md b/api/Project.Project.DeliverableLinkToProject.md
index 23b6e3f67e8..0ca6a18d106 100644
--- a/api/Project.Project.DeliverableLinkToProject.md
+++ b/api/Project.Project.DeliverableLinkToProject.md
@@ -24,11 +24,11 @@ Links a deliverable or a dependency to a project.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DeliverableGuid_|Required|**String**|GUID of the deliverable or the dependency to the link.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Project.DeliverableLinkToTask.md b/api/Project.Project.DeliverableLinkToTask.md
index bf3e9504bdd..22207e9d6fe 100644
--- a/api/Project.Project.DeliverableLinkToTask.md
+++ b/api/Project.Project.DeliverableLinkToTask.md
@@ -24,12 +24,12 @@ Links a deliverable to a task.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DeliverableGuid_|Required|**String**|The GUID of the deliverable to link.|
| _TaskGuid_|Required|**String**|The GUID of the task to link.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Project.DeliverableRefreshServerCache.md b/api/Project.Project.DeliverableRefreshServerCache.md
index ec34ee9a632..d9909a49f29 100644
--- a/api/Project.Project.DeliverableRefreshServerCache.md
+++ b/api/Project.Project.DeliverableRefreshServerCache.md
@@ -20,7 +20,7 @@ Checks for updates on the server and refreshes the cache for deliverable and dep
_expression_ A variable that represents a [Project](./Project(enumerations).md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Project.DeliverableUpdate.md b/api/Project.Project.DeliverableUpdate.md
index 815d316b6c9..298d10ccf55 100644
--- a/api/Project.Project.DeliverableUpdate.md
+++ b/api/Project.Project.DeliverableUpdate.md
@@ -24,14 +24,14 @@ Updates the properties of a deliverable.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DeliverableGuid_|Required|**String**|GUID of the deliberable to update.|
| _DeliverableName_|Required|**String**|Name of the deliverable.|
| _DeliverableStartDate_|Required|**Variant**|Date when the deliverable starts.|
| _DeliverableFinishDate_|Required|**Variant**|Date when the deliverable is finished.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Project.DeliverablesClearAll.md b/api/Project.Project.DeliverablesClearAll.md
index 54f114f43c4..73873763861 100644
--- a/api/Project.Project.DeliverablesClearAll.md
+++ b/api/Project.Project.DeliverablesClearAll.md
@@ -20,7 +20,7 @@ Clears all deliverables in the project.
_expression_ An expression that returns a [Project](./Project(enumerations).md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Project.DeliverablesGetByProject.md b/api/Project.Project.DeliverablesGetByProject.md
index 90c40cb88fd..a1073eebefc 100644
--- a/api/Project.Project.DeliverablesGetByProject.md
+++ b/api/Project.Project.DeliverablesGetByProject.md
@@ -24,11 +24,11 @@ Gets a list of all deliverables for the specified enterprise project in the XML
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ProjectGuid_|Required|**String**|GUID of the enterprise project.|
-### Return Value
+### Return value
**Object**
diff --git a/api/Project.Project.DeliverablesGetProviderProjects.md b/api/Project.Project.DeliverablesGetProviderProjects.md
index 5a5bde7df22..800768c73e9 100644
--- a/api/Project.Project.DeliverablesGetProviderProjects.md
+++ b/api/Project.Project.DeliverablesGetProviderProjects.md
@@ -20,7 +20,7 @@ Returns a list of all of the projects that have deliverables.
_expression_ A variable that represents a [Project](./Project(enumerations).md) object.
-### Return Value
+### Return value
**String**
diff --git a/api/Project.Project.DeliverablesGetServerCachedXml.md b/api/Project.Project.DeliverablesGetServerCachedXml.md
index 6c4aa131d8a..55041a1fb8a 100644
--- a/api/Project.Project.DeliverablesGetServerCachedXml.md
+++ b/api/Project.Project.DeliverablesGetServerCachedXml.md
@@ -20,7 +20,7 @@ Gets the cached XML data from Project Server for all of the deliverables and dep
_expression_ A variable that represents a [Project](./Project(enumerations).md) object.
-### Return Value
+### Return value
**String**
diff --git a/api/Project.Project.DeliverablesGetXml.md b/api/Project.Project.DeliverablesGetXml.md
index 40e9139b7da..b2aab1c33e2 100644
--- a/api/Project.Project.DeliverablesGetXml.md
+++ b/api/Project.Project.DeliverablesGetXml.md
@@ -20,7 +20,7 @@ Gets the XML data from Project Professional for all of the deliverables and depe
_expression_ A variable that represents a [Project](./Project(enumerations).md) object.
-### Return Value
+### Return value
**String**
diff --git a/api/Project.Project.ExportAsFixedFormat.md b/api/Project.Project.ExportAsFixedFormat.md
index bb344616d8b..36128d60017 100644
--- a/api/Project.Project.ExportAsFixedFormat.md
+++ b/api/Project.Project.ExportAsFixedFormat.md
@@ -27,7 +27,7 @@ Exports the active project as a document in a custom PDF or XPS format.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Filename_|Required|**String**|Specifies the file name of the exported document. The default value is the name of the active project as a PDF file.|
| _FileType_|Optional|**PjDocExportType**|Specifies whether to export the project as a PDF or an XPS document. The default value is **pjPDF** (0).|
@@ -38,7 +38,7 @@ Exports the active project as a document in a custom PDF or XPS format.
| _ToDate_|Optional|**Variant**|The end date of the range of dates to publish. The default value is the project end date.|
| _FixedFormatExtClassPtr_|Optional|**Variant**|Pointer to a custom class in an add-in that implements the **IMsoDocExporter** COM interface that allows calls to an alternate implementation of code for the document format. The default is a null pointer.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Project.Project.GetDisplayNameFromObjectMatchingID.md b/api/Project.Project.GetDisplayNameFromObjectMatchingID.md
index ffc2c9701a6..4ba30a3d545 100644
--- a/api/Project.Project.GetDisplayNameFromObjectMatchingID.md
+++ b/api/Project.Project.GetDisplayNameFromObjectMatchingID.md
@@ -24,12 +24,12 @@ Returns the display name of an object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectType_|Required|**Long**|The type of object. Can be one of the **[PjOrganizer](Project.PjOrganizer.md)** constants.|
| _MatchingID_|Required|**String**|String specifying the matching name of the object.|
-### Return Value
+### Return value
**String**
diff --git a/api/Project.Project.GetObjectMatchingID.md b/api/Project.Project.GetObjectMatchingID.md
index 70574134b4b..839656e43cd 100644
--- a/api/Project.Project.GetObjectMatchingID.md
+++ b/api/Project.Project.GetObjectMatchingID.md
@@ -27,12 +27,12 @@ Returns the matching identification name of an object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectType_|Required|**Long**|The type of object. Can be one of the **[PjOrganizer](Project.PjOrganizer.md)** constants.|
| _ObjectName_|Required|**String**|Display name of the object.|
-### Return Value
+### Return value
**String**
diff --git a/api/Project.Project.GetServerProjectGuid.md b/api/Project.Project.GetServerProjectGuid.md
index 72475929429..58ffe9b579d 100644
--- a/api/Project.Project.GetServerProjectGuid.md
+++ b/api/Project.Project.GetServerProjectGuid.md
@@ -20,7 +20,7 @@ Returns the GUID for the enterprise project.
_expression_ A variable that represents a [Project](./Project(enumerations).md) object.
-### Return Value
+### Return value
**String**
diff --git a/api/Project.Project.GetTaskIndexByGuid.md b/api/Project.Project.GetTaskIndexByGuid.md
index 27c7e908311..d49bdbeced0 100644
--- a/api/Project.Project.GetTaskIndexByGuid.md
+++ b/api/Project.Project.GetTaskIndexByGuid.md
@@ -24,11 +24,11 @@ Returns the local task identification number (ID) for the specified task.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TaskGuid_|Required|**String**|The GUID of the task.|
-### Return Value
+### Return value
**Long**
diff --git a/api/Project.Project.GetWinprojURLs.md b/api/Project.Project.GetWinprojURLs.md
index 01c1cf93ddd..550fafab57f 100644
--- a/api/Project.Project.GetWinprojURLs.md
+++ b/api/Project.Project.GetWinprojURLs.md
@@ -23,7 +23,7 @@ Returns the various URLs associated with the active enterprise project as an XML
_expression_ A variable that represents a [Project](./Project(enumerations).md) object.
-### Return Value
+### Return value
**Variant**
diff --git a/api/Project.Project.ImportResourceErrorCount.md b/api/Project.Project.ImportResourceErrorCount.md
index 5fdecf021d4..9c9315433ab 100644
--- a/api/Project.Project.ImportResourceErrorCount.md
+++ b/api/Project.Project.ImportResourceErrorCount.md
@@ -23,7 +23,7 @@ Returns the number of errors generated by a resource import operation.
_expression_ An expression that returns a [Project](./Project(enumerations).md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Project.Project.LocalResourceCount.md b/api/Project.Project.LocalResourceCount.md
index bcee044285a..aeb2fce3ce7 100644
--- a/api/Project.Project.LocalResourceCount.md
+++ b/api/Project.Project.LocalResourceCount.md
@@ -23,7 +23,7 @@ Returns the number of local resources in the project.
_expression_ An expression that returns a [Project](./Project(enumerations).md) object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Project.Project.LocalResourceErrorCount.md b/api/Project.Project.LocalResourceErrorCount.md
index 541c4381685..9af11e082a8 100644
--- a/api/Project.Project.LocalResourceErrorCount.md
+++ b/api/Project.Project.LocalResourceErrorCount.md
@@ -23,7 +23,7 @@ Returns the number of local resource errors.
_expression_ An expression that returns a [Project](./Project(enumerations).md) object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Project.Project.Open.md b/api/Project.Project.Open.md
index c4a644fc0d1..1bc61db84ff 100644
--- a/api/Project.Project.Open.md
+++ b/api/Project.Project.Open.md
@@ -27,11 +27,11 @@ Occurs when the project opens, but before the **Activate** event.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pj_|Required|**Project**|The project that was opened.|
-### Return Value
+### Return value
nothing
diff --git a/api/Project.Project.ReadWssData.md b/api/Project.Project.ReadWssData.md
index 24a69b0ef4e..437c04af8b1 100644
--- a/api/Project.Project.ReadWssData.md
+++ b/api/Project.Project.ReadWssData.md
@@ -27,11 +27,11 @@ Returns the Project Workspace URLs for the active enterprise project as an XML s
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ProjectGuid_|Required|**String**|A valid Project GUID.|
-### Return Value
+### Return value
**Variant**
diff --git a/api/Project.Project.ResourceCount.md b/api/Project.Project.ResourceCount.md
index 1514bc2df8b..81a9b7b49d6 100644
--- a/api/Project.Project.ResourceCount.md
+++ b/api/Project.Project.ResourceCount.md
@@ -23,7 +23,7 @@ Returns the total number of resources in the project, including both local and e
_expression_ An expression that returns a [Project](./Project(enumerations).md) object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Project.Project.ResourceErrorCount.md b/api/Project.Project.ResourceErrorCount.md
index 2691a7ec7a7..3ba603aa3eb 100644
--- a/api/Project.Project.ResourceErrorCount.md
+++ b/api/Project.Project.ResourceErrorCount.md
@@ -23,7 +23,7 @@ Returns the number of resource errors.
_expression_ An expression that returns a [Project](./Project(enumerations).md) object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Project.Project.SaveAs.md b/api/Project.Project.SaveAs.md
index 6a0d2c3dc6f..67cdd7df80f 100644
--- a/api/Project.Project.SaveAs.md
+++ b/api/Project.Project.SaveAs.md
@@ -24,7 +24,7 @@ _expression_ A variable that represents a **Project** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|The name of the file to save as. If _Name_ is omitted, Project prompts for the file name.|
| _Format_|Optional|**Long**|The format of the file. The _FormatID_ argument should be used in place of _Format_, which is included primarily for backwards compatibility. If _FormatID_ is specified, _Format_ is ignored. The default value is **pjMPP**. Can be one of the **[PjFileFormat](Project.PjFileFormat.md)** constants.|
diff --git a/api/Project.Project.SetCustomUI.md b/api/Project.Project.SetCustomUI.md
index f6017e603e6..038865b2bfc 100644
--- a/api/Project.Project.SetCustomUI.md
+++ b/api/Project.Project.SetCustomUI.md
@@ -27,11 +27,11 @@ Sets the internal XML value for a custom ribbon user interface of the project.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CustomUIXML_|Required|**String**|Valid XML data for modifying the ribbon.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Project.Project.SetObjectMatchingID.md b/api/Project.Project.SetObjectMatchingID.md
index 55b38350bbd..7b6a4ab8816 100644
--- a/api/Project.Project.SetObjectMatchingID.md
+++ b/api/Project.Project.SetObjectMatchingID.md
@@ -24,7 +24,7 @@ Sets the matching identification value of an object in the **Organizer** dialog
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectType_|Required|**Long**|The type of object, specified by a **[pjOrganizer](Project.PjOrganizer.md)** constant.|
| _ObjectName_|Required|**String**|Display name of the object.|
diff --git a/api/Project.Projects.Add.md b/api/Project.Projects.Add.md
index da88bf25951..3e150715525 100644
--- a/api/Project.Projects.Add.md
+++ b/api/Project.Projects.Add.md
@@ -24,13 +24,13 @@ Adds a **Project** object to a **Projects** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DisplayProjectInfo_|Optional|**Boolean**|**True** if the ** Project Information** dialog box appears when a new project is created. The default value is **False**.|
| _Template_|Optional|**String**|A path and file name for a template to use when creating the project. If Template is omitted, a blank project is created.|
| _FileNewDialog_|Optional|**Boolean**|**True** if the **Templates** dialog box is displayed when creating the project. If Template is specified, FileNewDialog is ignored.|
-### Return Value
+### Return value
**Project**
diff --git a/api/Project.Projects.CanCheckOut.md b/api/Project.Projects.CanCheckOut.md
index 4fdc513608e..64b6a92927b 100644
--- a/api/Project.Projects.CanCheckOut.md
+++ b/api/Project.Projects.CanCheckOut.md
@@ -27,11 +27,11 @@ Indicates whether Project can check out the specified project from a SharePoint
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Filename_|Required|**String**|The name of the file to check out.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Projects.CheckOut.md b/api/Project.Projects.CheckOut.md
index 59545bd3907..577fab55935 100644
--- a/api/Project.Projects.CheckOut.md
+++ b/api/Project.Projects.CheckOut.md
@@ -27,11 +27,11 @@ Checks out the specified file if it is stored in a SharePoint document library.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Filename_|Required|**String**|The name of the file to check out.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Projects.Item.md b/api/Project.Projects.Item.md
index 421d85b2dad..bd7a959243d 100644
--- a/api/Project.Projects.Item.md
+++ b/api/Project.Projects.Item.md
@@ -24,7 +24,7 @@ Gets a single **Project** object from the **Projects** collection. Read-only **
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.ReportTemplates.Item.md b/api/Project.ReportTemplates.Item.md
index 422d5ee3794..f685d81aa21 100644
--- a/api/Project.ReportTemplates.Item.md
+++ b/api/Project.ReportTemplates.Item.md
@@ -24,7 +24,7 @@ Gets a single **ReportTemplate** object from a **[ReportTemplates](Project.repo
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Resource.AppendNotes.md b/api/Project.Resource.AppendNotes.md
index 71aa1807c3e..aaf82910efb 100644
--- a/api/Project.Resource.AppendNotes.md
+++ b/api/Project.Resource.AppendNotes.md
@@ -24,7 +24,7 @@ Appends text to the Notes field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Value_|Required|**String**|The text to append to the existing notes.|
diff --git a/api/Project.Resource.EnterpriseTeamMember.md b/api/Project.Resource.EnterpriseTeamMember.md
index 86c9218cb8b..d3aa117c6dc 100644
--- a/api/Project.Resource.EnterpriseTeamMember.md
+++ b/api/Project.Resource.EnterpriseTeamMember.md
@@ -24,11 +24,11 @@ Indicates whether the resource belongs to the project. **True** if the resource
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Project_|Required|**Object**|The **Project** object against which the expression is checked. For example, **ActiveProject**.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.Resource.GetField.md b/api/Project.Resource.GetField.md
index b04f0993ff6..491dd1f9770 100644
--- a/api/Project.Resource.GetField.md
+++ b/api/Project.Resource.GetField.md
@@ -24,11 +24,11 @@ Returns the value of the specified resource custom field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FieldID_|Required|**Long**|For a local custom field, can be one of the **[PjField](Project.PjField.md)** constants for resource custom fields. For an enterprise custom field, use the **[FieldNameToFieldConstant](Project.Application.FieldNameToFieldConstant.md)** method to get the FieldID.|
-### Return Value
+### Return value
**String**
diff --git a/api/Project.Resource.SetField.md b/api/Project.Resource.SetField.md
index 3eaf7dd3d1d..a5f21d119d1 100644
--- a/api/Project.Resource.SetField.md
+++ b/api/Project.Resource.SetField.md
@@ -24,7 +24,7 @@ Sets the value of the specified resource custom field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FieldID_|Required|**Long**|For a local custom field, can be one of the **[PjField](Project.PjField.md)** constants for resource custom fields. For an enterprise custom field, use the **[FieldNameToFieldConstant](Project.Application.FieldNameToFieldConstant.md)** method to get the FieldID.|
| _Value_|Required|**String**|The value of the field.|
diff --git a/api/Project.Resource.TimeScaleData.md b/api/Project.Resource.TimeScaleData.md
index f47da2088da..73801d4c33b 100644
--- a/api/Project.Resource.TimeScaleData.md
+++ b/api/Project.Resource.TimeScaleData.md
@@ -24,7 +24,7 @@ Sets options for displaying timephased data for the resource.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StartDate_|Required|**Variant**|The start date for the timephased data. If the start date falls within an interval, it is "rounded" to the start of the interval. For example, if _TimeScaleUnit_ is **pjTimescaleWeeks** and _StartDate_ specifies a Wednesday, the start date is rounded to the preceding Monday (assuming that the work week started on a Monday).|
| _EndDate_|Required|**Variant**|The end date for the timephased data. If the end date falls within an interval, it is "rounded" to the end of the interval.|
@@ -32,7 +32,7 @@ Sets options for displaying timephased data for the resource.
| _TimeScaleUnit_|Optional|**Long**|Can be one of the **[PjTimescaleUnit](Project.PjTimescaleUnit.md)** constants. The default value is **pjTimescaleWeeks**.|
| _Count_|Optional|**Long**|The number of timescale units to group together. The default value is 1.|
-### Return Value
+### Return value
**TimeScaleValues**
diff --git a/api/Project.ResourceGroups.Add.md b/api/Project.ResourceGroups.Add.md
index 0af0bfb3e93..7f9a1a27b32 100644
--- a/api/Project.ResourceGroups.Add.md
+++ b/api/Project.ResourceGroups.Add.md
@@ -24,12 +24,12 @@ Adds a **Group** object to a **ResourceGroups** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of a group definition.|
| _FieldName_|Required|**String**|The name of the first field to group by.|
-### Return Value
+### Return value
**Group**
diff --git a/api/Project.ResourceGroups.Copy.md b/api/Project.ResourceGroups.Copy.md
index 9fda1f6375b..16303975c54 100644
--- a/api/Project.ResourceGroups.Copy.md
+++ b/api/Project.ResourceGroups.Copy.md
@@ -24,12 +24,12 @@ Makes a copy of a group definition for the **ResourceGroups** collection and re
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of the group to copy.|
| _NewName_|Required|**String**|The name of the new group.|
-### Return Value
+### Return value
**Group**
diff --git a/api/Project.ResourceGroups.Item.md b/api/Project.ResourceGroups.Item.md
index f4b6f42fcd6..00b4da15e2a 100644
--- a/api/Project.ResourceGroups.Item.md
+++ b/api/Project.ResourceGroups.Item.md
@@ -24,7 +24,7 @@ Gets a single **Group** object from the **ResourceGroups** collection. Read-onl
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.ResourceGroups2.Add.md b/api/Project.ResourceGroups2.Add.md
index ec0582acf12..c6853751bf5 100644
--- a/api/Project.ResourceGroups2.Add.md
+++ b/api/Project.ResourceGroups2.Add.md
@@ -24,12 +24,12 @@ Adds a **[Group2](Project.Group2.md)** object to a **ResourceGroups2** collecti
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of a group definition.|
| _FieldName_|Required|**String**|The name of the first field to group by.|
-### Return Value
+### Return value
**Group2**
diff --git a/api/Project.ResourceGroups2.Application.md b/api/Project.ResourceGroups2.Application.md
index 037582c7a6b..0277bd40b69 100644
--- a/api/Project.ResourceGroups2.Application.md
+++ b/api/Project.ResourceGroups2.Application.md
@@ -20,7 +20,7 @@ Gets the **[Application](Project.Application.md)** object. Read-only **Applicat
_expression_ An expression that returns a 'ResourceGroups2' object.
-### Return Value
+### Return value
Application
diff --git a/api/Project.ResourceGroups2.Copy.md b/api/Project.ResourceGroups2.Copy.md
index 55a363a188e..dee4d10492e 100644
--- a/api/Project.ResourceGroups2.Copy.md
+++ b/api/Project.ResourceGroups2.Copy.md
@@ -24,12 +24,12 @@ Makes a copy of a group definition for the **ResourceGroups2** collection and r
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of the group to copy.|
| _NewName_|Required|**String**|The name of the new group.|
-### Return Value
+### Return value
**Group2**
diff --git a/api/Project.ResourceGroups2.Item.md b/api/Project.ResourceGroups2.Item.md
index 1dd19838c2f..6e0c7a58dd8 100644
--- a/api/Project.ResourceGroups2.Item.md
+++ b/api/Project.ResourceGroups2.Item.md
@@ -24,7 +24,7 @@ Gets a single item from a collection. Read-only **Object**.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Resources.Add.md b/api/Project.Resources.Add.md
index d526102b47f..b9385f6cd2c 100644
--- a/api/Project.Resources.Add.md
+++ b/api/Project.Resources.Add.md
@@ -24,12 +24,12 @@ Adds a **Resource** object to a **Resources** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|The name of the new resource. The default value is an empty string ("").|
| _Before_|Optional|**Long**|The position of the resource in its containing collection. The default value is the position of the last item in the collection.|
-### Return Value
+### Return value
**Resource**
diff --git a/api/Project.Resources.Item.md b/api/Project.Resources.Item.md
index e13cda04cb5..1d9b13762f6 100644
--- a/api/Project.Resources.Item.md
+++ b/api/Project.Resources.Item.md
@@ -24,7 +24,7 @@ Gets a single **Resource** object from the **Resources** collection. Read-only
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Resources.UniqueID.md b/api/Project.Resources.UniqueID.md
index ffd8366faca..b63c5cec366 100644
--- a/api/Project.Resources.UniqueID.md
+++ b/api/Project.Resources.UniqueID.md
@@ -24,7 +24,7 @@ Gets a **[Resource](Project.Resource.md)** object from its containing collectio
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Long**|The position of the object within its containing collection.|
diff --git a/api/Project.SplitParts.Add.md b/api/Project.SplitParts.Add.md
index e6c061a5b3d..2f036405cb0 100644
--- a/api/Project.SplitParts.Add.md
+++ b/api/Project.SplitParts.Add.md
@@ -24,7 +24,7 @@ Adds a **SplitPart** object to a **SplitParts** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StartSplitPartOn_|Required|**Variant**|The start date of the task portion.|
| _EndSplitPartOn_|Required|**Variant**|The end date of the task portion. If EndSplitPartOn is on or before the date specified with StartSplitPartOn, the portion is not created.|
diff --git a/api/Project.SplitParts.Item.md b/api/Project.SplitParts.Item.md
index 64e74b9d51d..884c6193946 100644
--- a/api/Project.SplitParts.Item.md
+++ b/api/Project.SplitParts.Item.md
@@ -24,7 +24,7 @@ Gets a single **SplitPart** object from the **SplitParts** collection. Read-onl
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Long**|The index number of the object to return.|
diff --git a/api/Project.StartDriver.EffectiveDateAdd.md b/api/Project.StartDriver.EffectiveDateAdd.md
index 0fac19fda02..d0e4c63a4df 100644
--- a/api/Project.StartDriver.EffectiveDateAdd.md
+++ b/api/Project.StartDriver.EffectiveDateAdd.md
@@ -24,7 +24,7 @@ Gets the date and time that follows another date by a specified duration, using
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Date_|Required|**Variant**|Arbitrary date and time, for example, "7/10/2010" or "7/10/2010 2:00:00 PM".|
| _Duration_|Required|**Variant**|Duration to add, for example, "3d" or "2w".|
diff --git a/api/Project.StartDriver.EffectiveDateDifference.md b/api/Project.StartDriver.EffectiveDateDifference.md
index 8d28e69bb1b..adad0bb4f28 100644
--- a/api/Project.StartDriver.EffectiveDateDifference.md
+++ b/api/Project.StartDriver.EffectiveDateDifference.md
@@ -24,7 +24,7 @@ Gets the duration between two dates in minutes, using the effective calendar for
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StartDate_|Required|**Variant**|Arbitrary start date and time, for example, "7/10/2010" or "7/10/2010 2:00:00 PM".|
| _FinishDate_|Required|**Variant**|Arbitrary finish date and time.|
diff --git a/api/Project.StartDriver.EffectiveDateSubtract.md b/api/Project.StartDriver.EffectiveDateSubtract.md
index d3a1163a05a..b57545642a1 100644
--- a/api/Project.StartDriver.EffectiveDateSubtract.md
+++ b/api/Project.StartDriver.EffectiveDateSubtract.md
@@ -24,7 +24,7 @@ Gets the date and time that precedes another date by a specified duration, using
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Date_|Required|**Variant**|Arbitrary date and time, for example, "7/10/2010" or "7/10/2010 2:00:00 PM".|
| _Duration_|Required|**Variant**|Duration to subtract, for example, "3d" or "2w".|
diff --git a/api/Project.StartDriver.OverAllocatedAssignments.md b/api/Project.StartDriver.OverAllocatedAssignments.md
index f2abea933ec..c3c418081a2 100644
--- a/api/Project.StartDriver.OverAllocatedAssignments.md
+++ b/api/Project.StartDriver.OverAllocatedAssignments.md
@@ -24,7 +24,7 @@ Gets overallocated assignments for a task start driver. Read-only **OverAllocat
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _overallocationType_|Required|**PjOverallocationType**|Can be one of the **[PjOverallocationType](Project.PjOverallocationType.md)** constants, which determines the type of overallocation.|
diff --git a/api/Project.Subprojects.Item.md b/api/Project.Subprojects.Item.md
index 8a2d560d086..e841bfca35d 100644
--- a/api/Project.Subprojects.Item.md
+++ b/api/Project.Subprojects.Item.md
@@ -24,7 +24,7 @@ Gets a single **Subproject** object from the **Subprojects** collection. Read-o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Table.Apply.md b/api/Project.Table.Apply.md
index d808c969d6a..0071b800ea2 100644
--- a/api/Project.Table.Apply.md
+++ b/api/Project.Table.Apply.md
@@ -23,7 +23,7 @@ Applies the table to the current view.
_expression_ An expression that returns a [Table](./Project.Table.md) object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Project.TableFields.Add.md b/api/Project.TableFields.Add.md
index 8f6c60af3f2..6dd12431536 100644
--- a/api/Project.TableFields.Add.md
+++ b/api/Project.TableFields.Add.md
@@ -27,7 +27,7 @@ Adds a **TableField** object to a **TableFields** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Field_|Required|**Long**|The name of the table field. Can be one of the **[PjField](Project.PjField.md)** constants.|
| _AlignData_|Optional|**Long**|The alignment of the table data. Can be one of the **[PjAlignment](Project.PjAlignment.md)** constants. The default value is **pjRight**.|
@@ -37,7 +37,7 @@ Adds a **TableField** object to a **TableFields** collection.
| _Before_|Optional|**Long**|Position of the title. The default value is -1.|
| _AutoWrap_|Optional|**Boolean**|**True** if the data in the table field automatically wrap. The default value is **True**.|
-### Return Value
+### Return value
**TableField**
diff --git a/api/Project.TableFields.Item.md b/api/Project.TableFields.Item.md
index bebd0c008b5..4c92086d649 100644
--- a/api/Project.TableFields.Item.md
+++ b/api/Project.TableFields.Item.md
@@ -24,7 +24,7 @@ Gets a single **TableField** object from the **TableFields** collection. Read-o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Tables.Add.md b/api/Project.Tables.Add.md
index 4f75cc9696e..2f8fd3ed0de 100644
--- a/api/Project.Tables.Add.md
+++ b/api/Project.Tables.Add.md
@@ -24,13 +24,13 @@ Adds a **Table** object to a **Tables** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of the table.|
| _Field_|Required|**Long**|The name of the field. Can be one of the **[PjField](Project.PjField.md)** constants.|
| _Task_|Optional|**Boolean**|**True** if the table being added is a task table. The default value is **True**.|
-### Return Value
+### Return value
**Table**
diff --git a/api/Project.Tables.Copy.md b/api/Project.Tables.Copy.md
index 4ee4a4e2303..170028016be 100644
--- a/api/Project.Tables.Copy.md
+++ b/api/Project.Tables.Copy.md
@@ -27,12 +27,12 @@ Makes a copy of a group definition for the **Tables** collection and returns a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Source_|Required|**String**|The name of the table to copy.|
| _NewName_|Required|**String**|The name of the new table.|
-### Return Value
+### Return value
**Table**
diff --git a/api/Project.Tables.Item.md b/api/Project.Tables.Item.md
index e81fbd14f18..6e3e78f2d2c 100644
--- a/api/Project.Tables.Item.md
+++ b/api/Project.Tables.Item.md
@@ -24,7 +24,7 @@ Gets a single **Table** object from the **Tables** collection. Read-only **Tabl
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Task.AppendNotes.md b/api/Project.Task.AppendNotes.md
index 8e0d7728f05..7d5c20fd4c3 100644
--- a/api/Project.Task.AppendNotes.md
+++ b/api/Project.Task.AppendNotes.md
@@ -24,7 +24,7 @@ Appends text to the Notes field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Value_|Required|**String**|The text to append to the existing notes.|
diff --git a/api/Project.Task.GetField.md b/api/Project.Task.GetField.md
index 2f68cb8f41f..08714a25025 100644
--- a/api/Project.Task.GetField.md
+++ b/api/Project.Task.GetField.md
@@ -24,11 +24,11 @@ Returns the value of the specified task custom field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FieldID_|Required|**Long**|For a local custom field, can be one of the **[PjField](Project.PjField.md)** constants for task custom fields. For an enterprise custom field, use the **[FieldNameToFieldConstant](Project.Application.FieldNameToFieldConstant.md)** method to get the _FieldID_.|
-### Return Value
+### Return value
**String**
diff --git a/api/Project.Task.LinkPredecessors.md b/api/Project.Task.LinkPredecessors.md
index 25163394132..c32385f611c 100644
--- a/api/Project.Task.LinkPredecessors.md
+++ b/api/Project.Task.LinkPredecessors.md
@@ -24,7 +24,7 @@ Adds one or more predecessors to the task.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Tasks_|Required|**Object**| The **Task** or **Tasks** object specified becomes a predecessor of the task specified with **expression**.|
| _Link_|Optional|**Long**| A constant that specifies the relationship between tasks that become linked. Can be one of the [PjTaskLinkType](Project.PjTaskLinkType.md) constants. The default value is **pjFinishToStart**.|
diff --git a/api/Project.Task.LinkSuccessors.md b/api/Project.Task.LinkSuccessors.md
index ccb5d3ff3ff..d74870c586b 100644
--- a/api/Project.Task.LinkSuccessors.md
+++ b/api/Project.Task.LinkSuccessors.md
@@ -24,13 +24,13 @@ Adds one or more successors to the task.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Tasks_|Required|**Object**|The **Task** or **Tasks** object specified becomes a successor of the task specified with **expression**.|
| _Link_|Optional|**Long**| A constant that specifies the relationship between tasks that become linked. Can be one of the [PjTaskLinkType](Project.PjTaskLinkType.md) constants. The default value is **pjFinishToStart**.|
| _Lag_|Optional|**Variant**|A string that specifies the duration of lag time between linked tasks. To specify lead time between tasks, use an expression for **Lag** that evaluates to a negative value.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Project.Task.SetField.md b/api/Project.Task.SetField.md
index ee7a2d4546a..538ff44bc3a 100644
--- a/api/Project.Task.SetField.md
+++ b/api/Project.Task.SetField.md
@@ -24,7 +24,7 @@ Sets the value of the specified task custom field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FieldID_|Required|**Long**|For a local custom field, can be one of the **[PjField](Project.PjField.md)** constants for task custom fields. For an enterprise custom field, use the **[FieldNameToFieldConstant](Project.Application.FieldNameToFieldConstant.md)** method to get the _FieldID_.|
| _Value_|Required|**String**|The value of the field.|
diff --git a/api/Project.Task.Split.md b/api/Project.Task.Split.md
index 9f2d707d897..f9db02079aa 100644
--- a/api/Project.Task.Split.md
+++ b/api/Project.Task.Split.md
@@ -24,7 +24,7 @@ Splits the task into two portions.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StartSplitOn_|Required|**Variant**|The start date of the task split. If a time is not specified, the project's default end time for the working period is used.|
| _EndSplitOn_|Required|**Variant**|The end date of the task split. If a time is not specified, the project's default start time for the working period is used. If _EndSplitOn_ is on or before the date specified with _StartSplitOn_, the split is not created.|
diff --git a/api/Project.Task.TimeScaleData.md b/api/Project.Task.TimeScaleData.md
index 2f9302dd05e..1f812d33912 100644
--- a/api/Project.Task.TimeScaleData.md
+++ b/api/Project.Task.TimeScaleData.md
@@ -24,7 +24,7 @@ Sets options for displaying timephased data for the task.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StartDate_|Required|**Variant**|The start date for the timephased data. If the start date falls within an interval, it is "rounded" to the start of the interval. For example, if TimeScaleUnit is **pjTimescaleWeeks** and StartDate specifies a Wednesday, the start date is rounded to the preceding Monday (assuming that the work week started on a Monday).|
| _EndDate_|Required|**Variant**|The end date for the timephased data. If the end date falls within an interval, it is "rounded" to the end of the interval.|
@@ -32,7 +32,7 @@ Sets options for displaying timephased data for the task.
| _TimeScaleUnit_|Optional|**Long**|Can be one of the **[PjTimescaleUnit](Project.PjTimescaleUnit.md)** constants. The default value is **pjTimescaleWeeks**.|
| _Count_|Optional|**Long**|The number of timescale units to group together. The default value is 1.|
-### Return Value
+### Return value
**TimeScaleValues**
diff --git a/api/Project.Task.UnlinkPredecessors.md b/api/Project.Task.UnlinkPredecessors.md
index 6af0c0144e6..430188be2f4 100644
--- a/api/Project.Task.UnlinkPredecessors.md
+++ b/api/Project.Task.UnlinkPredecessors.md
@@ -24,11 +24,11 @@ Removes one or more predecessors from the task.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Tasks_|Required|**Object**|Can be a **Task** or **Tasks** object, which specifies one or more tasks that are removed as predecessors.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Project.Task.UnlinkSuccessors.md b/api/Project.Task.UnlinkSuccessors.md
index d3c097e1ac3..00635f99db5 100644
--- a/api/Project.Task.UnlinkSuccessors.md
+++ b/api/Project.Task.UnlinkSuccessors.md
@@ -24,11 +24,11 @@ Removes one or more successors from the task.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Tasks_|Required|**Object**|Can be a **Task** or **Tasks** object, which specifies one or more tasks that are removed as successors.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Project.TaskDependencies.Add.md b/api/Project.TaskDependencies.Add.md
index 47ee41dc884..48e7093cbb3 100644
--- a/api/Project.TaskDependencies.Add.md
+++ b/api/Project.TaskDependencies.Add.md
@@ -24,13 +24,13 @@ Adds a **TaskDependency** object to a **TaskDependencies** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _From_|Required|**Object**|The **Task** object specified becomes a predecessor of the task specified by expression.|
| _Type_|Optional|**Long**|The type of relationship between the linked tasks. Can be one of the **[PjTaskLinkType](Project.PjTaskLinkType.md)** constants. The default value is **pjFinishToStart**.|
| _Lag_|Optional|**Variant**|The duration of lag time between linked tasks. To specify lead time between tasks, use a negative value. String values default to days unless otherwise specified. Non-string values are interpreted as minutes. The default value is 0.|
-### Return Value
+### Return value
**TaskDependency**
diff --git a/api/Project.TaskDependencies.Item.md b/api/Project.TaskDependencies.Item.md
index 405478e0dff..3cc1c955a0b 100644
--- a/api/Project.TaskDependencies.Item.md
+++ b/api/Project.TaskDependencies.Item.md
@@ -24,7 +24,7 @@ Gets a single **TaskDependency** object from the **TaskDependencies** collectio
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Long**|The index number of the object to return.|
diff --git a/api/Project.TaskGroups.Add.md b/api/Project.TaskGroups.Add.md
index d376283939f..6a041ebb9bf 100644
--- a/api/Project.TaskGroups.Add.md
+++ b/api/Project.TaskGroups.Add.md
@@ -24,12 +24,12 @@ Adds a **Group** object to a **TaskGroups** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**| The name of a group definition.|
| _FieldName_|Required|**String**|The name of the first field to group by.|
-### Return Value
+### Return value
**Group**
diff --git a/api/Project.TaskGroups.Copy.md b/api/Project.TaskGroups.Copy.md
index e79da071e0e..b64c6fcac58 100644
--- a/api/Project.TaskGroups.Copy.md
+++ b/api/Project.TaskGroups.Copy.md
@@ -24,12 +24,12 @@ Makes a copy of a group definition for the **TaskGroups** collection and return
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of the group to copy.|
| _NewName_|Required|**String**|The name of the new group.|
-### Return Value
+### Return value
**Group**
diff --git a/api/Project.TaskGroups.Item.md b/api/Project.TaskGroups.Item.md
index d4f8de9f5a3..b742c093d9b 100644
--- a/api/Project.TaskGroups.Item.md
+++ b/api/Project.TaskGroups.Item.md
@@ -24,7 +24,7 @@ Gets a single **Group** object from the **TaskGroups** collection. Read-only **
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.TaskGroups2.Add.md b/api/Project.TaskGroups2.Add.md
index 89088817b4a..2d9c90d3f98 100644
--- a/api/Project.TaskGroups2.Add.md
+++ b/api/Project.TaskGroups2.Add.md
@@ -24,12 +24,12 @@ Adds a **[Group2](Project.Group2.md)** object to the **TaskGroups2** collection
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**| The name of a group definition.|
| _FieldName_|Required|**String**|The name of the first field to group by.|
-### Return Value
+### Return value
**Group2**
diff --git a/api/Project.TaskGroups2.Application.md b/api/Project.TaskGroups2.Application.md
index 1e384b210cc..55ae1582b01 100644
--- a/api/Project.TaskGroups2.Application.md
+++ b/api/Project.TaskGroups2.Application.md
@@ -20,7 +20,7 @@ Gets the **[Application](Project.Application.md)** object. Read-only **Applicat
_expression_ An expression that returns a 'TaskGroups2' object.
-### Return Value
+### Return value
Application
diff --git a/api/Project.TaskGroups2.Copy.md b/api/Project.TaskGroups2.Copy.md
index 9c8be085fae..7664a15ac8b 100644
--- a/api/Project.TaskGroups2.Copy.md
+++ b/api/Project.TaskGroups2.Copy.md
@@ -24,12 +24,12 @@ Makes a copy of a group definition for the **TaskGroups2** collection and retur
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of the group to copy.|
| _NewName_|Required|**String**|The name of the new group.|
-### Return Value
+### Return value
**Group2**
diff --git a/api/Project.TaskGroups2.Item.md b/api/Project.TaskGroups2.Item.md
index 6031b1d5a6a..50e6afd63d7 100644
--- a/api/Project.TaskGroups2.Item.md
+++ b/api/Project.TaskGroups2.Item.md
@@ -24,7 +24,7 @@ Gets a single item from a collection. Read-only **Object**.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.TaskGroups2.Parent.md b/api/Project.TaskGroups2.Parent.md
index b22135ecb67..00a61e60b82 100644
--- a/api/Project.TaskGroups2.Parent.md
+++ b/api/Project.TaskGroups2.Parent.md
@@ -20,7 +20,7 @@ Gets the parent of the object. Read-only **Project**.
_expression_ An expression that returns a 'TaskGroups2' object.
-### Return Value
+### Return value
Project
diff --git a/api/Project.Tasks.Add.md b/api/Project.Tasks.Add.md
index 0e525b2f9d7..5872de46f41 100644
--- a/api/Project.Tasks.Add.md
+++ b/api/Project.Tasks.Add.md
@@ -24,12 +24,12 @@ Adds a **Task** object to a **Tasks** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**String**|The name of the new task. The default value is an empty string ("").|
| _Before_|Optional|**Long**|The position of the task in its containing collection. The default value is the position of the last item in the collection.|
-### Return Value
+### Return value
**Task**
diff --git a/api/Project.Tasks.Item.md b/api/Project.Tasks.Item.md
index 95b80e135fe..59a97da27ce 100644
--- a/api/Project.Tasks.Item.md
+++ b/api/Project.Tasks.Item.md
@@ -24,7 +24,7 @@ Gets a single **Task** object from the **Tasks** collection. Read-only **Task**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Tasks.UniqueID.md b/api/Project.Tasks.UniqueID.md
index 3e90c226e2b..b1516c628a6 100644
--- a/api/Project.Tasks.UniqueID.md
+++ b/api/Project.Tasks.UniqueID.md
@@ -24,7 +24,7 @@ Gets a **[Task](Project.Task.md)** object from its containing collection. Read-
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Long**|The position of the object within its containing collection.|
diff --git a/api/Project.TimeScaleValues.Add.md b/api/Project.TimeScaleValues.Add.md
index 0c98a78a3d5..32a2c303399 100644
--- a/api/Project.TimeScaleValues.Add.md
+++ b/api/Project.TimeScaleValues.Add.md
@@ -24,12 +24,12 @@ Adds a **TimeScaleValue** object to a **TimeScaleValues** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Value_|Required|**Variant**|The value of the timescaled data.|
| _Position_|Optional|**Variant**|The position of the new value. The default value is **n + 1**, where **n** is the number of items in the collection. If the value specified for Position is **n + 2** or greater, the intervening items are given a value of 0.|
-### Return Value
+### Return value
**TimeScaleValue**
diff --git a/api/Project.TimeScaleValues.Item.md b/api/Project.TimeScaleValues.Item.md
index 548f865eb94..ce1069e260c 100644
--- a/api/Project.TimeScaleValues.Item.md
+++ b/api/Project.TimeScaleValues.Item.md
@@ -24,7 +24,7 @@ Gets a single **TimeScaleValue** object from the **TimeScaleValues** collection
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Long**|The name or index number of the object to return.|
diff --git a/api/Project.View.Apply.md b/api/Project.View.Apply.md
index 91b352fc31b..ff8b6915139 100644
--- a/api/Project.View.Apply.md
+++ b/api/Project.View.Apply.md
@@ -20,7 +20,7 @@ Applies the view.
_expression_ A variable that represents a [View](./Project.View.md) object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Project.ViewCombination.Apply.md b/api/Project.ViewCombination.Apply.md
index 0fa91ab4992..9e7713afa5d 100644
--- a/api/Project.ViewCombination.Apply.md
+++ b/api/Project.ViewCombination.Apply.md
@@ -20,7 +20,7 @@ Applies the combination view.
_expression_ A variable that represents a [ViewCombination](./Project.ViewCombination.md) object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Project.ViewSingle.Apply.md b/api/Project.ViewSingle.Apply.md
index 82b135cdc3f..f3681bbc444 100644
--- a/api/Project.ViewSingle.Apply.md
+++ b/api/Project.ViewSingle.Apply.md
@@ -20,7 +20,7 @@ Applies the single view.
_expression_ A variable that represents a [ViewSingle](./Project.ViewSingle.md) object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Project.Views.Copy.md b/api/Project.Views.Copy.md
index b3a28beb7fe..5027a696bbf 100644
--- a/api/Project.Views.Copy.md
+++ b/api/Project.Views.Copy.md
@@ -24,12 +24,12 @@ Makes a copy of a group definition for the **Views** collection and returns a r
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Source_|Required|**String**|The name of the view to copy.|
| _NewName_|Required|**String**|The name of the new view.|
-### Return Value
+### Return value
**View**
diff --git a/api/Project.Views.Item.md b/api/Project.Views.Item.md
index eed01f9196e..8e670bfe10d 100644
--- a/api/Project.Views.Item.md
+++ b/api/Project.Views.Item.md
@@ -24,7 +24,7 @@ Gets a single **View** object from the **Views** collection. Read-only **View**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.ViewsCombination.Add.md b/api/Project.ViewsCombination.Add.md
index 1b9af2578c6..2cd3e52f559 100644
--- a/api/Project.ViewsCombination.Add.md
+++ b/api/Project.ViewsCombination.Add.md
@@ -27,14 +27,14 @@ Adds a **ViewCombination** object to a **ViewsCombination** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of the combination view.|
| _TopView_|Required|**Variant**|The view that appears in the top pane of a combination view.|
| _BottomView_|Required|**Variant**|The view that appears in the bottom pane of a combination view.|
| _ShowInMenu_|Optional|**Boolean**|**True** if Project Server shows the view in the **View** menu. The default value is **False**|
-### Return Value
+### Return value
**ViewCombination**
diff --git a/api/Project.ViewsCombination.Copy.md b/api/Project.ViewsCombination.Copy.md
index dfd691ac9bd..7d7de725b0b 100644
--- a/api/Project.ViewsCombination.Copy.md
+++ b/api/Project.ViewsCombination.Copy.md
@@ -24,12 +24,12 @@ Makes a copy of a group definition for the **ViewsCombination** collection and
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Source_|Required|**String**|The name of the view to copy.|
| _NewName_|Required|**String**|The name of the new view.|
-### Return Value
+### Return value
**View**
diff --git a/api/Project.ViewsCombination.Item.md b/api/Project.ViewsCombination.Item.md
index af39317762f..cf0e746da21 100644
--- a/api/Project.ViewsCombination.Item.md
+++ b/api/Project.ViewsCombination.Item.md
@@ -24,7 +24,7 @@ Gets a single **View** object from the **ViewsCombination** collection. Read-on
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.ViewsSingle.Add.md b/api/Project.ViewsSingle.Add.md
index 685bf4e96ba..d37a9f94ea0 100644
--- a/api/Project.ViewsSingle.Add.md
+++ b/api/Project.ViewsSingle.Add.md
@@ -27,7 +27,7 @@ Adds a **ViewSingle** object to a **ViewsSingle** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of the view.|
| _Screen_|Optional|**Long**| The project view. Can be one of the **[PjViewScreen](Project.PjViewScreen.md)** constants. The default value is **pjGantt**.|
@@ -37,7 +37,7 @@ Adds a **ViewSingle** object to a **ViewsSingle** collection.
| _Group_|Optional|**Variant**|Specifies the group to be used by the view. If a group is required for the view, but none is specified, the default is ** No Group**. This value is ignored if the view specified with the **Screen** argument does not use groups.|
| _HighlightFilt_|Optional|**Boolean**|**True** if the filter applied is a highlight filter. The default value is **False**.|
-### Return Value
+### Return value
**ViewSingle**
diff --git a/api/Project.ViewsSingle.Copy.md b/api/Project.ViewsSingle.Copy.md
index fea844948a8..3f334c7b5a4 100644
--- a/api/Project.ViewsSingle.Copy.md
+++ b/api/Project.ViewsSingle.Copy.md
@@ -24,12 +24,12 @@ Makes a copy of a group definition for the **ViewsSingle** collection and retur
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Source_|Required|**Variant**|The name of view to copy.|
| _NewName_|Required|**String**|The name of the new view.|
-### Return Value
+### Return value
**View**
diff --git a/api/Project.ViewsSingle.Item.md b/api/Project.ViewsSingle.Item.md
index c556cb62902..f4ec472a254 100644
--- a/api/Project.ViewsSingle.Item.md
+++ b/api/Project.ViewsSingle.Item.md
@@ -24,7 +24,7 @@ Gets a single **View** object from the **ViewsSingle** collection. Read-only **
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.WeekDays.Item.md b/api/Project.WeekDays.Item.md
index c2eecfbd45a..4a3013712b2 100644
--- a/api/Project.WeekDays.Item.md
+++ b/api/Project.WeekDays.Item.md
@@ -24,7 +24,7 @@ Gets a single **WeekDay** object from the **WeekDays** collection. Read-only **
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Window.Refresh.md b/api/Project.Window.Refresh.md
index 3306e0d72d8..df84fc11372 100644
--- a/api/Project.Window.Refresh.md
+++ b/api/Project.Window.Refresh.md
@@ -23,7 +23,7 @@ Refreshes the window.
_expression_ A variable that represents a [Window](./Project.Window.md) object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Project.Window.WebBrowserControlFrame.md b/api/Project.Window.WebBrowserControlFrame.md
index 3cc4e5311b0..78ae5c8d9ac 100644
--- a/api/Project.Window.WebBrowserControlFrame.md
+++ b/api/Project.Window.WebBrowserControlFrame.md
@@ -27,11 +27,11 @@ Returns the DOM object of a specified frame in the Web browser control window ho
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FrameName_|Required|**Long**|The ID of the frame.|
-### Return Value
+### Return value
**[IHTMLDOCUMENT2]**
diff --git a/api/Project.Window.WebBrowserControlWindow.md b/api/Project.Window.WebBrowserControlWindow.md
index 9ebcaa3aeb5..0c7e70c165d 100644
--- a/api/Project.Window.WebBrowserControlWindow.md
+++ b/api/Project.Window.WebBrowserControlWindow.md
@@ -23,7 +23,7 @@ Returns the DOM object for the Microsoft Internet Explorer window loaded in the
_expression_ A variable that represents a [Window](./Project.Window.md) object.
-### Return Value
+### Return value
**[IHTMLDOCUMENT2]**
diff --git a/api/Project.Windows.Item.md b/api/Project.Windows.Item.md
index dfa8afec932..4dccf0148d4 100644
--- a/api/Project.Windows.Item.md
+++ b/api/Project.Windows.Item.md
@@ -24,7 +24,7 @@ Gets a single **Window** object from the **Windows** collection. Read-only **Wi
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Windows2.Item.md b/api/Project.Windows2.Item.md
index f3d6542d9f4..2310f0db82b 100644
--- a/api/Project.Windows2.Item.md
+++ b/api/Project.Windows2.Item.md
@@ -24,7 +24,7 @@ Gets a single **Window** object from the **Windows2** collection. Read-only **W
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.WorkWeekDay.Default.md b/api/Project.WorkWeekDay.Default.md
index 4c8d74dc680..b334f151b82 100644
--- a/api/Project.WorkWeekDay.Default.md
+++ b/api/Project.WorkWeekDay.Default.md
@@ -20,7 +20,7 @@ Resets the **WorkWeekDay** item of a resource calendar to the value in the corr
_expression_ An expression that returns a [WorkWeekDay](./Project.WorkWeekDay.md) object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Project.WorkWeekDays.Item.md b/api/Project.WorkWeekDays.Item.md
index b6772331ea6..40dfd7495ed 100644
--- a/api/Project.WorkWeekDays.Item.md
+++ b/api/Project.WorkWeekDays.Item.md
@@ -24,7 +24,7 @@ Gets a single **WorkWeekDay** object from the **WorkWeekDays** collection. Read
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.WorkWeeks.Add.md b/api/Project.WorkWeeks.Add.md
index effcc8f211a..1e72120b3c8 100644
--- a/api/Project.WorkWeeks.Add.md
+++ b/api/Project.WorkWeeks.Add.md
@@ -24,13 +24,13 @@ Adds a **WorkWeek** object to a **WorkWeeks** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Start_|Required|**Variant**|The start date of a **WorkWeek** object.|
| _Finish_|Optional|**Variant**|The finish date of a **WorkWeek** object.|
| _Name_|Optional|**String**|The name of a **WorkWeek** object.|
-### Return Value
+### Return value
**WorkWeek**
diff --git a/api/Project.WorkWeeks.Item.md b/api/Project.WorkWeeks.Item.md
index 29c72950494..7b410f09955 100644
--- a/api/Project.WorkWeeks.Item.md
+++ b/api/Project.WorkWeeks.Item.md
@@ -24,7 +24,7 @@ Gets a single **WorkWeek** object from the **WorkWeeks** collection. Read-only
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.Years.Item.md b/api/Project.Years.Item.md
index 9de4f812beb..203ff0659b3 100644
--- a/api/Project.Years.Item.md
+++ b/api/Project.Years.Item.md
@@ -24,7 +24,7 @@ Gets a single **Year** object from the **Years** collection. Read-only **Year**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|The name or index number of the object to return.|
diff --git a/api/Project.application.addengagement.md b/api/Project.application.addengagement.md
index 4ff3cd3c3da..1e2955679c1 100644
--- a/api/Project.application.addengagement.md
+++ b/api/Project.application.addengagement.md
@@ -21,7 +21,7 @@ Adds a **Resource Plan** view, enabling users to display and edit engagement da
_expression_ A variable that represents an [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Project.application.addsitecolumn.md b/api/Project.application.addsitecolumn.md
index f406bf75e17..58fb764fbbe 100644
--- a/api/Project.application.addsitecolumn.md
+++ b/api/Project.application.addsitecolumn.md
@@ -23,7 +23,7 @@ Adds a column that becomes available for the tasks list in the synchronized Shar
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ProjectField_|Optional|**[PjField](Project.PjField.md)**|Can be one of a subset of constants in the **PjField** enumeration, which specifies the project field to show in the new column; cannot be one of the prohibited fields (see Remarks).|
| _SharePointName_|Optional|**Variant**|The name of the new column.|
diff --git a/api/Project.application.addtimelinebar.md b/api/Project.application.addtimelinebar.md
index f9825ff1e72..14f79d01a12 100644
--- a/api/Project.application.addtimelinebar.md
+++ b/api/Project.application.addtimelinebar.md
@@ -26,11 +26,11 @@ Adds a **timeline** bar to the view. Introduced in Office 2016.
|||||
|:-----|:-----|:-----|:-----|
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
| _BarPosition_|Optional|Integer|Indicates where to add the timeline bar. If a number isn't specified, it is added at the bottom. The top bar is 0 and the next is 1, and so on. |
| _TimelineViewName_|Optional|String|Specifies the name of a timeline to use. The name can be the built-in timeline or an existing custom timeline such as "My Timeline". The default value is the name of the active timeline.|
-### Return Value
+### Return value
**BOOLEAN**
diff --git a/api/Project.application.engagementinfo.md b/api/Project.application.engagementinfo.md
index 453e26d05f9..3201191550c 100644
--- a/api/Project.application.engagementinfo.md
+++ b/api/Project.application.engagementinfo.md
@@ -36,7 +36,7 @@ Displays the engagement information dialog box user interface for the **Resourc
| _Work_|Optional|Real|The amount of work requested or approved for the engagement.|
| _ShowDialog_|Required|Boolean|Default=1; Displayed|
-### Return Value
+### Return value
**BOOLEAN**
diff --git a/api/Project.application.getcachestatusforproject.md b/api/Project.application.getcachestatusforproject.md
index 003202975ad..3613ed40eef 100644
--- a/api/Project.application.getcachestatusforproject.md
+++ b/api/Project.application.getcachestatusforproject.md
@@ -20,7 +20,7 @@ Gets the state of a specified job that the active cache in Project Professional
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ProjectName_|Required|**String**|The name of the project; can be the active project or a different project that is open.|
| _ProjectJobType_|Required|**PjJobType**|Can be one of the [PjJobType](Project.pjjobtype.md) constants for the save, publish, or check-in operation.|
diff --git a/api/Project.application.getdpiscalefactor.md b/api/Project.application.getdpiscalefactor.md
index c895a25a038..29300408691 100644
--- a/api/Project.application.getdpiscalefactor.md
+++ b/api/Project.application.getdpiscalefactor.md
@@ -18,7 +18,7 @@ Indicates the **DPI Scale Factor**, used for optimizing scale settings. Introdu
_expression_ A variable that represents a [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**VARIANT**
diff --git a/api/Project.application.highlightdrivensuccessors.md b/api/Project.application.highlightdrivensuccessors.md
index 6338e013af1..b31774ec86c 100644
--- a/api/Project.application.highlightdrivensuccessors.md
+++ b/api/Project.application.highlightdrivensuccessors.md
@@ -23,7 +23,7 @@ Sets or clears task driven successor highlighting for the task path feature.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Set_|Optional|**Variant**|**True** to set task driven successor highlighting; **False** to clear the task driven successor highlighting.|
| _Set_|Optional|VARIANT||
diff --git a/api/Project.application.highlightdrivingpredecessors.md b/api/Project.application.highlightdrivingpredecessors.md
index 4cbb8368197..f70977909b2 100644
--- a/api/Project.application.highlightdrivingpredecessors.md
+++ b/api/Project.application.highlightdrivingpredecessors.md
@@ -23,7 +23,7 @@ Sets or clears task driving predecessor highlighting for the task path feature.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Set_|Optional|**Variant**|**True** to set task driving predecessor highlighting; **False** to clear the task driving predecessor highlighting.|
| _Set_|Optional|VARIANT||
diff --git a/api/Project.application.highlightpredecessors.md b/api/Project.application.highlightpredecessors.md
index aae25e81359..be166a6dd14 100644
--- a/api/Project.application.highlightpredecessors.md
+++ b/api/Project.application.highlightpredecessors.md
@@ -23,7 +23,7 @@ Sets or clears task predecessor highlighting for the task path feature.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Set_|Optional|**Variant**|**True** to set task predecessor highlighting; **False** to clear the task predecessor highlighting.|
| _Set_|Optional|VARIANT||
diff --git a/api/Project.application.highlightsuccessors.md b/api/Project.application.highlightsuccessors.md
index 407ae419c0b..1106cb10555 100644
--- a/api/Project.application.highlightsuccessors.md
+++ b/api/Project.application.highlightsuccessors.md
@@ -23,7 +23,7 @@ Sets or clears task successor highlighting for the task path feature.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Set_|Optional|**Variant**|**True** to set task successor highlighting; **False** to clear task successor highlighting.|
| _Set_|Optional|VARIANT||
diff --git a/api/Project.application.inspector.md b/api/Project.application.inspector.md
index dab67471b52..8ac7736c7a0 100644
--- a/api/Project.application.inspector.md
+++ b/api/Project.application.inspector.md
@@ -21,7 +21,7 @@ Indicates the **Task Inspector** for use with engagement data. Introduced in Of
_expression_ A variable that represents a [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**BOOLEAN**
diff --git a/api/Project.application.ischeckedout.md b/api/Project.application.ischeckedout.md
index 0c647074883..c80f9f2a757 100644
--- a/api/Project.application.ischeckedout.md
+++ b/api/Project.application.ischeckedout.md
@@ -20,7 +20,7 @@ Gets whether an open project is checked out from Project Web App by the user. Re
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ProjectName_|Required|**String**|The name of a project that is open in Project Professional.|
diff --git a/api/Project.application.localename.md b/api/Project.application.localename.md
index bef415fc3eb..01cd4f7f8cd 100644
--- a/api/Project.application.localename.md
+++ b/api/Project.application.localename.md
@@ -22,11 +22,11 @@ Language name that is used by Project, such as en-us or za-ch. Introduced in Off
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|||||
-### Return Value
+### Return value
**STRING**
diff --git a/api/Project.application.projectsummaryinfoex.md b/api/Project.application.projectsummaryinfoex.md
index f0cb7a57ce8..8e95c7ae994 100644
--- a/api/Project.application.projectsummaryinfoex.md
+++ b/api/Project.application.projectsummaryinfoex.md
@@ -25,7 +25,7 @@ Returns information about project summary, including the Project Utilization typ
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Project_|Optional|**String**|The file name of the project that should have its project information edited.|
| _Title_|Optional|**String**|The title of the project.|
@@ -46,7 +46,7 @@ Returns information about project summary, including the Project Utilization typ
| _UtilizationDate_|Optional|**Variant**||
| _PartiallyDisabled_|Optional|**Boolean**|**True** if Project displays the **Project Information** dialog box with all elements disabled except for the **Enterprise Custom Fields** section.|
-### Return Value
+### Return value
**BOOL**
diff --git a/api/Project.application.refreshengagementsforproject.md b/api/Project.application.refreshengagementsforproject.md
index 458f0ee7282..58b9536e90f 100644
--- a/api/Project.application.refreshengagementsforproject.md
+++ b/api/Project.application.refreshengagementsforproject.md
@@ -21,7 +21,7 @@ Refreshes the engagements for the project using engagement state on the server.
_expression_ A variable that represents a [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**BOOL**
diff --git a/api/Project.application.removetimelinebar.md b/api/Project.application.removetimelinebar.md
index e3403b73bfe..c360e27b6e4 100644
--- a/api/Project.application.removetimelinebar.md
+++ b/api/Project.application.removetimelinebar.md
@@ -25,12 +25,12 @@ Removes a **Timeline** bar from the view. Introduced in Office 2016.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _BarPosition_|Optional|**Integer**|Indicates the timeline bar to remove. If a number isn't specified, the selected bar is removed if applicable. The top bar is 0 and the next is 1, and so on. If a number is not specified, the selected bar is removed if one is selected. The last timeline bar cannot be removed.|
| _TimelineViewName_|Optional|**String**|Specifies the name of a timeline. The name can be the built-in timeline or an existing custom timeline such as "My Timeline". The default value is the name of the active timeline.|
-### Return Value
+### Return value
**BOOLEAN**
diff --git a/api/Project.application.submitallengagementsforproject.md b/api/Project.application.submitallengagementsforproject.md
index f09c49d6675..c391653c5ea 100644
--- a/api/Project.application.submitallengagementsforproject.md
+++ b/api/Project.application.submitallengagementsforproject.md
@@ -21,7 +21,7 @@ Submits all the engagements in the project to the resource manager for review. I
_expression_ A variable that represents a [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**BOOL**
diff --git a/api/Project.application.submitselectedengagementsforproject.md b/api/Project.application.submitselectedengagementsforproject.md
index dc7ececf147..f7d22620f59 100644
--- a/api/Project.application.submitselectedengagementsforproject.md
+++ b/api/Project.application.submitselectedengagementsforproject.md
@@ -21,7 +21,7 @@ Submits all selected engagements in the project to the resource manager for revi
_expression_ A variable that represents a [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**BOOL**
diff --git a/api/Project.application.taskontimelineex.md b/api/Project.application.taskontimelineex.md
index 60561f2e78e..94515a6a49d 100644
--- a/api/Project.application.taskontimelineex.md
+++ b/api/Project.application.taskontimelineex.md
@@ -25,7 +25,7 @@ Manages tasks on the Timeline pane or for a specified custom timeline, including
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TaskID_|Optional|**Long**|Specifies the identification number of a task to add to the timeline or remove from the timeline. If _TaskID_ is specified, selected tasks are ignored.|
| _Remove_|Optional|**Boolean**|**True** if the task specified by _TaskID_ or the selected tasks are removed from the timeline; otherwise, **False**. The default value is **False**.|
@@ -33,7 +33,7 @@ Manages tasks on the Timeline pane or for a specified custom timeline, including
| _ShowDialog_|Optional|**Boolean**|**True** if Project displays the **Add Tasks to Timeline** dialog box; otherwise, **False**. Any tasks that are already on the timeline have a check by their names. If _ShowDialog_ is **True**, Project ignores the _TaskID_ and _Remove_ arguments. The default value is **False**.|
| _BarIndex_|Optional|**Variant**|The bar that you want to add or remove.|
-### Return Value
+### Return value
**BOOL**
diff --git a/api/Project.application.timelinebardaterange.md b/api/Project.application.timelinebardaterange.md
index 14e6b597203..d69c4344edb 100644
--- a/api/Project.application.timelinebardaterange.md
+++ b/api/Project.application.timelinebardaterange.md
@@ -25,14 +25,14 @@ Modifies the start and finish dates for a **Timeline** bar. Introduced in Offic
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CustomDates_|Optional|Boolean|Indicates if the timeline bar should use custom dates. If true, and the start and finish values are not specified, uses the current project's start and finish dates. If false, ignores any of the other values.|
| _StartValue_|Optional|Variant|Start date.|
| _FinishValue_|Optional|Variant|Finish date.|
| _TimelineViewName_|Optional|String|Specifies the name of a timeline to use. The name can be the built-in timeline or an existing custom timeline such as "My Timeline". The default value is the name of the active timeline.|
-### Return Value
+### Return value
**BOOLEAN**
diff --git a/api/Project.application.updateengagementsforproject.md b/api/Project.application.updateengagementsforproject.md
index 598d10006da..b567139c818 100644
--- a/api/Project.application.updateengagementsforproject.md
+++ b/api/Project.application.updateengagementsforproject.md
@@ -21,7 +21,7 @@ Update the Engagements for a Project. Introduced in Office 2016.
_expression_ A variable that represents a [Application](./Project.Application.md) object.
-### Return Value
+### Return value
**BOOL**
diff --git a/api/Project.application.zoomreport.md b/api/Project.application.zoomreport.md
index c640827f46b..de52da66239 100644
--- a/api/Project.application.zoomreport.md
+++ b/api/Project.application.zoomreport.md
@@ -23,7 +23,7 @@ Zooms (enlarges or shrinks) the active report to the specified percentage of its
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Percent_|Optional|**Variant**|The percent of the original size.|
| _Entire_|Optional|**Variant**|The _Entire_ parameter has no effect.|
diff --git a/api/Project.chart.hasaxis.md b/api/Project.chart.hasaxis.md
index 6c9439ac632..66308075a79 100644
--- a/api/Project.chart.hasaxis.md
+++ b/api/Project.chart.hasaxis.md
@@ -20,12 +20,12 @@ Gets or sets which axes exist on a chart. Read/write **Variant**.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _axisType_|Required|**Variant**|The axis type. Series axes apply only to 3-D charts. Can be one of the **Office.XlAxisType** constants.|
| _AxisGroup_|Optional|**Variant**|The axis group. 3-D charts have only one set of axes. Can be one of the **Office.XlAxisGroup** constants.|
-### Return Value
+### Return value
**Period**
diff --git a/api/Project.chart.walls.md b/api/Project.chart.walls.md
index dffdc0ea862..72b9d1d69c5 100644
--- a/api/Project.chart.walls.md
+++ b/api/Project.chart.walls.md
@@ -20,7 +20,7 @@ Gets an **Office.IMsoWalls** object that represents the walls of a 3-D chart. R
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _fBackWall_|Optional|**Boolean**|Default value = **True**. The _fBackWall_ parameter has no effect in Project.|
diff --git a/api/Project.engagement.delete.md b/api/Project.engagement.delete.md
index f1813cb9dac..97f525821d8 100644
--- a/api/Project.engagement.delete.md
+++ b/api/Project.engagement.delete.md
@@ -18,7 +18,7 @@ Deletes an Engagement object to the resource plan view. Introduced in Office 201
_expression_ A variable that represents a 'Engagement' object.
-### Return Value
+### Return value
**VOID**
diff --git a/api/Project.engagement.getfield.md b/api/Project.engagement.getfield.md
index 3785727c96e..f9940e6780f 100644
--- a/api/Project.engagement.getfield.md
+++ b/api/Project.engagement.getfield.md
@@ -18,7 +18,7 @@ Gets the specified field of an Engagement object for the resource plan view. Int
_expression_ A variable that represents a 'Engagement' object.
-### Return Value
+### Return value
**STRING**
diff --git a/api/Project.engagement.setfield.md b/api/Project.engagement.setfield.md
index 95db1cb3226..e03feb19cc5 100644
--- a/api/Project.engagement.setfield.md
+++ b/api/Project.engagement.setfield.md
@@ -18,7 +18,7 @@ Sets the specified field of an Engagement object for the resource plan view. Int
_expression_ A variable that represents a 'Engagement' object.
-### Return Value
+### Return value
**VOID**
diff --git a/api/Project.engagementcomments.add.md b/api/Project.engagementcomments.add.md
index d85b22ca48b..3341bb5244e 100644
--- a/api/Project.engagementcomments.add.md
+++ b/api/Project.engagementcomments.add.md
@@ -26,7 +26,7 @@ Adds a new comment to the engagement. Introduced in Office 2016.
|:-----|:-----|:-----|:-----|
| _Message_|Required|String|Comment added to the Engagement.|
-### Return Value
+### Return value
**ENGAGEMENTCOMMENT**
diff --git a/api/Project.engagements.add.md b/api/Project.engagements.add.md
index 5795d5c6f19..a6509f20df3 100644
--- a/api/Project.engagements.add.md
+++ b/api/Project.engagements.add.md
@@ -22,14 +22,14 @@ Adds a new Engagement to the Resource. Introduced in Office 2016.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ResourceID_|Optional|VARIANT|Resource identifier of the Engagement.|
| _Start_|Optional|VARIANT|Start date of the Engagement.|
| _End_|Optional|VARIANT|Finish date of the Engagement.|
| _TotalWork_|Optional|VARIANT|Work of the Engagement.|
-### Return Value
+### Return value
**ENGAGEMENT**
diff --git a/api/Project.pjassignmentwarnings.md b/api/Project.pjassignmentwarnings.md
index 2d52b7f892f..1df4f0a34cb 100644
--- a/api/Project.pjassignmentwarnings.md
+++ b/api/Project.pjassignmentwarnings.md
@@ -15,7 +15,7 @@ Defines the different types of warnings that may appear on assignments triggerin
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjAssignmentWarningNoOverlappingCommittedEngagement**|**1**||
|**pjAssignmentWarningOverlappingDraftEngagement**|**16**||
diff --git a/api/Project.pjcachejobstate.md b/api/Project.pjcachejobstate.md
index 399db629578..3297c31bdcd 100644
--- a/api/Project.pjcachejobstate.md
+++ b/api/Project.pjcachejobstate.md
@@ -13,7 +13,7 @@ Contains constants that specify the cache status of a job that Project Professio
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCacheJobStateCancelled**|9|The queue job is cancelled.|
|**pjCacheJobStateCorrelationBlocked**|8|The queue job correlation is blocked; the job is not processing.|
diff --git a/api/Project.pjengagementviolationtype.md b/api/Project.pjengagementviolationtype.md
index 83cb54b2c38..7e19890ebe5 100644
--- a/api/Project.pjengagementviolationtype.md
+++ b/api/Project.pjengagementviolationtype.md
@@ -15,7 +15,7 @@ Defines the different types of engagement violation types triggering indicators
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjEngagementViolationTypeAssignmentWorkingAboveEngagedTime**|**16384**||
|**pjEngagementViolationTypeAssignmentWorkingInDraftEngagedTime**|**65536**||
diff --git a/api/Project.pjengagementwarnings.md b/api/Project.pjengagementwarnings.md
index b8962a11106..3101fc8042e 100644
--- a/api/Project.pjengagementwarnings.md
+++ b/api/Project.pjengagementwarnings.md
@@ -15,7 +15,7 @@ Defines the different types of warnings that may appear on engagements triggerin
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjEngagementWarningDeletedEngagement**|**4**||
|**pjEngagementWarningDeletedResource**|**8**||
diff --git a/api/Project.pjjobtype.md b/api/Project.pjjobtype.md
index f428a260d73..3a0ddb54ce5 100644
--- a/api/Project.pjjobtype.md
+++ b/api/Project.pjjobtype.md
@@ -13,7 +13,7 @@ Contains constants that specify the type of job (save, publish, or check in) tha
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjCacheProjectCheckin**|1|The queue job message is to check in the project.|
|**pjCacheProjectSave**|0|The queue job message is to save the project.|
diff --git a/api/Project.pjreportlayouttemplateid.md b/api/Project.pjreportlayouttemplateid.md
index 2d8010d67a6..b98f3b7b4de 100644
--- a/api/Project.pjreportlayouttemplateid.md
+++ b/api/Project.pjreportlayouttemplateid.md
@@ -13,7 +13,7 @@ Contains constants that specify the type of template to apply for a report layou
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjReportLayoutComparison**|3|Apply a comparison report template.|
|**pjReportLayoutTitleAndChart**|1|Apply a report template with a title and a chart.|
diff --git a/api/Project.pjresourcewarnings.md b/api/Project.pjresourcewarnings.md
index 08e55861bfc..55ed18fc2d3 100644
--- a/api/Project.pjresourcewarnings.md
+++ b/api/Project.pjresourcewarnings.md
@@ -15,7 +15,7 @@ Defines the different types of warnings that may appear on resources triggering
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjResourceWarningAssignmentEngagementViolation**|**1**||
|**pjResourceWarningAssignmentWorkingInDraftEngagedTime**|**4**||
diff --git a/api/Project.pjviewtype.md b/api/Project.pjviewtype.md
index 8760e7aa9a4..1fdc5a9bb6e 100644
--- a/api/Project.pjviewtype.md
+++ b/api/Project.pjviewtype.md
@@ -12,7 +12,7 @@ Contains constants that specify a view in Project.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**pjViewUndefined**|-1|The view is undefined.|
|**pjViewBarRollup**|0|**Bar Rollup** view.|
diff --git a/api/Project.shape.incrementrotation.md b/api/Project.shape.incrementrotation.md
index b325a5137b3..2f01a794926 100644
--- a/api/Project.shape.incrementrotation.md
+++ b/api/Project.shape.incrementrotation.md
@@ -20,7 +20,7 @@ Rotates the shape around the z-axis by the specified number of degrees.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required|**Single**|The number of degrees the shape is to be rotated. A positive value rotates the shape clockwise; a negative value rotates it counterclockwise.|
| _Increment_|Required|FLOAT||
diff --git a/api/Project.shape.scaleheight.md b/api/Project.shape.scaleheight.md
index d5fa8fabed8..ce9b34871a7 100644
--- a/api/Project.shape.scaleheight.md
+++ b/api/Project.shape.scaleheight.md
@@ -20,7 +20,7 @@ Scales the height of the shape by a specified factor.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Factor_|Required|**Single**|The ratio between the height of the shape after you resize it and the current height. For example, to make a rectangle 50 percent higher, specify 1.5 for the _Factor_ parameter.|
| _RelativeToOriginalSize_|Required|MSOTRISTATE|**msoFalse** scales the shape relative to its current size. For Project, the value must be **msoFalse**.|
diff --git a/api/Project.shape.scalewidth.md b/api/Project.shape.scalewidth.md
index 857d2c61686..c6ef64b2c4e 100644
--- a/api/Project.shape.scalewidth.md
+++ b/api/Project.shape.scalewidth.md
@@ -20,7 +20,7 @@ Scales the width of the shape by a specified factor.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Factor_|Required|**Single**|The ratio between the width of the shape after you resize it and the current width. For example, to make a rectangle 50 percent wider, specify 1.5 for the _Factor_ parameter.|
| _RelativeToOriginalSize_|Required|**[MsoTriState](https://msdn.microsoft.com/library/office/ff860737%28v=office.15%29)**|**msoFalse** scales the shape relative to its current size. For Project, the value must be **msoFalse**.|
diff --git a/api/Project.shaperange.incrementrotation.md b/api/Project.shaperange.incrementrotation.md
index d3678bd4875..8892b0e286a 100644
--- a/api/Project.shaperange.incrementrotation.md
+++ b/api/Project.shaperange.incrementrotation.md
@@ -20,7 +20,7 @@ Rotates each shape in the shape range around the z-axis by the specified number
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required|**Single**|The number of degrees each shape is to be rotated. A positive value rotates the shapes clockwise; a negative value rotates the shapes counterclockwise.|
| _Increment_|Required|FLOAT||
diff --git a/api/Project.shaperange.scaleheight.md b/api/Project.shaperange.scaleheight.md
index 448f6db09f4..41833624e63 100644
--- a/api/Project.shaperange.scaleheight.md
+++ b/api/Project.shaperange.scaleheight.md
@@ -20,7 +20,7 @@ Scales the height of the range of shapes by a specified factor.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Factor_|Required|**Single**|The ratio between the height of the shape after you resize it and the current height. For example, to make a rectangle 50 percent higher, specify 1.5 for the _Factor_ parameter.|
| _RelativeToOriginalSize_|Required|**[MsoTriState](https://msdn.microsoft.com/library/office/ff860737%28v=office.15%29)**|**msoFalse** scales each shape relative to its current size. For Project, the value must be **msoFalse**.|
diff --git a/api/Project.shapes.addchart.md b/api/Project.shapes.addchart.md
index a9b205bbe62..2a230f2b3d5 100644
--- a/api/Project.shapes.addchart.md
+++ b/api/Project.shapes.addchart.md
@@ -20,7 +20,7 @@ Creates a chart at the specified location on the active report. Returns a **Sha
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Optional|**Integer**|Specifies the color style of the chart. The values correspond to the **Change Colors** drop-down list on the **Chart Styles** group, on the **DESIGN** tab, under **CHART TOOLS** on the ribbon (but the values are not in the same order).|
| _Type_|Optional|**XlChartType**|The type of chart to add, such as a column chart or pie chart.|
diff --git a/api/Project.shapes.addconnector.md b/api/Project.shapes.addconnector.md
index 1d3dc86073d..27c32140ff8 100644
--- a/api/Project.shapes.addconnector.md
+++ b/api/Project.shapes.addconnector.md
@@ -20,7 +20,7 @@ Creates a connector and returns a **Shape** object the represents the new conne
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required|**MsoConnectorType**|The type of connector. Can be one of the following constants: **msoConnectorElbow**, **msoConnectorTypeMixed**, **msoConnectorCurve**, or **msoConnectorStraight**.|
| _BeginX_|Required|**Single**|The horizontal position (in points) of the connector's starting point, relative to the upper-left corner of the document.|
diff --git a/api/Project.shapes.addline.md b/api/Project.shapes.addline.md
index 3173136db3a..52b78ec177d 100644
--- a/api/Project.shapes.addline.md
+++ b/api/Project.shapes.addline.md
@@ -20,7 +20,7 @@ Adds a line to a report, and returns a **Shape** object that represents the lin
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _BeginX_|Required|**Single**|The horizontal position (in points) of the starting point, relative to the left edge of the report.|
| _BeginY_|Required|**Single**|The vertical position (in points) of the starting point, relative to the top edge of the report.|
diff --git a/api/Project.shapes.addpolyline.md b/api/Project.shapes.addpolyline.md
index 73462b01b4b..888169897c0 100644
--- a/api/Project.shapes.addpolyline.md
+++ b/api/Project.shapes.addpolyline.md
@@ -20,7 +20,7 @@ Creates an open polyline or a closed polygon drawing, and returns a **Shape** o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SafeArrayOfPoints_|Required|**Variant**|An array of coordinate pairs that specifies the vertices of the polyline.|
| _SafeArrayOfPoints_|Required|VARIANT||
diff --git a/api/Project.shapes.addshape.md b/api/Project.shapes.addshape.md
index 2b6aa4096b8..0675e04d339 100644
--- a/api/Project.shapes.addshape.md
+++ b/api/Project.shapes.addshape.md
@@ -20,7 +20,7 @@ Adds a shape of the specified AutoShape type to a report, and returns a **Shape
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required|**MsoAutoShapeType**|Specifies the type of AutoShape to create.|
| _Left_|Required|**Single**|The position, in points, of the left edge of the AutoShape.|
diff --git a/api/Project.shapes.addtable.md b/api/Project.shapes.addtable.md
index 93cf037aea9..4736c746b32 100644
--- a/api/Project.shapes.addtable.md
+++ b/api/Project.shapes.addtable.md
@@ -20,7 +20,7 @@ Adds a table to the report, and returns a **Shape** object that represents the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NumRows_|Required|**Long**|The number of rows in the table. _NumRows_ is ignored when creating a table.|
| _NumColumns_|Required|**Long**|The number of columns in the table. _NumColumns_ is ignored when creating a table.|
diff --git a/api/Project.shapes.addtextbox.md b/api/Project.shapes.addtextbox.md
index 22aa72ae89d..fa19ec870ed 100644
--- a/api/Project.shapes.addtextbox.md
+++ b/api/Project.shapes.addtextbox.md
@@ -20,7 +20,7 @@ Adds a text box to the report, and returns a **Shape** object that represents t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Orientation_|Required|**MsoTextOrientation**|The orientation of the text box. Some constants may not be available, depending on the language that is installed.|
| _Left_|Required|**Single**|The position, in points, of the left edge of the text box.|
diff --git a/api/Project.shapes.addtexteffect.md b/api/Project.shapes.addtexteffect.md
index b6247496a24..318748118a9 100644
--- a/api/Project.shapes.addtexteffect.md
+++ b/api/Project.shapes.addtexteffect.md
@@ -20,7 +20,7 @@ The **AddTextEffect** method is not implemented in Project.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PresetTextEffect_|Required|**MsoPresetTextEffect**|A preset text effect. The values of the **MsoPresetTextEffect** constants correspond to the formats listed in the WordArt Gallery dialog box (numbered from left to right and from top to bottom).|
| _Text_|Required|**String**|The text in the WordArt.|
diff --git a/api/Project.shapes.buildfreeform.md b/api/Project.shapes.buildfreeform.md
index 590ff140a74..6b01d6a4fdc 100644
--- a/api/Project.shapes.buildfreeform.md
+++ b/api/Project.shapes.buildfreeform.md
@@ -20,7 +20,7 @@ Creates a **FreeformBuilder** object that represents a new freeform drawing. Th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _EditingType_|Required|**MsoEditingType**|The editing property of the first node.|
| _X1_|Required|**Single**|The position (in points) of the first node in the freeform drawing, relative to the left edge of the report.|
diff --git a/api/Project.shapes.range.md b/api/Project.shapes.range.md
index ff8a8937701..755fa5e13bb 100644
--- a/api/Project.shapes.range.md
+++ b/api/Project.shapes.range.md
@@ -20,7 +20,7 @@ Returns a **ShapeRange** object that represents a subset of shapes in the **Sha
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Variant**|Specifies one or more shapes to be included in the range. Can be an integer for the index number of a shape, a string for the name of a shape, or an array that contains either integers or strings.|
| _Index_|Required|VARIANT||
diff --git a/api/Publisher.Adjustments.Item.md b/api/Publisher.Adjustments.Item.md
index ef08d3a7d5c..d1dc38ce98b 100644
--- a/api/Publisher.Adjustments.Item.md
+++ b/api/Publisher.Adjustments.Item.md
@@ -27,7 +27,7 @@ Returns or sets a **Variant** indicating the adjustment value specified by the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Integer**|The index number of the adjustment.|
diff --git a/api/Publisher.AdvancedPrintOptions.AllowBleeds.md b/api/Publisher.AdvancedPrintOptions.AllowBleeds.md
index 3b04be1f451..259d98240a5 100644
--- a/api/Publisher.AdvancedPrintOptions.AllowBleeds.md
+++ b/api/Publisher.AdvancedPrintOptions.AllowBleeds.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **AdvancedPrintOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.AdvancedPrintOptions.BackSideInsertFaceUp.md b/api/Publisher.AdvancedPrintOptions.BackSideInsertFaceUp.md
index 7c228dda041..04fd8f7cfab 100644
--- a/api/Publisher.AdvancedPrintOptions.BackSideInsertFaceUp.md
+++ b/api/Publisher.AdvancedPrintOptions.BackSideInsertFaceUp.md
@@ -23,7 +23,7 @@ Gets or sets whether envelopes fed to the printer's manual feed should be insert
_expression_ A variable that represents an **AdvancedPrintOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.AdvancedPrintOptions.GraphicsResolution.md b/api/Publisher.AdvancedPrintOptions.GraphicsResolution.md
index 738445392cb..8c30cf64792 100644
--- a/api/Publisher.AdvancedPrintOptions.GraphicsResolution.md
+++ b/api/Publisher.AdvancedPrintOptions.GraphicsResolution.md
@@ -23,7 +23,7 @@ Returns or sets a **PbPrintGraphics** constant representing the resolution at w
_expression_ A variable that represents a **AdvancedPrintOptions** object.
-### Return Value
+### Return value
PbPrintGraphics
diff --git a/api/Publisher.AdvancedPrintOptions.IsPostscriptPrinter.md b/api/Publisher.AdvancedPrintOptions.IsPostscriptPrinter.md
index 8d27ad385b7..3d2e9baead3 100644
--- a/api/Publisher.AdvancedPrintOptions.IsPostscriptPrinter.md
+++ b/api/Publisher.AdvancedPrintOptions.IsPostscriptPrinter.md
@@ -23,7 +23,7 @@ Returns **True** if the active printer is a PostScript printer. Read-only **Boo
_expression_ A variable that represents an **AdvancedPrintOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.AdvancedPrintOptions.ManualFeedAlign.md b/api/Publisher.AdvancedPrintOptions.ManualFeedAlign.md
index 072f4003fd1..885684358e0 100644
--- a/api/Publisher.AdvancedPrintOptions.ManualFeedAlign.md
+++ b/api/Publisher.AdvancedPrintOptions.ManualFeedAlign.md
@@ -23,7 +23,7 @@ Gets or sets the alignment (left, right, or center) of where envelopes are fed t
_expression_ A variable that represents an **AdvancedPrintOptions** object.
-### Return Value
+### Return value
**PbPlacementType**
diff --git a/api/Publisher.AdvancedPrintOptions.ManualFeedDirection.md b/api/Publisher.AdvancedPrintOptions.ManualFeedDirection.md
index d5cce89b6f6..f12985d91aa 100644
--- a/api/Publisher.AdvancedPrintOptions.ManualFeedDirection.md
+++ b/api/Publisher.AdvancedPrintOptions.ManualFeedDirection.md
@@ -23,7 +23,7 @@ Gets or sets the orientation (landscape or portrait) of how envelopes are fed to
_expression_ A variable that represents an **AdvancedPrintOptions** object.
-### Return Value
+### Return value
PbOrientationType
diff --git a/api/Publisher.AdvancedPrintOptions.NegativeImage.md b/api/Publisher.AdvancedPrintOptions.NegativeImage.md
index f418909c537..23a3500272f 100644
--- a/api/Publisher.AdvancedPrintOptions.NegativeImage.md
+++ b/api/Publisher.AdvancedPrintOptions.NegativeImage.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **AdvancedPrintOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.AdvancedPrintOptions.PageRotated.md b/api/Publisher.AdvancedPrintOptions.PageRotated.md
index 380bcbadb2f..e078e9f0d86 100644
--- a/api/Publisher.AdvancedPrintOptions.PageRotated.md
+++ b/api/Publisher.AdvancedPrintOptions.PageRotated.md
@@ -23,7 +23,7 @@ Gets or sets whether the printed page is rotated 180 degrees. Read/write.
_expression_ A variable that represents an **AdvancedPrintOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.AdvancedPrintOptions.PrintBleedMarks.md b/api/Publisher.AdvancedPrintOptions.PrintBleedMarks.md
index f087940a51d..0b0e7a0c29a 100644
--- a/api/Publisher.AdvancedPrintOptions.PrintBleedMarks.md
+++ b/api/Publisher.AdvancedPrintOptions.PrintBleedMarks.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **AdvancedPrintOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.AdvancedPrintOptions.PrintCropMarks.md b/api/Publisher.AdvancedPrintOptions.PrintCropMarks.md
index 4af98e95cc5..d295fc5d8a9 100644
--- a/api/Publisher.AdvancedPrintOptions.PrintCropMarks.md
+++ b/api/Publisher.AdvancedPrintOptions.PrintCropMarks.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **AdvancedPrintOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.AdvancedPrintOptions.PrintDensityBars.md b/api/Publisher.AdvancedPrintOptions.PrintDensityBars.md
index 000d7079ab9..f13403f53b9 100644
--- a/api/Publisher.AdvancedPrintOptions.PrintDensityBars.md
+++ b/api/Publisher.AdvancedPrintOptions.PrintDensityBars.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **AdvancedPrintOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.AdvancedPrintOptions.PrintJobInformation.md b/api/Publisher.AdvancedPrintOptions.PrintJobInformation.md
index a5dc683bcca..8c7354effbb 100644
--- a/api/Publisher.AdvancedPrintOptions.PrintJobInformation.md
+++ b/api/Publisher.AdvancedPrintOptions.PrintJobInformation.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **AdvancedPrintOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.AdvancedPrintOptions.PrintRegistrationMarks.md b/api/Publisher.AdvancedPrintOptions.PrintRegistrationMarks.md
index 9eaf81e51d6..55f16cd37d1 100644
--- a/api/Publisher.AdvancedPrintOptions.PrintRegistrationMarks.md
+++ b/api/Publisher.AdvancedPrintOptions.PrintRegistrationMarks.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **AdvancedPrintOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.AdvancedPrintOptions.Resolution.md b/api/Publisher.AdvancedPrintOptions.Resolution.md
index d6a67a61ec2..2eede1f4b5c 100644
--- a/api/Publisher.AdvancedPrintOptions.Resolution.md
+++ b/api/Publisher.AdvancedPrintOptions.Resolution.md
@@ -23,7 +23,7 @@ Returns or sets a **String** that represents the resolution, in dots per inch (
_expression_ A variable that represents a **AdvancedPrintOptions** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.AdvancedPrintOptions.UseOnlyPublicationFonts.md b/api/Publisher.AdvancedPrintOptions.UseOnlyPublicationFonts.md
index cc1a1168c7a..6c686803c46 100644
--- a/api/Publisher.AdvancedPrintOptions.UseOnlyPublicationFonts.md
+++ b/api/Publisher.AdvancedPrintOptions.UseOnlyPublicationFonts.md
@@ -23,7 +23,7 @@ Returns or sets a **Boolean** that represents whether to only use publication f
_expression_ A variable that represents an **AdvancedPrintOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Application.ActiveDocument.md b/api/Publisher.Application.ActiveDocument.md
index 57311e98d0a..2305f1520af 100644
--- a/api/Publisher.Application.ActiveDocument.md
+++ b/api/Publisher.Application.ActiveDocument.md
@@ -23,7 +23,7 @@ Returns a **[Document](Publisher.Document.md)** object that represents the acti
_expression_ A variable that represents an **Application** object.
-### Return Value
+### Return value
Document
diff --git a/api/Publisher.Application.AfterPrint.md b/api/Publisher.Application.AfterPrint.md
index b074e1f7af1..00466f5794f 100644
--- a/api/Publisher.Application.AfterPrint.md
+++ b/api/Publisher.Application.AfterPrint.md
@@ -27,7 +27,7 @@ Fires after all variables and fields print.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Doc|Required| **Document**|The current publication.|
diff --git a/api/Publisher.Application.AutomationSecurity.md b/api/Publisher.Application.AutomationSecurity.md
index f3f9121c33a..8f40802dbbd 100644
--- a/api/Publisher.Application.AutomationSecurity.md
+++ b/api/Publisher.Application.AutomationSecurity.md
@@ -20,7 +20,7 @@ Specifies the security mode that Microsoft Publisher uses when programmatically
_expression_ A variable that represents an **Application** object.
-### Return Value
+### Return value
MsoAutomationSecurity
diff --git a/api/Publisher.Application.BeforePrint.md b/api/Publisher.Application.BeforePrint.md
index 0debda0db6c..431fbeccc3a 100644
--- a/api/Publisher.Application.BeforePrint.md
+++ b/api/Publisher.Application.BeforePrint.md
@@ -27,7 +27,7 @@ Occurs before the publication is printed or previewed. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Doc|Required| **Document**|The current publication.|
|Cancel|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this parameter to **True**, the publication is not printed when the procedure finishes running.|
diff --git a/api/Publisher.Application.Build.md b/api/Publisher.Application.Build.md
index 7d8fa5d4a12..b0206df0cf9 100644
--- a/api/Publisher.Application.Build.md
+++ b/api/Publisher.Application.Build.md
@@ -23,7 +23,7 @@ Returns a **Long** that represents the Microsoft Publisher build number. Read-o
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.Application.COMAddIns.md b/api/Publisher.Application.COMAddIns.md
index 8ca0b3e8974..06c5cf709cf 100644
--- a/api/Publisher.Application.COMAddIns.md
+++ b/api/Publisher.Application.COMAddIns.md
@@ -23,7 +23,7 @@ Returns a **COMAddIns** collection that represents a reference to the Component
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
COMAddIns
diff --git a/api/Publisher.Application.CentimetersToPoints.md b/api/Publisher.Application.CentimetersToPoints.md
index 61009238025..fca99bdb98d 100644
--- a/api/Publisher.Application.CentimetersToPoints.md
+++ b/api/Publisher.Application.CentimetersToPoints.md
@@ -27,11 +27,11 @@ Converts a measurement from centimeters to points (1 cm = 28.35 points). Returns
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **Single**|The centimeter value to be converted to points.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Application.ChangeFileOpenDirectory.md b/api/Publisher.Application.ChangeFileOpenDirectory.md
index 492a4383591..3832dc8b7e3 100644
--- a/api/Publisher.Application.ChangeFileOpenDirectory.md
+++ b/api/Publisher.Application.ChangeFileOpenDirectory.md
@@ -27,7 +27,7 @@ Sets the folder in which Microsoft Publisher searches for documents. The specifi
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Dir|Required| **String**|The directory path.|
diff --git a/api/Publisher.Application.ColorSchemes.md b/api/Publisher.Application.ColorSchemes.md
index 707a3f8fda3..2cbdcc35c2a 100644
--- a/api/Publisher.Application.ColorSchemes.md
+++ b/api/Publisher.Application.ColorSchemes.md
@@ -23,7 +23,7 @@ Returns a **[ColorSchemes](Publisher.ColorSchemes.md)** collection that represe
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
ColorSchemes
diff --git a/api/Publisher.Application.CommandBars.md b/api/Publisher.Application.CommandBars.md
index c575d34a0a4..b648f7ccd85 100644
--- a/api/Publisher.Application.CommandBars.md
+++ b/api/Publisher.Application.CommandBars.md
@@ -23,7 +23,7 @@ Sets or returns a **CommandBars** collection that represents the menu bar and a
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
CommandBars
diff --git a/api/Publisher.Application.DocumentBeforeClose.md b/api/Publisher.Application.DocumentBeforeClose.md
index 1099c9ba363..9a8e93b9c37 100644
--- a/api/Publisher.Application.DocumentBeforeClose.md
+++ b/api/Publisher.Application.DocumentBeforeClose.md
@@ -27,7 +27,7 @@ Occurs immediately before any open document closes.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Doc|Required| **Document**|The document that is being closed.|
|Cancel|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True**, the document does not close when the procedure is finished.|
diff --git a/api/Publisher.Application.DocumentOpen.md b/api/Publisher.Application.DocumentOpen.md
index 80a638eece2..ac6fd4413f7 100644
--- a/api/Publisher.Application.DocumentOpen.md
+++ b/api/Publisher.Application.DocumentOpen.md
@@ -27,7 +27,7 @@ Occurs when opening a document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Doc|Required| **Document**|The document that's being opened.|
diff --git a/api/Publisher.Application.Documents.md b/api/Publisher.Application.Documents.md
index 24ed658e292..7bacc7813d8 100644
--- a/api/Publisher.Application.Documents.md
+++ b/api/Publisher.Application.Documents.md
@@ -23,7 +23,7 @@ Returns a **[Documents](Publisher.Documents.md)** collection that represents al
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
Documents
diff --git a/api/Publisher.Application.EmusToPoints.md b/api/Publisher.Application.EmusToPoints.md
index d6f58eebc88..b9c05281122 100644
--- a/api/Publisher.Application.EmusToPoints.md
+++ b/api/Publisher.Application.EmusToPoints.md
@@ -27,11 +27,11 @@ Converts a measurement from emus to points (12700 emus = 1 point). Returns the c
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **Single**|An expression that returns one of the objects in the Applies To list.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Application.FileDialog.md b/api/Publisher.Application.FileDialog.md
index 79f3cb1de21..4184d141231 100644
--- a/api/Publisher.Application.FileDialog.md
+++ b/api/Publisher.Application.FileDialog.md
@@ -27,11 +27,11 @@ Returns a **FileDialog** object that represents a single instance of a file dia
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Type|Required| **MsoFileDialogType**| The type of dialog box.|
-### Return Value
+### Return value
FileDialog
diff --git a/api/Publisher.Application.Help.md b/api/Publisher.Application.Help.md
index a088a606e19..33274794bed 100644
--- a/api/Publisher.Application.Help.md
+++ b/api/Publisher.Application.Help.md
@@ -27,7 +27,7 @@ Displays online Help information.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|HelpType|Required| **PbHelpType**|The type of help to display.|
diff --git a/api/Publisher.Application.InchesToPoints.md b/api/Publisher.Application.InchesToPoints.md
index 6c28f7a100a..952b5650d98 100644
--- a/api/Publisher.Application.InchesToPoints.md
+++ b/api/Publisher.Application.InchesToPoints.md
@@ -27,11 +27,11 @@ Converts a measurement from inches to points (1 inch = 72 points). Returns the c
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **Single**|The inches value to be converted to points.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Application.InsertBarcodeVisible.md b/api/Publisher.Application.InsertBarcodeVisible.md
index 4c47d04ad5b..fa7f5b4b4be 100644
--- a/api/Publisher.Application.InsertBarcodeVisible.md
+++ b/api/Publisher.Application.InsertBarcodeVisible.md
@@ -23,7 +23,7 @@ Determines whether **Add a postal bar code** is available under **More Items**
_expression_ A variable that represents an **Application** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Application.InstalledPrinters.md b/api/Publisher.Application.InstalledPrinters.md
index 7ad5db43fea..b36a3dbf612 100644
--- a/api/Publisher.Application.InstalledPrinters.md
+++ b/api/Publisher.Application.InstalledPrinters.md
@@ -23,7 +23,7 @@ Returns an **[InstalledPrinters](Publisher.InstalledPrinters.md)** collection t
_expression_ A variable that represents an **Application** object.
-### Return Value
+### Return value
InstalledPrinters
diff --git a/api/Publisher.Application.IsValidObject.md b/api/Publisher.Application.IsValidObject.md
index fdb64b3a749..56ffcf9166b 100644
--- a/api/Publisher.Application.IsValidObject.md
+++ b/api/Publisher.Application.IsValidObject.md
@@ -27,11 +27,11 @@ Determines whether the specified object variable references a valid object and r
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Object|Required| **Object**|A variable that references an object.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Application.Language.md b/api/Publisher.Application.Language.md
index b8c863f3a1d..375175b6771 100644
--- a/api/Publisher.Application.Language.md
+++ b/api/Publisher.Application.Language.md
@@ -23,7 +23,7 @@ Returns a **Long** that represents the language selected for the Microsoft Publ
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.Application.LinesToPoints.md b/api/Publisher.Application.LinesToPoints.md
index 5f6b4a6b53f..464a363a685 100644
--- a/api/Publisher.Application.LinesToPoints.md
+++ b/api/Publisher.Application.LinesToPoints.md
@@ -27,11 +27,11 @@ Converts a measurement from lines to points (1 line = 12 points). Returns the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **Single**|The line value to be converted to points.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Application.MailMergeAfterMerge.md b/api/Publisher.Application.MailMergeAfterMerge.md
index 39696f16644..238c88906b4 100644
--- a/api/Publisher.Application.MailMergeAfterMerge.md
+++ b/api/Publisher.Application.MailMergeAfterMerge.md
@@ -27,7 +27,7 @@ Occurs after all records in a mail merge have merged successfully.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Doc|Required| **Document**|The mail merge main document.|
diff --git a/api/Publisher.Application.MailMergeAfterRecordMerge.md b/api/Publisher.Application.MailMergeAfterRecordMerge.md
index d068961c55f..197a71ad19b 100644
--- a/api/Publisher.Application.MailMergeAfterRecordMerge.md
+++ b/api/Publisher.Application.MailMergeAfterRecordMerge.md
@@ -27,7 +27,7 @@ Occurs after each record in the data source successfully merges in a mail merge.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Doc|Required| **Document**|The mail merge main document.|
diff --git a/api/Publisher.Application.MailMergeBeforeMerge.md b/api/Publisher.Application.MailMergeBeforeMerge.md
index 7ad6382d535..9c6d10aabcc 100644
--- a/api/Publisher.Application.MailMergeBeforeMerge.md
+++ b/api/Publisher.Application.MailMergeBeforeMerge.md
@@ -27,7 +27,7 @@ Occurs when a merge is executed before any records in a mail merge have merged.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Doc|Required| **Document**|The mail merge main document.|
|StartRecord|Required| **Long**|The first record in the data source to include in the mail merge.|
diff --git a/api/Publisher.Application.MailMergeBeforeRecordMerge.md b/api/Publisher.Application.MailMergeBeforeRecordMerge.md
index 275b6471ea1..fe18a0ec06d 100644
--- a/api/Publisher.Application.MailMergeBeforeRecordMerge.md
+++ b/api/Publisher.Application.MailMergeBeforeRecordMerge.md
@@ -27,7 +27,7 @@ Occurs as a merge is executed for the individual records in a merge.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Doc|Required| **Document**|The mail merge main document.|
|Cancel|Required| **Boolean**|Stops the mail merge process, for the current record only, before it starts.|
diff --git a/api/Publisher.Application.MailMergeDataSourceLoad.md b/api/Publisher.Application.MailMergeDataSourceLoad.md
index 6331c5d97bb..c26d3a49bb3 100644
--- a/api/Publisher.Application.MailMergeDataSourceLoad.md
+++ b/api/Publisher.Application.MailMergeDataSourceLoad.md
@@ -27,7 +27,7 @@ Occurs when the data source is loaded for a mail merge.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Doc|Required| **Document**|The mail merge main document.|
diff --git a/api/Publisher.Application.MailMergeDataSourceValidate.md b/api/Publisher.Application.MailMergeDataSourceValidate.md
index 401d6cfe0fa..29975e0e821 100644
--- a/api/Publisher.Application.MailMergeDataSourceValidate.md
+++ b/api/Publisher.Application.MailMergeDataSourceValidate.md
@@ -27,7 +27,7 @@ Occurs when a user performs address verification by clicking **Validate** in th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Doc|Required| **Document**|The mail merge main document.|
|Handled|Required| **Boolean**| **True** runs the accompanying validation code against the mail merge data source. **False** cancels the data source validation.|
diff --git a/api/Publisher.Application.MailMergeGenerateBarcode.md b/api/Publisher.Application.MailMergeGenerateBarcode.md
index 666418a6208..20ce3e3f39d 100644
--- a/api/Publisher.Application.MailMergeGenerateBarcode.md
+++ b/api/Publisher.Application.MailMergeGenerateBarcode.md
@@ -27,7 +27,7 @@ Occurs when Microsoft Publisher requires data to generate barcodes in a mail-mer
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Doc|Required| **Document**|The current publication.|
|bstrString|Required| **String**|Output parameter. A string representation of the barcode.|
diff --git a/api/Publisher.Application.MailMergeInsertBarcode.md b/api/Publisher.Application.MailMergeInsertBarcode.md
index ba215d43f2b..fc2673c03c0 100644
--- a/api/Publisher.Application.MailMergeInsertBarcode.md
+++ b/api/Publisher.Application.MailMergeInsertBarcode.md
@@ -27,7 +27,7 @@ Occurs when the user issues the command to insert postal barcodes into a mail-me
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Doc|Required| **Document**|The current publication.|
|OkToInsert|Required| **Boolean**|Output parameter. **True** if it is okay to insert barcodes.|
diff --git a/api/Publisher.Application.MailMergeRecipientListClose.md b/api/Publisher.Application.MailMergeRecipientListClose.md
index 06d0bf5d0a9..f5b8a51627e 100644
--- a/api/Publisher.Application.MailMergeRecipientListClose.md
+++ b/api/Publisher.Application.MailMergeRecipientListClose.md
@@ -27,7 +27,7 @@ Fires when the user closes the **Mail Merge Recipients** dialog box. (From the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Doc|Required| **Document**|The current publication.|
diff --git a/api/Publisher.Application.MailMergeWizardFollowUpCustom.md b/api/Publisher.Application.MailMergeWizardFollowUpCustom.md
index 38ba6767aa6..6fb17c3fd0f 100644
--- a/api/Publisher.Application.MailMergeWizardFollowUpCustom.md
+++ b/api/Publisher.Application.MailMergeWizardFollowUpCustom.md
@@ -27,7 +27,7 @@ Fires when the string that appears as the fourth item under **Prepare to follow
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Doc|Required| **Document**|The current publication.|
diff --git a/api/Publisher.Application.MailMergeWizardStateChange.md b/api/Publisher.Application.MailMergeWizardStateChange.md
index 6e2ff735ec1..489a70c683b 100644
--- a/api/Publisher.Application.MailMergeWizardStateChange.md
+++ b/api/Publisher.Application.MailMergeWizardStateChange.md
@@ -27,7 +27,7 @@ Occurs when a user changes from a specified step to a specified step in the Mail
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Doc|Required| **Document**|The mail merge main document.|
|FromState|Required| **Integer**|The Mail Merge Wizard step from which a user is moving.|
diff --git a/api/Publisher.Application.MillimetersToPoints.md b/api/Publisher.Application.MillimetersToPoints.md
index 2d60ad1ab57..851a3205775 100644
--- a/api/Publisher.Application.MillimetersToPoints.md
+++ b/api/Publisher.Application.MillimetersToPoints.md
@@ -27,11 +27,11 @@ Converts a measurement from millimeters to points (1 mm = 2.835 points). Returns
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **Single**|The millimeter value to be converted to points.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Application.NewDocument(even).md b/api/Publisher.Application.NewDocument(even).md
index 1719c014b70..4e1bfa70848 100644
--- a/api/Publisher.Application.NewDocument(even).md
+++ b/api/Publisher.Application.NewDocument(even).md
@@ -27,7 +27,7 @@ Occurs when a new publication is created.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Doc|Required| **Document**|The new document.|
diff --git a/api/Publisher.Application.NewDocument(method).md b/api/Publisher.Application.NewDocument(method).md
index 02a171b6666..69fa2d41a05 100644
--- a/api/Publisher.Application.NewDocument(method).md
+++ b/api/Publisher.Application.NewDocument(method).md
@@ -27,12 +27,12 @@ Returns a **Document** object that represents a new publication.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Wizard|Optional| **PbWizard**|The wizard to use to create the new publication.|
|Design|Optional| **Long**|The design to apply to the new publication.|
-### Return Value
+### Return value
Document
diff --git a/api/Publisher.Application.OfficeDataSourceObject.md b/api/Publisher.Application.OfficeDataSourceObject.md
index b395d48f8c2..a232d8605ab 100644
--- a/api/Publisher.Application.OfficeDataSourceObject.md
+++ b/api/Publisher.Application.OfficeDataSourceObject.md
@@ -23,7 +23,7 @@ Returns an **OfficeDataSourceObject** object representing the data source in a
_expression_ A variable that represents an **Application** object.
-### Return Value
+### Return value
OfficeDataSourceObject
diff --git a/api/Publisher.Application.Open.md b/api/Publisher.Application.Open.md
index 82b56b1de1b..39af8d5bb89 100644
--- a/api/Publisher.Application.Open.md
+++ b/api/Publisher.Application.Open.md
@@ -27,7 +27,7 @@ Returns a **[Document](Publisher.Document.md)** object that represents the newl
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Filename|Required| **String**|The name of the publication (paths are accepted).|
|ReadOnly|Optional| **Boolean**| **True** to open the publication as read-only. Default is **False**.|
@@ -35,7 +35,7 @@ Returns a **[Document](Publisher.Document.md)** object that represents the newl
|SaveChanges|Optional| **PbSaveOptions**|Specifies what Microsoft Publisher should do if there is already an open publication with unsaved changes.|
|OpenConflictDocument|Optional| **Boolean**| **True** to open the local conflict publication if there is an offline conflict. Default is **False**.|
-### Return Value
+### Return value
Document
diff --git a/api/Publisher.Application.Options.md b/api/Publisher.Application.Options.md
index c856aa1a4a5..8e06f7d60fb 100644
--- a/api/Publisher.Application.Options.md
+++ b/api/Publisher.Application.Options.md
@@ -23,7 +23,7 @@ Returns an **[Options](Publisher.Options.md)** object that represents applicati
_expression_ A variable that represents an **Application** object.
-### Return Value
+### Return value
Options
diff --git a/api/Publisher.Application.PathSeparator.md b/api/Publisher.Application.PathSeparator.md
index 8a00162f385..b89244d68e9 100644
--- a/api/Publisher.Application.PathSeparator.md
+++ b/api/Publisher.Application.PathSeparator.md
@@ -23,7 +23,7 @@ Returns a **String** that represents the character used to separate folder name
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Application.PicasToPoints.md b/api/Publisher.Application.PicasToPoints.md
index 802a34f1479..ad003fb86c5 100644
--- a/api/Publisher.Application.PicasToPoints.md
+++ b/api/Publisher.Application.PicasToPoints.md
@@ -27,11 +27,11 @@ Converts a measurement from picas to points (1 pica = 12 points). Returns the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **Single**|The pica value to be converted to points.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Application.PixelsToPoints.md b/api/Publisher.Application.PixelsToPoints.md
index 5525328c71d..189d157137c 100644
--- a/api/Publisher.Application.PixelsToPoints.md
+++ b/api/Publisher.Application.PixelsToPoints.md
@@ -27,11 +27,11 @@ Converts a measurement from pixels to points (1 pixel = 0.75 points). Returns th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **Single**|The pixel value to be converted to points.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Application.PointsToCentimeters.md b/api/Publisher.Application.PointsToCentimeters.md
index 48c8aaf3612..5a2afd66eb6 100644
--- a/api/Publisher.Application.PointsToCentimeters.md
+++ b/api/Publisher.Application.PointsToCentimeters.md
@@ -27,11 +27,11 @@ Converts a measurement from points to centimeters (1 cm = 28.35 points). Returns
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **Single**|The point value to be converted to centimeters.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Application.PointsToEmus.md b/api/Publisher.Application.PointsToEmus.md
index 5a90ac07369..58e33833f21 100644
--- a/api/Publisher.Application.PointsToEmus.md
+++ b/api/Publisher.Application.PointsToEmus.md
@@ -27,11 +27,11 @@ Converts a measurement from points to emus (12700 emus = 1 point). Returns the c
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **Single**|The point value to be converted to emus.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Application.PointsToInches.md b/api/Publisher.Application.PointsToInches.md
index 00462e94909..e5b7cf537c5 100644
--- a/api/Publisher.Application.PointsToInches.md
+++ b/api/Publisher.Application.PointsToInches.md
@@ -27,11 +27,11 @@ Converts a measurement from points to inches (1 in = 72 points). Returns the con
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **Single**|The point value to be converted to inches.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Application.PointsToLines.md b/api/Publisher.Application.PointsToLines.md
index 5a66188405a..a32e647ec41 100644
--- a/api/Publisher.Application.PointsToLines.md
+++ b/api/Publisher.Application.PointsToLines.md
@@ -27,11 +27,11 @@ Converts a measurement from points to lines (1 line = 12 points). Returns the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **Single**|The point value to be converted to lines.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Application.PointsToMillimeters.md b/api/Publisher.Application.PointsToMillimeters.md
index 24735564bf0..1df2a27d4a8 100644
--- a/api/Publisher.Application.PointsToMillimeters.md
+++ b/api/Publisher.Application.PointsToMillimeters.md
@@ -27,11 +27,11 @@ Converts a measurement from points to millimeters (1 mm = 2.835 points). Returns
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **Single**|The point value to be converted to millimeters.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Application.PointsToPicas.md b/api/Publisher.Application.PointsToPicas.md
index 28e2154897b..8c327984c3c 100644
--- a/api/Publisher.Application.PointsToPicas.md
+++ b/api/Publisher.Application.PointsToPicas.md
@@ -27,11 +27,11 @@ Converts a measurement from points to picas (1 pica = 12 points). Returns the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **Single**|The point value to be converted to picas.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Application.PointsToPixels.md b/api/Publisher.Application.PointsToPixels.md
index c085ba348d3..20ed10f3b51 100644
--- a/api/Publisher.Application.PointsToPixels.md
+++ b/api/Publisher.Application.PointsToPixels.md
@@ -27,11 +27,11 @@ Converts a measurement from points to pixels (1 pixel = 0.75 points). Returns th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **Single**|The point value to be converted to pixels.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Application.PointsToTwips.md b/api/Publisher.Application.PointsToTwips.md
index ffe9adbf347..c4fc76e08d1 100644
--- a/api/Publisher.Application.PointsToTwips.md
+++ b/api/Publisher.Application.PointsToTwips.md
@@ -27,11 +27,11 @@ Converts a measurement from points to twips (20 twips = 1 point). Returns the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **Single**|The point value to be converted to twips.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Application.PrintPreview.md b/api/Publisher.Application.PrintPreview.md
index 3a1d0b952c5..39b5459f2c8 100644
--- a/api/Publisher.Application.PrintPreview.md
+++ b/api/Publisher.Application.PrintPreview.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Application.ProductCode.md b/api/Publisher.Application.ProductCode.md
index 9a2b578ef80..566e786ae8b 100644
--- a/api/Publisher.Application.ProductCode.md
+++ b/api/Publisher.Application.ProductCode.md
@@ -23,7 +23,7 @@ Returns a **String** indicating the Microsoft Publisher globally unique identif
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Application.ScreenUpdating.md b/api/Publisher.Application.ScreenUpdating.md
index b4df888596d..fa285b0c67a 100644
--- a/api/Publisher.Application.ScreenUpdating.md
+++ b/api/Publisher.Application.ScreenUpdating.md
@@ -23,7 +23,7 @@ Returns or sets a **Boolean** indicating whether Microsoft Publisher refreshes
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Application.ShowFollowUpCustom.md b/api/Publisher.Application.ShowFollowUpCustom.md
index 190413d7197..14c282e0921 100644
--- a/api/Publisher.Application.ShowFollowUpCustom.md
+++ b/api/Publisher.Application.ShowFollowUpCustom.md
@@ -23,7 +23,7 @@ Gets or sets the string, if any, that appears as the fourth item under **Prepar
_expression_ A variable that represents an **Application** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Application.ShowWizardCatalog.md b/api/Publisher.Application.ShowWizardCatalog.md
index 97c38c2a593..ac16fb09249 100644
--- a/api/Publisher.Application.ShowWizardCatalog.md
+++ b/api/Publisher.Application.ShowWizardCatalog.md
@@ -27,7 +27,7 @@ Displays the **Publication Types** catalog for the wizard of the specified type
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Wizard|Optional| **PbWizard**|The type of wizard catalog to be displayed.|
diff --git a/api/Publisher.Application.SnapToGuides.md b/api/Publisher.Application.SnapToGuides.md
index abc858b0ef3..35afcf28028 100644
--- a/api/Publisher.Application.SnapToGuides.md
+++ b/api/Publisher.Application.SnapToGuides.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Application.SnapToObjects.md b/api/Publisher.Application.SnapToObjects.md
index e56ca9436a6..4d73c6487d4 100644
--- a/api/Publisher.Application.SnapToObjects.md
+++ b/api/Publisher.Application.SnapToObjects.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Application.TemplateFolderPath.md b/api/Publisher.Application.TemplateFolderPath.md
index a245e2f0dfb..63b09e2e9fd 100644
--- a/api/Publisher.Application.TemplateFolderPath.md
+++ b/api/Publisher.Application.TemplateFolderPath.md
@@ -23,7 +23,7 @@ Returns a **String** that represents the location where Microsoft Publisher tem
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Application.TwipsToPoints.md b/api/Publisher.Application.TwipsToPoints.md
index 7f382ff3c96..2985e64e579 100644
--- a/api/Publisher.Application.TwipsToPoints.md
+++ b/api/Publisher.Application.TwipsToPoints.md
@@ -27,11 +27,11 @@ Converts a measurement from twips to points (20 twips = 1 point). Returns the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **Single**|The twip value to be converted to points.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Application.ValidateAddressVisible.md b/api/Publisher.Application.ValidateAddressVisible.md
index 388c22fcda3..345176bc6ca 100644
--- a/api/Publisher.Application.ValidateAddressVisible.md
+++ b/api/Publisher.Application.ValidateAddressVisible.md
@@ -23,7 +23,7 @@ Determines whether **Validate addresses** is available under **Refine recipient
_expression_ A variable that represents an **Application** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Application.Version.md b/api/Publisher.Application.Version.md
index 66eaafdb087..7708294fbe0 100644
--- a/api/Publisher.Application.Version.md
+++ b/api/Publisher.Application.Version.md
@@ -23,7 +23,7 @@ Returns a **String** indicating the version number of the currently-installed c
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Application.WebOptions.md b/api/Publisher.Application.WebOptions.md
index 52a02c7afe3..05a251aac81 100644
--- a/api/Publisher.Application.WebOptions.md
+++ b/api/Publisher.Application.WebOptions.md
@@ -23,7 +23,7 @@ Returns a **[WebOptions](Publisher.WebOptions.md)** object, which represents th
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
WebOptions
diff --git a/api/Publisher.Application.WindowActivate.md b/api/Publisher.Application.WindowActivate.md
index da376dd91d6..357f6cef82b 100644
--- a/api/Publisher.Application.WindowActivate.md
+++ b/api/Publisher.Application.WindowActivate.md
@@ -27,7 +27,7 @@ Occurs when the application window is activated.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Wn|Required| **Window**|The window that is being activated.|
diff --git a/api/Publisher.Application.WindowDeactivate.md b/api/Publisher.Application.WindowDeactivate.md
index 107c1dee4f9..85d85ca3760 100644
--- a/api/Publisher.Application.WindowDeactivate.md
+++ b/api/Publisher.Application.WindowDeactivate.md
@@ -27,7 +27,7 @@ Occurs when the application window is deactivated.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Wn|Required| **Window**|The window that is being deactivated.|
diff --git a/api/Publisher.Application.WindowPageChange.md b/api/Publisher.Application.WindowPageChange.md
index bf2eed46d0a..10e2f31a51c 100644
--- a/api/Publisher.Application.WindowPageChange.md
+++ b/api/Publisher.Application.WindowPageChange.md
@@ -27,7 +27,7 @@ Occurs when switching the view from one page to another page in a publication.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Vw|Required| **View**|The new view that includes the page to which the view has been switched.|
diff --git a/api/Publisher.Application.WizardCatalogVisible.md b/api/Publisher.Application.WizardCatalogVisible.md
index 79febb30a60..3ab5a479ceb 100644
--- a/api/Publisher.Application.WizardCatalogVisible.md
+++ b/api/Publisher.Application.WizardCatalogVisible.md
@@ -23,7 +23,7 @@ Returns or sets a **Boolean** indicating whether the Wizard Catalog is visible.
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Attachment.Name.md b/api/Publisher.Attachment.Name.md
index 6c1620d7a39..be559655a6f 100644
--- a/api/Publisher.Attachment.Name.md
+++ b/api/Publisher.Attachment.Name.md
@@ -23,7 +23,7 @@ Returns the name of the attachment. Read-only.
_expression_ A variable that represents an **Attachment** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Attachments.Add.md b/api/Publisher.Attachments.Add.md
index 6ecf8781609..2e2fb312f14 100644
--- a/api/Publisher.Attachments.Add.md
+++ b/api/Publisher.Attachments.Add.md
@@ -27,11 +27,11 @@ Adds an **Attachment** object to the **Attachments** collection of a Microsoft
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Filename|Required| **String**|File name of the attachment.|
-### Return Value
+### Return value
Attachment
diff --git a/api/Publisher.Attachments.Application.md b/api/Publisher.Attachments.Application.md
index 0a182a20c09..4ed215b19e6 100644
--- a/api/Publisher.Attachments.Application.md
+++ b/api/Publisher.Attachments.Application.md
@@ -23,7 +23,7 @@ Returns an **Application** object that represents the creator of the parent **A
_expression_ A variable that represents an **Attachments** collection.
-### Return Value
+### Return value
Application
diff --git a/api/Publisher.Attachments.Count.md b/api/Publisher.Attachments.Count.md
index 8544ebdaaae..aed28a751f0 100644
--- a/api/Publisher.Attachments.Count.md
+++ b/api/Publisher.Attachments.Count.md
@@ -23,7 +23,7 @@ Returns the number of **[Attachment](Publisher.Attachment.md)** objects in the
_expression_ A variable that represents an **Attachments** collection.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.Attachments.Item.md b/api/Publisher.Attachments.Item.md
index 18ef60de7cf..5bee1c00027 100644
--- a/api/Publisher.Attachments.Item.md
+++ b/api/Publisher.Attachments.Item.md
@@ -27,11 +27,11 @@ Returns the **[Attachment](Publisher.Attachment.md)** object at the specified i
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Item|Required| **Long**|The index position of the attachment to be returned.|
-### Return Value
+### Return value
Attachment
diff --git a/api/Publisher.Attachments.Parent.md b/api/Publisher.Attachments.Parent.md
index efecc3ff4e2..baa6aebc2b5 100644
--- a/api/Publisher.Attachments.Parent.md
+++ b/api/Publisher.Attachments.Parent.md
@@ -23,7 +23,7 @@ Returns the parent of the **[Attachments](Publisher.Attachments.md)** collectio
_expression_ A variable that represents an **Attachments** object.
-### Return Value
+### Return value
Object
diff --git a/api/Publisher.BorderArtFormat.Set.md b/api/Publisher.BorderArtFormat.Set.md
index 3faacd6178a..c9fbd6c189d 100644
--- a/api/Publisher.BorderArtFormat.Set.md
+++ b/api/Publisher.BorderArtFormat.Set.md
@@ -27,7 +27,7 @@ Sets the type of BorderArt applied to the specified shape.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|BorderArtName|Required| **Variant**|The name of the BorderArt type applied to the specified shape.|
diff --git a/api/Publisher.BorderArtFormat.StretchPictures.md b/api/Publisher.BorderArtFormat.StretchPictures.md
index 7448abb2fbe..b9d0d34beb6 100644
--- a/api/Publisher.BorderArtFormat.StretchPictures.md
+++ b/api/Publisher.BorderArtFormat.StretchPictures.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **BorderArtFormat** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.BorderArts.Item.md b/api/Publisher.BorderArts.Item.md
index c2fd1fd9e34..1eee2608692 100644
--- a/api/Publisher.BorderArts.Item.md
+++ b/api/Publisher.BorderArts.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The number or name of the field or list box item to return.|
-### Return Value
+### Return value
BorderArt
diff --git a/api/Publisher.BuildingBlocks.Item.md b/api/Publisher.BuildingBlocks.Item.md
index bb5b4ba3c59..d9312a6df33 100644
--- a/api/Publisher.BuildingBlocks.Item.md
+++ b/api/Publisher.BuildingBlocks.Item.md
@@ -24,7 +24,7 @@ Returns the specified **[BuildingBlock](Publisher.BuildingBlock.md)** object fr
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Item|Required| **Long**|The number of the building block object to return.|
diff --git a/api/Publisher.CalloutFormat.Accent.md b/api/Publisher.CalloutFormat.Accent.md
index a4c19987885..d0738eb4270 100644
--- a/api/Publisher.CalloutFormat.Accent.md
+++ b/api/Publisher.CalloutFormat.Accent.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState**constant indicating whether a vertical accent
_expression_ A variable that represents a **CalloutFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.CalloutFormat.AutoAttach.md b/api/Publisher.CalloutFormat.AutoAttach.md
index 33bf52d3367..52f3f4401b0 100644
--- a/api/Publisher.CalloutFormat.AutoAttach.md
+++ b/api/Publisher.CalloutFormat.AutoAttach.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState**constant indicating whether the place where t
_expression_ A variable that represents a **CalloutFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.CalloutFormat.AutoLength.md b/api/Publisher.CalloutFormat.AutoLength.md
index 3612adc8bbe..ce027e2bea9 100644
--- a/api/Publisher.CalloutFormat.AutoLength.md
+++ b/api/Publisher.CalloutFormat.AutoLength.md
@@ -23,7 +23,7 @@ Returns an **MsoTriState**constant indicating whether the first segment of the
_expression_ A variable that represents a **CalloutFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.CalloutFormat.Border.md b/api/Publisher.CalloutFormat.Border.md
index 793eb9bd346..a3971df14e7 100644
--- a/api/Publisher.CalloutFormat.Border.md
+++ b/api/Publisher.CalloutFormat.Border.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState**constant indicating whether the text in the s
_expression_ A variable that represents a **CalloutFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.CalloutFormat.CustomDrop.md b/api/Publisher.CalloutFormat.CustomDrop.md
index e2245ddf9ee..548d9f79479 100644
--- a/api/Publisher.CalloutFormat.CustomDrop.md
+++ b/api/Publisher.CalloutFormat.CustomDrop.md
@@ -27,7 +27,7 @@ Sets the vertical distance from the edge of the text bounding box to the place w
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Drop|Required| **Variant**|The drop distance. Numeric values are evaluated in points; strings can be in any units supported by Microsoft Publisher (for example, "2.5 in").|
diff --git a/api/Publisher.CalloutFormat.CustomLength.md b/api/Publisher.CalloutFormat.CustomLength.md
index e13a2e415bf..945ee3a0142 100644
--- a/api/Publisher.CalloutFormat.CustomLength.md
+++ b/api/Publisher.CalloutFormat.CustomLength.md
@@ -27,7 +27,7 @@ Specifies that the first segment of the callout line (the segment attached to th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Length|Required| **Variant**|The length of the first segment of the callout. Numeric values are evaluated in points; strings can be in any unit supported by Microsoft Publisher (for example, "2.5 in").|
diff --git a/api/Publisher.CalloutFormat.Drop.md b/api/Publisher.CalloutFormat.Drop.md
index e87579fcd83..4cd680ef468 100644
--- a/api/Publisher.CalloutFormat.Drop.md
+++ b/api/Publisher.CalloutFormat.Drop.md
@@ -23,7 +23,7 @@ For callouts with an explicitly set drop value, this property returns the vertic
_expression_ A variable that represents a **CalloutFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.CalloutFormat.DropType.md b/api/Publisher.CalloutFormat.DropType.md
index 403a30817b2..813922bc114 100644
--- a/api/Publisher.CalloutFormat.DropType.md
+++ b/api/Publisher.CalloutFormat.DropType.md
@@ -23,7 +23,7 @@ Returns an **MsoCalloutDropType** constant indicating where the callout line at
_expression_ A variable that represents a **CalloutFormat** object.
-### Return Value
+### Return value
MsoCalloutDropType
diff --git a/api/Publisher.CalloutFormat.Gap.md b/api/Publisher.CalloutFormat.Gap.md
index db9f323dfa4..382817ed9ad 100644
--- a/api/Publisher.CalloutFormat.Gap.md
+++ b/api/Publisher.CalloutFormat.Gap.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** indicating the horizontal distance between the en
_expression_ A variable that represents a **CalloutFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.CalloutFormat.PresetDrop.md b/api/Publisher.CalloutFormat.PresetDrop.md
index 9329ed5160e..b70a3bf4d41 100644
--- a/api/Publisher.CalloutFormat.PresetDrop.md
+++ b/api/Publisher.CalloutFormat.PresetDrop.md
@@ -27,7 +27,7 @@ Specifies whether the callout line attaches to the top, bottom, or center of the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|DropType|Required| **MsoCalloutDropType**|The starting position of the callout line relative to the text bounding box.|
diff --git a/api/Publisher.CaptionStyles.Item.md b/api/Publisher.CaptionStyles.Item.md
index 3444b5261b4..28d52fc710b 100644
--- a/api/Publisher.CaptionStyles.Item.md
+++ b/api/Publisher.CaptionStyles.Item.md
@@ -24,11 +24,11 @@ Returns the specified **[CaptionStyle](Publisher.CaptionStyle.md)** object from
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The index number in the collection of the caption style to return.|
-### Return Value
+### Return value
CaptionStyle
diff --git a/api/Publisher.CatalogMergeShapes.HorizontalRepeat.md b/api/Publisher.CatalogMergeShapes.HorizontalRepeat.md
index 08c3874b402..ab233a033bb 100644
--- a/api/Publisher.CatalogMergeShapes.HorizontalRepeat.md
+++ b/api/Publisher.CatalogMergeShapes.HorizontalRepeat.md
@@ -23,7 +23,7 @@ Returns a **Long** that represents the number of times the catalog merge area w
_expression_ A variable that represents a **CatalogMergeShapes** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.CatalogMergeShapes.Item.md b/api/Publisher.CatalogMergeShapes.Item.md
index 27f75ed6162..7325cad94e4 100644
--- a/api/Publisher.CatalogMergeShapes.Item.md
+++ b/api/Publisher.CatalogMergeShapes.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The number or name of the field or list box item to return.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.CatalogMergeShapes.Range.md b/api/Publisher.CatalogMergeShapes.Range.md
index 7e1782d2302..33ab6b9135b 100644
--- a/api/Publisher.CatalogMergeShapes.Range.md
+++ b/api/Publisher.CatalogMergeShapes.Range.md
@@ -25,7 +25,7 @@ _expression_ A variable that represents a **CatalogMergeShapes** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The individual shapes that are to be included in the range. Can be an integer that specifies the index number of the shape, a string that specifies the name of the shape, or an array that contains either integers or strings. If Index is omitted, the **Range** method returns all the objects in the specified collection.|
diff --git a/api/Publisher.CatalogMergeShapes.VerticalRepeat.md b/api/Publisher.CatalogMergeShapes.VerticalRepeat.md
index 6082a8b27b2..c3aff875ed9 100644
--- a/api/Publisher.CatalogMergeShapes.VerticalRepeat.md
+++ b/api/Publisher.CatalogMergeShapes.VerticalRepeat.md
@@ -23,7 +23,7 @@ Returns a **Long** that represents the number of times the catalog merge area w
_expression_ A variable that represents a **CatalogMergeShapes** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.Cell.BorderBottom.md b/api/Publisher.Cell.BorderBottom.md
index 8847961408f..c2bedd1a039 100644
--- a/api/Publisher.Cell.BorderBottom.md
+++ b/api/Publisher.Cell.BorderBottom.md
@@ -23,7 +23,7 @@ Returns a [CellBorder](Publisher.CellBorder.md)object that represents the botto
_expression_ A variable that represents a **Cell** object.
-### Return Value
+### Return value
CellBorder
diff --git a/api/Publisher.Cell.BorderDiagonal.md b/api/Publisher.Cell.BorderDiagonal.md
index 46ccc1ef467..c06e29df6b2 100644
--- a/api/Publisher.Cell.BorderDiagonal.md
+++ b/api/Publisher.Cell.BorderDiagonal.md
@@ -23,7 +23,7 @@ Returns a [CellBorder](Publisher.CellBorder.md)object that represents the diago
_expression_ A variable that represents a **Cell** object.
-### Return Value
+### Return value
CellBorder
diff --git a/api/Publisher.Cell.BorderLeft.md b/api/Publisher.Cell.BorderLeft.md
index 4524d381f26..94127949b62 100644
--- a/api/Publisher.Cell.BorderLeft.md
+++ b/api/Publisher.Cell.BorderLeft.md
@@ -23,7 +23,7 @@ Returns a [CellBorder](Publisher.CellBorder.md)object that represents the left
_expression_ A variable that represents a **Cell** object.
-### Return Value
+### Return value
CellBorder
diff --git a/api/Publisher.Cell.BorderRight.md b/api/Publisher.Cell.BorderRight.md
index ea4d6db42c3..6a0de329ca6 100644
--- a/api/Publisher.Cell.BorderRight.md
+++ b/api/Publisher.Cell.BorderRight.md
@@ -23,7 +23,7 @@ Returns a [CellBorder](Publisher.CellBorder.md)object that represents the right
_expression_ A variable that represents a **Cell** object.
-### Return Value
+### Return value
CellBorder
diff --git a/api/Publisher.Cell.BorderTop.md b/api/Publisher.Cell.BorderTop.md
index 4d4458f4eb2..e20cd3087ac 100644
--- a/api/Publisher.Cell.BorderTop.md
+++ b/api/Publisher.Cell.BorderTop.md
@@ -23,7 +23,7 @@ Returns a [CellBorder](Publisher.CellBorder.md)object that represents the top b
_expression_ A variable that represents a **Cell** object.
-### Return Value
+### Return value
CellBorder
diff --git a/api/Publisher.Cell.CellTextOrientation.md b/api/Publisher.Cell.CellTextOrientation.md
index 249fb89e8ee..1e70b0d05e0 100644
--- a/api/Publisher.Cell.CellTextOrientation.md
+++ b/api/Publisher.Cell.CellTextOrientation.md
@@ -23,7 +23,7 @@ Returns or sets a **PbTextOrientation** that represents the flow of text in a s
_expression_ A variable that represents a **Cell** object.
-### Return Value
+### Return value
PbTextOrientation
diff --git a/api/Publisher.Cell.Diagonal.md b/api/Publisher.Cell.Diagonal.md
index 3d036c01044..be17384c406 100644
--- a/api/Publisher.Cell.Diagonal.md
+++ b/api/Publisher.Cell.Diagonal.md
@@ -23,7 +23,7 @@ Sets or returns a **PbCellDiagonalType** constant that represents a cell that i
_expression_ A variable that represents a **Cell** object.
-### Return Value
+### Return value
PbCellDiagonalType
diff --git a/api/Publisher.Cell.Merge.md b/api/Publisher.Cell.Merge.md
index 9389423a43c..5863d6aa738 100644
--- a/api/Publisher.Cell.Merge.md
+++ b/api/Publisher.Cell.Merge.md
@@ -27,7 +27,7 @@ Merges the specified table cell with another cell. The result is a single table
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|MergeTo|Required| **Cell**|The cell to be merged with; must be adjacent to the specified cell or an error occurs.|
diff --git a/api/Publisher.Cell.Split.md b/api/Publisher.Cell.Split.md
index 191f9430008..8e5bde6a68a 100644
--- a/api/Publisher.Cell.Split.md
+++ b/api/Publisher.Cell.Split.md
@@ -23,7 +23,7 @@ Splits a merged table cell back into its constituent cells. Returns a **[CellRa
_expression_ A variable that represents a **Cell** object.
-### Return Value
+### Return value
CellRange
diff --git a/api/Publisher.CellRange.Item.md b/api/Publisher.CellRange.Item.md
index 96443ba146c..b809de3b7ac 100644
--- a/api/Publisher.CellRange.Item.md
+++ b/api/Publisher.CellRange.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Cell** object in the specified **CellRange** collection
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The number of the object to return.|
-### Return Value
+### Return value
Cell
diff --git a/api/Publisher.ColorCMYK.Black.md b/api/Publisher.ColorCMYK.Black.md
index 45abc133803..55430df41c9 100644
--- a/api/Publisher.ColorCMYK.Black.md
+++ b/api/Publisher.ColorCMYK.Black.md
@@ -23,7 +23,7 @@ Sets or returns a **Long** that represents the black component of a CMYK color.
_expression_ A variable that represents a **ColorCMYK** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.ColorCMYK.Cyan.md b/api/Publisher.ColorCMYK.Cyan.md
index 355480d144d..98c5da54893 100644
--- a/api/Publisher.ColorCMYK.Cyan.md
+++ b/api/Publisher.ColorCMYK.Cyan.md
@@ -23,7 +23,7 @@ Sets or returns a **Long** that represents the cyan component of a CMYK color.
_expression_ A variable that represents a **ColorCMYK** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.ColorCMYK.Magenta.md b/api/Publisher.ColorCMYK.Magenta.md
index 4d319b11895..f58b2831f09 100644
--- a/api/Publisher.ColorCMYK.Magenta.md
+++ b/api/Publisher.ColorCMYK.Magenta.md
@@ -23,7 +23,7 @@ Sets or returns a **Long** that represents the magenta component of a CMYK colo
_expression_ A variable that represents a **ColorCMYK** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.ColorCMYK.SetCMYK.md b/api/Publisher.ColorCMYK.SetCMYK.md
index 8875302a083..b264cfaf444 100644
--- a/api/Publisher.ColorCMYK.SetCMYK.md
+++ b/api/Publisher.ColorCMYK.SetCMYK.md
@@ -27,7 +27,7 @@ Sets a cyan-magenta-yellow-black (CMYK) color value.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Cyan|Required| **Long**|A number that represents the cyan component of the color. Value can be any number between 0 and 255.|
|Magenta|Required| **Long**|A number that represents the magenta component of the color. Value can be any number between 0 and 255.|
diff --git a/api/Publisher.ColorCMYK.Yellow.md b/api/Publisher.ColorCMYK.Yellow.md
index 6a366c7d935..c6ac87bca30 100644
--- a/api/Publisher.ColorCMYK.Yellow.md
+++ b/api/Publisher.ColorCMYK.Yellow.md
@@ -23,7 +23,7 @@ Sets or returns a **Long** that represents the yellow component of a CMYK color
_expression_ A variable that represents a **ColorCMYK** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.ColorFormat.BaseCMYK.md b/api/Publisher.ColorFormat.BaseCMYK.md
index d62f998b575..7b5d8146b34 100644
--- a/api/Publisher.ColorFormat.BaseCMYK.md
+++ b/api/Publisher.ColorFormat.BaseCMYK.md
@@ -23,7 +23,7 @@ Returns the base cyan-magenta-yellow-black (CMYK) color value of the parent **C
_expression_ A variable that represents a **ColorFormat** object.
-### Return Value
+### Return value
ColorCMYK
diff --git a/api/Publisher.ColorFormat.BaseRGB.md b/api/Publisher.ColorFormat.BaseRGB.md
index 20e08e4d653..494dcb0bf4e 100644
--- a/api/Publisher.ColorFormat.BaseRGB.md
+++ b/api/Publisher.ColorFormat.BaseRGB.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoRGBType** constant that represents the original RGB col
_expression_ A variable that represents a **ColorFormat** object.
-### Return Value
+### Return value
MsoRGBType
diff --git a/api/Publisher.ColorFormat.CMYK.md b/api/Publisher.ColorFormat.CMYK.md
index a5cf9eadd6f..ce129d9cfe7 100644
--- a/api/Publisher.ColorFormat.CMYK.md
+++ b/api/Publisher.ColorFormat.CMYK.md
@@ -23,7 +23,7 @@ Returns a **ColorCMYK** object that represents CMYK color properties.
_expression_ A variable that represents a **ColorFormat** object.
-### Return Value
+### Return value
ColorCMYK
diff --git a/api/Publisher.ColorFormat.Ink.md b/api/Publisher.ColorFormat.Ink.md
index d36d481b24b..e0113a3a8e4 100644
--- a/api/Publisher.ColorFormat.Ink.md
+++ b/api/Publisher.ColorFormat.Ink.md
@@ -23,7 +23,7 @@ Returns or sets a **Long** indicating whether the specified color is a spot col
_expression_ A variable that represents an **ColorFormat** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.ColorFormat.RGB.md b/api/Publisher.ColorFormat.RGB.md
index f9916dc06ef..9fe0f054c8e 100644
--- a/api/Publisher.ColorFormat.RGB.md
+++ b/api/Publisher.ColorFormat.RGB.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoRGBType** that represents the red-green-blue (RGB) valu
_expression_ A variable that represents a **ColorFormat** object.
-### Return Value
+### Return value
MsoRGBType
diff --git a/api/Publisher.ColorFormat.SchemeColor.md b/api/Publisher.ColorFormat.SchemeColor.md
index 6a94ebcc70c..7cf944dc6b7 100644
--- a/api/Publisher.ColorFormat.SchemeColor.md
+++ b/api/Publisher.ColorFormat.SchemeColor.md
@@ -23,7 +23,7 @@ Specifies the color of the current color scheme. Read/write.
_expression_ A variable that represents a **ColorFormat** object.
-### Return Value
+### Return value
PbSchemeColorIndex
diff --git a/api/Publisher.ColorFormat.TintAndShade.md b/api/Publisher.ColorFormat.TintAndShade.md
index 00bc3cd0e73..00afadbef57 100644
--- a/api/Publisher.ColorFormat.TintAndShade.md
+++ b/api/Publisher.ColorFormat.TintAndShade.md
@@ -23,7 +23,7 @@ Returns or sets a **Single** that represents the lightening or darkening of a s
_expression_ A variable that represents a **ColorFormat** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.ColorFormat.Transparency.md b/api/Publisher.ColorFormat.Transparency.md
index 88b3777e32d..1972522c925 100644
--- a/api/Publisher.ColorFormat.Transparency.md
+++ b/api/Publisher.ColorFormat.Transparency.md
@@ -23,7 +23,7 @@ Gets or sets the degree of transparency of the color represented by the parent
_expression_ A variable that represents a **ColorFormat** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.ColorScheme.Colors.md b/api/Publisher.ColorScheme.Colors.md
index 12c6568350a..e10d443090b 100644
--- a/api/Publisher.ColorScheme.Colors.md
+++ b/api/Publisher.ColorScheme.Colors.md
@@ -27,11 +27,11 @@ Returns a **[ColorFormat](Publisher.ColorFormat.md)** object representing a col
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ColorIndex|Required| **PbSchemeColorIndex**| The color from the scheme to return based on its function in the scheme.|
-### Return Value
+### Return value
ColorFormat
diff --git a/api/Publisher.ColorSchemes.Item.md b/api/Publisher.ColorSchemes.Item.md
index ce2e9a2d298..c1daad18232 100644
--- a/api/Publisher.ColorSchemes.Item.md
+++ b/api/Publisher.ColorSchemes.Item.md
@@ -27,7 +27,7 @@ Returns the specified **[ColorScheme](Publisher.ColorScheme.md)** object from a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The color scheme to return. Can be either the name of the color scheme as a string or the corresponding **PbColorScheme** constant.|
diff --git a/api/Publisher.ColorsInUse.Item.md b/api/Publisher.ColorsInUse.Item.md
index 654ab0feb16..43dc97e03ce 100644
--- a/api/Publisher.ColorsInUse.Item.md
+++ b/api/Publisher.ColorsInUse.Item.md
@@ -27,7 +27,7 @@ Returns an individual object from a specified collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The number of the object to return.|
diff --git a/api/Publisher.Columns.Add.md b/api/Publisher.Columns.Add.md
index 72d14c74337..9ede6abce5e 100644
--- a/api/Publisher.Columns.Add.md
+++ b/api/Publisher.Columns.Add.md
@@ -27,11 +27,11 @@ Adds a new **Column** object to the specified **Columns** collection and return
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|BeforeColumn|Optional| **Long**|The number of the column before which to insert the new column. If this argument is omitted, the new column is added after the existing columns. An error occurs if the value of this argument does not correspond to an existing column in the table.|
-### Return Value
+### Return value
Column
diff --git a/api/Publisher.Columns.Item.md b/api/Publisher.Columns.Item.md
index 76973592697..4f9ceffae4b 100644
--- a/api/Publisher.Columns.Item.md
+++ b/api/Publisher.Columns.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Column** object in the specified **Columns** collection
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The number of the object to return.|
-### Return Value
+### Return value
Column
diff --git a/api/Publisher.ConnectorFormat.BeginConnect.md b/api/Publisher.ConnectorFormat.BeginConnect.md
index f5bdc88499b..99e2cf4fe7c 100644
--- a/api/Publisher.ConnectorFormat.BeginConnect.md
+++ b/api/Publisher.ConnectorFormat.BeginConnect.md
@@ -27,7 +27,7 @@ Attaches the beginning of the specified connector to a specified shape.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ConnectedShape|Required| **Shape**|The shape to which Microsoft Publisher attaches the beginning of the connector. The specified **Shape** object must be in the same **Shapes** collection as the connector.|
|ConnectionSite|Required| **Long**|A connection site on the shape specified by ConnectedShape. Must be an integer between 1 and the integer returned by the **[ConnectionSiteCount](Publisher.Shape.ConnectionSiteCount.md)** property of the specified shape. Connection sites are numbered starting from the top of the specified shape and moving counterclockwise around the shape. If you want the connector to automatically find the shortest path between the two shapes it connects, specify any valid integer for this argument and then use the **[RerouteConnections](Publisher.Shape.RerouteConnections.md)** method after the connector is attached to shapes at both ends.|
diff --git a/api/Publisher.ConnectorFormat.BeginConnected.md b/api/Publisher.ConnectorFormat.BeginConnected.md
index 91dd0b381f9..22f53633226 100644
--- a/api/Publisher.ConnectorFormat.BeginConnected.md
+++ b/api/Publisher.ConnectorFormat.BeginConnected.md
@@ -23,7 +23,7 @@ Returns an **MsoTriState**constant indicating whether the beginning of the spec
_expression_ A variable that represents a **ConnectorFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.ConnectorFormat.BeginConnectedShape.md b/api/Publisher.ConnectorFormat.BeginConnectedShape.md
index 27170a51b01..9b5896201cf 100644
--- a/api/Publisher.ConnectorFormat.BeginConnectedShape.md
+++ b/api/Publisher.ConnectorFormat.BeginConnectedShape.md
@@ -23,7 +23,7 @@ Returns a **[Shape](Publisher.Shape.md)** object that represents the shape to w
_expression_ A variable that represents a **ConnectorFormat** object.
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.ConnectorFormat.BeginConnectionSite.md b/api/Publisher.ConnectorFormat.BeginConnectionSite.md
index 86f2e531b05..6ed1e1dc579 100644
--- a/api/Publisher.ConnectorFormat.BeginConnectionSite.md
+++ b/api/Publisher.ConnectorFormat.BeginConnectionSite.md
@@ -23,7 +23,7 @@ Returns a **Long** indicating the connection site to which the beginning of a c
_expression_ A variable that represents a **ConnectorFormat** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.ConnectorFormat.EndConnect.md b/api/Publisher.ConnectorFormat.EndConnect.md
index 0a12573fa67..311f7b27efd 100644
--- a/api/Publisher.ConnectorFormat.EndConnect.md
+++ b/api/Publisher.ConnectorFormat.EndConnect.md
@@ -27,7 +27,7 @@ Attaches the end of the specified connector to a specified shape.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ConnectedShape|Required| **Shape**|The shape to which Microsoft Publisher attaches the end of the connector. The specified **Shape** object must be in the same **Shapes** collection as the connector.|
|ConnectionSite|Required| **Long**|A connection site on the shape specified by ConnectedShape. Must be an integer between 1 and the integer returned by the **[ConnectionSiteCount](Publisher.Shape.ConnectionSiteCount.md)** property of the specified shape. Connection sites are numbered starting from the top of the specified shape and moving counterclockwise around the shape. If you want the connector to automatically find the shortest path between the two shapes it connects, specify any valid integer for this argument and then use the **[RerouteConnections](Publisher.Shape.RerouteConnections.md)** method after the connector is attached to shapes at both ends.|
diff --git a/api/Publisher.ConnectorFormat.EndConnected.md b/api/Publisher.ConnectorFormat.EndConnected.md
index 1b87ad6372e..2091c14c9fd 100644
--- a/api/Publisher.ConnectorFormat.EndConnected.md
+++ b/api/Publisher.ConnectorFormat.EndConnected.md
@@ -23,7 +23,7 @@ Returns an **MsoTriState** constant indicating whether the end of the specified
_expression_ A variable that represents an **ConnectorFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.ConnectorFormat.EndConnectedShape.md b/api/Publisher.ConnectorFormat.EndConnectedShape.md
index 013e7db7dd2..e4a8e56222b 100644
--- a/api/Publisher.ConnectorFormat.EndConnectedShape.md
+++ b/api/Publisher.ConnectorFormat.EndConnectedShape.md
@@ -23,7 +23,7 @@ Returns a **[Shape](Publisher.Shape.md)** object that represents the shape to w
_expression_ A variable that represents an **ConnectorFormat** object.
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.ConnectorFormat.EndConnectionSite.md b/api/Publisher.ConnectorFormat.EndConnectionSite.md
index 36a63a2e21c..352ffacc540 100644
--- a/api/Publisher.ConnectorFormat.EndConnectionSite.md
+++ b/api/Publisher.ConnectorFormat.EndConnectionSite.md
@@ -23,7 +23,7 @@ Returns a **Long** indicating the connection site to which the end of a connect
_expression_ A variable that represents an **ConnectorFormat** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.Document.ActiveView.md b/api/Publisher.Document.ActiveView.md
index 960598a7043..c21abb519b4 100644
--- a/api/Publisher.Document.ActiveView.md
+++ b/api/Publisher.Document.ActiveView.md
@@ -23,7 +23,7 @@ Returns a **[View](Publisher.View.md)** object representing the view attributes
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
View
diff --git a/api/Publisher.Document.AdvancedPrintOptions.md b/api/Publisher.Document.AdvancedPrintOptions.md
index 6af7827e189..d25f766f574 100644
--- a/api/Publisher.Document.AdvancedPrintOptions.md
+++ b/api/Publisher.Document.AdvancedPrintOptions.md
@@ -23,7 +23,7 @@ Returns an **[AdvancedPrintOptions](Publisher.AdvancedPrintOptions.md)** object
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
AdvancedPrintOptions
diff --git a/api/Publisher.Document.BeforeClose.md b/api/Publisher.Document.BeforeClose.md
index b0eca5cac6c..49ca29ccedd 100644
--- a/api/Publisher.Document.BeforeClose.md
+++ b/api/Publisher.Document.BeforeClose.md
@@ -27,7 +27,7 @@ Occurs immediately before any open document closes.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Cancel|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True**, the document doesn't close when the procedure is finished.|
diff --git a/api/Publisher.Document.BeginCustomUndoAction.md b/api/Publisher.Document.BeginCustomUndoAction.md
index 15cedc51207..f32dec3c144 100644
--- a/api/Publisher.Document.BeginCustomUndoAction.md
+++ b/api/Publisher.Document.BeginCustomUndoAction.md
@@ -27,7 +27,7 @@ Specifies the starting point and label (textual description) of a group of actio
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ActionName|Required| **String**|The label that corresponds to the single undo action. This label appears when you click the arrow beside the Undo button on the Standard toolbar.|
diff --git a/api/Publisher.Document.BorderArts.md b/api/Publisher.Document.BorderArts.md
index 3a02d842db0..83294f54e78 100644
--- a/api/Publisher.Document.BorderArts.md
+++ b/api/Publisher.Document.BorderArts.md
@@ -23,7 +23,7 @@ Returns a **[BorderArts](Publisher.BorderArts.md)** collection that represents
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
BorderArts
diff --git a/api/Publisher.Document.ChangeDocument.md b/api/Publisher.Document.ChangeDocument.md
index 3ca9bc6bf50..de548632585 100644
--- a/api/Publisher.Document.ChangeDocument.md
+++ b/api/Publisher.Document.ChangeDocument.md
@@ -27,7 +27,7 @@ Changes the current publication to one that uses the wizard, and optionally the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Wizard|Required| **PbWizard**|The type of wizard. See Remarks for possible values.|
|Design|Optional| **Long**|The design type.|
diff --git a/api/Publisher.Document.ColorScheme.md b/api/Publisher.Document.ColorScheme.md
index 808660c902c..c35c283de9e 100644
--- a/api/Publisher.Document.ColorScheme.md
+++ b/api/Publisher.Document.ColorScheme.md
@@ -23,7 +23,7 @@ Returns or sets the **[ColorScheme](Publisher.ColorScheme.md)** object that rep
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
ColorScheme
diff --git a/api/Publisher.Document.ConvertPublicationType.md b/api/Publisher.Document.ConvertPublicationType.md
index 7956dbb8a7f..53ae7ff2634 100644
--- a/api/Publisher.Document.ConvertPublicationType.md
+++ b/api/Publisher.Document.ConvertPublicationType.md
@@ -27,7 +27,7 @@ Converts the specified publication to the specified publication type.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **PbPublicationType**|The type of publication to which you want the publication converted.|
diff --git a/api/Publisher.Document.DefaultTabStop.md b/api/Publisher.Document.DefaultTabStop.md
index e58a3656e38..c1ad5b42263 100644
--- a/api/Publisher.Document.DefaultTabStop.md
+++ b/api/Publisher.Document.DefaultTabStop.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** corresponding to the default tab stop for all tex
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.Document.DocumentDirection.md b/api/Publisher.Document.DocumentDirection.md
index ba81f868491..93d57c5549f 100644
--- a/api/Publisher.Document.DocumentDirection.md
+++ b/api/Publisher.Document.DocumentDirection.md
@@ -23,7 +23,7 @@ Returns or sets a **PbDirectionType** constant that indicates whether text in t
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
PbDirectionType
diff --git a/api/Publisher.Document.EnvelopeVisible.md b/api/Publisher.Document.EnvelopeVisible.md
index 394578ad081..bcf9d79adfb 100644
--- a/api/Publisher.Document.EnvelopeVisible.md
+++ b/api/Publisher.Document.EnvelopeVisible.md
@@ -23,7 +23,7 @@ Returns or sets a **Boolean** indicating whether the e-mail message header is v
_expression_ A variable that represents an **Document** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Document.ExportAsFixedFormat.md b/api/Publisher.Document.ExportAsFixedFormat.md
index ac91d8ae088..00af8449c06 100644
--- a/api/Publisher.Document.ExportAsFixedFormat.md
+++ b/api/Publisher.Document.ExportAsFixedFormat.md
@@ -27,7 +27,7 @@ Saves a Microsoft Publisher publication in PDF or XPS format. The conversion rea
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Format|Required| **PbFixedFormatType**|The format in which you want to export the publication. See Remarks for possible values.|
|Filename|Required| **String**|The file name for the exported file.|
diff --git a/api/Publisher.Document.FindShapeByWizardTag.md b/api/Publisher.Document.FindShapeByWizardTag.md
index ff1e0eedb80..a6bf2f04b24 100644
--- a/api/Publisher.Document.FindShapeByWizardTag.md
+++ b/api/Publisher.Document.FindShapeByWizardTag.md
@@ -27,12 +27,12 @@ Returns a **ShapeRange** object representing one or all of the shapes placed in
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|WizardTag|Required| **PbWizardTag**|Specifies the wizard tag for which to search.|
|Instance|Optional| **Long**|Specifies which instance of a shape with the specified wizard tag is returned. For Instance equal to n, the nth instance of a shape with the specified wizard tag is returned. If no value for Instance is specified, all the shapes with the specified wizard tag are returned.|
-### Return Value
+### Return value
ShapeRange
diff --git a/api/Publisher.Document.FindShapesByTag.md b/api/Publisher.Document.FindShapesByTag.md
index fe85163f4e0..ff16698a61e 100644
--- a/api/Publisher.Document.FindShapesByTag.md
+++ b/api/Publisher.Document.FindShapesByTag.md
@@ -27,11 +27,11 @@ Returns a **[ShapeRange](Publisher.ShapeRange.md)** object that represents the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|TagName|Required| **String**|The name of the tag.|
-### Return Value
+### Return value
ShapeRange
diff --git a/api/Publisher.Document.FullName.md b/api/Publisher.Document.FullName.md
index 07ce4b90b44..f94dce01d33 100644
--- a/api/Publisher.Document.FullName.md
+++ b/api/Publisher.Document.FullName.md
@@ -23,7 +23,7 @@ Returns a **String** representing the full file name of the saved active public
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Document.IsWizard.md b/api/Publisher.Document.IsWizard.md
index 6d0df7b1f83..dd81cf0d826 100644
--- a/api/Publisher.Document.IsWizard.md
+++ b/api/Publisher.Document.IsWizard.md
@@ -23,7 +23,7 @@ Returns **True** if the specified publication is a publication generated by a M
_expression_ A variable that represents an **Document** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Document.MailEnvelope.md b/api/Publisher.Document.MailEnvelope.md
index b9863e351aa..9a94c4de521 100644
--- a/api/Publisher.Document.MailEnvelope.md
+++ b/api/Publisher.Document.MailEnvelope.md
@@ -23,7 +23,7 @@ Returns an **MsoEnvelope** object that represents an e-mail header for a public
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
MsoEnvelope
diff --git a/api/Publisher.Document.MailMerge.md b/api/Publisher.Document.MailMerge.md
index 3d100a8c945..47cd66adff4 100644
--- a/api/Publisher.Document.MailMerge.md
+++ b/api/Publisher.Document.MailMerge.md
@@ -23,7 +23,7 @@ Returns a **[MailMerge](Publisher.MailMerge.md)** object that represents the ma
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
MailMerge
diff --git a/api/Publisher.Document.MasterPages.md b/api/Publisher.Document.MasterPages.md
index f638c5733c9..f03662703f3 100644
--- a/api/Publisher.Document.MasterPages.md
+++ b/api/Publisher.Document.MasterPages.md
@@ -23,7 +23,7 @@ Returns the **[MasterPages](Publisher.MasterPages.md)** collection for the spec
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
MasterPages
diff --git a/api/Publisher.Document.PageSetup.md b/api/Publisher.Document.PageSetup.md
index 89e8f433c1b..ca86b14bff9 100644
--- a/api/Publisher.Document.PageSetup.md
+++ b/api/Publisher.Document.PageSetup.md
@@ -23,7 +23,7 @@ Returns a **[PageSetup](Publisher.PageSetup.md)** object representing a publica
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
PageSetup
diff --git a/api/Publisher.Document.PrintOutEx.md b/api/Publisher.Document.PrintOutEx.md
index 28ce7ea3647..b9ee965e128 100644
--- a/api/Publisher.Document.PrintOutEx.md
+++ b/api/Publisher.Document.PrintOutEx.md
@@ -27,7 +27,7 @@ Prints all or part of the specified publication.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|From|Optional| **Long**|The starting page number.|
|To|Optional| **Long**|The ending page number.|
diff --git a/api/Publisher.Document.PrintPageBackgrounds.md b/api/Publisher.Document.PrintPageBackgrounds.md
index 2dd790594ad..f11580964e2 100644
--- a/api/Publisher.Document.PrintPageBackgrounds.md
+++ b/api/Publisher.Document.PrintPageBackgrounds.md
@@ -23,7 +23,7 @@ Returns or sets **True** to include page backgrounds when printing pages from t
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Document.PublicationType.md b/api/Publisher.Document.PublicationType.md
index 642665adf10..f5cea06620a 100644
--- a/api/Publisher.Document.PublicationType.md
+++ b/api/Publisher.Document.PublicationType.md
@@ -23,7 +23,7 @@ Returns a **PbPublicationType** constant that represents the type of the specif
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
PbPublicationType
diff --git a/api/Publisher.Document.ReadOnly.md b/api/Publisher.Document.ReadOnly.md
index 2e134d1dfb5..258925a660d 100644
--- a/api/Publisher.Document.ReadOnly.md
+++ b/api/Publisher.Document.ReadOnly.md
@@ -23,7 +23,7 @@ Returns **True** if the publication is read-only; returns **False** if it is re
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Document.Redo(method).md b/api/Publisher.Document.Redo(method).md
index fb861acb4d3..1f08c4d4f42 100644
--- a/api/Publisher.Document.Redo(method).md
+++ b/api/Publisher.Document.Redo(method).md
@@ -27,11 +27,11 @@ Redoes the last action or a specified number of actions. Corresponds to the list
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Count|Optional| **Long**|Specifies the number of actions to be redone. Default is 1, meaning that if omitted, only the last action will be redone.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.Document.RedoActionsAvailable.md b/api/Publisher.Document.RedoActionsAvailable.md
index 229b803586b..2250b08e4d2 100644
--- a/api/Publisher.Document.RedoActionsAvailable.md
+++ b/api/Publisher.Document.RedoActionsAvailable.md
@@ -23,7 +23,7 @@ Returns the number of actions available on the redo stack. Read-only **Long**.
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.Document.RemovePersonalInformation.md b/api/Publisher.Document.RemovePersonalInformation.md
index 77ae1e33335..5771314e69f 100644
--- a/api/Publisher.Document.RemovePersonalInformation.md
+++ b/api/Publisher.Document.RemovePersonalInformation.md
@@ -23,7 +23,7 @@ Returns or sets a **Boolean** that represents whether to save personal informat
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Document.SaveAs.md b/api/Publisher.Document.SaveAs.md
index a066de4477d..1350f4178ef 100644
--- a/api/Publisher.Document.SaveAs.md
+++ b/api/Publisher.Document.SaveAs.md
@@ -27,7 +27,7 @@ Saves the specified publication with a new name or format.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Filename|Optional| **Variant**|The name for the publication. The default is the current folder and file name. If the publication has never been saved, the default name is used, for example, Publication1.pub. If a publication with the specified file name already exists, the publication is overwritten without the user being prompted first.|
|Format|Optional| **PbFileFormat**|The format in which the publication is saved.|
diff --git a/api/Publisher.Document.SaveFormat.md b/api/Publisher.Document.SaveFormat.md
index 46d128dbd7b..9ea7058d46d 100644
--- a/api/Publisher.Document.SaveFormat.md
+++ b/api/Publisher.Document.SaveFormat.md
@@ -23,7 +23,7 @@ Indicates the file format of the specified document. Read-only.
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
PbFileFormat
diff --git a/api/Publisher.Document.Saved.md b/api/Publisher.Document.Saved.md
index 1ee2ebfd995..7d54a337e83 100644
--- a/api/Publisher.Document.Saved.md
+++ b/api/Publisher.Document.Saved.md
@@ -23,7 +23,7 @@ Returns **True** if no changes have been made to a publication since it was las
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Document.ScratchArea.md b/api/Publisher.Document.ScratchArea.md
index 7d32890ab12..fcb23e3b575 100644
--- a/api/Publisher.Document.ScratchArea.md
+++ b/api/Publisher.Document.ScratchArea.md
@@ -23,7 +23,7 @@ Returns a **[ScratchArea](Publisher.ScratchArea.md)** object for an a given doc
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
ScratchArea
diff --git a/api/Publisher.Document.Sections.md b/api/Publisher.Document.Sections.md
index 7c8e2506ec6..3b238f539df 100644
--- a/api/Publisher.Document.Sections.md
+++ b/api/Publisher.Document.Sections.md
@@ -23,7 +23,7 @@ Returns a **Sections** object representing a collection of **Section** objects
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
Sections
diff --git a/api/Publisher.Document.SetBusinessInformation.md b/api/Publisher.Document.SetBusinessInformation.md
index 23103fb3089..23059b32a50 100644
--- a/api/Publisher.Document.SetBusinessInformation.md
+++ b/api/Publisher.Document.SetBusinessInformation.md
@@ -27,7 +27,7 @@ Applies the specified business information set, which consists of a logo image a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Name|Required| **String**|Name of the business information set to be applied.|
diff --git a/api/Publisher.Document.Stories.md b/api/Publisher.Document.Stories.md
index c6cd4321c90..e98a325ed26 100644
--- a/api/Publisher.Document.Stories.md
+++ b/api/Publisher.Document.Stories.md
@@ -23,7 +23,7 @@ Returns a **[Stories](Publisher.Stories.md)** collection containing all stories
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
Stories
diff --git a/api/Publisher.Document.SurplusShapes.md b/api/Publisher.Document.SurplusShapes.md
index eb8781cd919..7927d76eb8a 100644
--- a/api/Publisher.Document.SurplusShapes.md
+++ b/api/Publisher.Document.SurplusShapes.md
@@ -23,7 +23,7 @@ Returns a **ShapeRange** object that represents the collection of surplus shape
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
ShapeRange
diff --git a/api/Publisher.Document.TextStyles.md b/api/Publisher.Document.TextStyles.md
index acbc777e78b..f2e3f1d6acb 100644
--- a/api/Publisher.Document.TextStyles.md
+++ b/api/Publisher.Document.TextStyles.md
@@ -23,7 +23,7 @@ Returns a **[TextStyles](Publisher.TextStyles.md)** collection that contains a
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
TextStyles
diff --git a/api/Publisher.Document.Undo(method).md b/api/Publisher.Document.Undo(method).md
index 63341c7089c..1c600640289 100644
--- a/api/Publisher.Document.Undo(method).md
+++ b/api/Publisher.Document.Undo(method).md
@@ -27,7 +27,7 @@ Undoes the last action or a specified number of actions. Corresponds to the list
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Count|Optional| **Long**|Specifies the number of actions to be undone. Default is 1, meaning that if omitted, only the last action will be undone.|
diff --git a/api/Publisher.Document.UndoActionsAvailable.md b/api/Publisher.Document.UndoActionsAvailable.md
index cab0e1a898f..e87003a0f6d 100644
--- a/api/Publisher.Document.UndoActionsAvailable.md
+++ b/api/Publisher.Document.UndoActionsAvailable.md
@@ -23,7 +23,7 @@ Returns the number of actions available on the undo stack. Read-only **Long**.
_expression_ A variable that represents an **Document** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.Document.ViewBoundaries.md b/api/Publisher.Document.ViewBoundaries.md
index d6b779539bf..7cc086196cb 100644
--- a/api/Publisher.Document.ViewBoundaries.md
+++ b/api/Publisher.Document.ViewBoundaries.md
@@ -23,7 +23,7 @@ Returns **True** if object boundaries are visible in the specified publication.
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Document.ViewGuides.md b/api/Publisher.Document.ViewGuides.md
index bbf003110bc..338d52b6b8a 100644
--- a/api/Publisher.Document.ViewGuides.md
+++ b/api/Publisher.Document.ViewGuides.md
@@ -23,7 +23,7 @@ Returns **True** if guides are visible in the specified publication. Read/write
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Document.ViewHorizontalBaseLineGuides.md b/api/Publisher.Document.ViewHorizontalBaseLineGuides.md
index 9ede97f04c6..8a1928f6787 100644
--- a/api/Publisher.Document.ViewHorizontalBaseLineGuides.md
+++ b/api/Publisher.Document.ViewHorizontalBaseLineGuides.md
@@ -23,7 +23,7 @@ Sets or returns a **Boolean** that represents whether or not the horizontal bas
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Document.ViewTwoPageSpread.md b/api/Publisher.Document.ViewTwoPageSpread.md
index 7b624491ffe..91516a16071 100644
--- a/api/Publisher.Document.ViewTwoPageSpread.md
+++ b/api/Publisher.Document.ViewTwoPageSpread.md
@@ -23,7 +23,7 @@ Returns **True** if the specified publication should be viewed as a two-page sp
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Document.ViewVerticalBaseLineGuides.md b/api/Publisher.Document.ViewVerticalBaseLineGuides.md
index 17e11b67b6d..3e8f5dea449 100644
--- a/api/Publisher.Document.ViewVerticalBaseLineGuides.md
+++ b/api/Publisher.Document.ViewVerticalBaseLineGuides.md
@@ -23,7 +23,7 @@ Sets or returns a **Boolean** that represents whether or not the vertical basel
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Document.WebNavigationBarSets.md b/api/Publisher.Document.WebNavigationBarSets.md
index 7a26cf2ee58..139300d37eb 100644
--- a/api/Publisher.Document.WebNavigationBarSets.md
+++ b/api/Publisher.Document.WebNavigationBarSets.md
@@ -23,7 +23,7 @@ Returns a **WebNavigationBarSets** object representing a collection of all **We
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
WebNavigationBarSets
diff --git a/api/Publisher.Documents.Add.md b/api/Publisher.Documents.Add.md
index 5c89a88f357..b343f1329e4 100644
--- a/api/Publisher.Documents.Add.md
+++ b/api/Publisher.Documents.Add.md
@@ -27,12 +27,12 @@ Adds a new **Document** object that represents a new publication to the **Docum
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PbWizard|Optional| **PbWizard**|The wizard to use to create the new publication.|
|desid|Optional| **Long**|The ID of the design to apply to the new publication.|
-### Return Value
+### Return value
Document
diff --git a/api/Publisher.Documents.Item.md b/api/Publisher.Documents.Item.md
index 512b7c619b0..0a58b4964ca 100644
--- a/api/Publisher.Documents.Item.md
+++ b/api/Publisher.Documents.Item.md
@@ -27,7 +27,7 @@ Returns an individual object from a specified collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|varDocument|Required| **Variant**| **Long**. The number of the object to return.|
diff --git a/api/Publisher.DropCap.ApplyCustomDropCap.md b/api/Publisher.DropCap.ApplyCustomDropCap.md
index c69fa85155a..597a2d6bd80 100644
--- a/api/Publisher.DropCap.ApplyCustomDropCap.md
+++ b/api/Publisher.DropCap.ApplyCustomDropCap.md
@@ -27,7 +27,7 @@ Applies custom formatting to the first letters of paragraphs in a text frame.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|LinesUp|Optional| **Long**|The number of lines to move up the drop cap. The default is 0. The maximum number cannot be more than the number entered for the Size argument less one.|
|Size|Optional| **Long**|The size of the drop cap letters in number of lines high. The default is 5.|
diff --git a/api/Publisher.DropCap.FontColor.md b/api/Publisher.DropCap.FontColor.md
index a72453367dc..ab6e7ee6719 100644
--- a/api/Publisher.DropCap.FontColor.md
+++ b/api/Publisher.DropCap.FontColor.md
@@ -23,7 +23,7 @@ Returns or sets a **[ColorFormat](Publisher.ColorFormat.md)** object that repre
_expression_ A variable that represents a **DropCap** object.
-### Return Value
+### Return value
ColorFormat
diff --git a/api/Publisher.DropCap.LinesUp.md b/api/Publisher.DropCap.LinesUp.md
index 3921bc461dd..53c8c0188b3 100644
--- a/api/Publisher.DropCap.LinesUp.md
+++ b/api/Publisher.DropCap.LinesUp.md
@@ -23,7 +23,7 @@ Returns or sets a **Long** that represents the number of lines an initial dropp
_expression_ A variable that represents a **DropCap** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.DropCap.Span.md b/api/Publisher.DropCap.Span.md
index 5da64aa3d61..fa0b301d4eb 100644
--- a/api/Publisher.DropCap.Span.md
+++ b/api/Publisher.DropCap.Span.md
@@ -23,7 +23,7 @@ Returns or sets a **Long** that represents the number of letters included in th
_expression_ A variable that represents a **DropCap** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.EmailMergeEnvelope.Application.md b/api/Publisher.EmailMergeEnvelope.Application.md
index a86b3525225..04b2d668c4b 100644
--- a/api/Publisher.EmailMergeEnvelope.Application.md
+++ b/api/Publisher.EmailMergeEnvelope.Application.md
@@ -23,7 +23,7 @@ Returns an **Application** object that represents the creator of the parent **E
_expression_ A variable that represents an **EmailMergeEnvelope** object.
-### Return Value
+### Return value
Application
diff --git a/api/Publisher.EmailMergeEnvelope.Attachemts.md b/api/Publisher.EmailMergeEnvelope.Attachemts.md
index 2abea18cf4a..9fb72aa884e 100644
--- a/api/Publisher.EmailMergeEnvelope.Attachemts.md
+++ b/api/Publisher.EmailMergeEnvelope.Attachemts.md
@@ -23,7 +23,7 @@ Gets the list of a merged e-mail message's attachments. Read-only.
_expression_ A variable that represents an **EmailMergeEnvelope** object.
-### Return Value
+### Return value
Attachments
diff --git a/api/Publisher.EmailMergeEnvelope.Bcc.md b/api/Publisher.EmailMergeEnvelope.Bcc.md
index f512bfc55c9..862b29ff08e 100644
--- a/api/Publisher.EmailMergeEnvelope.Bcc.md
+++ b/api/Publisher.EmailMergeEnvelope.Bcc.md
@@ -23,7 +23,7 @@ Gets or sets a semicolon-delimited list of e-mail addresses that receive a blind
_expression_ A variable that represents an **EmailMergeEnvelope** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.EmailMergeEnvelope.Cc.md b/api/Publisher.EmailMergeEnvelope.Cc.md
index ec2fe7b96f8..3b290a2e82b 100644
--- a/api/Publisher.EmailMergeEnvelope.Cc.md
+++ b/api/Publisher.EmailMergeEnvelope.Cc.md
@@ -23,7 +23,7 @@ Gets or sets the **MailMergeDataField** object that represents the data-source
_expression_ A variable that represents an **EmailMergeEnvelope** object.
-### Return Value
+### Return value
MailMergeDataField
diff --git a/api/Publisher.EmailMergeEnvelope.Parent.md b/api/Publisher.EmailMergeEnvelope.Parent.md
index 4441a6d1e06..55c160ddb11 100644
--- a/api/Publisher.EmailMergeEnvelope.Parent.md
+++ b/api/Publisher.EmailMergeEnvelope.Parent.md
@@ -23,7 +23,7 @@ Returns the parent of the **[EmailMergeEnvelope](Publisher.EmailMergeEnvelope.m
_expression_ A variable that represents an **EmailMergeEnvelope** object.
-### Return Value
+### Return value
Object
diff --git a/api/Publisher.EmailMergeEnvelope.Priority.md b/api/Publisher.EmailMergeEnvelope.Priority.md
index 1b6b30f9e5a..a5bd487e232 100644
--- a/api/Publisher.EmailMergeEnvelope.Priority.md
+++ b/api/Publisher.EmailMergeEnvelope.Priority.md
@@ -23,7 +23,7 @@ Gets or sets the priority of the merged e-mail message represented by the parent
_expression_ A variable that represents an **EmailMergeEnvelope** object.
-### Return Value
+### Return value
pbEmailMergePriority
diff --git a/api/Publisher.EmailMergeEnvelope.Subject.md b/api/Publisher.EmailMergeEnvelope.Subject.md
index 1c931153edf..f5f1b251793 100644
--- a/api/Publisher.EmailMergeEnvelope.Subject.md
+++ b/api/Publisher.EmailMergeEnvelope.Subject.md
@@ -23,7 +23,7 @@ Gets or sets the subject line of the merged e-mail message. Read/write.
_expression_ A variable that represents an **EmailMergeEnvelope** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.EmailMergeEnvelope.To.md b/api/Publisher.EmailMergeEnvelope.To.md
index dd54e5c6cf8..905597a7c95 100644
--- a/api/Publisher.EmailMergeEnvelope.To.md
+++ b/api/Publisher.EmailMergeEnvelope.To.md
@@ -23,7 +23,7 @@ Gets or sets the **MailMergeDataField** object that represents the data-source
_expression_ A variable that represents an **EmailMergeEnvelope** object.
-### Return Value
+### Return value
MailMergeDataField
diff --git a/api/Publisher.Field.Code.md b/api/Publisher.Field.Code.md
index 95ca5454c01..f29d74d2655 100644
--- a/api/Publisher.Field.Code.md
+++ b/api/Publisher.Field.Code.md
@@ -23,7 +23,7 @@ Returns a **String** that represents the text displayed when the page view is s
_expression_ A variable that represents a **Field** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Field.FieldType.md b/api/Publisher.Field.FieldType.md
index 4efc6ac71e8..1f92d9e0b2a 100644
--- a/api/Publisher.Field.FieldType.md
+++ b/api/Publisher.Field.FieldType.md
@@ -20,7 +20,7 @@ Returns a **pbMailMergeDataFieldType** constant that represents the type of dat
_expression_ A variable that represents a **MailMergeDataField** object.
-### Return Value
+### Return value
**PbMailMergeDataFieldType**
diff --git a/api/Publisher.Field.Next.md b/api/Publisher.Field.Next.md
index d17b60a8454..89781a601f4 100644
--- a/api/Publisher.Field.Next.md
+++ b/api/Publisher.Field.Next.md
@@ -23,7 +23,7 @@ Returns a **[Field](Publisher.Field.md)** object that represents the next field
_expression_ A variable that represents a **Field** object.
-### Return Value
+### Return value
Field
diff --git a/api/Publisher.Field.PhoneticGuide.md b/api/Publisher.Field.PhoneticGuide.md
index 92de2f32514..601040991ac 100644
--- a/api/Publisher.Field.PhoneticGuide.md
+++ b/api/Publisher.Field.PhoneticGuide.md
@@ -23,7 +23,7 @@ Returns a **PhoneticGuide** object that represents the properties of phonetic t
_expression_ A variable that represents a **Field** object.
-### Return Value
+### Return value
PhoneticGuide
diff --git a/api/Publisher.Field.Result.md b/api/Publisher.Field.Result.md
index 499ca4194a7..81a929c83b2 100644
--- a/api/Publisher.Field.Result.md
+++ b/api/Publisher.Field.Result.md
@@ -23,7 +23,7 @@ Returns a **String** that represents the result of the specified field. Read-on
_expression_ A variable that represents a **Field** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Fields.AddHorizontalInVertical.md b/api/Publisher.Fields.AddHorizontalInVertical.md
index ad8a0d47d0d..caeb6f8cbb4 100644
--- a/api/Publisher.Fields.AddHorizontalInVertical.md
+++ b/api/Publisher.Fields.AddHorizontalInVertical.md
@@ -27,12 +27,12 @@ Inserts horizontal text into a stream of vertical text and returns the new horiz
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Range|Required| **TextRange**|The text range at which to insert the horizontal text.|
|Text|Required| **String**|The text to be horizontally inserted.|
-### Return Value
+### Return value
Field
diff --git a/api/Publisher.Fields.AddPhoneticGuide.md b/api/Publisher.Fields.AddPhoneticGuide.md
index c8f5ead2624..dcb12e7c23e 100644
--- a/api/Publisher.Fields.AddPhoneticGuide.md
+++ b/api/Publisher.Fields.AddPhoneticGuide.md
@@ -27,7 +27,7 @@ Returns a **[Field](Publisher.Field.md)** object that represents phonetic text
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Range|Required| **TextRange**|The text in the publication over which the phonetic text is displayed.|
|Text|Required| **String**|The phonetic text to add.|
@@ -36,7 +36,7 @@ Returns a **[Field](Publisher.Field.md)** object that represents phonetic text
|FontName|Optional| **String**|The name of the font to use for the phonetic text. If no value is specified, Publisher uses the same font as the text in the specified range.|
|FontSize|Optional| **Variant**|The font size to use for the phonetic text. Default is 10 point.|
-### Return Value
+### Return value
Field
diff --git a/api/Publisher.Fields.Item.md b/api/Publisher.Fields.Item.md
index 349640f0ca9..588b342854f 100644
--- a/api/Publisher.Fields.Item.md
+++ b/api/Publisher.Fields.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The number of the object to return.|
-### Return Value
+### Return value
Field
diff --git a/api/Publisher.Fields.Unlink.md b/api/Publisher.Fields.Unlink.md
index 4bdf19ff5a5..4b3119fd3f3 100644
--- a/api/Publisher.Fields.Unlink.md
+++ b/api/Publisher.Fields.Unlink.md
@@ -23,7 +23,7 @@ Replaces the specified field or **[Fields](Publisher.Fields.md)** collection wi
_expression_ A variable that represents a **Fields** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.FillFormat.GradientColorType.md b/api/Publisher.FillFormat.GradientColorType.md
index d92b7009ad0..b190e717e27 100644
--- a/api/Publisher.FillFormat.GradientColorType.md
+++ b/api/Publisher.FillFormat.GradientColorType.md
@@ -23,7 +23,7 @@ Returns an **MsoGradientColorType** constant indicating the gradient color type
_expression_ A variable that represents a **FillFormat** object.
-### Return Value
+### Return value
MsoGradientColorType
diff --git a/api/Publisher.FillFormat.GradientDegree.md b/api/Publisher.FillFormat.GradientDegree.md
index dba8f7fc1ec..f4f73fc7981 100644
--- a/api/Publisher.FillFormat.GradientDegree.md
+++ b/api/Publisher.FillFormat.GradientDegree.md
@@ -23,7 +23,7 @@ Returns a **Single** indicating how dark or light a one-color gradient fill is.
_expression_ A variable that represents a **FillFormat** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.FillFormat.GradientStyle.md b/api/Publisher.FillFormat.GradientStyle.md
index 655da7c350c..cb047900f37 100644
--- a/api/Publisher.FillFormat.GradientStyle.md
+++ b/api/Publisher.FillFormat.GradientStyle.md
@@ -23,7 +23,7 @@ Returns an **MsoGradientStyle** constant indicating the gradient style for the
_expression_ A variable that represents a **FillFormat** object.
-### Return Value
+### Return value
MsoGradientStyle
diff --git a/api/Publisher.FillFormat.GradientVariant.md b/api/Publisher.FillFormat.GradientVariant.md
index a091a06dc69..272bc806d7e 100644
--- a/api/Publisher.FillFormat.GradientVariant.md
+++ b/api/Publisher.FillFormat.GradientVariant.md
@@ -23,7 +23,7 @@ Returns a **Long** indicating the gradient variant for the specified fill. Gene
_expression_ A variable that represents a **FillFormat** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.FillFormat.OneColorGradient.md b/api/Publisher.FillFormat.OneColorGradient.md
index 687b1e9d64c..7e73f350fa9 100644
--- a/api/Publisher.FillFormat.OneColorGradient.md
+++ b/api/Publisher.FillFormat.OneColorGradient.md
@@ -27,7 +27,7 @@ Sets the specified fill to a one-color gradient.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Style|Required| **MsoGradientStyle**|The gradient style.|
|Variant|Required| **Long**|The gradient variant. Can be a value from 1 to 4, corresponding to the four variants on the **Gradient** tab in the **Fill Effects** dialog box. If Style is **msoGradientFromTitle** or **msoGradientFromCenter**, this argument can be either 1 or 2.|
diff --git a/api/Publisher.FillFormat.Patterned.md b/api/Publisher.FillFormat.Patterned.md
index 6b9124ddc8f..6dc3faed5d9 100644
--- a/api/Publisher.FillFormat.Patterned.md
+++ b/api/Publisher.FillFormat.Patterned.md
@@ -27,7 +27,7 @@ Sets the specified fill to a pattern.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Pattern|Required| **MsoPatternType**|The pattern to be used for the specified fill.|
diff --git a/api/Publisher.FillFormat.PresetGradient.md b/api/Publisher.FillFormat.PresetGradient.md
index 84ad512fe21..dd33628cadc 100644
--- a/api/Publisher.FillFormat.PresetGradient.md
+++ b/api/Publisher.FillFormat.PresetGradient.md
@@ -27,7 +27,7 @@ Sets the specified fill to a preset gradient.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Style|Required| **MsoGradientStyle**|The style of the gradient.|
|Variant|Required| **Long**|The gradient variant. Can be a value from 1 to 4, corresponding to the four variants on the **Gradient** tab in the **Fill Effects** dialog box. If Style is **msoGradientFromTitle** or **msoGradientFromCenter**, this argument can be either 1 or 2.|
diff --git a/api/Publisher.FillFormat.PresetGradientType.md b/api/Publisher.FillFormat.PresetGradientType.md
index 5796a48e7c5..36108ac76a0 100644
--- a/api/Publisher.FillFormat.PresetGradientType.md
+++ b/api/Publisher.FillFormat.PresetGradientType.md
@@ -23,7 +23,7 @@ Returns an **MsoPresetGradientType** constant that represents the preset gradie
_expression_ A variable that represents a **FillFormat** object.
-### Return Value
+### Return value
MsoPresetGradientType
diff --git a/api/Publisher.FillFormat.PresetTexture.md b/api/Publisher.FillFormat.PresetTexture.md
index ba927fce9cc..710a953891d 100644
--- a/api/Publisher.FillFormat.PresetTexture.md
+++ b/api/Publisher.FillFormat.PresetTexture.md
@@ -23,7 +23,7 @@ Returns an **MsoPresetTexture** constant that represents the preset texture for
_expression_ A variable that represents a **FillFormat** object.
-### Return Value
+### Return value
MsoPresetTexture
diff --git a/api/Publisher.FillFormat.PresetTextured.md b/api/Publisher.FillFormat.PresetTextured.md
index 6eb844740ad..2a9f190730c 100644
--- a/api/Publisher.FillFormat.PresetTextured.md
+++ b/api/Publisher.FillFormat.PresetTextured.md
@@ -27,7 +27,7 @@ Sets the specified fill to a preset texture.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PresetTexture|Required| **MsoPresetTexture**|The preset texture.|
diff --git a/api/Publisher.FillFormat.TextureName.md b/api/Publisher.FillFormat.TextureName.md
index 89ab09d7d28..85ca1db42c1 100644
--- a/api/Publisher.FillFormat.TextureName.md
+++ b/api/Publisher.FillFormat.TextureName.md
@@ -23,7 +23,7 @@ Returns a **String** indicating the name of the custom texture file for the spe
_expression_ A variable that represents a **FillFormat** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.FillFormat.TextureType.md b/api/Publisher.FillFormat.TextureType.md
index 536448f0063..1a4243d82f3 100644
--- a/api/Publisher.FillFormat.TextureType.md
+++ b/api/Publisher.FillFormat.TextureType.md
@@ -23,7 +23,7 @@ Returns an **MsoTextureType** constant indicating the texture type for the spec
_expression_ A variable that represents a **FillFormat** object.
-### Return Value
+### Return value
MsoTextureType
diff --git a/api/Publisher.FillFormat.TwoColorGradient.md b/api/Publisher.FillFormat.TwoColorGradient.md
index 7cf1d0d7bd5..e9728b7ffc7 100644
--- a/api/Publisher.FillFormat.TwoColorGradient.md
+++ b/api/Publisher.FillFormat.TwoColorGradient.md
@@ -27,7 +27,7 @@ Sets the specified fill to a two-color gradient. The two fill colors are specifi
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Style|Required| **MsoGradientStyle**|The gradient style.|
|Variant|Required| **Long**|The gradient variant. Can be a value from 1 to 4, corresponding to the four variants on the **Gradient** tab in the **Fill Effects** dialog box. If Style is **msoGradientFromTitle** or **msoGradientFromCenter**, this argument can be either 1 or 2.|
diff --git a/api/Publisher.FillFormat.UserPicture.md b/api/Publisher.FillFormat.UserPicture.md
index 8de9ea64102..ff0681c6062 100644
--- a/api/Publisher.FillFormat.UserPicture.md
+++ b/api/Publisher.FillFormat.UserPicture.md
@@ -27,7 +27,7 @@ Fills the specified shape with one large image.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PictureFile|Required| **String**|The name of the picture file.|
diff --git a/api/Publisher.FillFormat.UserTextured.md b/api/Publisher.FillFormat.UserTextured.md
index 0595f664f7d..d68eff766db 100644
--- a/api/Publisher.FillFormat.UserTextured.md
+++ b/api/Publisher.FillFormat.UserTextured.md
@@ -27,7 +27,7 @@ Fills the specified shape with small tiles of an image.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|TextureFile|Required| **String**|The name of the texture file.|
diff --git a/api/Publisher.FindReplace.Execute.md b/api/Publisher.FindReplace.Execute.md
index 550284e50cb..5d2c9bfcf62 100644
--- a/api/Publisher.FindReplace.Execute.md
+++ b/api/Publisher.FindReplace.Execute.md
@@ -23,7 +23,7 @@ Performs the specified Find or Replace operation.
_expression_ A variable that represents a **FindReplace** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.FindReplace.FindText.md b/api/Publisher.FindReplace.FindText.md
index 13d825b6254..8e2cbb389c7 100644
--- a/api/Publisher.FindReplace.FindText.md
+++ b/api/Publisher.FindReplace.FindText.md
@@ -23,7 +23,7 @@ Sets or retrieves a **String** representing the text to find in the specified r
_expression_ A variable that represents a **FindReplace** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.FindReplace.Forward.md b/api/Publisher.FindReplace.Forward.md
index 2283607d58f..c3dcaa3d574 100644
--- a/api/Publisher.FindReplace.Forward.md
+++ b/api/Publisher.FindReplace.Forward.md
@@ -23,7 +23,7 @@ Sets or retrieves a **Boolean** representing the direction of the text search.
_expression_ A variable that represents a **FindReplace** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.FindReplace.FoundTextRange.md b/api/Publisher.FindReplace.FoundTextRange.md
index b0cd2a13d6c..c90f4c15421 100644
--- a/api/Publisher.FindReplace.FoundTextRange.md
+++ b/api/Publisher.FindReplace.FoundTextRange.md
@@ -23,7 +23,7 @@ Returns a **TextRange** object that represents the found text or replaced text
_expression_ A variable that represents a **FindReplace** object.
-### Return Value
+### Return value
TextRange
diff --git a/api/Publisher.FindReplace.MatchAlefHamza.md b/api/Publisher.FindReplace.MatchAlefHamza.md
index dd1612ee5c6..d8d44600064 100644
--- a/api/Publisher.FindReplace.MatchAlefHamza.md
+++ b/api/Publisher.FindReplace.MatchAlefHamza.md
@@ -23,7 +23,7 @@ Sets or returns a **Boolean** representing whether or not a search operation wi
_expression_ A variable that represents a **FindReplace** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.FindReplace.MatchCase.md b/api/Publisher.FindReplace.MatchCase.md
index 86df90bc062..42f3e0d52f8 100644
--- a/api/Publisher.FindReplace.MatchCase.md
+++ b/api/Publisher.FindReplace.MatchCase.md
@@ -23,7 +23,7 @@ Sets or returns a **Boolean** that represents the case sensitivity of the searc
_expression_ A variable that represents a **FindReplace** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.FindReplace.MatchDiacritics.md b/api/Publisher.FindReplace.MatchDiacritics.md
index 3d805c4e1d8..39de810f687 100644
--- a/api/Publisher.FindReplace.MatchDiacritics.md
+++ b/api/Publisher.FindReplace.MatchDiacritics.md
@@ -23,7 +23,7 @@ Sets or returns a **Boolean** representing whether or not a search operation wi
_expression_ A variable that represents a **FindReplace** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.FindReplace.MatchKashida.md b/api/Publisher.FindReplace.MatchKashida.md
index c2fc2ffc7a2..ce7cca78ccf 100644
--- a/api/Publisher.FindReplace.MatchKashida.md
+++ b/api/Publisher.FindReplace.MatchKashida.md
@@ -23,7 +23,7 @@ Sets or returns a **Boolean** representing whether or not a search operation wi
_expression_ A variable that represents a **FindReplace** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.FindReplace.MatchWholeWord.md b/api/Publisher.FindReplace.MatchWholeWord.md
index cb826350b97..11199875011 100644
--- a/api/Publisher.FindReplace.MatchWholeWord.md
+++ b/api/Publisher.FindReplace.MatchWholeWord.md
@@ -23,7 +23,7 @@ Sets or returns a **Boolean** that represents whether the whole word will be ma
_expression_ A variable that represents a **FindReplace** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.FindReplace.MatchWidth.md b/api/Publisher.FindReplace.MatchWidth.md
index e7d4f5652a8..6cd05c2ce18 100644
--- a/api/Publisher.FindReplace.MatchWidth.md
+++ b/api/Publisher.FindReplace.MatchWidth.md
@@ -23,7 +23,7 @@ Sets or returns a **Boolean** representing whether or not a search operation wi
_expression_ A variable that represents a **FindReplace** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.FindReplace.ReplaceScope.md b/api/Publisher.FindReplace.ReplaceScope.md
index fb7a02bcc4f..66020f70122 100644
--- a/api/Publisher.FindReplace.ReplaceScope.md
+++ b/api/Publisher.FindReplace.ReplaceScope.md
@@ -23,7 +23,7 @@ Specifies how many scope replacements are to be made: one, all, or none. Read/wr
_expression_ A variable that represents a **FindReplace** object.
-### Return Value
+### Return value
PbReplaceScope
diff --git a/api/Publisher.FindReplace.ReplaceWithText.md b/api/Publisher.FindReplace.ReplaceWithText.md
index 9d1ff8c08ec..67fcb080e5e 100644
--- a/api/Publisher.FindReplace.ReplaceWithText.md
+++ b/api/Publisher.FindReplace.ReplaceWithText.md
@@ -23,7 +23,7 @@ Sets or retrieves a **String** representing the replacement text in the specifi
_expression_ A variable that represents a **FindReplace** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Font.AllCaps.md b/api/Publisher.Font.AllCaps.md
index 9542641132f..fda641b7bea 100644
--- a/api/Publisher.Font.AllCaps.md
+++ b/api/Publisher.Font.AllCaps.md
@@ -23,7 +23,7 @@ Returns or sets **msoTrue** if the font is formatted as all capital letters, or
_expression_ A variable that represents a **Font** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.Font.AutomaticPairKerningThreshold.md b/api/Publisher.Font.AutomaticPairKerningThreshold.md
index 8b664efd418..05ec5335cc2 100644
--- a/api/Publisher.Font.AutomaticPairKerningThreshold.md
+++ b/api/Publisher.Font.AutomaticPairKerningThreshold.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** value that represents the point size above which
_expression_ A variable that represents a **Font** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.Font.Bold.md b/api/Publisher.Font.Bold.md
index e5a9e89ff02..0512962b971 100644
--- a/api/Publisher.Font.Bold.md
+++ b/api/Publisher.Font.Bold.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState**constant that represents the state of the **
_expression_ A variable that represents a **Font** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.Font.BoldBi.md b/api/Publisher.Font.BoldBi.md
index 605aa38bbce..3a0d030f6b2 100644
--- a/api/Publisher.Font.BoldBi.md
+++ b/api/Publisher.Font.BoldBi.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState**constant indicating whether the font is bold;
_expression_ A variable that represents a **Font** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.Font.DiacriticColor.md b/api/Publisher.Font.DiacriticColor.md
index cb1090608fe..14a353da538 100644
--- a/api/Publisher.Font.DiacriticColor.md
+++ b/api/Publisher.Font.DiacriticColor.md
@@ -23,7 +23,7 @@ Returns a **[ColorFormat](Publisher.ColorFormat.md)** object representing the 2
_expression_ A variable that represents a **Font** object.
-### Return Value
+### Return value
ColorFormat
diff --git a/api/Publisher.Font.Duplicate.md b/api/Publisher.Font.Duplicate.md
index e62266a994d..52617f8dc33 100644
--- a/api/Publisher.Font.Duplicate.md
+++ b/api/Publisher.Font.Duplicate.md
@@ -23,7 +23,7 @@ Creates a duplicate of the specified **[Font](Publisher.Font.md)** object and t
_expression_ A variable that represents a **Font** object.
-### Return Value
+### Return value
Font
diff --git a/api/Publisher.Font.ExpandUsingKashida.md b/api/Publisher.Font.ExpandUsingKashida.md
index ca2d92bf153..9a9f312d203 100644
--- a/api/Publisher.Font.ExpandUsingKashida.md
+++ b/api/Publisher.Font.ExpandUsingKashida.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState** constant indicating whether to apply kashida
_expression_ A variable that represents an **Font** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.Font.GetScriptName.md b/api/Publisher.Font.GetScriptName.md
index 6523a300f9c..7793a322293 100644
--- a/api/Publisher.Font.GetScriptName.md
+++ b/api/Publisher.Font.GetScriptName.md
@@ -27,11 +27,11 @@ Returns a **String** that represents the name of the font script being used in
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Script|Required| **PbFontScriptType**|The script name.|
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Font.Italic.md b/api/Publisher.Font.Italic.md
index 9e5ef4b9cad..1ab3e907778 100644
--- a/api/Publisher.Font.Italic.md
+++ b/api/Publisher.Font.Italic.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState** constant indicating whether the specified te
_expression_ A variable that represents an **Font** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.Font.ItalicBi.md b/api/Publisher.Font.ItalicBi.md
index 39ac2b2e6e5..47a30f00cd9 100644
--- a/api/Publisher.Font.ItalicBi.md
+++ b/api/Publisher.Font.ItalicBi.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState** constant indicating whether the specified te
_expression_ A variable that represents an **Font** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.Font.Kerning.md b/api/Publisher.Font.Kerning.md
index 17528867a4d..16f370f8bde 100644
--- a/api/Publisher.Font.Kerning.md
+++ b/api/Publisher.Font.Kerning.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** indicating the amount of horizontal spacing Micro
_expression_ A variable that represents a **Font** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.Font.Name.md b/api/Publisher.Font.Name.md
index 75b6070275f..e06a4273301 100644
--- a/api/Publisher.Font.Name.md
+++ b/api/Publisher.Font.Name.md
@@ -23,7 +23,7 @@ Indicates the name of the specified font. Read/write.
_expression_An expression that returns a **Font** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Font.Reset.md b/api/Publisher.Font.Reset.md
index 974b76762c9..eb87d393798 100644
--- a/api/Publisher.Font.Reset.md
+++ b/api/Publisher.Font.Reset.md
@@ -23,7 +23,7 @@ Removes manual paragraph or text formatting from the specified object and leaves
_expression_ A variable that represents a **Font** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.Font.Scaling.md b/api/Publisher.Font.Scaling.md
index 4ab29288d3c..9cbb8829434 100644
--- a/api/Publisher.Font.Scaling.md
+++ b/api/Publisher.Font.Scaling.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** value used to scale the width of the characters i
_expression_ A variable that represents a **Font** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.Font.SetScriptName.md b/api/Publisher.Font.SetScriptName.md
index 5ec35dba5b6..90a532ad72e 100644
--- a/api/Publisher.Font.SetScriptName.md
+++ b/api/Publisher.Font.SetScriptName.md
@@ -27,7 +27,7 @@ Sets the name of the font script to use in a text range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Script|Required| **PbFontScriptType**|The script name.|
|FontName|Required| **String**|The font name.|
diff --git a/api/Publisher.Font.Size.md b/api/Publisher.Font.Size.md
index a7aa8b8c558..027150d5ef0 100644
--- a/api/Publisher.Font.Size.md
+++ b/api/Publisher.Font.Size.md
@@ -23,7 +23,7 @@ Represents the size of the characters in the text range in points. Read/write.
_expression_An expression that returns a **Font** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.Font.SizeBi.md b/api/Publisher.Font.SizeBi.md
index bd8a0f05de2..0f641fb4ba7 100644
--- a/api/Publisher.Font.SizeBi.md
+++ b/api/Publisher.Font.SizeBi.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** value representing the size, in points, of the **
_expression_ A variable that represents a **Font** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.Font.SmallCaps.md b/api/Publisher.Font.SmallCaps.md
index d270fe5b000..2e5f850768c 100644
--- a/api/Publisher.Font.SmallCaps.md
+++ b/api/Publisher.Font.SmallCaps.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState** constant indicating whether the specified te
_expression_ A variable that represents a **Font** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.Font.SubScript.md b/api/Publisher.Font.SubScript.md
index bd3bb2660f3..012a75597bf 100644
--- a/api/Publisher.Font.SubScript.md
+++ b/api/Publisher.Font.SubScript.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState** constant indicating whether characters are f
_expression_ A variable that represents a **Font** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.Font.SuperScript.md b/api/Publisher.Font.SuperScript.md
index 82a2a61d624..6ae906cb75c 100644
--- a/api/Publisher.Font.SuperScript.md
+++ b/api/Publisher.Font.SuperScript.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState** constant indicating whether characters are f
_expression_ A variable that represents a **Font** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.Font.TrackingPreset.md b/api/Publisher.Font.TrackingPreset.md
index 5cfaa78dbab..87868251b25 100644
--- a/api/Publisher.Font.TrackingPreset.md
+++ b/api/Publisher.Font.TrackingPreset.md
@@ -23,7 +23,7 @@ Returns or sets a **PbTrackingPresetType** constant representing the preset tra
_expression_ A variable that represents a **Font** object.
-### Return Value
+### Return value
PbTrackingPresetType
diff --git a/api/Publisher.Font.Underline.md b/api/Publisher.Font.Underline.md
index e913ce0a849..0425391ee24 100644
--- a/api/Publisher.Font.Underline.md
+++ b/api/Publisher.Font.Underline.md
@@ -23,7 +23,7 @@ Returns or sets an **PbUnderlineType** constant that indicates the type of unde
_expression_ A variable that represents an **Font** object.
-### Return Value
+### Return value
PbUnderlineType
diff --git a/api/Publisher.Font.UseDiacriticColor.md b/api/Publisher.Font.UseDiacriticColor.md
index e520c1b41bf..4dc7b31cefb 100644
--- a/api/Publisher.Font.UseDiacriticColor.md
+++ b/api/Publisher.Font.UseDiacriticColor.md
@@ -23,7 +23,7 @@ Returns or sets **MsoTriState** constant indicating whether you can set the col
_expression_ A variable that represents an **Font** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.FreeformBuilder.AddNodes.md b/api/Publisher.FreeformBuilder.AddNodes.md
index 94e4d2fb590..b2e0b284088 100644
--- a/api/Publisher.FreeformBuilder.AddNodes.md
+++ b/api/Publisher.FreeformBuilder.AddNodes.md
@@ -27,7 +27,7 @@ Inserts a new segment at the end of the freeform that is being created, and adds
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|SegmentType|Required| **MsoSegmentType**|The type of segment to be added.|
|EditingType|Required| **MsoEditingType**|Specifies the editing type of the new node. If SegmentType is **msoSegmentLine**, EditingType must be **msoEditingAuto**; otherwise, an error occurs.|
diff --git a/api/Publisher.FreeformBuilder.ConvertToShape.md b/api/Publisher.FreeformBuilder.ConvertToShape.md
index f7677e9c8b9..4df8f498189 100644
--- a/api/Publisher.FreeformBuilder.ConvertToShape.md
+++ b/api/Publisher.FreeformBuilder.ConvertToShape.md
@@ -23,7 +23,7 @@ Creates a shape that has the geometric characteristics of the specified **[Free
_expression_ A variable that represents a **FreeformBuilder** object.
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.GroupShapes.Item.md b/api/Publisher.GroupShapes.Item.md
index bf98bb5a45a..2912086539d 100644
--- a/api/Publisher.GroupShapes.Item.md
+++ b/api/Publisher.GroupShapes.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The number or name of the field or list box item to return.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.HeaderFooter.IsHeader.md b/api/Publisher.HeaderFooter.IsHeader.md
index 4de6a1313af..1bc2ec4d12c 100644
--- a/api/Publisher.HeaderFooter.IsHeader.md
+++ b/api/Publisher.HeaderFooter.IsHeader.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **HeaderFooter** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Hyperlink.Address.md b/api/Publisher.Hyperlink.Address.md
index 8b3bce69668..f79da5e247e 100644
--- a/api/Publisher.Hyperlink.Address.md
+++ b/api/Publisher.Hyperlink.Address.md
@@ -23,7 +23,7 @@ Returns or sets a **String** that represents the URL address for a hyperlink. R
_expression_ A variable that represents a **Hyperlink** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Hyperlink.SetPageRelative.md b/api/Publisher.Hyperlink.SetPageRelative.md
index 4a35b0fbdf2..98c6ed372c2 100644
--- a/api/Publisher.Hyperlink.SetPageRelative.md
+++ b/api/Publisher.Hyperlink.SetPageRelative.md
@@ -27,7 +27,7 @@ Sets the target type for the specified hyperlink.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|RelativePage|Required| **PbHlinkTargetType**|The target type of the hyperlink.|
diff --git a/api/Publisher.Hyperlink.Shape.md b/api/Publisher.Hyperlink.Shape.md
index 11a90c1313b..f1ecc6a94b6 100644
--- a/api/Publisher.Hyperlink.Shape.md
+++ b/api/Publisher.Hyperlink.Shape.md
@@ -23,7 +23,7 @@ Returns a **[Shape](Publisher.Shape.md)** object that represents the shape asso
_expression_ A variable that represents a **Hyperlink** object.
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Hyperlink.TargetType.md b/api/Publisher.Hyperlink.TargetType.md
index 99ef7455d1c..a828fbbc2b5 100644
--- a/api/Publisher.Hyperlink.TargetType.md
+++ b/api/Publisher.Hyperlink.TargetType.md
@@ -23,7 +23,7 @@ Returns a **PbHlinkTargetType** constant that represents the type of hyperlink.
_expression_ A variable that represents a **Hyperlink** object.
-### Return Value
+### Return value
PbHlinkTargetType
diff --git a/api/Publisher.Hyperlink.TextToDisplay.md b/api/Publisher.Hyperlink.TextToDisplay.md
index 7cfdf2365c4..15989bc226e 100644
--- a/api/Publisher.Hyperlink.TextToDisplay.md
+++ b/api/Publisher.Hyperlink.TextToDisplay.md
@@ -23,7 +23,7 @@ Returns or sets a **String** that represents the text displayed for a hyperlink
_expression_ A variable that represents a **Hyperlink** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Hyperlinks.Add.md b/api/Publisher.Hyperlinks.Add.md
index 74b68d098df..836fe6f8b40 100644
--- a/api/Publisher.Hyperlinks.Add.md
+++ b/api/Publisher.Hyperlinks.Add.md
@@ -27,7 +27,7 @@ Adds a new **Hyperlink** object to the specified **Hyperlinks** collection and
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Text|Required| **TextRange**| **TextRange** object. The text range to be converted into a hyperlink.|
|Address|Optional| **String**|The address of the new hyperlink. If RelativePage is **pbHlinkTargetTypeURL** (default) or **pbHlinkTargetTypeEmail**, Address must be specified or an error occurs.|
@@ -35,7 +35,7 @@ Adds a new **Hyperlink** object to the specified **Hyperlinks** collection and
|PageID|Optional| **Long**|The page ID of the destination page for the new hyperlink. If RelativePage is **pbHlinkTargetTypePageID**, PageID must be specified or an error occurs. The page ID corresponds to the **[PageID](Publisher.Hyperlink.PageID.md)** property of the destination page.|
|TextToDisplay|Optional| **String**|The display text of the new hyperlink. If specified, **TextToDisplay** replaces the text range specified by the **Text** argument.|
-### Return Value
+### Return value
Hyperlink
diff --git a/api/Publisher.Hyperlinks.Item.md b/api/Publisher.Hyperlinks.Item.md
index 3fd158fc7a4..f92cff13eb4 100644
--- a/api/Publisher.Hyperlinks.Item.md
+++ b/api/Publisher.Hyperlinks.Item.md
@@ -27,7 +27,7 @@ Returns an individual object from a specified collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The number of the object to return.|
diff --git a/api/Publisher.InlineShapes.Item.md b/api/Publisher.InlineShapes.Item.md
index d40bd1e33b7..ce62cc372d5 100644
--- a/api/Publisher.InlineShapes.Item.md
+++ b/api/Publisher.InlineShapes.Item.md
@@ -27,11 +27,11 @@ Returns a **[Shape](Publisher.Shape.md)** object that represents an inline shap
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|var|Required| **Variant**|The index position or name of the object to return. If **Index** is an integer, the index into the collection is 1-based. If **Index** is a string, the name of the shape is used as the index. An automation error is returned if the index or name does not represent a shape in the collection.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.InlineShapes.Range.md b/api/Publisher.InlineShapes.Range.md
index 779175dcf8a..2e9720a8893 100644
--- a/api/Publisher.InlineShapes.Range.md
+++ b/api/Publisher.InlineShapes.Range.md
@@ -27,7 +27,7 @@ Returns a **[ShapeRange](Publisher.ShapeRange.md)** collection that represents
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Optional| **Long**|The index position of the inline shape within the **ShapeRange** collection.|
diff --git a/api/Publisher.InstalledPrinters.Application.md b/api/Publisher.InstalledPrinters.Application.md
index db62af1ef98..1f901c982a3 100644
--- a/api/Publisher.InstalledPrinters.Application.md
+++ b/api/Publisher.InstalledPrinters.Application.md
@@ -23,7 +23,7 @@ Returns an **Application** object that represents the creator of the parent **I
_expression_ A variable that represents an **InstalledPrinters** object.
-### Return Value
+### Return value
Application
diff --git a/api/Publisher.InstalledPrinters.Count.md b/api/Publisher.InstalledPrinters.Count.md
index f1f85138b06..ca322802e62 100644
--- a/api/Publisher.InstalledPrinters.Count.md
+++ b/api/Publisher.InstalledPrinters.Count.md
@@ -23,7 +23,7 @@ Returns the number of printers installed on your computer. Read-only.
_expression_ A variable that represents an **InstalledPrinters** collection.
-### Return Value
+### Return value
Int
diff --git a/api/Publisher.InstalledPrinters.Item.md b/api/Publisher.InstalledPrinters.Item.md
index d6b5fe121d3..e129d1a9dbf 100644
--- a/api/Publisher.InstalledPrinters.Item.md
+++ b/api/Publisher.InstalledPrinters.Item.md
@@ -27,11 +27,11 @@ Returns the **[Printer](Publisher.Printer.md)** object with the specified name
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The name or index position of the installed printer.|
-### Return Value
+### Return value
Printer
diff --git a/api/Publisher.InstalledPrinters.Parent.md b/api/Publisher.InstalledPrinters.Parent.md
index 5efb23f91cf..18245ce72ec 100644
--- a/api/Publisher.InstalledPrinters.Parent.md
+++ b/api/Publisher.InstalledPrinters.Parent.md
@@ -23,7 +23,7 @@ Returns the parent of the **[InstalledPrinters](Publisher.InstalledPrinters.md)
_expression_ A variable that represents an **InstalledPrinters** object.
-### Return Value
+### Return value
Object
diff --git a/api/Publisher.LayoutGuides.ColumnGutterWidth.md b/api/Publisher.LayoutGuides.ColumnGutterWidth.md
index de20778f099..14fc0ed4147 100644
--- a/api/Publisher.LayoutGuides.ColumnGutterWidth.md
+++ b/api/Publisher.LayoutGuides.ColumnGutterWidth.md
@@ -23,7 +23,7 @@ Returns or sets the width of the column gutters that are used by the **LayoutGu
_expression_ A variable that represents a **LayoutGuides** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.LayoutGuides.GutterCenterlines.md b/api/Publisher.LayoutGuides.GutterCenterlines.md
index 9898969f49e..4dc53d5e051 100644
--- a/api/Publisher.LayoutGuides.GutterCenterlines.md
+++ b/api/Publisher.LayoutGuides.GutterCenterlines.md
@@ -23,7 +23,7 @@ Returns or sets a value that specifies whether to add a center line between the
_expression_ A variable that represents a **LayoutGuides** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.LayoutGuides.HorizontalBaseLineOffset.md b/api/Publisher.LayoutGuides.HorizontalBaseLineOffset.md
index ada30b71fff..eecad1c413f 100644
--- a/api/Publisher.LayoutGuides.HorizontalBaseLineOffset.md
+++ b/api/Publisher.LayoutGuides.HorizontalBaseLineOffset.md
@@ -23,7 +23,7 @@ Returns a **Single** that represents the horizontal baseline offset of the spec
_expression_ A variable that represents a **LayoutGuides** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.LayoutGuides.HorizontalBaseLineSpacing.md b/api/Publisher.LayoutGuides.HorizontalBaseLineSpacing.md
index ac82f344b18..56259ecdc71 100644
--- a/api/Publisher.LayoutGuides.HorizontalBaseLineSpacing.md
+++ b/api/Publisher.LayoutGuides.HorizontalBaseLineSpacing.md
@@ -23,7 +23,7 @@ Returns a **Single** that represents the horizontal baseline spacing of the spe
_expression_ A variable that represents a **LayoutGuides** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.LayoutGuides.MirrorGuides.md b/api/Publisher.LayoutGuides.MirrorGuides.md
index 4637089d467..27bcd601617 100644
--- a/api/Publisher.LayoutGuides.MirrorGuides.md
+++ b/api/Publisher.LayoutGuides.MirrorGuides.md
@@ -23,7 +23,7 @@ Returns or sets a **Boolean** indicating whether Microsoft Publisher creates mi
_expression_ A variable that represents a **LayoutGuides** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.LayoutGuides.RowGutterWidth.md b/api/Publisher.LayoutGuides.RowGutterWidth.md
index 58f4366978a..59d9550e955 100644
--- a/api/Publisher.LayoutGuides.RowGutterWidth.md
+++ b/api/Publisher.LayoutGuides.RowGutterWidth.md
@@ -23,7 +23,7 @@ Returns or sets the width of the row gutters that are used by the **LayoutGuide
_expression_ A variable that represents a **LayoutGuides** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.LayoutGuides.VerticalBaseLineOffset.md b/api/Publisher.LayoutGuides.VerticalBaseLineOffset.md
index 1cb849a0639..a50d9f04387 100644
--- a/api/Publisher.LayoutGuides.VerticalBaseLineOffset.md
+++ b/api/Publisher.LayoutGuides.VerticalBaseLineOffset.md
@@ -23,7 +23,7 @@ Returns a **Single** that represents the vertical baseline offset of the specif
_expression_ A variable that represents a **LayoutGuides** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.LayoutGuides.VerticalBaseLineSpacing.md b/api/Publisher.LayoutGuides.VerticalBaseLineSpacing.md
index 6bcb867923e..084cf7d4cea 100644
--- a/api/Publisher.LayoutGuides.VerticalBaseLineSpacing.md
+++ b/api/Publisher.LayoutGuides.VerticalBaseLineSpacing.md
@@ -23,7 +23,7 @@ Returns a **Single** that represents the vertical baseline spacing of the speci
_expression_ A variable that represents a **LayoutGuides** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.LineFormat.BeginArrowheadLength.md b/api/Publisher.LineFormat.BeginArrowheadLength.md
index 85185566212..056b0f9d4c5 100644
--- a/api/Publisher.LineFormat.BeginArrowheadLength.md
+++ b/api/Publisher.LineFormat.BeginArrowheadLength.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoArrowheadLength**constant indicating the length of the
_expression_ A variable that represents a **LineFormat** object.
-### Return Value
+### Return value
MsoArrowheadLength
diff --git a/api/Publisher.LineFormat.BeginArrowheadStyle.md b/api/Publisher.LineFormat.BeginArrowheadStyle.md
index f839443cd3b..d1690265823 100644
--- a/api/Publisher.LineFormat.BeginArrowheadStyle.md
+++ b/api/Publisher.LineFormat.BeginArrowheadStyle.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoArrowheadStyle**constant indicating the style of the ar
_expression_ A variable that represents a **LineFormat** object.
-### Return Value
+### Return value
MsoArrowheadStyle
diff --git a/api/Publisher.LineFormat.BeginArrowheadWidth.md b/api/Publisher.LineFormat.BeginArrowheadWidth.md
index c5c390e4e8e..93ba65404cd 100644
--- a/api/Publisher.LineFormat.BeginArrowheadWidth.md
+++ b/api/Publisher.LineFormat.BeginArrowheadWidth.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoArrowheadWidth**constant indicating the width of the ar
_expression_ A variable that represents a **LineFormat** object.
-### Return Value
+### Return value
MsoArrowheadWidth
diff --git a/api/Publisher.LineFormat.DashStyle.md b/api/Publisher.LineFormat.DashStyle.md
index a31f401ed71..556df97fd66 100644
--- a/api/Publisher.LineFormat.DashStyle.md
+++ b/api/Publisher.LineFormat.DashStyle.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoLineDashStyle** constant indicating the dash style for
_expression_ A variable that represents a **LineFormat** object.
-### Return Value
+### Return value
MsoLineDashStyle
diff --git a/api/Publisher.LineFormat.EndArrowheadLength.md b/api/Publisher.LineFormat.EndArrowheadLength.md
index d816a6b3aaf..539b79fc821 100644
--- a/api/Publisher.LineFormat.EndArrowheadLength.md
+++ b/api/Publisher.LineFormat.EndArrowheadLength.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoArrowheadLength** constant indicating the length of the
_expression_ A variable that represents an **LineFormat** object.
-### Return Value
+### Return value
MsoArrowheadLength
diff --git a/api/Publisher.LineFormat.EndArrowheadStyle.md b/api/Publisher.LineFormat.EndArrowheadStyle.md
index 2fedc1b39c7..02220f01440 100644
--- a/api/Publisher.LineFormat.EndArrowheadStyle.md
+++ b/api/Publisher.LineFormat.EndArrowheadStyle.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoArrowheadStyle** constant indicating the style of the a
_expression_ A variable that represents an **LineFormat** object.
-### Return Value
+### Return value
MsoArrowheadStyle
diff --git a/api/Publisher.LineFormat.EndArrowheadWidth.md b/api/Publisher.LineFormat.EndArrowheadWidth.md
index 28d4aadf7b7..ef038e26a08 100644
--- a/api/Publisher.LineFormat.EndArrowheadWidth.md
+++ b/api/Publisher.LineFormat.EndArrowheadWidth.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoArrowheadWidth** constant indicating the width of the a
_expression_ A variable that represents an **LineFormat** object.
-### Return Value
+### Return value
MsoArrowheadWidth
diff --git a/api/Publisher.LineFormat.InsetPen.md b/api/Publisher.LineFormat.InsetPen.md
index 64bd1388230..c4a0e944422 100644
--- a/api/Publisher.LineFormat.InsetPen.md
+++ b/api/Publisher.LineFormat.InsetPen.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState** constant indicating whether a specified shap
_expression_ A variable that represents an **LineFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.LineFormat.Style.md b/api/Publisher.LineFormat.Style.md
index dc689cf2d48..e08230ba537 100644
--- a/api/Publisher.LineFormat.Style.md
+++ b/api/Publisher.LineFormat.Style.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoLineStyle** constant that represents the style of line
_expression_ A variable that represents a **LineFormat** object.
-### Return Value
+### Return value
MsoLineStyle
diff --git a/api/Publisher.LinkFormat.SourceFullName.md b/api/Publisher.LinkFormat.SourceFullName.md
index d0739fe3fbe..2e770f347e9 100644
--- a/api/Publisher.LinkFormat.SourceFullName.md
+++ b/api/Publisher.LinkFormat.SourceFullName.md
@@ -23,7 +23,7 @@ Returns a **String** that represents the path and name of the source file for t
_expression_ A variable that represents a **LinkFormat** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.MailMerge.CreateShortcut.md b/api/Publisher.MailMerge.CreateShortcut.md
index fe294d510a0..83dce9c342a 100644
--- a/api/Publisher.MailMerge.CreateShortcut.md
+++ b/api/Publisher.MailMerge.CreateShortcut.md
@@ -27,7 +27,7 @@ Creates a shortcut to the file that contains the list of recipients or products
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Filename|Required| **String**|Name of the mailing list or product list file for which the shortcut should be created.|
diff --git a/api/Publisher.MailMerge.DataSource.md b/api/Publisher.MailMerge.DataSource.md
index 2718ddbe875..f29f4911dd7 100644
--- a/api/Publisher.MailMerge.DataSource.md
+++ b/api/Publisher.MailMerge.DataSource.md
@@ -23,7 +23,7 @@ Returns a **[MailMergeDataSource](Publisher.MailMergeDataSource.md)** object th
_expression_ A variable that represents a **MailMerge** object.
-### Return Value
+### Return value
MailMergeDataSource
diff --git a/api/Publisher.MailMerge.DocumentUpdating.md b/api/Publisher.MailMerge.DocumentUpdating.md
index 6b5ac3edd64..29cc3ce3dbb 100644
--- a/api/Publisher.MailMerge.DocumentUpdating.md
+++ b/api/Publisher.MailMerge.DocumentUpdating.md
@@ -23,7 +23,7 @@ Returns or sets a **Boolean** indicating whether the screen is updated while ma
_expression_ A variable that represents a **MailMerge** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.MailMerge.EmailMergeEnvelope.md b/api/Publisher.MailMerge.EmailMergeEnvelope.md
index 410aa027484..4c9ccede74d 100644
--- a/api/Publisher.MailMerge.EmailMergeEnvelope.md
+++ b/api/Publisher.MailMerge.EmailMergeEnvelope.md
@@ -23,7 +23,7 @@ Returns the **EmailMergeEnvelope** object associated with the parent **MailMerg
_expression_ A variable that represents a **MailMerge** object.
-### Return Value
+### Return value
EmailMergeEnvelope
diff --git a/api/Publisher.MailMerge.Execute.md b/api/Publisher.MailMerge.Execute.md
index cd689cfcb0c..22b0e5b63be 100644
--- a/api/Publisher.MailMerge.Execute.md
+++ b/api/Publisher.MailMerge.Execute.md
@@ -27,13 +27,13 @@ Performs the specified mail merge or catalog merge operation. Returns a **[Docu
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Pause|Required| **Boolean**| **True** to have Microsoft Publisher pause and display a troubleshooting dialog box if a merge error is found. **False** to ignore errors during mail merge or catalog merge.|
|Destination|Optional| **PbMailMergeDestination**|The destination of the mail merge or catalog merge results. Specifying **pbSendToPrinter** for a catalog merge results in a run-time error.|
|Filename|Optional| **String**|The file name of the publication to which you want to append the catalog merge results.|
-### Return Value
+### Return value
Document
diff --git a/api/Publisher.MailMerge.ExportRecipientList.md b/api/Publisher.MailMerge.ExportRecipientList.md
index 98fa5ce4c0e..7951867532d 100644
--- a/api/Publisher.MailMerge.ExportRecipientList.md
+++ b/api/Publisher.MailMerge.ExportRecipientList.md
@@ -27,7 +27,7 @@ Exports the list of mail-merge recipients to a Microsoft Office Access (.mdb) fi
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Filename|Required| **String**|The name of the file that will contain the list of recipients.|
|FileType|Optional| **PbRecipientListFileType**|The type of file to save. See Remarks for possible values.|
diff --git a/api/Publisher.MailMerge.OpenDataSource.md b/api/Publisher.MailMerge.OpenDataSource.md
index a32bde51d59..bd7279ae1ec 100644
--- a/api/Publisher.MailMerge.OpenDataSource.md
+++ b/api/Publisher.MailMerge.OpenDataSource.md
@@ -27,7 +27,7 @@ Attaches a data source to the specified publication, which becomes a main public
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|bstrDataSource|Optional| **String**|The data source path and file name. You can specify a Microsoft Query (.qry) file instead of specifying a data source, a connection string, and a table name string; values in a Microsoft Query file override values for bstrConnect and bstrTable.|
|bstrConnect|Optional| **String**|A connection string.|
diff --git a/api/Publisher.MailMerge.ShowWizardEx.md b/api/Publisher.MailMerge.ShowWizardEx.md
index cd93bf3dfab..54b7d6df2f1 100644
--- a/api/Publisher.MailMerge.ShowWizardEx.md
+++ b/api/Publisher.MailMerge.ShowWizardEx.md
@@ -27,7 +27,7 @@ Displays the specified catalog or mail merge wizard in a document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ShowDocumentStep|Optional| **Boolean**|Not used in Microsoft Publisher 2007. In previous versions, **True** (the default) displayed the "Select a merge type" step. **False** removed the step.|
|ShowTemplateStep|Optional| **Boolean**| This parameter does not apply to Microsoft Publisher.|
diff --git a/api/Publisher.MailMerge.SuppressBlankLines.md b/api/Publisher.MailMerge.SuppressBlankLines.md
index 4331a0ec5ba..4f01495f338 100644
--- a/api/Publisher.MailMerge.SuppressBlankLines.md
+++ b/api/Publisher.MailMerge.SuppressBlankLines.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **MailMerge** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.MailMerge.Type.md b/api/Publisher.MailMerge.Type.md
index d5213e09278..f1bcaafb441 100644
--- a/api/Publisher.MailMerge.Type.md
+++ b/api/Publisher.MailMerge.Type.md
@@ -23,7 +23,7 @@ Gets or sets the type of mail merge represented by the parent **MailMerge** obj
_expression_An expression that returns a **MailMerge** object.
-### Return Value
+### Return value
**PbMergeType**
diff --git a/api/Publisher.MailMerge.ViewMailMergeFieldCodes.md b/api/Publisher.MailMerge.ViewMailMergeFieldCodes.md
index 78651fe384c..0b46c8788b5 100644
--- a/api/Publisher.MailMerge.ViewMailMergeFieldCodes.md
+++ b/api/Publisher.MailMerge.ViewMailMergeFieldCodes.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **MailMerge** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.MailMerge.WizardState.md b/api/Publisher.MailMerge.WizardState.md
index ab8bc4f1624..a9b4ffdbb88 100644
--- a/api/Publisher.MailMerge.WizardState.md
+++ b/api/Publisher.MailMerge.WizardState.md
@@ -23,7 +23,7 @@ Returns or sets a **Long** indicating the current Mail Merge wizard step for a
_expression_ A variable that represents a **MailMerge** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.MailMergeDataField.Insert.md b/api/Publisher.MailMergeDataField.Insert.md
index 9441d7637c8..81c7be08c64 100644
--- a/api/Publisher.MailMergeDataField.Insert.md
+++ b/api/Publisher.MailMergeDataField.Insert.md
@@ -27,11 +27,11 @@ Returns a **[Shape](Publisher.Shape.md)** object that represents a data field i
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Range|Optional| **TextRange**|The text range to insert.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.MailMergeDataField.IsMapped.md b/api/Publisher.MailMergeDataField.IsMapped.md
index ae298d53b94..d81b54a6be8 100644
--- a/api/Publisher.MailMergeDataField.IsMapped.md
+++ b/api/Publisher.MailMergeDataField.IsMapped.md
@@ -23,7 +23,7 @@ Indicates if the parent **MailMergeDataField** object is mapped to a recipient
_expression_ A variable that represents a **MailMergeDataField** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.MailMergeDataField.MapToRecipientField.md b/api/Publisher.MailMergeDataField.MapToRecipientField.md
index a4d4d6d6e23..6cce396639d 100644
--- a/api/Publisher.MailMergeDataField.MapToRecipientField.md
+++ b/api/Publisher.MailMergeDataField.MapToRecipientField.md
@@ -27,7 +27,7 @@ Maps a field (column) in a particular data source represented by the parent **M
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|bstrValue|Optional| **String**|The name of the recipient field that the data source column is to be mapped to.|
diff --git a/api/Publisher.MailMergeDataField.MappedTo.md b/api/Publisher.MailMergeDataField.MappedTo.md
index 1765ac4297e..51217411f0e 100644
--- a/api/Publisher.MailMergeDataField.MappedTo.md
+++ b/api/Publisher.MailMergeDataField.MappedTo.md
@@ -23,7 +23,7 @@ Returns the name of the recipient field (column) in the master data source (comb
_expression_ A variable that represents a **MailMergeDataField** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.MailMergeDataFields.Item.md b/api/Publisher.MailMergeDataFields.Item.md
index e734339af8e..8f9d2d30adc 100644
--- a/api/Publisher.MailMergeDataFields.Item.md
+++ b/api/Publisher.MailMergeDataFields.Item.md
@@ -27,11 +27,11 @@ Returns a **[MailMergeDataField](Publisher.MailMergeDataField.md)** object from
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|varIndex|Required| **Variant**|The number or name of the field to return.|
-### Return Value
+### Return value
MailMergeDataField
diff --git a/api/Publisher.MailMergeDataSource.ActiveRecord.md b/api/Publisher.MailMergeDataSource.ActiveRecord.md
index 4cf8b4feebd..79a4cf2c383 100644
--- a/api/Publisher.MailMergeDataSource.ActiveRecord.md
+++ b/api/Publisher.MailMergeDataSource.ActiveRecord.md
@@ -23,7 +23,7 @@ Returns or sets a **Long** that represents the active mail merge record. Read/w
_expression_ A variable that represents a **MailMergeDataSource** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.MailMergeDataSource.ConnectString.md b/api/Publisher.MailMergeDataSource.ConnectString.md
index 322d32937ce..2cb3911f411 100644
--- a/api/Publisher.MailMergeDataSource.ConnectString.md
+++ b/api/Publisher.MailMergeDataSource.ConnectString.md
@@ -23,7 +23,7 @@ Returns a **String** that represents the connection to the specified mail merge
_expression_ A variable that represents a **MailMergeDataSource** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.MailMergeDataSource.DataFields.md b/api/Publisher.MailMergeDataSource.DataFields.md
index c1239f66a03..02ea8311113 100644
--- a/api/Publisher.MailMergeDataSource.DataFields.md
+++ b/api/Publisher.MailMergeDataSource.DataFields.md
@@ -23,7 +23,7 @@ Returns a **[MailMergeDataFields](Publisher.MailMergeDataFields.md)** collectio
_expression_ A variable that represents a **MailMergeDataSource** object.
-### Return Value
+### Return value
MailMergeDataFields
diff --git a/api/Publisher.MailMergeDataSource.DataSources.md b/api/Publisher.MailMergeDataSource.DataSources.md
index dbe9bee87b1..63c58b1a31f 100644
--- a/api/Publisher.MailMergeDataSource.DataSources.md
+++ b/api/Publisher.MailMergeDataSource.DataSources.md
@@ -23,7 +23,7 @@ Returns the **MailMergeDataSources** collection that includes the parent **Mail
_expression_ A variable that represents a **MailMergeDataSource** object.
-### Return Value
+### Return value
MailMergeDataSources
diff --git a/api/Publisher.MailMergeDataSource.EditRecord.md b/api/Publisher.MailMergeDataSource.EditRecord.md
index b2c858516d6..b106b6656e1 100644
--- a/api/Publisher.MailMergeDataSource.EditRecord.md
+++ b/api/Publisher.MailMergeDataSource.EditRecord.md
@@ -27,7 +27,7 @@ Changes one of the data fields in one of the records in the master data source (
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|lRec|Required| **Long**|The ID of the record you want to edit.|
|varField|Required| **Variant**|The data field (column) that contains the value you want to change.|
diff --git a/api/Publisher.MailMergeDataSource.EverValidated.md b/api/Publisher.MailMergeDataSource.EverValidated.md
index 59427d80b10..298496a46f3 100644
--- a/api/Publisher.MailMergeDataSource.EverValidated.md
+++ b/api/Publisher.MailMergeDataSource.EverValidated.md
@@ -23,7 +23,7 @@ Indicates whether the list of recipient addresses in the parent **MailMergeData
_expression_ A variable that represents a **MailMergeDataSource** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.MailMergeDataSource.Filters.md b/api/Publisher.MailMergeDataSource.Filters.md
index 067376dfaee..538ad29738a 100644
--- a/api/Publisher.MailMergeDataSource.Filters.md
+++ b/api/Publisher.MailMergeDataSource.Filters.md
@@ -23,7 +23,7 @@ Returns a **[MailMergeFilters](Publisher.MailMergeFilters.md)** object that rep
_expression_ A variable that represents a **MailMergeDataSource** object.
-### Return Value
+### Return value
MailMergeFilters
diff --git a/api/Publisher.MailMergeDataSource.FindRecord.md b/api/Publisher.MailMergeDataSource.FindRecord.md
index 7f9e7631b42..4f501dd6bf5 100644
--- a/api/Publisher.MailMergeDataSource.FindRecord.md
+++ b/api/Publisher.MailMergeDataSource.FindRecord.md
@@ -27,12 +27,12 @@ Searches the contents of the specified mail merge data source for text in a part
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|FindText|Required| **String**|The text to look for.|
|Field|Optional| **String**|The name of the field to be searched.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.MailMergeDataSource.FirstRecord.md b/api/Publisher.MailMergeDataSource.FirstRecord.md
index e6292ac771d..abe239c0c54 100644
--- a/api/Publisher.MailMergeDataSource.FirstRecord.md
+++ b/api/Publisher.MailMergeDataSource.FirstRecord.md
@@ -23,7 +23,7 @@ Returns or sets a **Long** that represents the number of the first record to be
_expression_ A variable that represents a **MailMergeDataSource** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.MailMergeDataSource.Included.md b/api/Publisher.MailMergeDataSource.Included.md
index e31a8128372..b72687ebdbd 100644
--- a/api/Publisher.MailMergeDataSource.Included.md
+++ b/api/Publisher.MailMergeDataSource.Included.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **MailMergeDataSource** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.MailMergeDataSource.InvalidAddress.md b/api/Publisher.MailMergeDataSource.InvalidAddress.md
index e1be9553523..cc191bd8a85 100644
--- a/api/Publisher.MailMergeDataSource.InvalidAddress.md
+++ b/api/Publisher.MailMergeDataSource.InvalidAddress.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **MailMergeDataSource** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.MailMergeDataSource.InvalidComments.md b/api/Publisher.MailMergeDataSource.InvalidComments.md
index 12b04e019ea..28824453c8d 100644
--- a/api/Publisher.MailMergeDataSource.InvalidComments.md
+++ b/api/Publisher.MailMergeDataSource.InvalidComments.md
@@ -23,7 +23,7 @@ If the **[InvalidAddress](Publisher.MailMergeDataSource.InvalidAddress.md)** pr
_expression_ A variable that represents an **MailMergeDataSource** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.MailMergeDataSource.IsMaster.md b/api/Publisher.MailMergeDataSource.IsMaster.md
index 20b825db287..37832a773fb 100644
--- a/api/Publisher.MailMergeDataSource.IsMaster.md
+++ b/api/Publisher.MailMergeDataSource.IsMaster.md
@@ -23,7 +23,7 @@ Indicates whether the parent **MailMergeDataSource** object is a master data so
_expression_ A variable that represents a **MailMergeDataSource** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.MailMergeDataSource.LastRecord.md b/api/Publisher.MailMergeDataSource.LastRecord.md
index fb04cb908a4..32406ea8759 100644
--- a/api/Publisher.MailMergeDataSource.LastRecord.md
+++ b/api/Publisher.MailMergeDataSource.LastRecord.md
@@ -23,7 +23,7 @@ Returns or sets a **Long** that represents the number of the last record to be
_expression_ A variable that represents a **MailMergeDataSource** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.MailMergeDataSource.MappedDataFields.md b/api/Publisher.MailMergeDataSource.MappedDataFields.md
index db9a8110b48..6e074158ac2 100644
--- a/api/Publisher.MailMergeDataSource.MappedDataFields.md
+++ b/api/Publisher.MailMergeDataSource.MappedDataFields.md
@@ -23,7 +23,7 @@ Returns a **[MailMergeMappedDataFields](Publisher.MailMergeMappedDataFields.md)
_expression_ A variable that represents a **MailMergeDataSource** object.
-### Return Value
+### Return value
MailMergeMappedDataFields
diff --git a/api/Publisher.MailMergeDataSource.RecordCount.md b/api/Publisher.MailMergeDataSource.RecordCount.md
index f9f2cfbed99..902453b7941 100644
--- a/api/Publisher.MailMergeDataSource.RecordCount.md
+++ b/api/Publisher.MailMergeDataSource.RecordCount.md
@@ -23,7 +23,7 @@ Returns a **Long** that represents the number of records in the data source. Re
_expression_ A variable that represents a **MailMergeDataSource** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.MailMergeDataSource.SetAllErrorFlags.md b/api/Publisher.MailMergeDataSource.SetAllErrorFlags.md
index 3e20fff3a08..a747ce8bae9 100644
--- a/api/Publisher.MailMergeDataSource.SetAllErrorFlags.md
+++ b/api/Publisher.MailMergeDataSource.SetAllErrorFlags.md
@@ -27,7 +27,7 @@ Marks all records in a mail merge data source as containing invalid data in an a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Invalid|Required| **Boolean**| **True** marks all records in the data source of a mail merge as invalid.|
|InvalidComment|Optional| **String**|Text describing the invalid setting.|
diff --git a/api/Publisher.MailMergeDataSource.SetAllIncludedFlags.md b/api/Publisher.MailMergeDataSource.SetAllIncludedFlags.md
index 26470ffd886..e763e34a114 100644
--- a/api/Publisher.MailMergeDataSource.SetAllIncludedFlags.md
+++ b/api/Publisher.MailMergeDataSource.SetAllIncludedFlags.md
@@ -27,7 +27,7 @@ ms.date: 06/08/2017
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Included|Required| **Boolean**| **True** to include all data source records in a mail merge. **False** to exclude all data source records from a mail merge.|
diff --git a/api/Publisher.MailMergeDataSource.SetSortOrder.md b/api/Publisher.MailMergeDataSource.SetSortOrder.md
index 9040d1158bd..5741c3e7c87 100644
--- a/api/Publisher.MailMergeDataSource.SetSortOrder.md
+++ b/api/Publisher.MailMergeDataSource.SetSortOrder.md
@@ -27,7 +27,7 @@ Sets the sort order for mail merge data.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|SortField1|Optional| **String**|The first field on which to sort the mail merge data. Default is an empty string.|
|SortAscending1|Optional| **Boolean**| **True** (default) to perform an ascending sort on SortField1; **False** to perform a descending sort.|
diff --git a/api/Publisher.MailMergeDataSource.TableName.md b/api/Publisher.MailMergeDataSource.TableName.md
index 25b6c614dcd..2cedd0e8072 100644
--- a/api/Publisher.MailMergeDataSource.TableName.md
+++ b/api/Publisher.MailMergeDataSource.TableName.md
@@ -23,7 +23,7 @@ Returns a **String** that represents the name of the table within the data sour
_expression_ A variable that represents a **MailMergeDataSource** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.MailMergeDataSource.ValidatedClean.md b/api/Publisher.MailMergeDataSource.ValidatedClean.md
index 5803c918e1b..da935426366 100644
--- a/api/Publisher.MailMergeDataSource.ValidatedClean.md
+++ b/api/Publisher.MailMergeDataSource.ValidatedClean.md
@@ -23,7 +23,7 @@ Indicates whether all recipient addresses in the the parent **MailMergeDataSour
_expression_ A variable that represents a **MailMergeDataSource** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.MailMergeDataSources.Application.md b/api/Publisher.MailMergeDataSources.Application.md
index 225c60255bb..37d81ad12d7 100644
--- a/api/Publisher.MailMergeDataSources.Application.md
+++ b/api/Publisher.MailMergeDataSources.Application.md
@@ -20,7 +20,7 @@ Returns an **Application** object that represents the creator of the parent **M
_expression_ A variable that represents a **MailMergeDataSources** collection.
-### Return Value
+### Return value
Object
diff --git a/api/Publisher.MailMergeDataSources.Count.md b/api/Publisher.MailMergeDataSources.Count.md
index a76b52c1d2c..bf8386480f7 100644
--- a/api/Publisher.MailMergeDataSources.Count.md
+++ b/api/Publisher.MailMergeDataSources.Count.md
@@ -23,7 +23,7 @@ Returns the number of **MailMergeDataSource** objects in the **MailMergeDataSou
_expression_ A variable that represents a **MailMergeDataSources** collection.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.MailMergeDataSources.Creator.md b/api/Publisher.MailMergeDataSources.Creator.md
index 9f96d784238..4a48737cde6 100644
--- a/api/Publisher.MailMergeDataSources.Creator.md
+++ b/api/Publisher.MailMergeDataSources.Creator.md
@@ -20,7 +20,7 @@ Returns a 32-bit integer that indicates the application in which the **MailMerg
_expression_ A variable that represents a **MailMergeDataSources** object.
-### Return Value
+### Return value
Integer
diff --git a/api/Publisher.MailMergeDataSources.Item.md b/api/Publisher.MailMergeDataSources.Item.md
index e229107c092..5b72b7504e0 100644
--- a/api/Publisher.MailMergeDataSources.Item.md
+++ b/api/Publisher.MailMergeDataSources.Item.md
@@ -27,11 +27,11 @@ Returns the **[MailMergeDataSource](Publisher.MailMergeDataSource.md)** object
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|varIndex|Required| **Variant**|The index number or name of the object to return.|
-### Return Value
+### Return value
MailMergeDataSource
diff --git a/api/Publisher.MailMergeDataSources.Parent.md b/api/Publisher.MailMergeDataSources.Parent.md
index 41dbdcab8f1..bf9376ccb86 100644
--- a/api/Publisher.MailMergeDataSources.Parent.md
+++ b/api/Publisher.MailMergeDataSources.Parent.md
@@ -23,7 +23,7 @@ Returns the parent of the **[MailMergeDataSources](Publisher.MailMergeDataSourc
_expression_ A variable that represents a **MailMergeDataSources** collection.
-### Return Value
+### Return value
Object
diff --git a/api/Publisher.MailMergeFilterCriterion.CompareTo.md b/api/Publisher.MailMergeFilterCriterion.CompareTo.md
index 6dac274526c..d4d14a6452d 100644
--- a/api/Publisher.MailMergeFilterCriterion.CompareTo.md
+++ b/api/Publisher.MailMergeFilterCriterion.CompareTo.md
@@ -23,7 +23,7 @@ Returns or sets a **String** that represents the text to compare in the query f
_expression_ A variable that represents a **MailMergeFilterCriterion** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.MailMergeFilterCriterion.Comparison.md b/api/Publisher.MailMergeFilterCriterion.Comparison.md
index 324f0921464..f5ad3310d32 100644
--- a/api/Publisher.MailMergeFilterCriterion.Comparison.md
+++ b/api/Publisher.MailMergeFilterCriterion.Comparison.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoFilterComparison** constant that represents how to comp
_expression_ A variable that represents a **MailMergeFilterCriterion** object.
-### Return Value
+### Return value
MsoFilterComparison
diff --git a/api/Publisher.MailMergeFilterCriterion.Conjunction.md b/api/Publisher.MailMergeFilterCriterion.Conjunction.md
index d509f5c96d9..f169a41f005 100644
--- a/api/Publisher.MailMergeFilterCriterion.Conjunction.md
+++ b/api/Publisher.MailMergeFilterCriterion.Conjunction.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoFilterConjunction** constant that represents how a filt
_expression_ A variable that represents a **MailMergeFilterCriterion** object.
-### Return Value
+### Return value
MsoFilterConjunction
diff --git a/api/Publisher.MailMergeFilters.Add.md b/api/Publisher.MailMergeFilters.Add.md
index 7ec5737a6c6..52069625ac3 100644
--- a/api/Publisher.MailMergeFilters.Add.md
+++ b/api/Publisher.MailMergeFilters.Add.md
@@ -27,7 +27,7 @@ Adds a new filter criterion to the specified **MailMergeFilters** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Column|Required| **String**|The name of the table in the data source.|
|Comparison|Required| **MsoFilterComparison**|How the data in the table is filtered.|
diff --git a/api/Publisher.MailMergeFilters.Item.md b/api/Publisher.MailMergeFilters.Item.md
index 93edf0be1ec..c1b8b3c25ba 100644
--- a/api/Publisher.MailMergeFilters.Item.md
+++ b/api/Publisher.MailMergeFilters.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The number of the object to return.|
-### Return Value
+### Return value
Object
diff --git a/api/Publisher.MailMergeMappedDataField.DataFieldName.md b/api/Publisher.MailMergeMappedDataField.DataFieldName.md
index a9fee98dd67..1823a4de551 100644
--- a/api/Publisher.MailMergeMappedDataField.DataFieldName.md
+++ b/api/Publisher.MailMergeMappedDataField.DataFieldName.md
@@ -23,7 +23,7 @@ Returns or sets a **String** which represents the name of the field in the mail
_expression_ A variable that represents a **MailMergeMappedDataField** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.MailMergeMappedDataFields.Item.md b/api/Publisher.MailMergeMappedDataFields.Item.md
index bf50f4b6359..a5e01620f0b 100644
--- a/api/Publisher.MailMergeMappedDataFields.Item.md
+++ b/api/Publisher.MailMergeMappedDataFields.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The number or name of the field or list box item to return.|
-### Return Value
+### Return value
MailMergeMappedDataField
diff --git a/api/Publisher.MasterPages.Add.md b/api/Publisher.MasterPages.Add.md
index 6f84c1b251d..fb191b63527 100644
--- a/api/Publisher.MasterPages.Add.md
+++ b/api/Publisher.MasterPages.Add.md
@@ -27,13 +27,13 @@ Adds a new **Page** object to the specified **MasterPages** object and returns
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|IsTwoPageMaster|Optional| **Boolean**| **True** if the master page will be part of a two page spread.|
|Abbreviation|Optional| **String**|The abbreviation, or short name, for the master page. An error occurs if this is not unique.|
|Description|Optional| **String**|The description for the master page.|
-### Return Value
+### Return value
Page
diff --git a/api/Publisher.MasterPages.FindByPageID.md b/api/Publisher.MasterPages.FindByPageID.md
index cd70641f536..a3c478b67ab 100644
--- a/api/Publisher.MasterPages.FindByPageID.md
+++ b/api/Publisher.MasterPages.FindByPageID.md
@@ -27,11 +27,11 @@ Returns a **[Page](Publisher.Page.md)** object that represents the page with th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PageID|Required| **Long**|Specifies the ID number of the page you want to return. Publisher assigns this number when the page is created.|
-### Return Value
+### Return value
Page
diff --git a/api/Publisher.MasterPages.Item.md b/api/Publisher.MasterPages.Item.md
index b6aad929a27..d04d80d03ed 100644
--- a/api/Publisher.MasterPages.Item.md
+++ b/api/Publisher.MasterPages.Item.md
@@ -27,7 +27,7 @@ Returns the specified **[Page](Publisher.Page.md)** object from a **Pages** or
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Item|Required| **Long**|The number of the page to return. For **MasterPages** collections, Item can either be 1 or 2 for the left and right master pages, respectively. For **Pages** collections, Item corresponds to a **Page** object's **[PageIndex](Publisher.Page.PageIndex.md)** property.|
diff --git a/api/Publisher.OLEFormat.DoVerb.md b/api/Publisher.OLEFormat.DoVerb.md
index d7945895a36..f7aec35748f 100644
--- a/api/Publisher.OLEFormat.DoVerb.md
+++ b/api/Publisher.OLEFormat.DoVerb.md
@@ -27,7 +27,7 @@ Requests that an OLE object perform one of its verbs.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|iVerb|Required| **Long**|The verb to perform. |
diff --git a/api/Publisher.OLEFormat.Object.md b/api/Publisher.OLEFormat.Object.md
index fe7ded66153..a09b40297b4 100644
--- a/api/Publisher.OLEFormat.Object.md
+++ b/api/Publisher.OLEFormat.Object.md
@@ -23,7 +23,7 @@ Returns an **Object** that represents the specified OLE object's top-level inte
_expression_ A variable that represents an **OLEFormat** object.
-### Return Value
+### Return value
Object
diff --git a/api/Publisher.OLEFormat.ObjectVerbs.md b/api/Publisher.OLEFormat.ObjectVerbs.md
index 4ed364b7f4f..af7c6ca1f90 100644
--- a/api/Publisher.OLEFormat.ObjectVerbs.md
+++ b/api/Publisher.OLEFormat.ObjectVerbs.md
@@ -23,7 +23,7 @@ Returns an **[ObjectVerbs](Publisher.ObjectVerbs.md)** collection that contains
_expression_ A variable that represents an **OLEFormat** object.
-### Return Value
+### Return value
ObjectVerbs
diff --git a/api/Publisher.OLEFormat.ProgId.md b/api/Publisher.OLEFormat.ProgId.md
index 9491c08df4b..3a4d73bd60e 100644
--- a/api/Publisher.OLEFormat.ProgId.md
+++ b/api/Publisher.OLEFormat.ProgId.md
@@ -23,7 +23,7 @@ Returns a **String** that represents the programmatic identifier (ProgID) for t
_expression_ A variable that represents an **OLEFormat** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.ObjectVerbs.Item.md b/api/Publisher.ObjectVerbs.Item.md
index 5410fa61f47..a439cf3a12c 100644
--- a/api/Publisher.ObjectVerbs.Item.md
+++ b/api/Publisher.ObjectVerbs.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The number of the object to return.|
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Options.AddHebDoubleQuote.md b/api/Publisher.Options.AddHebDoubleQuote.md
index 629d4ff141c..f2465e7a09a 100644
--- a/api/Publisher.Options.AddHebDoubleQuote.md
+++ b/api/Publisher.Options.AddHebDoubleQuote.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **Options** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Options.AllowBackgroundSave.md b/api/Publisher.Options.AllowBackgroundSave.md
index ba48917af7e..3ee6e22f010 100644
--- a/api/Publisher.Options.AllowBackgroundSave.md
+++ b/api/Publisher.Options.AllowBackgroundSave.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **Options** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Options.AutoFormatWord.md b/api/Publisher.Options.AutoFormatWord.md
index 55da4da5ed2..4b4a71b6163 100644
--- a/api/Publisher.Options.AutoFormatWord.md
+++ b/api/Publisher.Options.AutoFormatWord.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **Options** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Options.AutoHyphenate.md b/api/Publisher.Options.AutoHyphenate.md
index 9a23b6751f8..81dc930f719 100644
--- a/api/Publisher.Options.AutoHyphenate.md
+++ b/api/Publisher.Options.AutoHyphenate.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **Options** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Options.AutoKeyboardSwitching.md b/api/Publisher.Options.AutoKeyboardSwitching.md
index d110d192950..9667a2e25d4 100644
--- a/api/Publisher.Options.AutoKeyboardSwitching.md
+++ b/api/Publisher.Options.AutoKeyboardSwitching.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **Options** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Options.AutoSelectWord.md b/api/Publisher.Options.AutoSelectWord.md
index 22edc7f1dfd..bba8ff71844 100644
--- a/api/Publisher.Options.AutoSelectWord.md
+++ b/api/Publisher.Options.AutoSelectWord.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **Options** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Options.DefaultPubDirection.md b/api/Publisher.Options.DefaultPubDirection.md
index cdcad05a3b3..f5bcdb90f01 100644
--- a/api/Publisher.Options.DefaultPubDirection.md
+++ b/api/Publisher.Options.DefaultPubDirection.md
@@ -23,7 +23,7 @@ Returns or sets a **PbDirectionType** constant that represents the default dire
_expression_ A variable that represents a **Options** object.
-### Return Value
+### Return value
PbDirectionType
diff --git a/api/Publisher.Options.DefaultTextFlowDirection.md b/api/Publisher.Options.DefaultTextFlowDirection.md
index a09bac142d5..d189a22923f 100644
--- a/api/Publisher.Options.DefaultTextFlowDirection.md
+++ b/api/Publisher.Options.DefaultTextFlowDirection.md
@@ -23,7 +23,7 @@ Returns or sets a **PbDirectionType** constant that represents a global Microso
_expression_ A variable that represents a **Options** object.
-### Return Value
+### Return value
PbDirectionType
diff --git a/api/Publisher.Options.DisplayStatusBar.md b/api/Publisher.Options.DisplayStatusBar.md
index dc5435cefc8..5b20244089d 100644
--- a/api/Publisher.Options.DisplayStatusBar.md
+++ b/api/Publisher.Options.DisplayStatusBar.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **Options** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Options.DragAndDropText.md b/api/Publisher.Options.DragAndDropText.md
index 8142886e1a7..4169063d394 100644
--- a/api/Publisher.Options.DragAndDropText.md
+++ b/api/Publisher.Options.DragAndDropText.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **Options** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Options.HyphenationZone.md b/api/Publisher.Options.HyphenationZone.md
index 08f67f18d21..f13a639aed7 100644
--- a/api/Publisher.Options.HyphenationZone.md
+++ b/api/Publisher.Options.HyphenationZone.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** that represents the maximum amount of space that
_expression_ A variable that represents a **Options** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.Options.MeasurementUnit.md b/api/Publisher.Options.MeasurementUnit.md
index bed0f6442b5..e1edaba381d 100644
--- a/api/Publisher.Options.MeasurementUnit.md
+++ b/api/Publisher.Options.MeasurementUnit.md
@@ -23,7 +23,7 @@ Returns or sets a **PbUnitType** constant representing the standard measurement
_expression_ A variable that represents a **Options** object.
-### Return Value
+### Return value
PbUnitType
diff --git a/api/Publisher.Options.PathForPictures.md b/api/Publisher.Options.PathForPictures.md
index b2f4e3b8d34..2b7fec4e96b 100644
--- a/api/Publisher.Options.PathForPictures.md
+++ b/api/Publisher.Options.PathForPictures.md
@@ -23,7 +23,7 @@ Returns a **String** that represents the default path for picture files. Read.
_expression_ A variable that represents a **Options** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Options.PathForPublications.md b/api/Publisher.Options.PathForPublications.md
index 3a56db614ee..7af2c307eeb 100644
--- a/api/Publisher.Options.PathForPublications.md
+++ b/api/Publisher.Options.PathForPublications.md
@@ -23,7 +23,7 @@ Returns a **String** that represents the default folder for publications. Read.
_expression_ A variable that represents a **Options** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Options.SaveAutoRecoverInfo.md b/api/Publisher.Options.SaveAutoRecoverInfo.md
index cec3fe48d84..c35b5d52d69 100644
--- a/api/Publisher.Options.SaveAutoRecoverInfo.md
+++ b/api/Publisher.Options.SaveAutoRecoverInfo.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **Options** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Options.SaveAutoRecoverInfoInterval.md b/api/Publisher.Options.SaveAutoRecoverInfoInterval.md
index b27cbb9e6ea..15074295cd5 100644
--- a/api/Publisher.Options.SaveAutoRecoverInfoInterval.md
+++ b/api/Publisher.Options.SaveAutoRecoverInfoInterval.md
@@ -23,7 +23,7 @@ Returns or sets a **Long** that represents the time interval in minutes for aut
_expression_ A variable that represents a **Options** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.Options.SequenceCheck.md b/api/Publisher.Options.SequenceCheck.md
index bb11fa898f4..97d3b0b9ab9 100644
--- a/api/Publisher.Options.SequenceCheck.md
+++ b/api/Publisher.Options.SequenceCheck.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **Options** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Options.ShowBasicColors.md b/api/Publisher.Options.ShowBasicColors.md
index 200a0063313..1df32457a2a 100644
--- a/api/Publisher.Options.ShowBasicColors.md
+++ b/api/Publisher.Options.ShowBasicColors.md
@@ -23,7 +23,7 @@ Returns or sets a **Boolean** indicating whether Microsoft Publisher shows basi
_expression_ A variable that represents a **Options** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Options.ShowScreenTipsOnObjects.md b/api/Publisher.Options.ShowScreenTipsOnObjects.md
index 2e8504216cd..258708040be 100644
--- a/api/Publisher.Options.ShowScreenTipsOnObjects.md
+++ b/api/Publisher.Options.ShowScreenTipsOnObjects.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **Options** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Options.ShowTipPages.md b/api/Publisher.Options.ShowTipPages.md
index e47a5001234..11050a542b1 100644
--- a/api/Publisher.Options.ShowTipPages.md
+++ b/api/Publisher.Options.ShowTipPages.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **Options** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Options.TypeNReplace.md b/api/Publisher.Options.TypeNReplace.md
index 185c2db8969..d6515b0b467 100644
--- a/api/Publisher.Options.TypeNReplace.md
+++ b/api/Publisher.Options.TypeNReplace.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **Options** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Options.UseCatalogAtStartup.md b/api/Publisher.Options.UseCatalogAtStartup.md
index de2450c12d4..f347a3105de 100644
--- a/api/Publisher.Options.UseCatalogAtStartup.md
+++ b/api/Publisher.Options.UseCatalogAtStartup.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **Options** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Options.UseWizardForBlankPublication.md b/api/Publisher.Options.UseWizardForBlankPublication.md
index 3e9190249e4..3279fa0f389 100644
--- a/api/Publisher.Options.UseWizardForBlankPublication.md
+++ b/api/Publisher.Options.UseWizardForBlankPublication.md
@@ -23,7 +23,7 @@ Gets or sets whether to use a wizard for blank publications. Read/Write.
_expression_ A variable that represents an **Options** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Page.Background.md b/api/Publisher.Page.Background.md
index 00b07c6b274..832cc4c0a10 100644
--- a/api/Publisher.Page.Background.md
+++ b/api/Publisher.Page.Background.md
@@ -23,7 +23,7 @@ Sets or returns a **PageBackground** object representing the background of the
_expression_ A variable that represents a **Page** object.
-### Return Value
+### Return value
PageBackground
diff --git a/api/Publisher.Page.Duplicate.md b/api/Publisher.Page.Duplicate.md
index 05f9913d24c..03c427e03fc 100644
--- a/api/Publisher.Page.Duplicate.md
+++ b/api/Publisher.Page.Duplicate.md
@@ -23,7 +23,7 @@ Creates a duplicate of the specified **Page** object and then returns the new *
_expression_ A variable that represents a **Page** object.
-### Return Value
+### Return value
Page
diff --git a/api/Publisher.Page.ExportEmailHTML.md b/api/Publisher.Page.ExportEmailHTML.md
index e0073e4bdf7..2a76e6a2b1a 100644
--- a/api/Publisher.Page.ExportEmailHTML.md
+++ b/api/Publisher.Page.ExportEmailHTML.md
@@ -27,7 +27,7 @@ Exports the active page of the publication as an HTML file.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Filename|Required| **String**|The name of the file to which to export the HTML.|
diff --git a/api/Publisher.Page.Footer.md b/api/Publisher.Page.Footer.md
index 4f2712aa271..8ecaf67f286 100644
--- a/api/Publisher.Page.Footer.md
+++ b/api/Publisher.Page.Footer.md
@@ -23,7 +23,7 @@ Returns a **HeaderFooter** object representing the footer of the specified **Pa
_expression_ A variable that represents a **Page** object.
-### Return Value
+### Return value
HeaderFooter
diff --git a/api/Publisher.Page.Header.md b/api/Publisher.Page.Header.md
index 06efb6e2e91..d385da7cc52 100644
--- a/api/Publisher.Page.Header.md
+++ b/api/Publisher.Page.Header.md
@@ -23,7 +23,7 @@ Returns a **HeaderFooter** object representing the header of the specified **Pa
_expression_ A variable that represents a **Page** object.
-### Return Value
+### Return value
HeaderFooter
diff --git a/api/Publisher.Page.IgnoreMaster.md b/api/Publisher.Page.IgnoreMaster.md
index fa08e944f49..2549631b342 100644
--- a/api/Publisher.Page.IgnoreMaster.md
+++ b/api/Publisher.Page.IgnoreMaster.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **Page** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Page.IsLeading.md b/api/Publisher.Page.IsLeading.md
index a1df0002ca7..c9a7e41c582 100644
--- a/api/Publisher.Page.IsLeading.md
+++ b/api/Publisher.Page.IsLeading.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **Page** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Page.IsTrailing.md b/api/Publisher.Page.IsTrailing.md
index 0140783e721..1625cbd82dd 100644
--- a/api/Publisher.Page.IsTrailing.md
+++ b/api/Publisher.Page.IsTrailing.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **Page** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Page.IsTwoPageMaster.md b/api/Publisher.Page.IsTwoPageMaster.md
index b4697b24a4b..385302575f0 100644
--- a/api/Publisher.Page.IsTwoPageMaster.md
+++ b/api/Publisher.Page.IsTwoPageMaster.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **Page** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Page.IsWizardPage.md b/api/Publisher.Page.IsWizardPage.md
index 8ed2a174543..1d93e660c78 100644
--- a/api/Publisher.Page.IsWizardPage.md
+++ b/api/Publisher.Page.IsWizardPage.md
@@ -23,7 +23,7 @@ Returns **True** if the specified page is a Microsoft Publisher wizard page. Re
_expression_ A variable that represents an **Page** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Page.Master.md b/api/Publisher.Page.Master.md
index b86fa854cf8..a6fffe9ae99 100644
--- a/api/Publisher.Page.Master.md
+++ b/api/Publisher.Page.Master.md
@@ -23,7 +23,7 @@ Sets or returns a **[Page](Publisher.Page.md)** object that represents the mast
_expression_ A variable that represents a **Page** object.
-### Return Value
+### Return value
Page
diff --git a/api/Publisher.Page.Move.md b/api/Publisher.Page.Move.md
index 054d1eb9141..c18b8aa0994 100644
--- a/api/Publisher.Page.Move.md
+++ b/api/Publisher.Page.Move.md
@@ -27,7 +27,7 @@ Moves the specified page to the specified index in the **Pages** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Page|Required| **Long**|The index number of the **Pages** collection where the specified page will be moved.|
|After|Optional| **Boolean**| **True** if the page will be inserted after the specified index number of the Pages collection specified by the Page parameter. Deafult is **True**.|
diff --git a/api/Publisher.Page.PageNumber.md b/api/Publisher.Page.PageNumber.md
index 9cb018105fa..38c7264ebbf 100644
--- a/api/Publisher.Page.PageNumber.md
+++ b/api/Publisher.Page.PageNumber.md
@@ -23,7 +23,7 @@ Returns a **String** that represents the current page number. Read-only.
_expression_ A variable that represents a **Page** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Page.PageType.md b/api/Publisher.Page.PageType.md
index 3f7b7d90a35..6d4c52ce847 100644
--- a/api/Publisher.Page.PageType.md
+++ b/api/Publisher.Page.PageType.md
@@ -23,7 +23,7 @@ Returns a **PbPageType** constant that represents the page type. Read-only.
_expression_ A variable that represents a **Page** object.
-### Return Value
+### Return value
PbPageType
diff --git a/api/Publisher.Page.ReaderSpread.md b/api/Publisher.Page.ReaderSpread.md
index de71d174050..a6b4ddc1cc3 100644
--- a/api/Publisher.Page.ReaderSpread.md
+++ b/api/Publisher.Page.ReaderSpread.md
@@ -23,7 +23,7 @@ Returns a **[ReaderSpread](Publisher.ReaderSpread.md)** object that represents
_expression_ A variable that represents a **Page** object.
-### Return Value
+### Return value
ReaderSpread
diff --git a/api/Publisher.Page.RulerGuides.md b/api/Publisher.Page.RulerGuides.md
index 1dab5ec0da6..fb509d40acf 100644
--- a/api/Publisher.Page.RulerGuides.md
+++ b/api/Publisher.Page.RulerGuides.md
@@ -23,7 +23,7 @@ Returns a **[RulerGuides](Publisher.RulerGuides.md)** collection that represent
_expression_ A variable that represents a **Page** object.
-### Return Value
+### Return value
RulerGuides
diff --git a/api/Publisher.Page.SaveAsPicture.md b/api/Publisher.Page.SaveAsPicture.md
index 911936fa75e..2bd99c10a4d 100644
--- a/api/Publisher.Page.SaveAsPicture.md
+++ b/api/Publisher.Page.SaveAsPicture.md
@@ -27,7 +27,7 @@ Saves a page as a picture file.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Filename|Required| **String**|The path and file name of the new picture file you want to create. The graphics format the picture is saved in is determined by the file name extension (such as .jpg or .gif) you specify.|
|pbResolution|Optional| **PbPictureResolution**|The resolution in which you want the picture to be saved. See Remarks for possible values.|
diff --git a/api/Publisher.Page.WebPageOptions.md b/api/Publisher.Page.WebPageOptions.md
index c352e0eae39..4792b2527cd 100644
--- a/api/Publisher.Page.WebPageOptions.md
+++ b/api/Publisher.Page.WebPageOptions.md
@@ -23,7 +23,7 @@ Returns a **[WebPageOptions](Publisher.WebPageOptions.md)** object, which repre
_expression_ A variable that represents a **Page** object.
-### Return Value
+### Return value
WebPageOptions
diff --git a/api/Publisher.Page.XOffsetWithinReaderSpread.md b/api/Publisher.Page.XOffsetWithinReaderSpread.md
index 2694bd4580a..c70b5a9b59f 100644
--- a/api/Publisher.Page.XOffsetWithinReaderSpread.md
+++ b/api/Publisher.Page.XOffsetWithinReaderSpread.md
@@ -23,7 +23,7 @@ Returns a **Single** that represents the distance (in points) from the left edg
_expression_ A variable that represents a **Page** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Page.YOffsetWithinReaderSpread.md b/api/Publisher.Page.YOffsetWithinReaderSpread.md
index 295999a6e92..f6b42c763a7 100644
--- a/api/Publisher.Page.YOffsetWithinReaderSpread.md
+++ b/api/Publisher.Page.YOffsetWithinReaderSpread.md
@@ -23,7 +23,7 @@ Returns a **Single** that represents the distance (in points) from the top edge
_expression_ A variable that represents a **Page** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.PageSetup.AvailablePageSizes.md b/api/Publisher.PageSetup.AvailablePageSizes.md
index a63d485e4cf..122b5c4aeb1 100644
--- a/api/Publisher.PageSetup.AvailablePageSizes.md
+++ b/api/Publisher.PageSetup.AvailablePageSizes.md
@@ -23,7 +23,7 @@ Returns the **PageSizes** collection that contains all the **[PageSize](Publish
_expression_ A variable that represents a **PageSetup** object.
-### Return Value
+### Return value
PageSizes
diff --git a/api/Publisher.PageSetup.HorizontalGap.md b/api/Publisher.PageSetup.HorizontalGap.md
index af9d7264c36..56fadd926ba 100644
--- a/api/Publisher.PageSetup.HorizontalGap.md
+++ b/api/Publisher.PageSetup.HorizontalGap.md
@@ -23,7 +23,7 @@ Returns a **Variant** that represents the distance between the right edge of on
_expression_ A variable that represents a **PageSetup** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PageSetup.LeftMargin.md b/api/Publisher.PageSetup.LeftMargin.md
index aa67967ad02..23c73374a95 100644
--- a/api/Publisher.PageSetup.LeftMargin.md
+++ b/api/Publisher.PageSetup.LeftMargin.md
@@ -23,7 +23,7 @@ Returns a **Variant** that represents the distance (in points) between the left
_expression_ A variable that represents a **PageSetup** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PageSetup.PageHeight.md b/api/Publisher.PageSetup.PageHeight.md
index 9c050974163..17a8c142946 100644
--- a/api/Publisher.PageSetup.PageHeight.md
+++ b/api/Publisher.PageSetup.PageHeight.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** that represents the height of the pages in a publ
_expression_ A variable that represents a **PageSetup** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PageSetup.PageSize.md b/api/Publisher.PageSetup.PageSize.md
index 7428f6821f4..ae7fd8a0ce5 100644
--- a/api/Publisher.PageSetup.PageSize.md
+++ b/api/Publisher.PageSetup.PageSize.md
@@ -23,7 +23,7 @@ Gets or sets the blank page size for the current publication. Read/write.
_expression_ A variable that represents a **PageSetup** object.
-### Return Value
+### Return value
PageSize
diff --git a/api/Publisher.PageSetup.PageWidth.md b/api/Publisher.PageSetup.PageWidth.md
index 8ec7462a27b..4b802e55d50 100644
--- a/api/Publisher.PageSetup.PageWidth.md
+++ b/api/Publisher.PageSetup.PageWidth.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** that represents the width of the pages in a publi
_expression_ A variable that represents a **PageSetup** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PageSetup.TopMargin.md b/api/Publisher.PageSetup.TopMargin.md
index 757102a4bce..882ad3c299a 100644
--- a/api/Publisher.PageSetup.TopMargin.md
+++ b/api/Publisher.PageSetup.TopMargin.md
@@ -23,7 +23,7 @@ Returns a **Variant** that represents the distance between the top edge of the
_expression_ A variable that represents a **PageSetup** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PageSetup.VerticalGap.md b/api/Publisher.PageSetup.VerticalGap.md
index 8cedf5192bb..e3c8f8b76ee 100644
--- a/api/Publisher.PageSetup.VerticalGap.md
+++ b/api/Publisher.PageSetup.VerticalGap.md
@@ -23,7 +23,7 @@ Returns a **Variant** that represents the distance (in points) between the bott
_expression_ A variable that represents a **PageSetup** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PageSize.Application.md b/api/Publisher.PageSize.Application.md
index 5441770145e..5cc080dcd62 100644
--- a/api/Publisher.PageSize.Application.md
+++ b/api/Publisher.PageSize.Application.md
@@ -23,7 +23,7 @@ Returns an **Application** object that represents the creator of the parent **P
_expression_ A variable that represents a **PageSize** object.
-### Return Value
+### Return value
Application
diff --git a/api/Publisher.PageSize.HasBackgroundImage.md b/api/Publisher.PageSize.HasBackgroundImage.md
index d0c91ddc1df..1dba1dd91c1 100644
--- a/api/Publisher.PageSize.HasBackgroundImage.md
+++ b/api/Publisher.PageSize.HasBackgroundImage.md
@@ -23,7 +23,7 @@ Returns **True** if the blank page size represented by the parent **PageSize**
_expression_ A variable that represents a **PageSize** object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Publisher.PageSize.HorizontalGap.md b/api/Publisher.PageSize.HorizontalGap.md
index f14ff0933f1..e5055d2eb49 100644
--- a/api/Publisher.PageSize.HorizontalGap.md
+++ b/api/Publisher.PageSize.HorizontalGap.md
@@ -23,7 +23,7 @@ Returns a **Variant** that represents the distance between the right edge of on
_expression_ A variable that represents a **PageSize** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PageSize.LeftMargin.md b/api/Publisher.PageSize.LeftMargin.md
index b826efdb69e..e6246160f7a 100644
--- a/api/Publisher.PageSize.LeftMargin.md
+++ b/api/Publisher.PageSize.LeftMargin.md
@@ -23,7 +23,7 @@ Specifies the distance between the left edge of the printer sheet and the top ed
_expression_ A variable that represents a **PageSize** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PageSize.Name.md b/api/Publisher.PageSize.Name.md
index 995eee19414..be9ecdbe9c2 100644
--- a/api/Publisher.PageSize.Name.md
+++ b/api/Publisher.PageSize.Name.md
@@ -23,7 +23,7 @@ Returns the name of the blank page size represented by the parent **PageSize**
_expression_ A variable that represents a **PageSize** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.PageSize.PageHeight.md b/api/Publisher.PageSize.PageHeight.md
index 0ac2a930a8e..1256b664040 100644
--- a/api/Publisher.PageSize.PageHeight.md
+++ b/api/Publisher.PageSize.PageHeight.md
@@ -23,7 +23,7 @@ Gets or sets the page height of the blank page size represented by the parent *
_expression_ A variable that represents a **PageSize** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PageSize.PageWidth.md b/api/Publisher.PageSize.PageWidth.md
index 1989b05434a..90ffb02b2fd 100644
--- a/api/Publisher.PageSize.PageWidth.md
+++ b/api/Publisher.PageSize.PageWidth.md
@@ -23,7 +23,7 @@ Gets or sets the page width of the blank page size represented by the parent **
_expression_ A variable that represents a **PageSize** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PageSize.Parent.md b/api/Publisher.PageSize.Parent.md
index 990b6e4b2f4..479c2a4784b 100644
--- a/api/Publisher.PageSize.Parent.md
+++ b/api/Publisher.PageSize.Parent.md
@@ -23,7 +23,7 @@ Returns the parent of the **[PageSize](Publisher.PageSizes.md)** object. Read-o
_expression_ A variable that represents a **PageSize** object.
-### Return Value
+### Return value
Object
diff --git a/api/Publisher.PageSize.TopMargin.md b/api/Publisher.PageSize.TopMargin.md
index ace84ab3765..9629081759a 100644
--- a/api/Publisher.PageSize.TopMargin.md
+++ b/api/Publisher.PageSize.TopMargin.md
@@ -23,7 +23,7 @@ Specifies the distance between the top edge of the printer sheet and the top edg
_expression_ A variable that represents a **PageSize** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PageSize.VerticalGap.md b/api/Publisher.PageSize.VerticalGap.md
index 64f32c80b46..e03f9a34179 100644
--- a/api/Publisher.PageSize.VerticalGap.md
+++ b/api/Publisher.PageSize.VerticalGap.md
@@ -23,7 +23,7 @@ Returns a **Variant** that represents the distance in points between the bottom
_expression_ A variable that represents a **PageSize** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PageSizes.Application.md b/api/Publisher.PageSizes.Application.md
index ec7dca0a18d..cf4e5ebe38d 100644
--- a/api/Publisher.PageSizes.Application.md
+++ b/api/Publisher.PageSizes.Application.md
@@ -23,7 +23,7 @@ Returns an **Application** object that represents the creator of the parent **P
_expression_ A variable that represents a **PageSizes** collection.
-### Return Value
+### Return value
Application
diff --git a/api/Publisher.PageSizes.Count.md b/api/Publisher.PageSizes.Count.md
index b2db0e866e7..f35eb0ca659 100644
--- a/api/Publisher.PageSizes.Count.md
+++ b/api/Publisher.PageSizes.Count.md
@@ -23,7 +23,7 @@ Returns the number of **PageSize** objects in the **PageSizes** collection of t
_expression_ A variable that represents a **PageSizes** collection.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.PageSizes.Item.md b/api/Publisher.PageSizes.Item.md
index 8a656ab31a6..6d56784a0fc 100644
--- a/api/Publisher.PageSizes.Item.md
+++ b/api/Publisher.PageSizes.Item.md
@@ -27,11 +27,11 @@ Returns the **[PageSize](Publisher.PageSize.md)** object with the specified nam
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The name or index position of a **PageSize** object.|
-### Return Value
+### Return value
PageSize
diff --git a/api/Publisher.PageSizes.Parent.md b/api/Publisher.PageSizes.Parent.md
index 84645323d26..86475deaf12 100644
--- a/api/Publisher.PageSizes.Parent.md
+++ b/api/Publisher.PageSizes.Parent.md
@@ -23,7 +23,7 @@ Returns the parent of the **[PageSizes](Publisher.PageSizes.md)** collection. R
_expression_ A variable that represents a **PageSizes** collection.
-### Return Value
+### Return value
Object
diff --git a/api/Publisher.Pages.Add.md b/api/Publisher.Pages.Add.md
index bce40fcba64..64728cc3224 100644
--- a/api/Publisher.Pages.Add.md
+++ b/api/Publisher.Pages.Add.md
@@ -27,14 +27,14 @@ Adds a new **Page** object to the specified **Pages** object and returns the ne
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Count|Required| **Long**|The number of new pages to add.|
|After|Required| **Long**|The page index of the page after which to add the new pages. A zero for this argument adds new pages at the beginning of the publication.|
|DuplicateObjectsOnPage|Optional| **Long**|The page index of the page from which objects should be copied to the new pages. If this argument is omitted, the new pages will be blank. The default is -1: do not duplicate pages.|
|AddHyperlinkToWebNavBar|Optional| **Boolean**|Specifies whether links to the new pages will be added to the automatic navigation bars of existing pages. If **True**, links to the new pages will be added to the automatic navigation bars of existing pages only. If **False**, links to the new pages will not be added to the automatic navigation bars of existing pages or new pages added in the future. Default is **False**.|
-### Return Value
+### Return value
Page
diff --git a/api/Publisher.Pages.AddWizardPage.md b/api/Publisher.Pages.AddWizardPage.md
index eca610b30fa..8a1bd2e7866 100644
--- a/api/Publisher.Pages.AddWizardPage.md
+++ b/api/Publisher.Pages.AddWizardPage.md
@@ -27,7 +27,7 @@ Adds the specified new wizard page to a specified location in a publication.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|After|Required| **Long**|The page after which to place the new wizard page.|
|PageType|Optional| **PbWizardPageType**|The type of wizard page to add.|
diff --git a/api/Publisher.Pages.FindByPageID.md b/api/Publisher.Pages.FindByPageID.md
index 0ca4ab72014..3b564071803 100644
--- a/api/Publisher.Pages.FindByPageID.md
+++ b/api/Publisher.Pages.FindByPageID.md
@@ -27,11 +27,11 @@ Returns a **[Page](Publisher.Page.md)** object that represents the page with th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PageID|Required| **Long**|Specifies the ID number of the page you want to return. Publisher assigns this number when the page is created.|
-### Return Value
+### Return value
Page
diff --git a/api/Publisher.Pages.Item.md b/api/Publisher.Pages.Item.md
index 766c4bff998..892984e8aac 100644
--- a/api/Publisher.Pages.Item.md
+++ b/api/Publisher.Pages.Item.md
@@ -27,7 +27,7 @@ Returns the specified **[Page](Publisher.Page.md)** object from a **Pages** or
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Item|Required| **Long**|The number of the page to return. For **MasterPages** collections, Item can either be 1 or 2 for the left and right master pages, respectively. For **Pages** collections, Item corresponds to a **Page** object's **[PageIndex](Publisher.Page.PageIndex.md)** property.|
diff --git a/api/Publisher.ParagraphFormat.CharBasedFirstLineIndent.md b/api/Publisher.ParagraphFormat.CharBasedFirstLineIndent.md
index 8a876e7726e..38713d087ba 100644
--- a/api/Publisher.ParagraphFormat.CharBasedFirstLineIndent.md
+++ b/api/Publisher.ParagraphFormat.CharBasedFirstLineIndent.md
@@ -23,7 +23,7 @@ Returns or sets the value of the first line indent (in East Asian character widt
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.ParagraphFormat.Duplicate.md b/api/Publisher.ParagraphFormat.Duplicate.md
index cad1e2811e0..ecc9c642bad 100644
--- a/api/Publisher.ParagraphFormat.Duplicate.md
+++ b/api/Publisher.ParagraphFormat.Duplicate.md
@@ -23,7 +23,7 @@ Creates a duplicate of the specified **[ParagraphFormat](Publisher.ParagraphFor
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
ParagraphFormat
diff --git a/api/Publisher.ParagraphFormat.FirstLineIndent.md b/api/Publisher.ParagraphFormat.FirstLineIndent.md
index daec0a64cbd..95b1ee8b976 100644
--- a/api/Publisher.ParagraphFormat.FirstLineIndent.md
+++ b/api/Publisher.ParagraphFormat.FirstLineIndent.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** that represents the amount of space (measured in
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.ParagraphFormat.KashidaPercentage.md b/api/Publisher.ParagraphFormat.KashidaPercentage.md
index be45b95e079..006ccb76e82 100644
--- a/api/Publisher.ParagraphFormat.KashidaPercentage.md
+++ b/api/Publisher.ParagraphFormat.KashidaPercentage.md
@@ -23,7 +23,7 @@ Returns or sets a **Long** indicating the percentage by which kashidas are to b
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.ParagraphFormat.KeepLinesTogether.md b/api/Publisher.ParagraphFormat.KeepLinesTogether.md
index b098355a062..e7ad4a837e1 100644
--- a/api/Publisher.ParagraphFormat.KeepLinesTogether.md
+++ b/api/Publisher.ParagraphFormat.KeepLinesTogether.md
@@ -23,7 +23,7 @@ Sets or returns an **MsoTriState** that indicates whether all lines in the spec
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
msoTriState
diff --git a/api/Publisher.ParagraphFormat.KeepWithNext.md b/api/Publisher.ParagraphFormat.KeepWithNext.md
index 0c1cdc86f17..f9169cb1eed 100644
--- a/api/Publisher.ParagraphFormat.KeepWithNext.md
+++ b/api/Publisher.ParagraphFormat.KeepWithNext.md
@@ -23,7 +23,7 @@ Sets or returns an **MsoTriState** that indicates whether the following paragra
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.ParagraphFormat.LeftIndent.md b/api/Publisher.ParagraphFormat.LeftIndent.md
index ddf83458e3f..095589c63d6 100644
--- a/api/Publisher.ParagraphFormat.LeftIndent.md
+++ b/api/Publisher.ParagraphFormat.LeftIndent.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** that represents the left indent value (in points)
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.ParagraphFormat.LineSpacing.md b/api/Publisher.ParagraphFormat.LineSpacing.md
index 0a1dc9eff8e..91830d89a52 100644
--- a/api/Publisher.ParagraphFormat.LineSpacing.md
+++ b/api/Publisher.ParagraphFormat.LineSpacing.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** that represents the line spacing (in number of li
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.ParagraphFormat.LineSpacingRule.md b/api/Publisher.ParagraphFormat.LineSpacingRule.md
index 74e5d291ad2..8c298738a40 100644
--- a/api/Publisher.ParagraphFormat.LineSpacingRule.md
+++ b/api/Publisher.ParagraphFormat.LineSpacingRule.md
@@ -23,7 +23,7 @@ Returns or sets a **PbLineSpacingRule** that represents the line spacing for th
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
PbLineSpacingRule
diff --git a/api/Publisher.ParagraphFormat.ListBulletFontName.md b/api/Publisher.ParagraphFormat.ListBulletFontName.md
index 1b5c415ae40..ca89c822a06 100644
--- a/api/Publisher.ParagraphFormat.ListBulletFontName.md
+++ b/api/Publisher.ParagraphFormat.ListBulletFontName.md
@@ -23,7 +23,7 @@ Sets or retrieves a **String** representing the list bullet font name from the
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.ParagraphFormat.ListBulletFontSize.md b/api/Publisher.ParagraphFormat.ListBulletFontSize.md
index 7505057a77a..6da9c3aeb57 100644
--- a/api/Publisher.ParagraphFormat.ListBulletFontSize.md
+++ b/api/Publisher.ParagraphFormat.ListBulletFontSize.md
@@ -23,7 +23,7 @@ Sets or retrieves a **Single** that represents the list bullet font size from t
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.ParagraphFormat.ListBulletText.md b/api/Publisher.ParagraphFormat.ListBulletText.md
index 76f1e54a6bf..21dd4177fcf 100644
--- a/api/Publisher.ParagraphFormat.ListBulletText.md
+++ b/api/Publisher.ParagraphFormat.ListBulletText.md
@@ -23,7 +23,7 @@ Returns a **String** representing the list bullet text from the specified parag
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.ParagraphFormat.ListIndent.md b/api/Publisher.ParagraphFormat.ListIndent.md
index 6996d30258b..019ae9bf679 100644
--- a/api/Publisher.ParagraphFormat.ListIndent.md
+++ b/api/Publisher.ParagraphFormat.ListIndent.md
@@ -23,7 +23,7 @@ Returns or sets a **Single** that represents the list indent value (in points)
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.ParagraphFormat.ListNumberSeparator.md b/api/Publisher.ParagraphFormat.ListNumberSeparator.md
index 08545e60738..f7ca93136f3 100644
--- a/api/Publisher.ParagraphFormat.ListNumberSeparator.md
+++ b/api/Publisher.ParagraphFormat.ListNumberSeparator.md
@@ -23,7 +23,7 @@ Sets or retrieves a **PbListSeparator** constant that represents the list separ
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
PbListNumberSeparator
diff --git a/api/Publisher.ParagraphFormat.ListNumberStart.md b/api/Publisher.ParagraphFormat.ListNumberStart.md
index dc522b6b34b..6757ff27962 100644
--- a/api/Publisher.ParagraphFormat.ListNumberStart.md
+++ b/api/Publisher.ParagraphFormat.ListNumberStart.md
@@ -23,7 +23,7 @@ Sets or retrieves a **Long** that represents the starting number of a list. Rea
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.ParagraphFormat.ListType.md b/api/Publisher.ParagraphFormat.ListType.md
index 48a0dc8052f..df19bfd7c89 100644
--- a/api/Publisher.ParagraphFormat.ListType.md
+++ b/api/Publisher.ParagraphFormat.ListType.md
@@ -23,7 +23,7 @@ Returns a **PbListType** constant from the specified **ParagraphFormat** object
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
pbListType
diff --git a/api/Publisher.ParagraphFormat.LockToBaseLine.md b/api/Publisher.ParagraphFormat.LockToBaseLine.md
index 48d05e181d1..58f95ab3d0b 100644
--- a/api/Publisher.ParagraphFormat.LockToBaseLine.md
+++ b/api/Publisher.ParagraphFormat.LockToBaseLine.md
@@ -23,7 +23,7 @@ Returns an **MsoTristate** that represents whether or not text will be position
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
MsoTristate
diff --git a/api/Publisher.ParagraphFormat.Reset.md b/api/Publisher.ParagraphFormat.Reset.md
index c4f0cd3c260..77924f3c377 100644
--- a/api/Publisher.ParagraphFormat.Reset.md
+++ b/api/Publisher.ParagraphFormat.Reset.md
@@ -23,7 +23,7 @@ Removes manual paragraph or text formatting from the specified object and leaves
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.ParagraphFormat.RightIndent.md b/api/Publisher.ParagraphFormat.RightIndent.md
index 28f43107fc9..aff8e2067fc 100644
--- a/api/Publisher.ParagraphFormat.RightIndent.md
+++ b/api/Publisher.ParagraphFormat.RightIndent.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** that represents the right indent (in points) for
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.ParagraphFormat.SetLineSpacing.md b/api/Publisher.ParagraphFormat.SetLineSpacing.md
index cac8adf389a..97a6ee032e5 100644
--- a/api/Publisher.ParagraphFormat.SetLineSpacing.md
+++ b/api/Publisher.ParagraphFormat.SetLineSpacing.md
@@ -27,7 +27,7 @@ Formats the line spacing of specified paragraphs.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Rule|Required| **PbLineSpacingRule**|The line spacing to use for the specified paragraphs.|
|Spacing|Optional| **Variant**|The spacing (in points) for the specified paragraphs.|
diff --git a/api/Publisher.ParagraphFormat.SetListType.md b/api/Publisher.ParagraphFormat.SetListType.md
index 53d48ba2169..0165a63ab62 100644
--- a/api/Publisher.ParagraphFormat.SetListType.md
+++ b/api/Publisher.ParagraphFormat.SetListType.md
@@ -27,7 +27,7 @@ Sets the list type of the specified **ParagraphFormat** object. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Value|Required| **PbListType**|Represents the list type of the specified **ParagraphFormat** object.|
|BulletText|Optional| **String**| **String** that represents the text of the list bullet.|
diff --git a/api/Publisher.ParagraphFormat.SpaceAfter.md b/api/Publisher.ParagraphFormat.SpaceAfter.md
index 054f0e9e4c5..a546d4110c9 100644
--- a/api/Publisher.ParagraphFormat.SpaceAfter.md
+++ b/api/Publisher.ParagraphFormat.SpaceAfter.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** that represents the amount of spacing (in points)
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.ParagraphFormat.SpaceBefore.md b/api/Publisher.ParagraphFormat.SpaceBefore.md
index 18a9da4a9f9..e1e4c2cca96 100644
--- a/api/Publisher.ParagraphFormat.SpaceBefore.md
+++ b/api/Publisher.ParagraphFormat.SpaceBefore.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** that represents the amount of spacing (in points)
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.ParagraphFormat.StartInNextTextBox.md b/api/Publisher.ParagraphFormat.StartInNextTextBox.md
index d5d3ce811de..08fc4f97b1f 100644
--- a/api/Publisher.ParagraphFormat.StartInNextTextBox.md
+++ b/api/Publisher.ParagraphFormat.StartInNextTextBox.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState** constant that represents whether to always s
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.ParagraphFormat.Tabs.md b/api/Publisher.ParagraphFormat.Tabs.md
index 54e6687e598..429ad8a8f08 100644
--- a/api/Publisher.ParagraphFormat.Tabs.md
+++ b/api/Publisher.ParagraphFormat.Tabs.md
@@ -23,7 +23,7 @@ Returns a **[TabStops](Publisher.TabStops.md)** object representing the custom
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
TabStops
diff --git a/api/Publisher.ParagraphFormat.TextDirection.md b/api/Publisher.ParagraphFormat.TextDirection.md
index 5a9d4391022..06080e3e825 100644
--- a/api/Publisher.ParagraphFormat.TextDirection.md
+++ b/api/Publisher.ParagraphFormat.TextDirection.md
@@ -23,7 +23,7 @@ Returns or sets a **PbTextDirection** constant indicating the direction in whic
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
PbTextDirection
diff --git a/api/Publisher.ParagraphFormat.TextStyle.md b/api/Publisher.ParagraphFormat.TextStyle.md
index 5514704b9b8..1b111e7dc2f 100644
--- a/api/Publisher.ParagraphFormat.TextStyle.md
+++ b/api/Publisher.ParagraphFormat.TextStyle.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** that represents the text style applied to a parag
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.ParagraphFormat.UseCharBasedFirstLineIndent.md b/api/Publisher.ParagraphFormat.UseCharBasedFirstLineIndent.md
index 65606ff96fa..99f89d29c33 100644
--- a/api/Publisher.ParagraphFormat.UseCharBasedFirstLineIndent.md
+++ b/api/Publisher.ParagraphFormat.UseCharBasedFirstLineIndent.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState** constant that specifies whether a paragraph
_expression_ A variable that represents an **ParagraphFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.ParagraphFormat.WidowControl.md b/api/Publisher.ParagraphFormat.WidowControl.md
index 75d11814262..2de93a74698 100644
--- a/api/Publisher.ParagraphFormat.WidowControl.md
+++ b/api/Publisher.ParagraphFormat.WidowControl.md
@@ -23,7 +23,7 @@ Sets or returns an **MsoTriState** that represents whether or not the first or
_expression_ A variable that represents a **ParagraphFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.PbCalendarType.md b/api/Publisher.PbCalendarType.md
index 07fe3471bec..f0774a94834 100644
--- a/api/Publisher.PbCalendarType.md
+++ b/api/Publisher.PbCalendarType.md
@@ -17,7 +17,7 @@ The calendar type to use when displaying the date or time.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbCalendarTypeArabicHijri**|1|Arabic Hijri calendar|
| **pbCalendarTypeChineseNational**|3|Chinese National calendar|
diff --git a/api/Publisher.PbCellDiagonalType.md b/api/Publisher.PbCellDiagonalType.md
index add7eeb945d..15d01de5d08 100644
--- a/api/Publisher.PbCellDiagonalType.md
+++ b/api/Publisher.PbCellDiagonalType.md
@@ -17,7 +17,7 @@ Represents a cell that is diagonally split.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbTableCellDiagonalDown**|2|Diagonal Down|
| **pbTableCellDiagonalMixed**|-2|Diagonal Mixed|
diff --git a/api/Publisher.PbCollapseDirection.md b/api/Publisher.PbCollapseDirection.md
index eec4c69848a..53c49017484 100644
--- a/api/Publisher.PbCollapseDirection.md
+++ b/api/Publisher.PbCollapseDirection.md
@@ -17,7 +17,7 @@ The direction in which to collapse the range or selection.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbCollapseEnd**|2|Collapse at the end.|
| **pbCollapseStart**|1|Collapse at the start.|
diff --git a/api/Publisher.PbColorModel.md b/api/Publisher.PbColorModel.md
index c57b6ebdfc4..f98e2a0a5f9 100644
--- a/api/Publisher.PbColorModel.md
+++ b/api/Publisher.PbColorModel.md
@@ -17,7 +17,7 @@ Represents the color model of the picture.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbColorModelCMYK**|2|CMYK|
| **pbColorModelGreyScale**|3|GreyScale|
diff --git a/api/Publisher.PbColorScheme.md b/api/Publisher.PbColorScheme.md
index a049488cded..6dc73858a89 100644
--- a/api/Publisher.PbColorScheme.md
+++ b/api/Publisher.PbColorScheme.md
@@ -17,7 +17,7 @@ Represents a color scheme returned by the **Item** property. It is a set of coo
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbColorSchemeAlpine**|-1|Alpine|
| **pbColorSchemeAqua**|-2|Aqua|
diff --git a/api/Publisher.PbColorType.md b/api/Publisher.PbColorType.md
index 9d25b526bdf..02fe0b678f2 100644
--- a/api/Publisher.PbColorType.md
+++ b/api/Publisher.PbColorType.md
@@ -17,7 +17,7 @@ Represents the shape color type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbColorTypeCMS**|4|CMS|
| **pbColorTypeCMYK**|3|CMYK|
diff --git a/api/Publisher.PbCommandButtonType.md b/api/Publisher.PbCommandButtonType.md
index 667c2c85ec2..dfefbd2626b 100644
--- a/api/Publisher.PbCommandButtonType.md
+++ b/api/Publisher.PbCommandButtonType.md
@@ -17,7 +17,7 @@ Indicates whether a Web command button will clear or submit form data.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbCommandButtonReset**|2|Reset or clear the form.|
| **pbCommandButtonSubmit**|1|Submit the form.|
diff --git a/api/Publisher.PbDateTimeFormat.md b/api/Publisher.PbDateTimeFormat.md
index 341efb51b7a..db3fa015d49 100644
--- a/api/Publisher.PbDateTimeFormat.md
+++ b/api/Publisher.PbDateTimeFormat.md
@@ -17,7 +17,7 @@ A format for the date and time.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbDateEnglish**|8|English|
| **pbDateISO**|4|ISO|
diff --git a/api/Publisher.PbDirectionType.md b/api/Publisher.PbDirectionType.md
index f3ac323524c..128ec03a0c9 100644
--- a/api/Publisher.PbDirectionType.md
+++ b/api/Publisher.PbDirectionType.md
@@ -17,7 +17,7 @@ Represents a global Microsoft Publisher option, indicating whether text flows fr
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbDirectionLeftToRight**|1|Left to Right|
| **pbDirectionRightToLeft**|2|Right to Left|
diff --git a/api/Publisher.PbDriverType.md b/api/Publisher.PbDriverType.md
index 08f461e2fa6..7bd45eec452 100644
--- a/api/Publisher.PbDriverType.md
+++ b/api/Publisher.PbDriverType.md
@@ -17,7 +17,7 @@ Driver-type constants returned by the ** [Printer.DriverType](Publisher.Printer
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbDriverTypeNonPostScript**|1|Non PostScript|
| **pbDriverTypePostScript1**|2|PostScript 1|
diff --git a/api/Publisher.PbFieldType.md b/api/Publisher.PbFieldType.md
index e38b0b7cbeb..83605a47d4b 100644
--- a/api/Publisher.PbFieldType.md
+++ b/api/Publisher.PbFieldType.md
@@ -17,7 +17,7 @@ Represents the field type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbFieldDateTime**|4|Date and time|
| **pbFieldHyperlinkAbsolutePage**|11| Absolute page hyperlink|
diff --git a/api/Publisher.PbFileFormat.md b/api/Publisher.PbFileFormat.md
index 3bb37d3df59..974faa80064 100644
--- a/api/Publisher.PbFileFormat.md
+++ b/api/Publisher.PbFileFormat.md
@@ -17,7 +17,7 @@ Constants that indicate the file format of the specified document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbFileHTMLFiltered**|7|The file was saved in HTML Filtered format.|
| **pbFilePlainText**|8|The file was saved in plain text format.|
diff --git a/api/Publisher.PbFixedFormatIntent.md b/api/Publisher.PbFixedFormatIntent.md
index ad80bd5d3b7..fe1a8f76bd5 100644
--- a/api/Publisher.PbFixedFormatIntent.md
+++ b/api/Publisher.PbFixedFormatIntent.md
@@ -17,7 +17,7 @@ Constants passed to the **[ExportAsFixedFormat](Publisher.Document.ExportAsFixe
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbIntentCommercial**|4|Submit the publication to a commercial press.|
| **pbIntentMinimum**|1|Squeeze the publication to the smallest file size. This satisfies the on-screen viewing scenario where the publication is viewed on a computer monitor.|
diff --git a/api/Publisher.PbFixedFormatType.md b/api/Publisher.PbFixedFormatType.md
index 494edb9d9ee..e988d38f902 100644
--- a/api/Publisher.PbFixedFormatType.md
+++ b/api/Publisher.PbFixedFormatType.md
@@ -17,7 +17,7 @@ Constants passed to the **[ExportAsFixedFormat](Publisher.Document.ExportAsFixe
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbFixedFormatTypePDF**|2|PDF format|
| **pbFixedFormatTypeXPS**|1|XPS format|
diff --git a/api/Publisher.PbFontScriptType.md b/api/Publisher.PbFontScriptType.md
index e1138184265..deeea2f17be 100644
--- a/api/Publisher.PbFontScriptType.md
+++ b/api/Publisher.PbFontScriptType.md
@@ -17,7 +17,7 @@ Represents the font script for a text range.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbFontScriptArabic**|7|Arabic|
| **pbFontScriptArmenian**|5|Armenian|
diff --git a/api/Publisher.PbHelpType.md b/api/Publisher.PbHelpType.md
index 9c9cc1068a7..02f7212cd4b 100644
--- a/api/Publisher.PbHelpType.md
+++ b/api/Publisher.PbHelpType.md
@@ -17,7 +17,7 @@ The type of help to display.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbHelp**|1|Displays the **Help Topics** dialog box.|
| **pbHelpActiveWindow**|2|Displays Help describing the command associated with the active view or pane.|
diff --git a/api/Publisher.PbHlinkTargetType.md b/api/Publisher.PbHlinkTargetType.md
index 6b1cc090402..a5310665ec5 100644
--- a/api/Publisher.PbHlinkTargetType.md
+++ b/api/Publisher.PbHlinkTargetType.md
@@ -17,7 +17,7 @@ Represents the type of hyperlink.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbHlinkTargetTypeEmail**|2|E-mail|
| **pbHlinkTargetTypeFirstPage**|3|First Page|
diff --git a/api/Publisher.PbHorizontalPictureLocking.md b/api/Publisher.PbHorizontalPictureLocking.md
index 24962b0bcce..688d8d90192 100644
--- a/api/Publisher.PbHorizontalPictureLocking.md
+++ b/api/Publisher.PbHorizontalPictureLocking.md
@@ -17,7 +17,7 @@ Indicates where newly inserted pictures appear in relation to the specified fram
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbHorizontalLockingLeft**|1|New pictures are inserted along the left edge of the frame.|
| **pbHorizontalLockingNone**|0|New pictures are inserted in the middle between the left and right edges of the frame.|
diff --git a/api/Publisher.PbImageFormat.md b/api/Publisher.PbImageFormat.md
index bafc0a584e7..e86d6a43857 100644
--- a/api/Publisher.PbImageFormat.md
+++ b/api/Publisher.PbImageFormat.md
@@ -17,7 +17,7 @@ Represents the image format of a picture as determined by Microsoft® Windows®
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbImageFormatCMYKJPEG**|10|CMYKJPEG|
| **pbImageFormatDIB**|7|DIB|
diff --git a/api/Publisher.PbInlineAlignment.md b/api/Publisher.PbInlineAlignment.md
index 99838ff3471..47e669a6157 100644
--- a/api/Publisher.PbInlineAlignment.md
+++ b/api/Publisher.PbInlineAlignment.md
@@ -17,7 +17,7 @@ Indicates whether an inline shape has left, right, or in-text alignment.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbInlineAlignmentCharacter**|0|Shape is aligned with the text characters.|
| **pbInlineAlignmentLeft**|1|Shape is left-aligned.|
diff --git a/api/Publisher.PbLineSpacingRule.md b/api/Publisher.PbLineSpacingRule.md
index e3083d108be..e9a74ef4159 100644
--- a/api/Publisher.PbLineSpacingRule.md
+++ b/api/Publisher.PbLineSpacingRule.md
@@ -17,7 +17,7 @@ Represents the line spacing for the specified paragraphs.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbLineSpacing1pt5**|1|Sets paragraph line spacing to a line and a half.|
| **pbLineSpacingDouble**|2|Sets paragraph line spacing to two lines.|
diff --git a/api/Publisher.PbLinkedFileStatus.md b/api/Publisher.PbLinkedFileStatus.md
index b6749ed91be..75c6fb6541a 100644
--- a/api/Publisher.PbLinkedFileStatus.md
+++ b/api/Publisher.PbLinkedFileStatus.md
@@ -17,7 +17,7 @@ Indicates the status of the file linked to the specified picture.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbLinkedFileMissing**|2|The file can no longer be found at the specified path.|
| **pbLinkedFileModified**|3|The linked file has been modified since it was linked to the picture.|
diff --git a/api/Publisher.PbListSeparator.md b/api/Publisher.PbListSeparator.md
index d30470f228e..36609dc4127 100644
--- a/api/Publisher.PbListSeparator.md
+++ b/api/Publisher.PbListSeparator.md
@@ -17,7 +17,7 @@ Constants that represent the list separator of the specified paragraphs, passed
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbListSeparatorColon**|327680|Colon|
| **pbListSeparatorDoubleHyphen**|458752|Double Hyphen|
diff --git a/api/Publisher.PbListType.md b/api/Publisher.PbListType.md
index dbe298c4703..7e60986cbaa 100644
--- a/api/Publisher.PbListType.md
+++ b/api/Publisher.PbListType.md
@@ -17,7 +17,7 @@ Constants specifying the list type of a **ParagraphFormat** object, passed to t
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbListTypeAiueo**|12|Aiueo|
| **pbListTypeArabic**|0|Arabic|
diff --git a/api/Publisher.PbMailMergeDataFieldType.md b/api/Publisher.PbMailMergeDataFieldType.md
index c9ee4496f9a..98d328d2f2a 100644
--- a/api/Publisher.PbMailMergeDataFieldType.md
+++ b/api/Publisher.PbMailMergeDataFieldType.md
@@ -17,7 +17,7 @@ Represents the type of data contained in the data field.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbMailMergeDataFieldPicture**|1|Contains a picture.|
| **pbMailMergeDataFieldString**|0|Contains a string.|
diff --git a/api/Publisher.PbMailMergeDataSource.md b/api/Publisher.PbMailMergeDataSource.md
index 21babb27f44..888de64352f 100644
--- a/api/Publisher.PbMailMergeDataSource.md
+++ b/api/Publisher.PbMailMergeDataSource.md
@@ -17,7 +17,7 @@ This enumeration is not implemented. Do not use.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbMergeInfoFromODSO**|5|From ODSO|
| **pbMergeInfoSubODSO**|6|Sub ODSO|
diff --git a/api/Publisher.PbMailMergeDestination.md b/api/Publisher.PbMailMergeDestination.md
index a7ee2869fe4..3b48fb57ff2 100644
--- a/api/Publisher.PbMailMergeDestination.md
+++ b/api/Publisher.PbMailMergeDestination.md
@@ -17,7 +17,7 @@ The destination of the mail merge or catalog merge results.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbMergeToExistingPublication**|3| **Default** Merge to an exisiting presentation.|
| **pbMergeToNewPublication**|2|Merge to a new presentation.|
diff --git a/api/Publisher.PbMergeType.md b/api/Publisher.PbMergeType.md
index 8c147c398c2..41afe4c8221 100644
--- a/api/Publisher.PbMergeType.md
+++ b/api/Publisher.PbMergeType.md
@@ -17,7 +17,7 @@ Constants that specify the type of mail merge, passed to and returned by the **
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbCatalogMerge**|3|Catalog merge|
| **pbEmailMerge**|4|E-mail merge|
diff --git a/api/Publisher.PbNavBarOrientation.md b/api/Publisher.PbNavBarOrientation.md
index 71c22e7e824..032fbc18937 100644
--- a/api/Publisher.PbNavBarOrientation.md
+++ b/api/Publisher.PbNavBarOrientation.md
@@ -17,7 +17,7 @@ Represents the alignment of the navigation bar; vertical or horizontal.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbNavBarOrientHorizontal**|1|Horizontal orientation|
| **pbNavBarOrientVertical**|2|Vertical orientation|
diff --git a/api/Publisher.PbOrientationType.md b/api/Publisher.PbOrientationType.md
index 5aca434fd83..baf8e3fc520 100644
--- a/api/Publisher.PbOrientationType.md
+++ b/api/Publisher.PbOrientationType.md
@@ -17,7 +17,7 @@ Represents the orientation used to print envelopes.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbOrientationLandscape**|2|Landscape orientation|
| **pbOrientationPortrait**|1|Portrait orientation|
diff --git a/api/Publisher.PbPageNumberFormat.md b/api/Publisher.PbPageNumberFormat.md
index 36aed1a3f40..1edfcad5762 100644
--- a/api/Publisher.PbPageNumberFormat.md
+++ b/api/Publisher.PbPageNumberFormat.md
@@ -17,7 +17,7 @@ Reperesents the formatting of the page numbering.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbPageNumberFormatAiueo**|12|Aiueo|
| **pbPageNumberFormatArabic**|0|Arabic|
diff --git a/api/Publisher.PbPageNumberType.md b/api/Publisher.PbPageNumberType.md
index 865138f40aa..b7d4c759c20 100644
--- a/api/Publisher.PbPageNumberType.md
+++ b/api/Publisher.PbPageNumberType.md
@@ -17,7 +17,7 @@ Specifies whether the page number is the current page number or the next or prev
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbPageNumberCurrent**|1|Default.|
| **pbPageNumberNextInStory**|2|Inserts the page number of the next linked text box.|
diff --git a/api/Publisher.PbPageType.md b/api/Publisher.PbPageType.md
index 1d680637e50..72d6923a449 100644
--- a/api/Publisher.PbPageType.md
+++ b/api/Publisher.PbPageType.md
@@ -17,7 +17,7 @@ Represents the page type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbPageLeftPage**|1|Left page|
| **pbPageMasterPage**|4|Master page|
diff --git a/api/Publisher.PbParagraphAlignmentType.md b/api/Publisher.PbParagraphAlignmentType.md
index 5650ccda4c4..3fe271c8ab0 100644
--- a/api/Publisher.PbParagraphAlignmentType.md
+++ b/api/Publisher.PbParagraphAlignmentType.md
@@ -17,7 +17,7 @@ ms.date: 06/08/2017
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbParagraphAlignmentCenter**|1|Center alignment|
| **pbParagraphAlignmentDistribute**|4|Distribute alignment|
diff --git a/api/Publisher.PbPersonalInfoSet.md b/api/Publisher.PbPersonalInfoSet.md
index 5a0af2b84b3..03c35ac8330 100644
--- a/api/Publisher.PbPersonalInfoSet.md
+++ b/api/Publisher.PbPersonalInfoSet.md
@@ -17,7 +17,7 @@ Indicates the current identity set.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbPersonalInfoHome**|4|Home|
| **pbPersonalInfoOtherOrganization**|3|Other organization|
diff --git a/api/Publisher.PbPhoneticGuideAlignmentType.md b/api/Publisher.PbPhoneticGuideAlignmentType.md
index 7b8bd6fea7c..0f21dc1f028 100644
--- a/api/Publisher.PbPhoneticGuideAlignmentType.md
+++ b/api/Publisher.PbPhoneticGuideAlignmentType.md
@@ -17,7 +17,7 @@ Constants passed to the ** [Fields.AddPhoneticGuide](Publisher.Fields.AddPhonet
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbPhoneticGuideAlignmentCenter**|3|Center aligned|
| **pbPhoneticGuideAlignmentDefault**|0|Default alignment|
diff --git a/api/Publisher.PbPictureInsertAs.md b/api/Publisher.PbPictureInsertAs.md
index 6c322b1bf33..6eb0e504961 100644
--- a/api/Publisher.PbPictureInsertAs.md
+++ b/api/Publisher.PbPictureInsertAs.md
@@ -17,7 +17,7 @@ The manner in which you want the picture file inserted into the document: linked
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbPictureInsertAsEmbedded**|1|Embed all images.|
| **pbPictureInsertAsLinked**|2|Images can either be linked externally or internally.|
diff --git a/api/Publisher.PbPictureResolution.md b/api/Publisher.PbPictureResolution.md
index 2bf7689f5ce..fc051d5e66d 100644
--- a/api/Publisher.PbPictureResolution.md
+++ b/api/Publisher.PbPictureResolution.md
@@ -17,7 +17,7 @@ Constants passed to the **SaveAsPicture** method and specifying the resolution
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbPictureResolutionCommercialPrint_300dpi**|3|300 dpi|
| **pbPictureResolutionDefault**|0|Default|
diff --git a/api/Publisher.PbPlacementType.md b/api/Publisher.PbPlacementType.md
index 4e6fac812f9..e13141f501c 100644
--- a/api/Publisher.PbPlacementType.md
+++ b/api/Publisher.PbPlacementType.md
@@ -17,7 +17,7 @@ Represents the placement of envelopes in the printer tray.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbPlacementCenter**|3|Center|
| **pbPlacementLeft**|1|Left|
diff --git a/api/Publisher.PbPrintGraphics.md b/api/Publisher.PbPrintGraphics.md
index cd35c5fe673..2f1442961d4 100644
--- a/api/Publisher.PbPrintGraphics.md
+++ b/api/Publisher.PbPrintGraphics.md
@@ -17,7 +17,7 @@ Represents the resolution at which the inserted graphics are to be printed in th
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbPrintHighResolution**|1|Default. Print linked graphics using the full-resolution linked version.|
| **pbPrintLowResolution**|2|Print linked graphics using the low-resolution placeholder version that is stored in the publication.|
diff --git a/api/Publisher.PbPrintMode.md b/api/Publisher.PbPrintMode.md
index 2f4031336c4..f5680af7b61 100644
--- a/api/Publisher.PbPrintMode.md
+++ b/api/Publisher.PbPrintMode.md
@@ -17,7 +17,7 @@ Represents whether the specified publication is printed as a composite or separa
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbPrintModeCompositeCMYK**|3|Print a composite whose colors are defined by the CMYK color model.|
| **pbPrintModeCompositeGrayscale**|4|Print a composite whose colors are defined as shades of gray.|
diff --git a/api/Publisher.PbPrintStyle.md b/api/Publisher.PbPrintStyle.md
index 786d3b8343c..9a68a734c1a 100644
--- a/api/Publisher.PbPrintStyle.md
+++ b/api/Publisher.PbPrintStyle.md
@@ -17,7 +17,7 @@ Constants specifying the print style and passed to the **PrintOutEx** and **Exp
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbPrintStyleBookletSideFold**|5|Prints the publication in the booklet style with a side fold.|
| **pbPrintStyleBookletTopFold**|6|Prints the publication in the booklet style with a top fold.|
diff --git a/api/Publisher.PbPublicationType.md b/api/Publisher.PbPublicationType.md
index abe2c25ce07..92f2836e86a 100644
--- a/api/Publisher.PbPublicationType.md
+++ b/api/Publisher.PbPublicationType.md
@@ -17,7 +17,7 @@ Represents the type of the specified publication.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbTypePrint**|1|Print publication|
| **pbTypeWeb**|2|Web publication|
diff --git a/api/Publisher.PbRecipientListFileType.md b/api/Publisher.PbRecipientListFileType.md
index ced73832235..58c403504c2 100644
--- a/api/Publisher.PbRecipientListFileType.md
+++ b/api/Publisher.PbRecipientListFileType.md
@@ -14,7 +14,7 @@ Constants passed to the ** [MailMerge.ExportRecipientList](Publisher.MailMerge.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbAsCsvFile**|1|Save as comma-delimited CSV file.|
| **pbAsMdbFile**|0|Save as Microsoft Office Access MDB file.|
diff --git a/api/Publisher.PbReplaceScope.md b/api/Publisher.PbReplaceScope.md
index 3a74fa0557f..94138c8ee1b 100644
--- a/api/Publisher.PbReplaceScope.md
+++ b/api/Publisher.PbReplaceScope.md
@@ -17,7 +17,7 @@ Specifies how many replacements are to be made: one, all, or none.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbReplaceScopeAll**|2|All need to be replaced.|
| **pbReplaceScopeNone**|0|None need to be replaced.|
diff --git a/api/Publisher.PbReplaceTint.md b/api/Publisher.PbReplaceTint.md
index 70dbe076e4d..ffff4f0e406 100644
--- a/api/Publisher.PbReplaceTint.md
+++ b/api/Publisher.PbReplaceTint.md
@@ -17,7 +17,7 @@ Constants passed to the **Plate.Delete** method specifying how to replace the c
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbReplaceTintKeepTints**|1|Maintain the same tint percentage in the ink represented by the replacement plate as in the deleted plate. For example, replace a 100% tint of yellow with a 100% tint of blue.|
| **pbReplaceTintMaintainLuminosity**|2|Maintain the same lightness value in the ink represented by the replacement plate as in the deleted plate. For example, replace a 100% tint of yellow with an approximately 10% tint of blue.|
diff --git a/api/Publisher.PbRulerGuideType.md b/api/Publisher.PbRulerGuideType.md
index e075669f84f..92a8f9d336b 100644
--- a/api/Publisher.PbRulerGuideType.md
+++ b/api/Publisher.PbRulerGuideType.md
@@ -17,7 +17,7 @@ Represents the ruler guide type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbRulerGuideTypeHorizontal**|2|Horizontal ruler|
| **pbRulerGuideTypeVertical**|1|Vertical ruler|
diff --git a/api/Publisher.PbSaveOptions.md b/api/Publisher.PbSaveOptions.md
index 05dff368290..da5e9d6eaf5 100644
--- a/api/Publisher.PbSaveOptions.md
+++ b/api/Publisher.PbSaveOptions.md
@@ -17,7 +17,7 @@ Specifies what Microsoft Publisher should do if there is already an open publica
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbDoNotSaveChanges**|3|Close the open publication without saving any changes.|
| **pbPromptToSaveChanges**|1|Default. Prompt the user whether to save changes in the open publication.|
diff --git a/api/Publisher.PbSchemeColorIndex.md b/api/Publisher.PbSchemeColorIndex.md
index 5640006b0cb..d8100710167 100644
--- a/api/Publisher.PbSchemeColorIndex.md
+++ b/api/Publisher.PbSchemeColorIndex.md
@@ -17,7 +17,7 @@ Represents the specified color of the current color scheme.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbSchemeColorAccent1**|2|Sets the color to Accent1 scheme color.|
| **pbSchemeColorAccent2**|3|Sets the color to Accent2 scheme color.|
diff --git a/api/Publisher.PbSelectionType.md b/api/Publisher.PbSelectionType.md
index 370fd2eeaa9..f113a4d9335 100644
--- a/api/Publisher.PbSelectionType.md
+++ b/api/Publisher.PbSelectionType.md
@@ -17,7 +17,7 @@ Represents the selection type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbSelectionNone**|0|Selection type none.|
| **pbSelectionShape**|1|Selection type shape.|
diff --git a/api/Publisher.PbShapeType.md b/api/Publisher.PbShapeType.md
index f79b9a337f8..1b0abdc2b5d 100644
--- a/api/Publisher.PbShapeType.md
+++ b/api/Publisher.PbShapeType.md
@@ -17,7 +17,7 @@ ms.date: 06/08/2017
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbAutoShape**|1|AutoShape|
| **pbCallout**|2|Callout|
diff --git a/api/Publisher.PbStoryType.md b/api/Publisher.PbStoryType.md
index 6aa2e3917ff..0781714a321 100644
--- a/api/Publisher.PbStoryType.md
+++ b/api/Publisher.PbStoryType.md
@@ -17,7 +17,7 @@ Represents the type of story.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbStoryContinuedFrom**|2|Story continued from which text frame.|
| **pbStoryContinuedOn**|3|Story continued on to which text frame.|
diff --git a/api/Publisher.PbSubmitDataFormatType.md b/api/Publisher.PbSubmitDataFormatType.md
index b95af081daf..01cde8b40c6 100644
--- a/api/Publisher.PbSubmitDataFormatType.md
+++ b/api/Publisher.PbSubmitDataFormatType.md
@@ -17,7 +17,7 @@ Represents the format to use when saving Web form data to a file.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbSubmitDataFormatCSV**|3|Saves Web form data to a comma-delimited text file.|
| **pbSubmitDataFormatHTML**|1|Saves Web form data to an HTML file.|
diff --git a/api/Publisher.PbSubmitDataRetrievalMethodType.md b/api/Publisher.PbSubmitDataRetrievalMethodType.md
index 908eed3fa4d..c7b1e1cd6a6 100644
--- a/api/Publisher.PbSubmitDataRetrievalMethodType.md
+++ b/api/Publisher.PbSubmitDataRetrievalMethodType.md
@@ -17,7 +17,7 @@ Represents the way data from a Web form is processed.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbSubmitDataRetrievalEmail**|2|Processes form data by sending an e-mail message to a specified e-mail address.|
| **pbSubmitDataRetrievalProgram**|3|Processes form data using a script program provided by your Internet service provider.|
diff --git a/api/Publisher.PbTabAlignmentType.md b/api/Publisher.PbTabAlignmentType.md
index f44a26cd8b6..90ba701a921 100644
--- a/api/Publisher.PbTabAlignmentType.md
+++ b/api/Publisher.PbTabAlignmentType.md
@@ -17,7 +17,7 @@ Represents the alignment for the specified tab stop.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbTabAlignmentCenter**|1|Centeral tab alignment|
| **pbTabAlignmentDecimal**|3|Decimal tab alignment|
diff --git a/api/Publisher.PbTabLeaderType.md b/api/Publisher.PbTabLeaderType.md
index 162fb88952f..7a8792e2b53 100644
--- a/api/Publisher.PbTabLeaderType.md
+++ b/api/Publisher.PbTabLeaderType.md
@@ -17,7 +17,7 @@ Represents the leader character for a tab stop.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbTabLeaderBullet**|5|Leader bullet tab|
| **pbTabLeaderDashes**|2|Leader dashes tab|
diff --git a/api/Publisher.PbTableAutoFormatType.md b/api/Publisher.PbTableAutoFormatType.md
index cadf4b8e022..8eda281df1e 100644
--- a/api/Publisher.PbTableAutoFormatType.md
+++ b/api/Publisher.PbTableAutoFormatType.md
@@ -17,7 +17,7 @@ The type of automatic formatting to apply to the specified table.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbTableAutoFormatCheckbookRegister**|0|Checkbook register|
| **pbTableAutoFormatCheckerboard**|20|Checkerboard|
diff --git a/api/Publisher.PbTableDirectionType.md b/api/Publisher.PbTableDirectionType.md
index 2b21e65f658..925d27796b4 100644
--- a/api/Publisher.PbTableDirectionType.md
+++ b/api/Publisher.PbTableDirectionType.md
@@ -17,7 +17,7 @@ Represents whether text in a table is read from left to right or from right to l
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbTableDirectionLeftToRight**|1|Left to Right|
| **pbTableDirectionRightToLeft**|2|Right to Left|
diff --git a/api/Publisher.PbTextAutoFitType.md b/api/Publisher.PbTextAutoFitType.md
index 729e98f4b91..f42b5140ef8 100644
--- a/api/Publisher.PbTextAutoFitType.md
+++ b/api/Publisher.PbTextAutoFitType.md
@@ -17,7 +17,7 @@ Represents how Microsoft Publisher automatically adjusts the text font size and
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbTextAutoFitBestFit**|2|Text frame size adjusts to fit text.|
| **pbTextAutoFitNone**|0|Allows text to overflow the text frame.|
diff --git a/api/Publisher.PbTextDirection.md b/api/Publisher.PbTextDirection.md
index 8752e53181f..364ea709bcf 100644
--- a/api/Publisher.PbTextDirection.md
+++ b/api/Publisher.PbTextDirection.md
@@ -17,7 +17,7 @@ Indicats the direction in which text flows in the specified paragraph.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbTextDirectionLeftToRight**|1|Text flows from left to right.|
| **pbTextDirectionMixed**|-9999999|Return value indicating a range containing some left-to-right text and some right-to-left text.|
diff --git a/api/Publisher.PbTextOrientation.md b/api/Publisher.PbTextOrientation.md
index 5cb28726c44..0466def923d 100644
--- a/api/Publisher.PbTextOrientation.md
+++ b/api/Publisher.PbTextOrientation.md
@@ -17,7 +17,7 @@ Represents how text flows in a text box.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbTextOrientationHorizontal**|1|Horizontal text orientation|
| **pbTextOrientationMixed**|-2|Mixed text orientation|
diff --git a/api/Publisher.PbTextUnit.md b/api/Publisher.PbTextUnit.md
index 533174a65d5..5945f52595e 100644
--- a/api/Publisher.PbTextUnit.md
+++ b/api/Publisher.PbTextUnit.md
@@ -17,7 +17,7 @@ The unit by which to expand a range.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbTextUnitCell**|12|Expand by a cell|
| **pbTextUnitCharacter**|1|Expand by a character|
diff --git a/api/Publisher.PbTrackingPresetType.md b/api/Publisher.PbTrackingPresetType.md
index a30b028178e..8ce40e2387a 100644
--- a/api/Publisher.PbTrackingPresetType.md
+++ b/api/Publisher.PbTrackingPresetType.md
@@ -17,7 +17,7 @@ Represents the preset tracking type for characters in the specified font in a te
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbTrackingCustom**|-1|Custom|
| **pbTrackingLoose**|1|Loose|
diff --git a/api/Publisher.PbUnderlineType.md b/api/Publisher.PbUnderlineType.md
index ac1684c910c..1b5a3a9b1fe 100644
--- a/api/Publisher.PbUnderlineType.md
+++ b/api/Publisher.PbUnderlineType.md
@@ -17,7 +17,7 @@ Indicates the type of underline for the selected characters in the specified fon
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbUnderlineDash**|6|Dash|
| **pbUnderlineDashHeavy**|12|Dash Heavy|
diff --git a/api/Publisher.PbUnitType.md b/api/Publisher.PbUnitType.md
index 82d6f173a93..5755ce24199 100644
--- a/api/Publisher.PbUnitType.md
+++ b/api/Publisher.PbUnitType.md
@@ -17,7 +17,7 @@ Represents the standard measurement unit for Microsoft Publisher.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbUnitCM**|1|Sets the unit of measurement to centimeters.|
| **pbUnitEmu**|4|Sets the unit of measurement to Emu.|
diff --git a/api/Publisher.PbVerticalPictureLocking.md b/api/Publisher.PbVerticalPictureLocking.md
index c6d0494bb32..ba04cc70ac4 100644
--- a/api/Publisher.PbVerticalPictureLocking.md
+++ b/api/Publisher.PbVerticalPictureLocking.md
@@ -17,7 +17,7 @@ Indicates where newly inserted pictures appear in relation to the specified fram
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbVerticalLockingBottom**|2|New pictures are inserted along the bottom edge of the frame.|
| **pbVerticalLockingNone**|0|New pictures are inserted in the center between the top and bottom edges of the frame.|
diff --git a/api/Publisher.PbVerticalTextAlignmentType.md b/api/Publisher.PbVerticalTextAlignmentType.md
index 601939efe1c..5cf5d055ee3 100644
--- a/api/Publisher.PbVerticalTextAlignmentType.md
+++ b/api/Publisher.PbVerticalTextAlignmentType.md
@@ -17,7 +17,7 @@ Represents the vertical alignment of text in a text box.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbVerticalTextAlignmentBottom**|2|Text is aligned to the bottom.|
| **pbVerticalTextAlignmentCenter**|1|Text is aligned to the center.|
diff --git a/api/Publisher.PbWebControlType.md b/api/Publisher.PbWebControlType.md
index 8940c60b462..f82335720d3 100644
--- a/api/Publisher.PbWebControlType.md
+++ b/api/Publisher.PbWebControlType.md
@@ -17,7 +17,7 @@ Specifies the type of Web form control to add.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbWebControlCheckBox**|100|Adds a check box.|
| **pbWebControlCommandButton**|101|Adds a command button.|
diff --git a/api/Publisher.PbWindowState.md b/api/Publisher.PbWindowState.md
index 06f46cbbefe..f16c07dfb25 100644
--- a/api/Publisher.PbWindowState.md
+++ b/api/Publisher.PbWindowState.md
@@ -17,7 +17,7 @@ Indicates the state of the Microsoft Publisher window.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbWindowStateMaximize**|0|Window is maximized.|
| **pbWindowStateMinimize**|1|Window is minimized.|
diff --git a/api/Publisher.PbWizard.md b/api/Publisher.PbWizard.md
index ddb9991d2c3..991d4a0dcde 100644
--- a/api/Publisher.PbWizard.md
+++ b/api/Publisher.PbWizard.md
@@ -17,7 +17,7 @@ The wizard to use to create the new publication.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbWizardAdvertisements**|12|Creates advertisements|
| **pbWizardAirplanes**|23|Creates airplanes|
diff --git a/api/Publisher.PbWizardGroup.md b/api/Publisher.PbWizardGroup.md
index 6ee1f2ea0d1..a476fecb23f 100644
--- a/api/Publisher.PbWizardGroup.md
+++ b/api/Publisher.PbWizardGroup.md
@@ -17,7 +17,7 @@ The type of Design Gallery object to add to the publication.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbWizardGroupAccentBox**|151|Accent Box|
| **pbWizardGroupAccessoryBar**|154|Accessory Bar|
diff --git a/api/Publisher.PbWizardNavBarAlignment.md b/api/Publisher.PbWizardNavBarAlignment.md
index fa0225577ca..3f24f9d7aaf 100644
--- a/api/Publisher.PbWizardNavBarAlignment.md
+++ b/api/Publisher.PbWizardNavBarAlignment.md
@@ -17,7 +17,7 @@ Represents the horizontal alignment of the buttons in a Web navigation bar set.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbnbAlignCenter**|2|Center-aligned|
| **pbnbAlignLeft**|1|Left-aligned|
diff --git a/api/Publisher.PbWizardNavBarButtonStyle.md b/api/Publisher.PbWizardNavBarButtonStyle.md
index bb9b8f9793a..0364ff1bcee 100644
--- a/api/Publisher.PbWizardNavBarButtonStyle.md
+++ b/api/Publisher.PbWizardNavBarButtonStyle.md
@@ -17,7 +17,7 @@ Represents the style of the navigation bar buttons: large, small, or text-only.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbnbButtonStyleLarge**|2|Large buttons|
| **pbnbButtonStyleSmall**|1|Small buttons|
diff --git a/api/Publisher.PbWizardNavBarDesign.md b/api/Publisher.PbWizardNavBarDesign.md
index c38ec8f05c8..967d12e8abc 100644
--- a/api/Publisher.PbWizardNavBarDesign.md
+++ b/api/Publisher.PbWizardNavBarDesign.md
@@ -17,7 +17,7 @@ Represents the design of the specified Web navigation bar set.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbnbDesignAmbient**|2|Ambient|
| **pbnbDesignBaseline**|26|Baseline|
diff --git a/api/Publisher.PbWizardPageType.md b/api/Publisher.PbWizardPageType.md
index b7e5da6c964..fc59fee299f 100644
--- a/api/Publisher.PbWizardPageType.md
+++ b/api/Publisher.PbWizardPageType.md
@@ -17,7 +17,7 @@ The type of wizard page to add.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbWizardPageTypeCatalogBlank**|35|CatalogBlank|
| **pbWizardPageTypeCatalogCalendar**|22|Calendar|
diff --git a/api/Publisher.PbWizardTag.md b/api/Publisher.PbWizardTag.md
index 630122c2616..d6ae8b9c422 100644
--- a/api/Publisher.PbWizardTag.md
+++ b/api/Publisher.PbWizardTag.md
@@ -17,7 +17,7 @@ Indicates the function of a specified shape with respect to its publication desi
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbWizardTagAddress**|10|Address|
| **pbWizardTagAddressGroup**|117|Address Group|
diff --git a/api/Publisher.PbWrapSideType.md b/api/Publisher.PbWrapSideType.md
index 447cb3f8a42..64d09e7a2f2 100644
--- a/api/Publisher.PbWrapSideType.md
+++ b/api/Publisher.PbWrapSideType.md
@@ -17,7 +17,7 @@ Indicates whether text should wrap around a shape.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbWrapSideBoth**|0|Wrap both sides of the shape|
| **pbWrapSideLarger**|3|Wrap the larger side of the shape|
diff --git a/api/Publisher.PbWrapType.md b/api/Publisher.PbWrapType.md
index 5e240907560..9e1e75c02dd 100644
--- a/api/Publisher.PbWrapType.md
+++ b/api/Publisher.PbWrapType.md
@@ -17,7 +17,7 @@ Indicates how text wraps around the specified shape.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbWrapTypeMixed**|-1|Mixed|
| **pbWrapTypeNone**|0|None|
diff --git a/api/Publisher.PbZoom.md b/api/Publisher.PbZoom.md
index a2e77b788df..654a970b741 100644
--- a/api/Publisher.PbZoom.md
+++ b/api/Publisher.PbZoom.md
@@ -17,7 +17,7 @@ Indicates the zoom setting of the specified view.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbZoomFitSelection**|-3|Resizes the page view to the size of the current selection.|
| **pbZoomPageWidth**|-1|Resizes the page view to the width of the publication.|
diff --git a/api/Publisher.PhoneticGuide.BaseText.md b/api/Publisher.PhoneticGuide.BaseText.md
index d8ca7bd9266..ccbfa17893b 100644
--- a/api/Publisher.PhoneticGuide.BaseText.md
+++ b/api/Publisher.PhoneticGuide.BaseText.md
@@ -23,7 +23,7 @@ Returns a **String** that represents the text to which the specified phonetic t
_expression_ A variable that represents a **PhoneticGuide** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.PhoneticGuide.Raise.md b/api/Publisher.PhoneticGuide.Raise.md
index 27c928d451e..3d4d299dbae 100644
--- a/api/Publisher.PhoneticGuide.Raise.md
+++ b/api/Publisher.PhoneticGuide.Raise.md
@@ -23,7 +23,7 @@ Returns a **Variant** indicating the distance between the top of the base text
_expression_ A variable that represents a **PhoneticGuide** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PictureFormat.Brightness.md b/api/Publisher.PictureFormat.Brightness.md
index 18ee8fce7b1..3559f47f9d3 100644
--- a/api/Publisher.PictureFormat.Brightness.md
+++ b/api/Publisher.PictureFormat.Brightness.md
@@ -23,7 +23,7 @@ Returns or sets a **Single** indicating the brightness of the specified picture
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.PictureFormat.ColorModel.md b/api/Publisher.PictureFormat.ColorModel.md
index 07768ed48a7..9ef67a15727 100644
--- a/api/Publisher.PictureFormat.ColorModel.md
+++ b/api/Publisher.PictureFormat.ColorModel.md
@@ -23,7 +23,7 @@ Returns a **PbColorModel** constant that represents the color model of the pict
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
PbColorModel
diff --git a/api/Publisher.PictureFormat.ColorType.md b/api/Publisher.PictureFormat.ColorType.md
index 277b12d6b0e..bd929358b27 100644
--- a/api/Publisher.PictureFormat.ColorType.md
+++ b/api/Publisher.PictureFormat.ColorType.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoPictureColorType** constant indicating the type of colo
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
MsoPictureColorType
diff --git a/api/Publisher.PictureFormat.ColorsInPalette.md b/api/Publisher.PictureFormat.ColorsInPalette.md
index edc01ac4e08..62aaf9e63d3 100644
--- a/api/Publisher.PictureFormat.ColorsInPalette.md
+++ b/api/Publisher.PictureFormat.ColorsInPalette.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.PictureFormat.Contrast.md b/api/Publisher.PictureFormat.Contrast.md
index 515a7b0e873..e81b51c2998 100644
--- a/api/Publisher.PictureFormat.Contrast.md
+++ b/api/Publisher.PictureFormat.Contrast.md
@@ -23,7 +23,7 @@ Returns or sets a **Single** indicating the contrast for the specified picture
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.PictureFormat.CropBottom.md b/api/Publisher.PictureFormat.CropBottom.md
index 9b9854a72c5..2b7c40def87 100644
--- a/api/Publisher.PictureFormat.CropBottom.md
+++ b/api/Publisher.PictureFormat.CropBottom.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** indicating the amount by which the bottom edge of
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PictureFormat.CropLeft.md b/api/Publisher.PictureFormat.CropLeft.md
index f34cf1aacb0..a36446af885 100644
--- a/api/Publisher.PictureFormat.CropLeft.md
+++ b/api/Publisher.PictureFormat.CropLeft.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** indicating the amount by which the left edge of a
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PictureFormat.CropRight.md b/api/Publisher.PictureFormat.CropRight.md
index 347dc0e6534..d89d75ffb75 100644
--- a/api/Publisher.PictureFormat.CropRight.md
+++ b/api/Publisher.PictureFormat.CropRight.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** indicating the amount by which the right edge of
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PictureFormat.CropTop.md b/api/Publisher.PictureFormat.CropTop.md
index e30a00cabb6..44907ca37ef 100644
--- a/api/Publisher.PictureFormat.CropTop.md
+++ b/api/Publisher.PictureFormat.CropTop.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** indicating the amount by which the top edge of a
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PictureFormat.EffectiveResolution.md b/api/Publisher.PictureFormat.EffectiveResolution.md
index bd11c6b4300..02bcdbd2c6f 100644
--- a/api/Publisher.PictureFormat.EffectiveResolution.md
+++ b/api/Publisher.PictureFormat.EffectiveResolution.md
@@ -23,7 +23,7 @@ Returns a **Long** that represents, in dots per inch (dpi), the effective resol
_expression_ A variable that represents an **PictureFormat** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.PictureFormat.FileSize.md b/api/Publisher.PictureFormat.FileSize.md
index 49efb5a9afb..a188ebf18f0 100644
--- a/api/Publisher.PictureFormat.FileSize.md
+++ b/api/Publisher.PictureFormat.FileSize.md
@@ -23,7 +23,7 @@ Returns a **Long** that represents, in bytes, the size of the picture or OLE ob
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.PictureFormat.Filename.md b/api/Publisher.PictureFormat.Filename.md
index c16e545f24c..da57f0e8f60 100644
--- a/api/Publisher.PictureFormat.Filename.md
+++ b/api/Publisher.PictureFormat.Filename.md
@@ -23,7 +23,7 @@ Returns a **String** that represents the file name of the specified picture or
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.PictureFormat.HasAlphaChannel.md b/api/Publisher.PictureFormat.HasAlphaChannel.md
index ab78f73152b..b2f71841143 100644
--- a/api/Publisher.PictureFormat.HasAlphaChannel.md
+++ b/api/Publisher.PictureFormat.HasAlphaChannel.md
@@ -23,7 +23,7 @@ Returns an **MsoTriState** constant indicating whether the specified picture co
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.PictureFormat.HasTransparencyColor.md b/api/Publisher.PictureFormat.HasTransparencyColor.md
index 9b1ace09755..f62be007f04 100644
--- a/api/Publisher.PictureFormat.HasTransparencyColor.md
+++ b/api/Publisher.PictureFormat.HasTransparencyColor.md
@@ -23,7 +23,7 @@ Returns a **Boolean** that indicates whether a transparency color has been appl
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.PictureFormat.HorizontalPictureLocking.md b/api/Publisher.PictureFormat.HorizontalPictureLocking.md
index 228c5e024f3..177c33d1db1 100644
--- a/api/Publisher.PictureFormat.HorizontalPictureLocking.md
+++ b/api/Publisher.PictureFormat.HorizontalPictureLocking.md
@@ -23,7 +23,7 @@ Returns or sets a **PbHorizontalPictureLocking** constant indicating where newl
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
PbHorizontalPictureLocking
diff --git a/api/Publisher.PictureFormat.HorizontalScale.md b/api/Publisher.PictureFormat.HorizontalScale.md
index 4e2d62dc167..194f1f89db7 100644
--- a/api/Publisher.PictureFormat.HorizontalScale.md
+++ b/api/Publisher.PictureFormat.HorizontalScale.md
@@ -23,7 +23,7 @@ Returns a **Long** that represents the scaling of the picture along its horizon
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.PictureFormat.ImageFormat.md b/api/Publisher.PictureFormat.ImageFormat.md
index 62e87b54249..e37c09a39b9 100644
--- a/api/Publisher.PictureFormat.ImageFormat.md
+++ b/api/Publisher.PictureFormat.ImageFormat.md
@@ -23,7 +23,7 @@ Returns a **PbImageFormat** constant that represents the image format of a pict
_expression_ A variable that represents an **PictureFormat** object.
-### Return Value
+### Return value
PbImageFormat
diff --git a/api/Publisher.PictureFormat.IncrementBrightness.md b/api/Publisher.PictureFormat.IncrementBrightness.md
index 56337878380..c6c1acab4f8 100644
--- a/api/Publisher.PictureFormat.IncrementBrightness.md
+++ b/api/Publisher.PictureFormat.IncrementBrightness.md
@@ -27,7 +27,7 @@ Changes the brightness of the picture by the specified amount.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Increment|Required| **Single**|Specifies how much to change the value of the **[Brightness](Publisher.PictureFormat.Brightness.md)** property for the picture. A positive value makes the picture brighter; a negative value makes the picture darker. Valid values are between - 1 and 1.|
diff --git a/api/Publisher.PictureFormat.IncrementContrast.md b/api/Publisher.PictureFormat.IncrementContrast.md
index 2625f828789..90a711c80ee 100644
--- a/api/Publisher.PictureFormat.IncrementContrast.md
+++ b/api/Publisher.PictureFormat.IncrementContrast.md
@@ -27,7 +27,7 @@ Changes the contrast of the picture by the specified amount.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Increment|Required| **Single**|Specifies how much to change the value of the **[Contrast](Publisher.PictureFormat.Contrast.md)** property for the picture. A positive value increases the contrast; a negative value decreases the contrast. Valid values are between - 1 and 1.|
diff --git a/api/Publisher.PictureFormat.IsEmpty.md b/api/Publisher.PictureFormat.IsEmpty.md
index 98cf08a0002..0f531b4729b 100644
--- a/api/Publisher.PictureFormat.IsEmpty.md
+++ b/api/Publisher.PictureFormat.IsEmpty.md
@@ -23,7 +23,7 @@ Returns a **MsoTriState** constant that represents whether the specified shape
_expression_ A variable that represents an **PictureFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.PictureFormat.IsGreyScale.md b/api/Publisher.PictureFormat.IsGreyScale.md
index 2eafc9ee50d..ec1f15f4812 100644
--- a/api/Publisher.PictureFormat.IsGreyScale.md
+++ b/api/Publisher.PictureFormat.IsGreyScale.md
@@ -23,7 +23,7 @@ Returns a **MsoTriState** constant that indicates whether the picture is a grey
_expression_ A variable that represents an **PictureFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.PictureFormat.IsLinked.md b/api/Publisher.PictureFormat.IsLinked.md
index bff2b5016ba..322da7e9a40 100644
--- a/api/Publisher.PictureFormat.IsLinked.md
+++ b/api/Publisher.PictureFormat.IsLinked.md
@@ -23,7 +23,7 @@ Returns a **MsoTriState** constant indicating whether the specified picture is
_expression_ A variable that represents an **PictureFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.PictureFormat.IsRecolored.md b/api/Publisher.PictureFormat.IsRecolored.md
index e900fafb7e6..3c6c01dbee6 100644
--- a/api/Publisher.PictureFormat.IsRecolored.md
+++ b/api/Publisher.PictureFormat.IsRecolored.md
@@ -23,7 +23,7 @@ Returns **True** if the image represented by the parent **PictureFormat** objec
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.PictureFormat.IsTrueColor.md b/api/Publisher.PictureFormat.IsTrueColor.md
index 552f48ef596..288521ed4f6 100644
--- a/api/Publisher.PictureFormat.IsTrueColor.md
+++ b/api/Publisher.PictureFormat.IsTrueColor.md
@@ -23,7 +23,7 @@ Returns an **MsoTriState** constant indicating whether the specified picture or
_expression_ A variable that represents an **PictureFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.PictureFormat.LeaveBlackAsBlack.md b/api/Publisher.PictureFormat.LeaveBlackAsBlack.md
index e445fe1d3a7..88b561a7a60 100644
--- a/api/Publisher.PictureFormat.LeaveBlackAsBlack.md
+++ b/api/Publisher.PictureFormat.LeaveBlackAsBlack.md
@@ -23,7 +23,7 @@ Returns **True** if, when you recolor the image represented by the parent **Pic
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.PictureFormat.LinkedFileStatus.md b/api/Publisher.PictureFormat.LinkedFileStatus.md
index e0ff749a098..52fc194da71 100644
--- a/api/Publisher.PictureFormat.LinkedFileStatus.md
+++ b/api/Publisher.PictureFormat.LinkedFileStatus.md
@@ -23,7 +23,7 @@ Returns a **PbLinkedFileStatus** constant that indicates the status of the file
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
PbLinkedFileStatus
diff --git a/api/Publisher.PictureFormat.OffsetX.md b/api/Publisher.PictureFormat.OffsetX.md
index 96a99660a38..7b624a33458 100644
--- a/api/Publisher.PictureFormat.OffsetX.md
+++ b/api/Publisher.PictureFormat.OffsetX.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** value indicating the vertical offset of the shado
_expression_ A variable that represents an **ShadowFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PictureFormat.OffsetY.md b/api/Publisher.PictureFormat.OffsetY.md
index b850e6ab5c3..d6a2b4180b6 100644
--- a/api/Publisher.PictureFormat.OffsetY.md
+++ b/api/Publisher.PictureFormat.OffsetY.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** value indicating the horizontal offset of the sha
_expression_ A variable that represents an **ShadowFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PictureFormat.OriginalColorsInPalette.md b/api/Publisher.PictureFormat.OriginalColorsInPalette.md
index 00a2169792b..bcc3f2ad22a 100644
--- a/api/Publisher.PictureFormat.OriginalColorsInPalette.md
+++ b/api/Publisher.PictureFormat.OriginalColorsInPalette.md
@@ -23,7 +23,7 @@ Returns a **Long** that represents the number of colors in the specified linked
_expression_ A variable that represents an **PictureFormat** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.PictureFormat.OriginalHasAlphaChannel.md b/api/Publisher.PictureFormat.OriginalHasAlphaChannel.md
index f0fe9c5e6d7..bb328a80274 100644
--- a/api/Publisher.PictureFormat.OriginalHasAlphaChannel.md
+++ b/api/Publisher.PictureFormat.OriginalHasAlphaChannel.md
@@ -23,7 +23,7 @@ Returns an **MsoTriState** constant depending on whether the original, linked p
_expression_ A variable that represents an **PictureFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.PictureFormat.OriginalHeight.md b/api/Publisher.PictureFormat.OriginalHeight.md
index 27de7533083..c27cb882089 100644
--- a/api/Publisher.PictureFormat.OriginalHeight.md
+++ b/api/Publisher.PictureFormat.OriginalHeight.md
@@ -23,7 +23,7 @@ Returns a **Variant** representing the height, in points, of the specified link
_expression_ A variable that represents an **PictureFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PictureFormat.OriginalIsTrueColor.md b/api/Publisher.PictureFormat.OriginalIsTrueColor.md
index e3f9834ba76..c0ecbf4b87e 100644
--- a/api/Publisher.PictureFormat.OriginalIsTrueColor.md
+++ b/api/Publisher.PictureFormat.OriginalIsTrueColor.md
@@ -23,7 +23,7 @@ Returns an **MsoTriState** constant indicating whether the specified linked pic
_expression_ A variable that represents an **PictureFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.PictureFormat.OriginalResolution.md b/api/Publisher.PictureFormat.OriginalResolution.md
index 28c0614960d..88812717da8 100644
--- a/api/Publisher.PictureFormat.OriginalResolution.md
+++ b/api/Publisher.PictureFormat.OriginalResolution.md
@@ -23,7 +23,7 @@ Returns a **Long** that represents, in dots per inch (dpi), the resolution at w
_expression_ A variable that represents an **PictureFormat** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.PictureFormat.OriginalWidth.md b/api/Publisher.PictureFormat.OriginalWidth.md
index 9a4c5f63ef2..e44b775cd6d 100644
--- a/api/Publisher.PictureFormat.OriginalWidth.md
+++ b/api/Publisher.PictureFormat.OriginalWidth.md
@@ -23,7 +23,7 @@ Returns a **Variant** that represents, in points, the width of the specified li
_expression_ A variable that represents an **PictureFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.PictureFormat.Recolor.md b/api/Publisher.PictureFormat.Recolor.md
index e0e98bdc267..2cc8667a44b 100644
--- a/api/Publisher.PictureFormat.Recolor.md
+++ b/api/Publisher.PictureFormat.Recolor.md
@@ -27,7 +27,7 @@ Changes the color of a picture in a publication.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Color|Required| **ColorFormat**|The color to be used for recoloring.|
|LeaveBlackPartsBlack|Required| **MsoTriState**| **True** if all parts of the original picture that were black in color should be left black.|
diff --git a/api/Publisher.PictureFormat.RecoloredPictureColor.md b/api/Publisher.PictureFormat.RecoloredPictureColor.md
index 6039dd8ae50..b4f17b68260 100644
--- a/api/Publisher.PictureFormat.RecoloredPictureColor.md
+++ b/api/Publisher.PictureFormat.RecoloredPictureColor.md
@@ -23,7 +23,7 @@ Returns the color that has been applied to the image represented by the parent
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
ColorFormat
diff --git a/api/Publisher.PictureFormat.Replace.md b/api/Publisher.PictureFormat.Replace.md
index c315825f28c..4958692cd77 100644
--- a/api/Publisher.PictureFormat.Replace.md
+++ b/api/Publisher.PictureFormat.Replace.md
@@ -27,7 +27,7 @@ Replaces the specified picture. Returns **Nothing**.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Pathname|Required| **String**|The name and path of the file with which you want to replace the specified picture.|
|InsertAs|Optional| **PbPictureInsertAs**|The manner in which you want the picture file inserted into the document: linked or embedded.|
diff --git a/api/Publisher.PictureFormat.ReplaceEx.md b/api/Publisher.PictureFormat.ReplaceEx.md
index 94776e52226..5914940e155 100644
--- a/api/Publisher.PictureFormat.ReplaceEx.md
+++ b/api/Publisher.PictureFormat.ReplaceEx.md
@@ -27,7 +27,7 @@ Replaces the specified picture, optionally fitting the replacement picture to th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Pathname|Required| **String**|The name and path of the file with which you want to replace the specified picture.|
|InsertAs|Optional| **[PbPictureInsertAs](Publisher.PbPictureInsertAs.md)**|The manner in which you want the picture file inserted into the document: linked or embedded.|
diff --git a/api/Publisher.PictureFormat.TransparencyColor.md b/api/Publisher.PictureFormat.TransparencyColor.md
index e66afedcc41..653af6aef54 100644
--- a/api/Publisher.PictureFormat.TransparencyColor.md
+++ b/api/Publisher.PictureFormat.TransparencyColor.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoRGBType** constant that represents the transparency col
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
MsoRGBType
diff --git a/api/Publisher.PictureFormat.TransparentBackground.md b/api/Publisher.PictureFormat.TransparentBackground.md
index cee3351b732..c3cb8da1f70 100644
--- a/api/Publisher.PictureFormat.TransparentBackground.md
+++ b/api/Publisher.PictureFormat.TransparentBackground.md
@@ -23,7 +23,7 @@ Indicates whether the parts of the specified picture that are defined as the tra
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.PictureFormat.VerticalPictureLocking.md b/api/Publisher.PictureFormat.VerticalPictureLocking.md
index 01688f38c1b..ca53a7c2f8a 100644
--- a/api/Publisher.PictureFormat.VerticalPictureLocking.md
+++ b/api/Publisher.PictureFormat.VerticalPictureLocking.md
@@ -23,7 +23,7 @@ Returns or sets a **PbVerticalPictureLocking** constant indicating where newly
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
PbVerticalPictureLocking
diff --git a/api/Publisher.PictureFormat.VerticalScale.md b/api/Publisher.PictureFormat.VerticalScale.md
index 3c9724251ba..2bc76fb121a 100644
--- a/api/Publisher.PictureFormat.VerticalScale.md
+++ b/api/Publisher.PictureFormat.VerticalScale.md
@@ -23,7 +23,7 @@ Returns a **Long** that represents the scaling of the picture along its vertica
_expression_ A variable that represents a **PictureFormat** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.Plate.Delete.md b/api/Publisher.Plate.Delete.md
index 5444ea278d0..dcc35d12ba4 100644
--- a/api/Publisher.Plate.Delete.md
+++ b/api/Publisher.Plate.Delete.md
@@ -27,7 +27,7 @@ Deletes the specified plate.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PlateReplaceWith|Optional| **Variant**| **Plate**. The plate with which to replace the deleted plate.|
|ReplaceTint|Optional| **PbReplaceTint**|How to replace tints.|
diff --git a/api/Publisher.Plate.InUse.md b/api/Publisher.Plate.InUse.md
index 21d4d3d6287..b84c6b598b9 100644
--- a/api/Publisher.Plate.InUse.md
+++ b/api/Publisher.Plate.InUse.md
@@ -23,7 +23,7 @@ Returns **True** if the specified ink (represented by the plate) is used in the
_expression_ A variable that represents an **Plate** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Plate.Luminance.md b/api/Publisher.Plate.Luminance.md
index 8469498747b..56d1560529b 100644
--- a/api/Publisher.Plate.Luminance.md
+++ b/api/Publisher.Plate.Luminance.md
@@ -23,7 +23,7 @@ Returns or sets a **Long** indicating a calculated luminance value for the spec
_expression_ A variable that represents a **Plate** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.Plates.Add.md b/api/Publisher.Plates.Add.md
index 0614ea3b4ed..01ca61a1512 100644
--- a/api/Publisher.Plates.Add.md
+++ b/api/Publisher.Plates.Add.md
@@ -27,7 +27,7 @@ Adds a new color plate to the specified **Plates** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PlateColor|Optional| **ColorFormat**| **ColorFormat** object. The color settings to apply to the new plate.|
diff --git a/api/Publisher.Plates.FindPlateByInkName.md b/api/Publisher.Plates.FindPlateByInkName.md
index 758c0021068..ef9911ed6e5 100644
--- a/api/Publisher.Plates.FindPlateByInkName.md
+++ b/api/Publisher.Plates.FindPlateByInkName.md
@@ -27,11 +27,11 @@ Returns a **Plate** object that represents the plate of the specified ink name.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|InkName|Required| **PbInkName**|Specifies the plate to return.|
-### Return Value
+### Return value
Plate
diff --git a/api/Publisher.Plates.Item.md b/api/Publisher.Plates.Item.md
index d137c7dca9a..ce04fd9c477 100644
--- a/api/Publisher.Plates.Item.md
+++ b/api/Publisher.Plates.Item.md
@@ -27,7 +27,7 @@ Returns an individual object from a specified collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The number of the object to return.|
diff --git a/api/Publisher.Printer.Application.md b/api/Publisher.Printer.Application.md
index 47715f77cbc..82aa21f0f1a 100644
--- a/api/Publisher.Printer.Application.md
+++ b/api/Publisher.Printer.Application.md
@@ -23,7 +23,7 @@ Returns an **Application** object that represents the creator of the parent **P
_expression_ A variable that represents a **Printer** object.
-### Return Value
+### Return value
Application
diff --git a/api/Publisher.Printer.DriverType.md b/api/Publisher.Printer.DriverType.md
index 5795c725e3f..f6333801bd4 100644
--- a/api/Publisher.Printer.DriverType.md
+++ b/api/Publisher.Printer.DriverType.md
@@ -23,7 +23,7 @@ Specifies the type of driver supported by the printer. Read-only.
_expression_ A variable that represents a **Printer** object.
-### Return Value
+### Return value
**PbDriverType**
diff --git a/api/Publisher.Printer.Index.md b/api/Publisher.Printer.Index.md
index d45d21de933..d8f65965887 100644
--- a/api/Publisher.Printer.Index.md
+++ b/api/Publisher.Printer.Index.md
@@ -23,7 +23,7 @@ Returns a **Long** that represents the position of a particular printer in a sp
_expression_ A variable that represents a **Printer** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.Printer.IsActivePrinter.md b/api/Publisher.Printer.IsActivePrinter.md
index bd8fb46b83a..314461335cf 100644
--- a/api/Publisher.Printer.IsActivePrinter.md
+++ b/api/Publisher.Printer.IsActivePrinter.md
@@ -23,7 +23,7 @@ Gets or sets the printer represented by the parent **[Printer](Publisher.Printe
_expression_ A variable that represents a **Printer** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Printer.IsColor.md b/api/Publisher.Printer.IsColor.md
index 0e447eb7069..08f4c5bc74c 100644
--- a/api/Publisher.Printer.IsColor.md
+++ b/api/Publisher.Printer.IsColor.md
@@ -23,7 +23,7 @@ Returns **True** if the device represented by the parent **Printer** object is
_expression_ A variable that represents a **Printer** object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Publisher.Printer.IsDuplex.md b/api/Publisher.Printer.IsDuplex.md
index 90e04b2fab3..c489d69e444 100644
--- a/api/Publisher.Printer.IsDuplex.md
+++ b/api/Publisher.Printer.IsDuplex.md
@@ -23,7 +23,7 @@ Returns **True** if the device represented by the parent **Printer** object is
_expression_ A variable that represents a **Printer** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Printer.PaperHeight.md b/api/Publisher.Printer.PaperHeight.md
index 9672dc5f60a..ed24076248c 100644
--- a/api/Publisher.Printer.PaperHeight.md
+++ b/api/Publisher.Printer.PaperHeight.md
@@ -23,7 +23,7 @@ Gets or sets the height of the printed page in points. Read/write.
_expression_ A variable that represents a **Printer** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.Printer.PaperOrientation.md b/api/Publisher.Printer.PaperOrientation.md
index 4241804617e..708a8323e6a 100644
--- a/api/Publisher.Printer.PaperOrientation.md
+++ b/api/Publisher.Printer.PaperOrientation.md
@@ -23,7 +23,7 @@ Gets or sets page orientation (landscape or portrait) for the printer. Read/writ
_expression_ A variable that represents a **Printer** object.
-### Return Value
+### Return value
PbOrientationType
diff --git a/api/Publisher.Printer.PaperSize.md b/api/Publisher.Printer.PaperSize.md
index dd8d2a912ea..4b879b20880 100644
--- a/api/Publisher.Printer.PaperSize.md
+++ b/api/Publisher.Printer.PaperSize.md
@@ -23,7 +23,7 @@ Returns the paper size setting found on the **Publication and Paper Settings**
_expression_ A variable that represents a **Printer** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Printer.PaperSource.md b/api/Publisher.Printer.PaperSource.md
index 70975a8be54..eeb41de9525 100644
--- a/api/Publisher.Printer.PaperSource.md
+++ b/api/Publisher.Printer.PaperSource.md
@@ -23,7 +23,7 @@ Returns the paper source setting found on the **Publication and Paper Settings*
_expression_ A variable that represents a **Printer** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Printer.PaperWidth.md b/api/Publisher.Printer.PaperWidth.md
index f134a43ca83..2ecd0598c4d 100644
--- a/api/Publisher.Printer.PaperWidth.md
+++ b/api/Publisher.Printer.PaperWidth.md
@@ -23,7 +23,7 @@ Gets or sets the width of a printed page in points. Read/write.
_expression_ A variable that represents a **Printer** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.Printer.Parent.md b/api/Publisher.Printer.Parent.md
index f4df7e21e7f..c9e916f67d0 100644
--- a/api/Publisher.Printer.Parent.md
+++ b/api/Publisher.Printer.Parent.md
@@ -23,7 +23,7 @@ Returns the parent of the **[Printer](Publisher.Printer.md)** object. Read-only
_expression_ A variable that represents a **Printer** object.
-### Return Value
+### Return value
Object
diff --git a/api/Publisher.Printer.PrintableRect.md b/api/Publisher.Printer.PrintableRect.md
index 41430dcef00..5000ec0dd14 100644
--- a/api/Publisher.Printer.PrintableRect.md
+++ b/api/Publisher.Printer.PrintableRect.md
@@ -23,7 +23,7 @@ Returns a **[PrintableRect](Publisher.PrintableRect.md)** object that represent
_expression_ A variable that represents a **Printer** object.
-### Return Value
+### Return value
PrintableRect
diff --git a/api/Publisher.Printer.Printer.PrintMode.md b/api/Publisher.Printer.Printer.PrintMode.md
index 2cda0c66edf..ad644dc5055 100644
--- a/api/Publisher.Printer.Printer.PrintMode.md
+++ b/api/Publisher.Printer.Printer.PrintMode.md
@@ -23,7 +23,7 @@ Read/write
_expression_An expression that returns a **[Printer](Publisher.Printer.md)** object.
-### Return Value
+### Return value
PbPrintMode
diff --git a/api/Publisher.Printer.PrinterName.md b/api/Publisher.Printer.PrinterName.md
index 1880ace8e62..0c1d8f2cd6c 100644
--- a/api/Publisher.Printer.PrinterName.md
+++ b/api/Publisher.Printer.PrinterName.md
@@ -23,7 +23,7 @@ Gets the name of the printer represented by the parent **Printer** object. Read
_expression_ A variable that represents a **Printer** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.ReaderSpread.PageCount.md b/api/Publisher.ReaderSpread.PageCount.md
index c7311dc8402..647f361d50e 100644
--- a/api/Publisher.ReaderSpread.PageCount.md
+++ b/api/Publisher.ReaderSpread.PageCount.md
@@ -23,7 +23,7 @@ Returns a **Long** indicating the number of pages in the specified reader sprea
_expression_ A variable that represents a **ReaderSpread** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.ReaderSpread.Pages.md b/api/Publisher.ReaderSpread.Pages.md
index e79caff812e..633084cbb5a 100644
--- a/api/Publisher.ReaderSpread.Pages.md
+++ b/api/Publisher.ReaderSpread.Pages.md
@@ -27,7 +27,7 @@ Returns a **[Page](Publisher.Page.md)** object representing one of the pages th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The page from the reader spread to return. Can be either 1 or 2.|
diff --git a/api/Publisher.Rows.Add.md b/api/Publisher.Rows.Add.md
index 4701bf973d5..005ccfbf111 100644
--- a/api/Publisher.Rows.Add.md
+++ b/api/Publisher.Rows.Add.md
@@ -27,11 +27,11 @@ Adds a new **Row** object to the specified **Rows** collection and returns the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|BeforeRow|Optional| **Long**|The number of the row before which to insert the new row. If this argument is omitted, the new row is added after the existing rows. An error occurs if the value of this argument does not correspond to an existing row in the table.|
-### Return Value
+### Return value
Row
diff --git a/api/Publisher.Rows.Item.md b/api/Publisher.Rows.Item.md
index af51b2338bf..f80f58dcc41 100644
--- a/api/Publisher.Rows.Item.md
+++ b/api/Publisher.Rows.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The number of the object to return.|
-### Return Value
+### Return value
Row
diff --git a/api/Publisher.RulerGuides.Add.md b/api/Publisher.RulerGuides.Add.md
index 07f4f6fc797..f1dffb5842c 100644
--- a/api/Publisher.RulerGuides.Add.md
+++ b/api/Publisher.RulerGuides.Add.md
@@ -27,7 +27,7 @@ Adds a new ruler guide to the specified **RulerGuides** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Position|Required| **Variant**|The position relative to the left edge or top edge of the page where the new ruler guide will be added. Numeric values are evaluated in points; strings are evaluated in the units specified and can be in any measurement unit supported by Microsoft Publisher (for example, "2.5 in").|
|Type|Required| **PbRulerGuideType**|The type of ruler guide to add.|
diff --git a/api/Publisher.RulerGuides.Item.md b/api/Publisher.RulerGuides.Item.md
index 75645037fc7..b9c74db1537 100644
--- a/api/Publisher.RulerGuides.Item.md
+++ b/api/Publisher.RulerGuides.Item.md
@@ -27,7 +27,7 @@ Returns an individual object from a specified collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Item|Required| **Long**|The number of the object to return.|
diff --git a/api/Publisher.Section.ContinueNumbersFromPreviousSection.md b/api/Publisher.Section.ContinueNumbersFromPreviousSection.md
index 3d2abde9395..47dd6f17054 100644
--- a/api/Publisher.Section.ContinueNumbersFromPreviousSection.md
+++ b/api/Publisher.Section.ContinueNumbersFromPreviousSection.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **Section** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Section.PageNumberFormat.md b/api/Publisher.Section.PageNumberFormat.md
index eceb63b0f79..5719e7567d8 100644
--- a/api/Publisher.Section.PageNumberFormat.md
+++ b/api/Publisher.Section.PageNumberFormat.md
@@ -23,7 +23,7 @@ Sets or returns a **PbPageNumberFormat** constant that reperesents the formatti
_expression_ A variable that represents a **Section** object.
-### Return Value
+### Return value
PbPageNumberFormat
diff --git a/api/Publisher.Section.PageNumberStart.md b/api/Publisher.Section.PageNumberStart.md
index 2f49aa9810c..179830b920b 100644
--- a/api/Publisher.Section.PageNumberStart.md
+++ b/api/Publisher.Section.PageNumberStart.md
@@ -23,7 +23,7 @@ Sets or returns the page number that the specified section starts with. Read/wri
_expression_ A variable that represents a **Section** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.Section.ShowHeaderFooterOnFirstPage.md b/api/Publisher.Section.ShowHeaderFooterOnFirstPage.md
index 8c13ff29f2d..a480ffee3e0 100644
--- a/api/Publisher.Section.ShowHeaderFooterOnFirstPage.md
+++ b/api/Publisher.Section.ShowHeaderFooterOnFirstPage.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **Section** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Section.StartPageIndex.md b/api/Publisher.Section.StartPageIndex.md
index ff6a94563a8..bcd3c6c4b82 100644
--- a/api/Publisher.Section.StartPageIndex.md
+++ b/api/Publisher.Section.StartPageIndex.md
@@ -23,7 +23,7 @@ Returns the page number of the page that the specified **Section** object begin
_expression_ A variable that represents a **Section** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.Sections.Add.md b/api/Publisher.Sections.Add.md
index 83b6584e2f1..a4f80972074 100644
--- a/api/Publisher.Sections.Add.md
+++ b/api/Publisher.Sections.Add.md
@@ -27,11 +27,11 @@ Adds a new **Section** object to the specified **Sections** collection and retu
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|StartPageIndex|Required| **Long**|The page number of the publication page that the new section begins on.|
-### Return Value
+### Return value
Section
diff --git a/api/Publisher.Sections.Item.md b/api/Publisher.Sections.Item.md
index cf4cf6bd73c..4c6c07f6acb 100644
--- a/api/Publisher.Sections.Item.md
+++ b/api/Publisher.Sections.Item.md
@@ -27,7 +27,7 @@ Returns an individual object from a specified collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The number of the object to return.|
diff --git a/api/Publisher.Selection.ChildShapeRange.md b/api/Publisher.Selection.ChildShapeRange.md
index 71a7bdf3830..7ae91ce309b 100644
--- a/api/Publisher.Selection.ChildShapeRange.md
+++ b/api/Publisher.Selection.ChildShapeRange.md
@@ -23,7 +23,7 @@ Returns a **[ShapeRange](Publisher.ShapeRange.md)** object representing the chi
_expression_ A variable that represents a **Selection** object.
-### Return Value
+### Return value
ShapeRange
diff --git a/api/Publisher.Selection.ShapeRange.md b/api/Publisher.Selection.ShapeRange.md
index 87eed75d611..4618f1d6025 100644
--- a/api/Publisher.Selection.ShapeRange.md
+++ b/api/Publisher.Selection.ShapeRange.md
@@ -23,7 +23,7 @@ Returns a **[ShapeRange](Publisher.ShapeRange.md)** collection that represents
_expression_ A variable that represents a **Selection** object.
-### Return Value
+### Return value
ShapeRange
diff --git a/api/Publisher.Selection.TableCellRange.md b/api/Publisher.Selection.TableCellRange.md
index 91b281cce62..c7f85d431b1 100644
--- a/api/Publisher.Selection.TableCellRange.md
+++ b/api/Publisher.Selection.TableCellRange.md
@@ -23,7 +23,7 @@ Returns a **CellRange** object that represents the cells in a table selection.
_expression_ A variable that represents a **Selection** object.
-### Return Value
+### Return value
CellRange
diff --git a/api/Publisher.ShadowFormat.IncrementOffsetX.md b/api/Publisher.ShadowFormat.IncrementOffsetX.md
index 526550aaa02..5421a87146c 100644
--- a/api/Publisher.ShadowFormat.IncrementOffsetX.md
+++ b/api/Publisher.ShadowFormat.IncrementOffsetX.md
@@ -27,7 +27,7 @@ Incrementally changes the horizontal offset of the shadow by the specified dista
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Increment|Required| **Variant**|Specifies how far the shadow offset is to be moved horizontally. A positive value moves the shadow to the right; a negative value moves it to the left. Numeric values are evaluated in points; strings can be in any units supported by Microsoft Publisher (for example, "2.5 in").|
diff --git a/api/Publisher.ShadowFormat.IncrementOffsetY.md b/api/Publisher.ShadowFormat.IncrementOffsetY.md
index 0306aaa5ff6..b82a2d30f91 100644
--- a/api/Publisher.ShadowFormat.IncrementOffsetY.md
+++ b/api/Publisher.ShadowFormat.IncrementOffsetY.md
@@ -27,7 +27,7 @@ Incrementally changes the vertical offset of the shadow by the specified distanc
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Increment|Required| **Variant**|Specifies how far the shadow offset is to be moved vertically. A positive value moves the shadow down; a negative value moves it up. Numeric values are evaluated in points; strings can be in any units supported by Microsoft Publisher (for example, "2.5 in").|
diff --git a/api/Publisher.ShadowFormat.Obscured.md b/api/Publisher.ShadowFormat.Obscured.md
index d72025f371f..3a946d67537 100644
--- a/api/Publisher.ShadowFormat.Obscured.md
+++ b/api/Publisher.ShadowFormat.Obscured.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState** value indicating whether the shadow of the s
_expression_ A variable that represents an **ShadowFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.Shape.AddToCatalogMergeArea.md b/api/Publisher.Shape.AddToCatalogMergeArea.md
index 61bdcd8dbc1..1ab26ba95d5 100644
--- a/api/Publisher.Shape.AddToCatalogMergeArea.md
+++ b/api/Publisher.Shape.AddToCatalogMergeArea.md
@@ -23,7 +23,7 @@ Adds the specified shape or shapes to the publication page's catalog merge area.
_expression_ A variable that represents a **Shape** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.Shape.Apply.md b/api/Publisher.Shape.Apply.md
index f18e3488e97..7fcd1011207 100644
--- a/api/Publisher.Shape.Apply.md
+++ b/api/Publisher.Shape.Apply.md
@@ -23,7 +23,7 @@ Applies formatting copied from another shape or shape range using the **[PickUp
_expression_ A variable that represents a **Shape** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.Shape.BorderArt.md b/api/Publisher.Shape.BorderArt.md
index f79e1432ba8..8fee31f7e8b 100644
--- a/api/Publisher.Shape.BorderArt.md
+++ b/api/Publisher.Shape.BorderArt.md
@@ -23,7 +23,7 @@ Returns a **[BorderArtFormat](Publisher.BorderArtFormat.md)** object that repre
_expression_ A variable that represents a **Shape** object.
-### Return Value
+### Return value
BorderArtFormat
diff --git a/api/Publisher.Shape.CatalogMergeItems.md b/api/Publisher.Shape.CatalogMergeItems.md
index 5daa4bb81de..e1427ea6ead 100644
--- a/api/Publisher.Shape.CatalogMergeItems.md
+++ b/api/Publisher.Shape.CatalogMergeItems.md
@@ -23,7 +23,7 @@ Returns a **CatalogMergeShapes** collection that represents the shapes included
_expression_ A variable that represents a **Shape** object.
-### Return Value
+### Return value
CatalogMergeShapes
diff --git a/api/Publisher.Shape.Duplicate.md b/api/Publisher.Shape.Duplicate.md
index f71ef54ffc3..2823ad0cecc 100644
--- a/api/Publisher.Shape.Duplicate.md
+++ b/api/Publisher.Shape.Duplicate.md
@@ -23,7 +23,7 @@ Creates a duplicate of the specified **[Shape](Publisher.Shape.md)** or **[Shap
_expression_ A variable that represents a **Shape** object.
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shape.Flip.md b/api/Publisher.Shape.Flip.md
index ce5bc36fe1d..d3f2c2f13f0 100644
--- a/api/Publisher.Shape.Flip.md
+++ b/api/Publisher.Shape.Flip.md
@@ -27,11 +27,11 @@ Flips the specified shape around its horizontal or vertical axis, or flips all t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|FlipCmd|Required| **MsoFlipCmd**| Specifies whether the shape is flipped horizontally or vertically.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.Shape.GetHeight.md b/api/Publisher.Shape.GetHeight.md
index ed4b0b1d5bd..d8391a51a37 100644
--- a/api/Publisher.Shape.GetHeight.md
+++ b/api/Publisher.Shape.GetHeight.md
@@ -27,11 +27,11 @@ Returns the height of the shape or shape range as a **Single** in the specified
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Unit|Required| **PbUnitType**|The units in which to return the height.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Shape.GetLeft.md b/api/Publisher.Shape.GetLeft.md
index 703f5054cc9..ca7a5422ddb 100644
--- a/api/Publisher.Shape.GetLeft.md
+++ b/api/Publisher.Shape.GetLeft.md
@@ -27,11 +27,11 @@ Returns the distance of the shape's or shape range's left edge from the left edg
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Unit|Required| **PbUnitType**|The units in which to return the distance.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Shape.GetTop.md b/api/Publisher.Shape.GetTop.md
index e85015b5f32..92b7431974a 100644
--- a/api/Publisher.Shape.GetTop.md
+++ b/api/Publisher.Shape.GetTop.md
@@ -27,11 +27,11 @@ Returns the distance of the shape's or shape range's top edge from the top edge
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Unit|Required| **PbUnitType**|The units in which to return the distance.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Shape.GetWidth.md b/api/Publisher.Shape.GetWidth.md
index 323ecbe09ff..0a9dbe80238 100644
--- a/api/Publisher.Shape.GetWidth.md
+++ b/api/Publisher.Shape.GetWidth.md
@@ -27,11 +27,11 @@ Returns the width of the shape or shape range as a **Single** in the specified
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Unit|Required| **PbUnitType**|The units in which to return the width.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.Shape.IncrementLeft.md b/api/Publisher.Shape.IncrementLeft.md
index 405bc377c46..0078a321977 100644
--- a/api/Publisher.Shape.IncrementLeft.md
+++ b/api/Publisher.Shape.IncrementLeft.md
@@ -27,11 +27,11 @@ Moves the specified shape or shape range horizontally by the specified distance.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Increment|Required| **Variant**|The horizontal distance to move the shape or shape range. A positive value moves the shape or shape range to the right; a negative value moves it to the left. Numeric values are evaluated in points; strings can be in any units supported by Microsoft Publisher (for example, "2.5 in").|
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.Shape.IncrementRotation.md b/api/Publisher.Shape.IncrementRotation.md
index d37d4d47a06..7420ac65b29 100644
--- a/api/Publisher.Shape.IncrementRotation.md
+++ b/api/Publisher.Shape.IncrementRotation.md
@@ -27,11 +27,11 @@ Changes the rotation of the specified shape around the z-axis (extends outward f
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Increment|Required| **Single**|Specifies how far the shape is to be rotated around the z-axis, in degrees. A positive value rotates the shape clockwise; a negative value rotates it counterclockwise. Valid values are between - 360 and 360.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.Shape.IncrementTop.md b/api/Publisher.Shape.IncrementTop.md
index d062a34ff14..ead8607c1fb 100644
--- a/api/Publisher.Shape.IncrementTop.md
+++ b/api/Publisher.Shape.IncrementTop.md
@@ -27,7 +27,7 @@ Moves the specified shape or shape range vertically by the specified distance.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Increment|Required| **Variant**|The vertical distance to move the shape or shape range. A positive value moves the shape or shape range down; a negative value moves it up. Numeric values are evaluated in points; strings can be in any units supported by Microsoft Publisher (for example, "2.5 in").|
diff --git a/api/Publisher.Shape.IsExcess.md b/api/Publisher.Shape.IsExcess.md
index 614c033e476..51e1b800322 100644
--- a/api/Publisher.Shape.IsExcess.md
+++ b/api/Publisher.Shape.IsExcess.md
@@ -23,7 +23,7 @@ Indicates whether the parent **Shape** object is an excess shape after the docu
_expression_ A variable that represents a **Shape** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.Shape.IsGroupMember.md b/api/Publisher.Shape.IsGroupMember.md
index 24cd07a5401..3cc3e02610f 100644
--- a/api/Publisher.Shape.IsGroupMember.md
+++ b/api/Publisher.Shape.IsGroupMember.md
@@ -23,7 +23,7 @@ Returns **True** if the specified shape is a member of a group, **False** other
_expression_ A variable that represents an **Shape** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Shape.MoveIntoTextFlow.md b/api/Publisher.Shape.MoveIntoTextFlow.md
index 2969bb2765d..f988c1e3a81 100644
--- a/api/Publisher.Shape.MoveIntoTextFlow.md
+++ b/api/Publisher.Shape.MoveIntoTextFlow.md
@@ -27,11 +27,11 @@ Moves a given shape into the text flow defined by ** [TextRange Object](Publish
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Range|Required| **TextRange**|The range of text before which the given shape is inserted.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.Shape.MoveToPage.md b/api/Publisher.Shape.MoveToPage.md
index 2996b91b0e4..7784acca122 100644
--- a/api/Publisher.Shape.MoveToPage.md
+++ b/api/Publisher.Shape.MoveToPage.md
@@ -27,7 +27,7 @@ Moves a shape to the specified page.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Page|Required| **Long**|Page to which the shape should be moved.|
|Left|Optional| **Variant**|Left position of the shape on the page.|
diff --git a/api/Publisher.Shape.ParentGroupShape.md b/api/Publisher.Shape.ParentGroupShape.md
index 2fc487d22ba..511cf787404 100644
--- a/api/Publisher.Shape.ParentGroupShape.md
+++ b/api/Publisher.Shape.ParentGroupShape.md
@@ -23,7 +23,7 @@ Returns a **[Shape](Publisher.Shape.md)** object that represents the common par
_expression_ A variable that represents a **Shape** object.
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shape.PickUp.md b/api/Publisher.Shape.PickUp.md
index eb05122d4c8..5d7f050d75d 100644
--- a/api/Publisher.Shape.PickUp.md
+++ b/api/Publisher.Shape.PickUp.md
@@ -23,7 +23,7 @@ Copies formatting from a shape or shape range so that it can be copied to anothe
_expression_ A variable that represents a **Shape** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.Shape.RemoveFromCatalogMergeArea.md b/api/Publisher.Shape.RemoveFromCatalogMergeArea.md
index e5c47bf7102..c7fe5dcdd2e 100644
--- a/api/Publisher.Shape.RemoveFromCatalogMergeArea.md
+++ b/api/Publisher.Shape.RemoveFromCatalogMergeArea.md
@@ -23,7 +23,7 @@ Removes a shape from the specified page's catalog merge area. Removed shapes are
_expression_ A variable that represents a **Shape** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.Shape.SaveAsPicture.md b/api/Publisher.Shape.SaveAsPicture.md
index 8f73051e356..c7f0ebae3ba 100644
--- a/api/Publisher.Shape.SaveAsPicture.md
+++ b/api/Publisher.Shape.SaveAsPicture.md
@@ -27,7 +27,7 @@ Saves a single shape as a picture file.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Filename|Required| **String**|The path and file name of the new picture file you want to create. The graphics format the picture is saved in is determined by the file name extension (such as .jpg or .gif) you specify.|
|pbResolution|Optional| **PbPictureResolution**|The resolution in which you want the picture to be saved. See Remarks for possible values.|
diff --git a/api/Publisher.Shape.ScaleHeight.md b/api/Publisher.Shape.ScaleHeight.md
index 438b6c61ac8..fa625ba0f14 100644
--- a/api/Publisher.Shape.ScaleHeight.md
+++ b/api/Publisher.Shape.ScaleHeight.md
@@ -27,7 +27,7 @@ Scales the height of the shape by a specified factor. For pictures and OLE objec
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Factor|Required| **Single**|Specifies the ratio between the height of the shape after you resize it and the current or original height. For example, to make a rectangle 50 percent larger, specify 1.5 for this argument.|
|RelativeToOriginalSize|Required| **MsoTriState**|Specifies whether to scale relative to the object's original or current size.|
diff --git a/api/Publisher.Shape.ScaleWidth.md b/api/Publisher.Shape.ScaleWidth.md
index 1bd8b67a70d..95262aa3ba4 100644
--- a/api/Publisher.Shape.ScaleWidth.md
+++ b/api/Publisher.Shape.ScaleWidth.md
@@ -27,7 +27,7 @@ Scales the width of the shape by a specified factor. For pictures and OLE object
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Factor|Required| **Single**|Specifies the ratio between the width of the shape after you resize it and the current or original width. For example, to make a rectangle 50 percent larger, specify 1.5 for this argument.|
|RelativeToOriginalSize|Required| **MsoTristate**| Specifies whether to scale relative to the object's original or current size.|
diff --git a/api/Publisher.Shape.Select.md b/api/Publisher.Shape.Select.md
index 82dcd5c0820..9b62c86c0eb 100644
--- a/api/Publisher.Shape.Select.md
+++ b/api/Publisher.Shape.Select.md
@@ -27,7 +27,7 @@ Selects the specified object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Replace|Optional| **Variant**|Specifies whether the selection replaces any previous selection. **True** to replace the previous selection with the new selection; **False** to add the new selection to the previous selection. Default is **True**.|
diff --git a/api/Publisher.Shape.Ungroup.md b/api/Publisher.Shape.Ungroup.md
index c655eae941b..ee01d8fb634 100644
--- a/api/Publisher.Shape.Ungroup.md
+++ b/api/Publisher.Shape.Ungroup.md
@@ -23,7 +23,7 @@ Ungroups the specified group of shapes or any groups of shapes in the specified
_expression_ A variable that represents a **Shape** object.
-### Return Value
+### Return value
ShapeRange
diff --git a/api/Publisher.Shape.WebCheckBox.md b/api/Publisher.Shape.WebCheckBox.md
index 6be2f7f4550..ec10ad46fa2 100644
--- a/api/Publisher.Shape.WebCheckBox.md
+++ b/api/Publisher.Shape.WebCheckBox.md
@@ -23,7 +23,7 @@ Returns the **[WebCheckBox](Publisher.WebCheckBox.md)** object associated with
_expression_ A variable that represents a **Shape** object.
-### Return Value
+### Return value
WebCheckBox
diff --git a/api/Publisher.Shape.WebCommandButton.md b/api/Publisher.Shape.WebCommandButton.md
index 626e6238155..2995f3e4b54 100644
--- a/api/Publisher.Shape.WebCommandButton.md
+++ b/api/Publisher.Shape.WebCommandButton.md
@@ -23,7 +23,7 @@ Returns the **[WebCommandButton](Publisher.WebCommandButton.md)** object associ
_expression_ A variable that represents a **Shape** object.
-### Return Value
+### Return value
WebCommandButton
diff --git a/api/Publisher.Shape.WebListBox.md b/api/Publisher.Shape.WebListBox.md
index 0c81d97d185..46ac6e1f3f8 100644
--- a/api/Publisher.Shape.WebListBox.md
+++ b/api/Publisher.Shape.WebListBox.md
@@ -23,7 +23,7 @@ Returns the **[WebListBox](Publisher.WebListBox.md)** object associated with th
_expression_ A variable that represents a **Shape** object.
-### Return Value
+### Return value
WebListBox
diff --git a/api/Publisher.Shape.WebNavigationBarSetName.md b/api/Publisher.Shape.WebNavigationBarSetName.md
index 03588afa69c..e88b60c57cf 100644
--- a/api/Publisher.Shape.WebNavigationBarSetName.md
+++ b/api/Publisher.Shape.WebNavigationBarSetName.md
@@ -23,7 +23,7 @@ Returns a **String** that represents the name of the Web navigation bar set the
_expression_ A variable that represents a **Shape** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Shape.WebOptionButton.md b/api/Publisher.Shape.WebOptionButton.md
index a2f36b3c8a1..f4029a6b727 100644
--- a/api/Publisher.Shape.WebOptionButton.md
+++ b/api/Publisher.Shape.WebOptionButton.md
@@ -23,7 +23,7 @@ Returns the **[WebOptionButton](Publisher.WebOptionButton.md)** object associat
_expression_ A variable that represents a **Shape** object.
-### Return Value
+### Return value
WebOptionButton
diff --git a/api/Publisher.Shape.WebTextBox.md b/api/Publisher.Shape.WebTextBox.md
index 19580146e70..5b294b3a0f9 100644
--- a/api/Publisher.Shape.WebTextBox.md
+++ b/api/Publisher.Shape.WebTextBox.md
@@ -23,7 +23,7 @@ Returns the **[WebTextBox](Publisher.WebTextBox.md)** object associated with th
_expression_ A variable that represents a **Shape** object.
-### Return Value
+### Return value
WebTextBox
diff --git a/api/Publisher.Shape.ZOrder.md b/api/Publisher.Shape.ZOrder.md
index b3cd57f530f..7432edc8cbb 100644
--- a/api/Publisher.Shape.ZOrder.md
+++ b/api/Publisher.Shape.ZOrder.md
@@ -27,11 +27,11 @@ Moves the specified shape in front of or behind other shapes in the collection (
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ZOrderCmd|Required| **MsoZOrderCmd**|Specifies where to move the specified shape relative to the other shapes.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.ShapeNode.EditingType.md b/api/Publisher.ShapeNode.EditingType.md
index 9b272225326..cb813cdd08c 100644
--- a/api/Publisher.ShapeNode.EditingType.md
+++ b/api/Publisher.ShapeNode.EditingType.md
@@ -23,7 +23,7 @@ If the specified node is a vertex, this property returns an **MsoEditingType**
_expression_ A variable that represents an **ShapeNode** object.
-### Return Value
+### Return value
MsoEditingType
diff --git a/api/Publisher.ShapeNode.SegmentType.md b/api/Publisher.ShapeNode.SegmentType.md
index 1fcc2753a59..0c0187bef84 100644
--- a/api/Publisher.ShapeNode.SegmentType.md
+++ b/api/Publisher.ShapeNode.SegmentType.md
@@ -23,7 +23,7 @@ Returns an **MsoSegmentType** constant that indicates whether the segment assoc
_expression_ A variable that represents a **ShapeNode** object.
-### Return Value
+### Return value
MsoSegmentType
diff --git a/api/Publisher.ShapeNodes.Delete.md b/api/Publisher.ShapeNodes.Delete.md
index 1a477ea52c2..0fbfefe3b1f 100644
--- a/api/Publisher.ShapeNodes.Delete.md
+++ b/api/Publisher.ShapeNodes.Delete.md
@@ -27,7 +27,7 @@ Deletes the specified shape node object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **[INT]**| **Long**. The number of the shape node to delete.|
diff --git a/api/Publisher.ShapeNodes.Insert.md b/api/Publisher.ShapeNodes.Insert.md
index d6ad87aca5c..0255bed22d0 100644
--- a/api/Publisher.ShapeNodes.Insert.md
+++ b/api/Publisher.ShapeNodes.Insert.md
@@ -27,7 +27,7 @@ Inserts a new segment after the specified node of the freeform drawing.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The number of the node after which the new node is to be inserted.|
|SegmentType|Required| **MsoSegmentType**|The type of segment to be added.|
diff --git a/api/Publisher.ShapeNodes.Item.md b/api/Publisher.ShapeNodes.Item.md
index 196e22262e7..9ea71353388 100644
--- a/api/Publisher.ShapeNodes.Item.md
+++ b/api/Publisher.ShapeNodes.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The number or name of the field or list box item to return.|
-### Return Value
+### Return value
ShapeNode
diff --git a/api/Publisher.ShapeNodes.SetEditingType.md b/api/Publisher.ShapeNodes.SetEditingType.md
index aa7e1b1b23f..9e5493133be 100644
--- a/api/Publisher.ShapeNodes.SetEditingType.md
+++ b/api/Publisher.ShapeNodes.SetEditingType.md
@@ -27,7 +27,7 @@ Sets the editing type of the specified node. If the node is a control point for
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The node whose editing type is to be set. Must be a number from 1 to the number of nodes in the specified shape; otherwise, an error occurs.|
|EditingType|Required| **MsoEditingType**|The editing property of the node.|
diff --git a/api/Publisher.ShapeNodes.SetPosition.md b/api/Publisher.ShapeNodes.SetPosition.md
index 942fdd86aee..2fd079025e6 100644
--- a/api/Publisher.ShapeNodes.SetPosition.md
+++ b/api/Publisher.ShapeNodes.SetPosition.md
@@ -27,7 +27,7 @@ Sets the position of the specified node. Depending on the editing type of the no
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **[INT]**|The node whose position is to be set. Must be a number from 1 to the number of nodes in the specified shape; otherwise, an error occurs.|
|X1|Required| **Variant**|The horizontal position of the node relative to the upper-left corner of the page.|
diff --git a/api/Publisher.ShapeNodes.SetSegmentType.md b/api/Publisher.ShapeNodes.SetSegmentType.md
index e035a912451..c2b24a8d566 100644
--- a/api/Publisher.ShapeNodes.SetSegmentType.md
+++ b/api/Publisher.ShapeNodes.SetSegmentType.md
@@ -27,7 +27,7 @@ Sets the segment type of the segment that follows the specified node. If the nod
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The node whose segment type is to be set. Must be a number from 1 to the number of nodes in the specified shape; otherwise, an error occurs.|
|SegmentType|Required| **MsoSegmentType**|Specifies the segment type.|
diff --git a/api/Publisher.ShapeRange.Align.md b/api/Publisher.ShapeRange.Align.md
index ea28d4bce74..fa7db32eeb3 100644
--- a/api/Publisher.ShapeRange.Align.md
+++ b/api/Publisher.ShapeRange.Align.md
@@ -27,7 +27,7 @@ Aligns all the shapes in the specified **ShapeRange** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|AlignCmd|Required| **MsoAlignCmd**|Specifies how the shapes are to be aligned.|
|RelativeTo|Required| **MsoTriState**|Specifies whether shapes are aligned relative to the page or to one another.|
diff --git a/api/Publisher.ShapeRange.Apply.md b/api/Publisher.ShapeRange.Apply.md
index beecdc21d78..e73e7f4ce4c 100644
--- a/api/Publisher.ShapeRange.Apply.md
+++ b/api/Publisher.ShapeRange.Apply.md
@@ -23,7 +23,7 @@ Applies formatting copied from another shape or shape range using the **[PickUp
_expression_ A variable that represents a **ShapeRange** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.ShapeRange.Copy.md b/api/Publisher.ShapeRange.Copy.md
index 9512754ccc0..e39d7170b1a 100644
--- a/api/Publisher.ShapeRange.Copy.md
+++ b/api/Publisher.ShapeRange.Copy.md
@@ -23,7 +23,7 @@ Copies the specified object to the Clipboard.
_expression_ A variable that represents a **ShapeRange** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.ShapeRange.Distribute.md b/api/Publisher.ShapeRange.Distribute.md
index 527292de145..026df6c009b 100644
--- a/api/Publisher.ShapeRange.Distribute.md
+++ b/api/Publisher.ShapeRange.Distribute.md
@@ -27,7 +27,7 @@ Evenly distributes the shapes in the specified shape range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|DistributeCmd|Required| **MsoDistributeCmd**|Specifies whether shapes are to be distributed horizontally or vertically.|
|RelativeTo|Required| **MsoTriState**|Specifies whether to distribute the shapes evenly over the entire horizontal or vertical space on the page or within the horizontal or vertical space that the range of shapes originally occupies.|
diff --git a/api/Publisher.ShapeRange.Duplicate.md b/api/Publisher.ShapeRange.Duplicate.md
index 3f12559084e..22f9f955b63 100644
--- a/api/Publisher.ShapeRange.Duplicate.md
+++ b/api/Publisher.ShapeRange.Duplicate.md
@@ -23,7 +23,7 @@ Creates a duplicate of the specified **[Shape](Publisher.Shape.md)** or **[Shap
_expression_ A variable that represents a **ShapeRange** object.
-### Return Value
+### Return value
ShapeRange
diff --git a/api/Publisher.ShapeRange.Flip.md b/api/Publisher.ShapeRange.Flip.md
index f831fce8765..0f076a8e511 100644
--- a/api/Publisher.ShapeRange.Flip.md
+++ b/api/Publisher.ShapeRange.Flip.md
@@ -27,7 +27,7 @@ Flips the specified shape around its horizontal or vertical axis, or flips all t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|FlipCmd|Required| **MsoFlipCmd**| Specifies whether the shape is flipped horizontally or vertically.|
diff --git a/api/Publisher.ShapeRange.GetHeight.md b/api/Publisher.ShapeRange.GetHeight.md
index abb8f16e260..eafa8cef679 100644
--- a/api/Publisher.ShapeRange.GetHeight.md
+++ b/api/Publisher.ShapeRange.GetHeight.md
@@ -27,11 +27,11 @@ Returns the height of the shape or shape range as a **Single** in the specified
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Unit|Required| **PbUnitType**|The units in which to return the height.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.ShapeRange.GetLeft.md b/api/Publisher.ShapeRange.GetLeft.md
index d4c7e577ad5..23f5e3de886 100644
--- a/api/Publisher.ShapeRange.GetLeft.md
+++ b/api/Publisher.ShapeRange.GetLeft.md
@@ -27,11 +27,11 @@ Returns the distance of the shape's or shape range's left edge from the left edg
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Unit|Required| **PbUnitType**|The units in which to return the distance.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.ShapeRange.GetTop.md b/api/Publisher.ShapeRange.GetTop.md
index a734452787e..3862dc61555 100644
--- a/api/Publisher.ShapeRange.GetTop.md
+++ b/api/Publisher.ShapeRange.GetTop.md
@@ -27,11 +27,11 @@ Returns the distance of the shape's or shape range's top edge from the top edge
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Unit|Required| **PbUnitType**|The units in which to return the distance.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.ShapeRange.GetWidth.md b/api/Publisher.ShapeRange.GetWidth.md
index 1cfcfb68cab..767ce8ae6d6 100644
--- a/api/Publisher.ShapeRange.GetWidth.md
+++ b/api/Publisher.ShapeRange.GetWidth.md
@@ -27,11 +27,11 @@ Returns the width of the shape or shape range as a **Single** in the specified
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Unit|Required| **PbUnitType**|The units in which to return the width.|
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.ShapeRange.Group.md b/api/Publisher.ShapeRange.Group.md
index ed1906b75a4..8fbdfe20dad 100644
--- a/api/Publisher.ShapeRange.Group.md
+++ b/api/Publisher.ShapeRange.Group.md
@@ -23,7 +23,7 @@ Groups the shapes in the specified shape range. Returns the grouped shapes as a
_expression_ A variable that represents a **ShapeRange** object.
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.ShapeRange.IncrementLeft.md b/api/Publisher.ShapeRange.IncrementLeft.md
index 111e3a36c85..9819d619046 100644
--- a/api/Publisher.ShapeRange.IncrementLeft.md
+++ b/api/Publisher.ShapeRange.IncrementLeft.md
@@ -27,11 +27,11 @@ Moves the specified shape or shape range horizontally by the specified distance.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Increment|Required| **Variant**|The horizontal distance to move the shape or shape range. A positive value moves the shape or shape range to the right; a negative value moves it to the left. Numeric values are evaluated in points; strings can be in any units supported by Microsoft Publisher (for example, "2.5 in").|
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.ShapeRange.IncrementRotation.md b/api/Publisher.ShapeRange.IncrementRotation.md
index 0bab7cc1f1a..b54121a80fa 100644
--- a/api/Publisher.ShapeRange.IncrementRotation.md
+++ b/api/Publisher.ShapeRange.IncrementRotation.md
@@ -27,7 +27,7 @@ Changes the rotation of the specified shape around the z-axis (extends outward f
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Increment|Required| **Single**|Specifies how far the shape is to be rotated around the z-axis, in degrees. A positive value rotates the shape clockwise; a negative value rotates it counterclockwise. Valid values are between - 360 and 360.|
diff --git a/api/Publisher.ShapeRange.IncrementTop.md b/api/Publisher.ShapeRange.IncrementTop.md
index 2cffe5bc93d..116b3676ced 100644
--- a/api/Publisher.ShapeRange.IncrementTop.md
+++ b/api/Publisher.ShapeRange.IncrementTop.md
@@ -27,11 +27,11 @@ Moves the specified shape or shape range vertically by the specified distance.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Increment|Required| **Variant**|The vertical distance to move the shape or shape range. A positive value moves the shape or shape range down; a negative value moves it up. Numeric values are evaluated in points; strings can be in any units supported by Microsoft Publisher (for example, "2.5 in").|
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.ShapeRange.Item.md b/api/Publisher.ShapeRange.Item.md
index 1210665d9b7..35ea7dc5188 100644
--- a/api/Publisher.ShapeRange.Item.md
+++ b/api/Publisher.ShapeRange.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The number or name of the field or list box item to return.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.ShapeRange.MoveIntoTextFlow.md b/api/Publisher.ShapeRange.MoveIntoTextFlow.md
index 6b0b0fff837..aeafd4d885d 100644
--- a/api/Publisher.ShapeRange.MoveIntoTextFlow.md
+++ b/api/Publisher.ShapeRange.MoveIntoTextFlow.md
@@ -27,7 +27,7 @@ Moves a given shape into the text flow defined by ** [TextRange Object](Publish
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Range|Required| **TextRange**|The range of text before which the given shape is inserted.|
diff --git a/api/Publisher.ShapeRange.MoveOutOfTextFlow.md b/api/Publisher.ShapeRange.MoveOutOfTextFlow.md
index 1f4c9c9b6cc..d5489af56d7 100644
--- a/api/Publisher.ShapeRange.MoveOutOfTextFlow.md
+++ b/api/Publisher.ShapeRange.MoveOutOfTextFlow.md
@@ -23,7 +23,7 @@ Moves a given inline shape out of its containing text range, defined by ** [Tex
_expression_ A variable that represents a **ShapeRange** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.ShapeRange.Regroup.md b/api/Publisher.ShapeRange.Regroup.md
index 37332280b3d..d3abd0fa1d7 100644
--- a/api/Publisher.ShapeRange.Regroup.md
+++ b/api/Publisher.ShapeRange.Regroup.md
@@ -23,7 +23,7 @@ Regroups the group that the specified shape range belonged to previously. Return
_expression_ A variable that represents a **ShapeRange** object.
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.ShapeRange.RerouteConnections.md b/api/Publisher.ShapeRange.RerouteConnections.md
index 62790115370..e54805f157d 100644
--- a/api/Publisher.ShapeRange.RerouteConnections.md
+++ b/api/Publisher.ShapeRange.RerouteConnections.md
@@ -23,7 +23,7 @@ Reroutes connectors so that they take the shortest possible path between the sha
_expression_ A variable that represents a **ShapeRange** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.ShapeRange.SaveAsPicture.md b/api/Publisher.ShapeRange.SaveAsPicture.md
index 646690168e7..f73cb5b4175 100644
--- a/api/Publisher.ShapeRange.SaveAsPicture.md
+++ b/api/Publisher.ShapeRange.SaveAsPicture.md
@@ -27,7 +27,7 @@ Saves a range of one or more shapes as a picture file.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Filename|Required| **String**|The path and file name of the new picture file you want to create. The graphics format the picture is saved in is determined by the file name extension (such as .jpg or .gif) you specify.|
|pbResolution|Optional| **PbPictureResolution**|The resolution in which you want the picture to be saved. See Remarks for possible values.|
diff --git a/api/Publisher.ShapeRange.ScaleHeight.md b/api/Publisher.ShapeRange.ScaleHeight.md
index c4c42464430..17428cab3ec 100644
--- a/api/Publisher.ShapeRange.ScaleHeight.md
+++ b/api/Publisher.ShapeRange.ScaleHeight.md
@@ -27,7 +27,7 @@ Scales the height of the shape by a specified factor. For pictures and OLE objec
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Factor|Required| **Single**|Specifies the ratio between the height of the shape after you resize it and the current or original height. For example, to make a rectangle 50 percent larger, specify 1.5 for this argument.|
|RelativeToOriginalSize|Required| **MsoTriState**|Specifies whether to scale relative to the object's original or current size.|
diff --git a/api/Publisher.ShapeRange.ScaleWidth.md b/api/Publisher.ShapeRange.ScaleWidth.md
index 71f7154f759..10d895263a5 100644
--- a/api/Publisher.ShapeRange.ScaleWidth.md
+++ b/api/Publisher.ShapeRange.ScaleWidth.md
@@ -27,13 +27,13 @@ Scales the width of the shape by a specified factor. For pictures and OLE object
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Factor|Required| **Single**|Specifies the ratio between the height of the shape after you resize it and the current or original height. For example, to make a rectangle 50 percent larger, specify 1.5 for this argument.|
|RelativeToOriginalSize|Required| **MsoTristate**| Specifies whether to scale relative to the object's original or current size.|
|fScale|Optional| **MsoScaleFrom**|The part of the shape that retains its position when the shape is scaled.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.ShapeRange.Select.md b/api/Publisher.ShapeRange.Select.md
index c0951fac8ab..2b178c35c01 100644
--- a/api/Publisher.ShapeRange.Select.md
+++ b/api/Publisher.ShapeRange.Select.md
@@ -27,7 +27,7 @@ Selects the specified object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Replace|Optional| **Variant**|Specifies whether the selection replaces any previous selection. **True** to replace the previous selection with the new selection; **False** to add the new selection to the previous selection. Default is **True**.|
diff --git a/api/Publisher.ShapeRange.SetShapesDefaultProperties.md b/api/Publisher.ShapeRange.SetShapesDefaultProperties.md
index c8a1b184e50..5c65ce9eed8 100644
--- a/api/Publisher.ShapeRange.SetShapesDefaultProperties.md
+++ b/api/Publisher.ShapeRange.SetShapesDefaultProperties.md
@@ -23,7 +23,7 @@ Applies the formatting for the specified shape or shape range to the default sha
_expression_ A variable that represents a **ShapeRange** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.ShapeRange.Ungroup.md b/api/Publisher.ShapeRange.Ungroup.md
index 6adaa7466bd..2b85d13753b 100644
--- a/api/Publisher.ShapeRange.Ungroup.md
+++ b/api/Publisher.ShapeRange.Ungroup.md
@@ -23,7 +23,7 @@ Ungroups the specified group of shapes or any groups of shapes in the specified
_expression_ A variable that represents a **ShapeRange** object.
-### Return Value
+### Return value
ShapeRange
diff --git a/api/Publisher.ShapeRange.ZOrder.md b/api/Publisher.ShapeRange.ZOrder.md
index a8202836cb2..57a135f00ce 100644
--- a/api/Publisher.ShapeRange.ZOrder.md
+++ b/api/Publisher.ShapeRange.ZOrder.md
@@ -27,11 +27,11 @@ Moves the specified shape in front of or behind other shapes in the collection (
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ZOrderCmd|Required| **MsoZOrderCmd**|Specifies where to move the specified shape relative to the other shapes.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.Shapes.AddCallout.md b/api/Publisher.Shapes.AddCallout.md
index 0be16e7b605..887fc841043 100644
--- a/api/Publisher.Shapes.AddCallout.md
+++ b/api/Publisher.Shapes.AddCallout.md
@@ -27,7 +27,7 @@ Adds a new **[Shape](Publisher.Shape.md)** object representing a borderless lin
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Type|Required| **MsoCalloutType**|The type of callout line.|
|Left|Required| **Variant**|The position of the left edge of the shape representing the line callout.|
@@ -35,7 +35,7 @@ Adds a new **[Shape](Publisher.Shape.md)** object representing a borderless lin
|Width|Required| **Variant**|The width of the shape representing the line callout.|
|Height|Required| **Variant**|The height of the shape representing the line callout.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddCatalogMergeArea.md b/api/Publisher.Shapes.AddCatalogMergeArea.md
index 50e7b523ecb..26541f3713a 100644
--- a/api/Publisher.Shapes.AddCatalogMergeArea.md
+++ b/api/Publisher.Shapes.AddCatalogMergeArea.md
@@ -23,7 +23,7 @@ Adds a **Shape** object that represents the specified publication's catalog mer
_expression_ A variable that represents a **Shapes** object.
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddCatalogMergeFieldToCanvas.md b/api/Publisher.Shapes.AddCatalogMergeFieldToCanvas.md
index 0051170b30e..4fbeec8daba 100644
--- a/api/Publisher.Shapes.AddCatalogMergeFieldToCanvas.md
+++ b/api/Publisher.Shapes.AddCatalogMergeFieldToCanvas.md
@@ -27,7 +27,7 @@ Adds a catalog merge field of the specified type to the canvas. Returns nothing.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|CanvasId|Required| **[INT]**|The ID of the canvas to which to add the catalog merge field.|
|CatalogMergeFieldType|Required| **pbCatalogMergeFieldType**|The type (picture or text) of the catalog merge field to add.|
diff --git a/api/Publisher.Shapes.AddConnector.md b/api/Publisher.Shapes.AddConnector.md
index 48af8b5b0c2..4103029d8f4 100644
--- a/api/Publisher.Shapes.AddConnector.md
+++ b/api/Publisher.Shapes.AddConnector.md
@@ -27,7 +27,7 @@ Adds a new **[Shape](Publisher.Shape.md)** object representing a connector to t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Type|Required| **MsoConnectorType**|The type of connector to add.|
|BeginX|Required| **Variant**|The x-coordinate of the beginning point of the connector.|
@@ -35,7 +35,7 @@ Adds a new **[Shape](Publisher.Shape.md)** object representing a connector to t
|EndX|Required| **Variant**|The x-coordinate of the ending point of the connector.|
|EndY|Required| **Variant**|The y-coordinate of the ending point of the connector.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddCurve.md b/api/Publisher.Shapes.AddCurve.md
index 2e611c2e63c..faefe84789b 100644
--- a/api/Publisher.Shapes.AddCurve.md
+++ b/api/Publisher.Shapes.AddCurve.md
@@ -27,11 +27,11 @@ Adds a new **[Shape](Publisher.Shape.md)** object representing a Bézier curve
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|SafeArrayOfPoints|Required| **Variant**|An array of coordinate pairs that specifies the vertices and control points of the curve. The first point you specify is the starting vertex, and the next two points are control points for the first Bézier segment. Then, for each additional segment of the curve, you specify a vertex and two control points. The last point you specify is the ending vertex for the curve. Note that you must always specify 3n + 1 points, where n is the number of segments in the curve.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddEmptyPictureFrame.md b/api/Publisher.Shapes.AddEmptyPictureFrame.md
index c501f2e2db9..b5a72f9b0c9 100644
--- a/api/Publisher.Shapes.AddEmptyPictureFrame.md
+++ b/api/Publisher.Shapes.AddEmptyPictureFrame.md
@@ -27,14 +27,14 @@ Returns a **Shape** object that represents an empty picture frame inserted at t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Left|Required| **Variant**|The position of the left edge of the shape representing the picture.|
|Top|Required| **Variant**|The position of the top edge of the shape representing the picture.|
|Width|Optional| **Variant**|The width of the shape representing the picture. Default is -1, meaning that the width of the shape is automatically set to 72 points if the parameter is left blank.|
|Height|Optional| **Variant**|The height of the shape representing the picture. Default is -1, meaning that the height of the shape is automatically set to 54 points if the parameter is left blank.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddGroupWizard.md b/api/Publisher.Shapes.AddGroupWizard.md
index 7657b5278bf..d82eb8ebc4c 100644
--- a/api/Publisher.Shapes.AddGroupWizard.md
+++ b/api/Publisher.Shapes.AddGroupWizard.md
@@ -27,7 +27,7 @@ Adds a **Shape** object representing a Design Gallery object to the publication
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Wizard|Required| **PbWizardGroup**|The type of Design Gallery object to add to the publication.|
|Left|Required| **Variant**|The position of the Design Gallery object's left edge relative to the left edge of the page, measured in points.|
@@ -36,7 +36,7 @@ Adds a **Shape** object representing a Design Gallery object to the publication
|Height|Optional| **Variant**|The height of the new Design Gallery object.|
|Design|Optional| **Long**|The design of the object to be added.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddLabel.md b/api/Publisher.Shapes.AddLabel.md
index 7edf6cd990e..a22937bb8f0 100644
--- a/api/Publisher.Shapes.AddLabel.md
+++ b/api/Publisher.Shapes.AddLabel.md
@@ -27,7 +27,7 @@ Adds a new **[Shape](Publisher.Shape.md)** object representing a text label to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Orientation|Required| **PbTextOrientation**|The orientation of the label.|
|Left|Required| **Variant**|The position of the left edge of the shape representing the text label.|
@@ -35,7 +35,7 @@ Adds a new **[Shape](Publisher.Shape.md)** object representing a text label to
|Width|Required| **Variant**|The width of the shape representing the text label.|
|Height|Required| **Variant**|The height of the shape representing the text label.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddLine.md b/api/Publisher.Shapes.AddLine.md
index 0b09b8e89d5..4159e79cf28 100644
--- a/api/Publisher.Shapes.AddLine.md
+++ b/api/Publisher.Shapes.AddLine.md
@@ -27,14 +27,14 @@ Adds a new **[Shape](Publisher.Shape.md)** object representing a line to the sp
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|BeginX|Required| **Variant**|The x-coordinate of the beginning point of the line.|
|BeginY|Required| **Variant**|The y-coordinate of the beginning point of the line.|
|EndX|Required| **Variant**|The x-coordinate of the ending point of the line.|
|EndY|Required| **Variant**|The y-coordinate of the ending point of the line.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddOLEObject.md b/api/Publisher.Shapes.AddOLEObject.md
index b8464c3b566..4537ddaa5d9 100644
--- a/api/Publisher.Shapes.AddOLEObject.md
+++ b/api/Publisher.Shapes.AddOLEObject.md
@@ -27,7 +27,7 @@ Adds a new **[Shape](Publisher.Shape.md)** object representing an OLE object to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Left|Required| **Variant**|The position of the left edge of the shape representing the OLE object.|
|Top|Required| **Variant**|The position of the top edge of the shape representing the OLE object.|
@@ -37,7 +37,7 @@ Adds a new **[Shape](Publisher.Shape.md)** object representing an OLE object to
|Filename|Optional| **String**|The file name of the OLE object to be added. If the path is not specified, the current working folder is used.|
|Link|Optional| **MsoTriState**|Determines whether the OLE object is linked to or embedded in the publication.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddPicture.md b/api/Publisher.Shapes.AddPicture.md
index c5177bfb51e..dcf309d263d 100644
--- a/api/Publisher.Shapes.AddPicture.md
+++ b/api/Publisher.Shapes.AddPicture.md
@@ -27,7 +27,7 @@ Adds a new **Shape** object representing a picture to the specified **Shapes**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Filename|Required| **String**|The name of the picture file to insert into the shape. The path can be absolute or relative.|
|LinkToFile|Required| **MsoTriState**|Determines whether the picture is linked to or embedded in the publication.|
@@ -37,7 +37,7 @@ Adds a new **Shape** object representing a picture to the specified **Shapes**
|Width|Optional| **Variant**|The width of the shape representing the picture. Default is -1, meaning that the width of the shape is automatically set based on the object's data.|
|Height|Optional| **Variant**|The height of the shape representing the picture. Default is -1, meaning that the width of the shape is automatically set based on the object's data.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddPolyline.md b/api/Publisher.Shapes.AddPolyline.md
index 66cd8212396..51c67a9dd41 100644
--- a/api/Publisher.Shapes.AddPolyline.md
+++ b/api/Publisher.Shapes.AddPolyline.md
@@ -27,11 +27,11 @@ Adds a new **Shape** object representing an open polyline or a closed polygon t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|SafeArrayOfPoints|Required| **Variant**|An array of coordinate pairs that specifies the polyline's or polygon's vertices.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddShape.md b/api/Publisher.Shapes.AddShape.md
index 3694874b461..2f9788a4490 100644
--- a/api/Publisher.Shapes.AddShape.md
+++ b/api/Publisher.Shapes.AddShape.md
@@ -27,7 +27,7 @@ Adds a new **Shape** object representing an AutoShape to the specified **Shapes
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Type|Required| **MsoAutoShapeType**|The type of AutoShape to draw. For a complete list of MsoAutoShapeType constants, see the Object Browser.|
|Left|Required| **Variant**|The position of the left edge of the shape representing the AutoShape.|
@@ -35,7 +35,7 @@ Adds a new **Shape** object representing an AutoShape to the specified **Shapes
|Width|Required| **Variant**|The width of the shape representing the AutoShape.|
|Height|Required| **Variant**|The height of the shape representing the AutoShape.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddTable.md b/api/Publisher.Shapes.AddTable.md
index a7c78c0ce8f..0d472620c60 100644
--- a/api/Publisher.Shapes.AddTable.md
+++ b/api/Publisher.Shapes.AddTable.md
@@ -27,7 +27,7 @@ Adds a new **Shape** object representing a table to the specified **Shapes** co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|NumRows|Required| **Long**|The number of rows in the new table. Values between 1 and 128 are valid; any values outside this range will generate an error.|
|NumColumns|Required| **Long**|The number of columns in the new table. Values between 1 and 128 are valid; any values outside this range will generate an error.|
@@ -38,7 +38,7 @@ Adds a new **Shape** object representing a table to the specified **Shapes** co
|FixedSize|Optional| **Boolean**| **True** if Microsoft Publisher reduces the number of rows and columns of the table to fit the specified width and height. **False** if Publisher automatically increases the width and height of the table frame to accommodate the number of rows and columns in the table. Default is **False**.|
|Direction|Optional| **PbTableDirectionType**|The direction in which table columns are numbered. The default depends on the current language setting.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddTextEffect.md b/api/Publisher.Shapes.AddTextEffect.md
index 3719ff2b85b..4cc682ba9d9 100644
--- a/api/Publisher.Shapes.AddTextEffect.md
+++ b/api/Publisher.Shapes.AddTextEffect.md
@@ -27,7 +27,7 @@ Adds a new **Shape** object representing a WordArt object to the specified **Sh
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PresetTextEffect|Required| **MsoPresetTextEffect**|The preset text effect to use. The values of the **MsoPresetTextEffect** constants correspond to the formats listed in the **WordArt Gallery** dialog box (numbered from left to right and from top to bottom).|
|Text|Required| **String**|The text to use for the WordArt object.|
@@ -38,7 +38,7 @@ Adds a new **Shape** object representing a WordArt object to the specified **Sh
|Left|Required| **Variant**|The position of the left edge of the shape representing the WordArt object.|
|Top|Required| **Variant**|The position of the top edge of the shape representing the WordArt object.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddTextbox.md b/api/Publisher.Shapes.AddTextbox.md
index bef5aa5a098..47c55645c93 100644
--- a/api/Publisher.Shapes.AddTextbox.md
+++ b/api/Publisher.Shapes.AddTextbox.md
@@ -27,7 +27,7 @@ Adds a new **Shape** object representing a text box to the specified **Shapes**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Orientation|Required| **PbTextOrientation**|The orientation of the text box.|
|Left|Required| **Variant**|The position of the left edge of the shape representing the text box.|
@@ -35,7 +35,7 @@ Adds a new **Shape** object representing a text box to the specified **Shapes**
|Width|Required| **Variant**|The width of the shape representing the text box.|
|Height|Required| **Variant**|The height of the shape representing the text box.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddWebControl.md b/api/Publisher.Shapes.AddWebControl.md
index f2086f70e50..e3b2f2016ee 100644
--- a/api/Publisher.Shapes.AddWebControl.md
+++ b/api/Publisher.Shapes.AddWebControl.md
@@ -27,7 +27,7 @@ Adds a new **Shape** object representing a Web form control to the specified **
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Type|Required| **PbWebControlType**|Specifies the type of Web form control to add. An error occurs if pbWebControlWebComponent is used.|
|Left|Required| **Variant**|The position of the left edge of the shape representing the Web form control.|
@@ -36,7 +36,7 @@ Adds a new **Shape** object representing a Web form control to the specified **
|Height|Required| **Variant**|The height of the shape representing the Web form control. For command buttons, this parameter is ignored.|
|LaunchPropertiesWindow|Optional| **Boolean**|Not supported. Default is **False**; an error occurs if this argument is set to **True**.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddWebNavigationBar.md b/api/Publisher.Shapes.AddWebNavigationBar.md
index b49d06bb2cf..21fbe6daaa8 100644
--- a/api/Publisher.Shapes.AddWebNavigationBar.md
+++ b/api/Publisher.Shapes.AddWebNavigationBar.md
@@ -27,14 +27,14 @@ Adds a **Shape** object of type **pbWebNavigationBar** to the current page of a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Name|Required| **String**|The name of the **WebNavigationBarSet** object to add to the specified **Shape**.|
|Left|Required| **Variant**|The position of the left edge of the shape that represents the Web navigation bar set.|
|Top|Required| **Variant**|The position of the top edge of the shape that represents the Web navigation bar set.|
|Width|Optional| **Variant**|The width of the shape that represents the Web navigation bar set.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.AddWordArt.md b/api/Publisher.Shapes.AddWordArt.md
index 696609fb5ed..0a97601e94e 100644
--- a/api/Publisher.Shapes.AddWordArt.md
+++ b/api/Publisher.Shapes.AddWordArt.md
@@ -27,7 +27,7 @@ Returns a **Shape** object that represents the WordArt to be added to the publi
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PresetWordArt|Required| **pbPresetWordArt**|The type of preset WordArt to add.|
|Text|Required| **String**|The text of the WordArt.|
@@ -38,7 +38,7 @@ Returns a **Shape** object that represents the WordArt to be added to the publi
|Left|Required| **Variant**|The horizontal position of the WordArt.|
|Top|Required| **Variant**|The vertical position of the WordArt.|
-### Return Value
+### Return value
**Shape**
diff --git a/api/Publisher.Shapes.BuildFreeform.md b/api/Publisher.Shapes.BuildFreeform.md
index 406fc374ac4..af3c908e37c 100644
--- a/api/Publisher.Shapes.BuildFreeform.md
+++ b/api/Publisher.Shapes.BuildFreeform.md
@@ -27,13 +27,13 @@ Builds a freeform object. Returns a [FreeformBuilder](Publisher.FreeformBuilder
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|EditingType|Required| **MsoEditingType**|Specifies the editing type of the first node.|
|X1|Required| **Variant**|The horizontal position of the first node in the freeform drawing relative to the upper-left corner of the page.|
|Y1|Required| **Variant**|The vertical position of the first node in the freeform drawing relative to the upper-left corner of the page.|
-### Return Value
+### Return value
FreeformBuilder
diff --git a/api/Publisher.Shapes.FindShapeByWizardTag.md b/api/Publisher.Shapes.FindShapeByWizardTag.md
index 5a61e2061e4..c4224f0bd5e 100644
--- a/api/Publisher.Shapes.FindShapeByWizardTag.md
+++ b/api/Publisher.Shapes.FindShapeByWizardTag.md
@@ -27,12 +27,12 @@ Returns a **ShapeRange** object representing one or all of the shapes placed in
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|WizardTag|Required| **PbWizardTag**|Specifies the wizard tag for which to search.|
|Instance|Optional| **Long**|Specifies which instance of a shape with the specified wizard tag is returned. For Instance equal to n, the nth instance of a shape with the specified wizard tag is returned. If no value for Instance is specified, all the shapes with the specified wizard tag are returned.|
-### Return Value
+### Return value
ShapeRange
diff --git a/api/Publisher.Shapes.Item.md b/api/Publisher.Shapes.Item.md
index 2ff76e4fdfa..2119883d0b6 100644
--- a/api/Publisher.Shapes.Item.md
+++ b/api/Publisher.Shapes.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The number or name of the field or list box item to return.|
-### Return Value
+### Return value
Shape
diff --git a/api/Publisher.Shapes.Paste.md b/api/Publisher.Shapes.Paste.md
index 2034d0b6653..d3f9df08cb0 100644
--- a/api/Publisher.Shapes.Paste.md
+++ b/api/Publisher.Shapes.Paste.md
@@ -23,7 +23,7 @@ Pastes the shapes or text on the Clipboard into the specified **[Shapes](Publis
_expression_ A variable that represents a **Shapes** object.
-### Return Value
+### Return value
ShapeRange
diff --git a/api/Publisher.Shapes.Range.md b/api/Publisher.Shapes.Range.md
index 035fb446424..4d5a8be3b34 100644
--- a/api/Publisher.Shapes.Range.md
+++ b/api/Publisher.Shapes.Range.md
@@ -25,7 +25,7 @@ _expression_ A variable that represents a **Shapes** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The individual shapes that are to be included in the range. Can be an integer that specifies the index number of the shape, a string that specifies the name of the shape, or an array that contains either integers or strings. If Index is omitted, the **Range** method returns all the objects in the specified collection.|
diff --git a/api/Publisher.Stories.Item.md b/api/Publisher.Stories.Item.md
index 9f392996553..f25dc2844f6 100644
--- a/api/Publisher.Stories.Item.md
+++ b/api/Publisher.Stories.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The number of the object to return.|
-### Return Value
+### Return value
Story
diff --git a/api/Publisher.TabStop.Leader.md b/api/Publisher.TabStop.Leader.md
index 4dd3f8ddddc..8f276f60cae 100644
--- a/api/Publisher.TabStop.Leader.md
+++ b/api/Publisher.TabStop.Leader.md
@@ -23,7 +23,7 @@ Sets or returns a **PbTabLeaderType** constant that represents the leader chara
_expression_ A variable that represents a **TabStop** object.
-### Return Value
+### Return value
PbTabLeaderType
diff --git a/api/Publisher.TabStops.Add.md b/api/Publisher.TabStops.Add.md
index 11ca541fd8d..c1fb91bdca8 100644
--- a/api/Publisher.TabStops.Add.md
+++ b/api/Publisher.TabStops.Add.md
@@ -27,7 +27,7 @@ Adds a new tab stop to the specified **TabStops** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Position|Required| **Variant**|The horizontal position of the new tab stop relative to the left edge of the text frame. Numeric values are evaluated in points; strings are evaluated in the units specified and can be in any measurement unit supported by Microsoft Publisher (for example, "2.5 in").|
|Alignment|Required| **PbTabAlignmentType**|The alignment setting for the tab stop.|
diff --git a/api/Publisher.TabStops.Item.md b/api/Publisher.TabStops.Item.md
index ac9a0c682db..66f29152a61 100644
--- a/api/Publisher.TabStops.Item.md
+++ b/api/Publisher.TabStops.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The number of the object to return.|
-### Return Value
+### Return value
TabStop
diff --git a/api/Publisher.Table.ApplyAutoFormat.md b/api/Publisher.Table.ApplyAutoFormat.md
index b5810edc861..d54cff2ac9f 100644
--- a/api/Publisher.Table.ApplyAutoFormat.md
+++ b/api/Publisher.Table.ApplyAutoFormat.md
@@ -27,7 +27,7 @@ Applies automatic built-in table formatting to a specified table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|AutoFormat|Required| **PbTableAutoFormatType**|The type of automatic formatting to apply to the specified table.|
|TextFormatting|Optional| **Boolean**| **True** to apply font formatting to the text in the table. Default value is **True**.|
diff --git a/api/Publisher.Table.Cells.md b/api/Publisher.Table.Cells.md
index 510f53bca8c..8a82157bcc7 100644
--- a/api/Publisher.Table.Cells.md
+++ b/api/Publisher.Table.Cells.md
@@ -27,7 +27,7 @@ Returns a **CellRange** object that represents a range of cells in a table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|StartRow|Optional| **Long**|The row in which the starting cell exists. If this argument is omitted, all the table rows are included in the range.|
|StartColumn|Optional| **Long**|The column in which the starting cell exists. If this argument is omitted, all the table columns are included in the range.|
diff --git a/api/Publisher.Table.GrowToFitText.md b/api/Publisher.Table.GrowToFitText.md
index 96c2108961e..bcac95b899c 100644
--- a/api/Publisher.Table.GrowToFitText.md
+++ b/api/Publisher.Table.GrowToFitText.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **Table** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.Table.TableDirection.md b/api/Publisher.Table.TableDirection.md
index 669a5074d6a..7e774a3e7f0 100644
--- a/api/Publisher.Table.TableDirection.md
+++ b/api/Publisher.Table.TableDirection.md
@@ -23,7 +23,7 @@ Returns or sets a **PbTableDirectionType** constant that represents whether tex
_expression_ A variable that represents a **Table** object.
-### Return Value
+### Return value
PbTableDirectionType
diff --git a/api/Publisher.Tags.Add.md b/api/Publisher.Tags.Add.md
index 4055a905aeb..071fb93d284 100644
--- a/api/Publisher.Tags.Add.md
+++ b/api/Publisher.Tags.Add.md
@@ -27,12 +27,12 @@ Adds a new **Tag** object to the specified **Tags** object and returns the new
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Name|Required| **String**|The name of the tag to add. If a tag already exists with the same name, an error occurs.|
|Value|Required| **Variant**|The value to assign to the tag.|
-### Return Value
+### Return value
Tag
diff --git a/api/Publisher.Tags.Item.md b/api/Publisher.Tags.Item.md
index ac154fc65d9..612cf3aea20 100644
--- a/api/Publisher.Tags.Item.md
+++ b/api/Publisher.Tags.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The number or name of the field or list box item to return.|
-### Return Value
+### Return value
Tag
diff --git a/api/Publisher.TextEffectFormat.KernedPairs.md b/api/Publisher.TextEffectFormat.KernedPairs.md
index 29172952d45..c86480c4698 100644
--- a/api/Publisher.TextEffectFormat.KernedPairs.md
+++ b/api/Publisher.TextEffectFormat.KernedPairs.md
@@ -23,7 +23,7 @@ Sets or returns an **MsoTriState** constant that indicates whether character pa
_expression_ A variable that represents a **TextEffectFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.TextEffectFormat.NormalizedHeight.md b/api/Publisher.TextEffectFormat.NormalizedHeight.md
index 71132cce45c..7377bb14b96 100644
--- a/api/Publisher.TextEffectFormat.NormalizedHeight.md
+++ b/api/Publisher.TextEffectFormat.NormalizedHeight.md
@@ -23,7 +23,7 @@ Specifies whether all characters (both uppercase and lowercase) in the specified
_expression_ A variable that represents a **TextEffectFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.TextEffectFormat.PresetShape.md b/api/Publisher.TextEffectFormat.PresetShape.md
index c713e71b440..abbea706583 100644
--- a/api/Publisher.TextEffectFormat.PresetShape.md
+++ b/api/Publisher.TextEffectFormat.PresetShape.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoPresetTextEffectShape** constant that represents the sh
_expression_ A variable that represents a **TextEffectFormat** object.
-### Return Value
+### Return value
MsoPresetTextEffectShape
diff --git a/api/Publisher.TextEffectFormat.PresetTextEffect.md b/api/Publisher.TextEffectFormat.PresetTextEffect.md
index 5f3303289b0..51337d1b5f6 100644
--- a/api/Publisher.TextEffectFormat.PresetTextEffect.md
+++ b/api/Publisher.TextEffectFormat.PresetTextEffect.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoPresetTextEffect** constant that represents the style o
_expression_ A variable that represents a **TextEffectFormat** object.
-### Return Value
+### Return value
MsoPresetTextEffect
diff --git a/api/Publisher.TextEffectFormat.RotatedChars.md b/api/Publisher.TextEffectFormat.RotatedChars.md
index b80ad02a48a..4343094ea0e 100644
--- a/api/Publisher.TextEffectFormat.RotatedChars.md
+++ b/api/Publisher.TextEffectFormat.RotatedChars.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **TextEffectFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.TextFrame.AutoFitText.md b/api/Publisher.TextFrame.AutoFitText.md
index ae38709dae4..3a20bf3ee77 100644
--- a/api/Publisher.TextFrame.AutoFitText.md
+++ b/api/Publisher.TextFrame.AutoFitText.md
@@ -23,7 +23,7 @@ Sets or returns a **PbTextAutoFitType**constant that represents how Microsoft P
_expression_ A variable that represents a **TextFrame** object.
-### Return Value
+### Return value
PbTextAutoFitType
diff --git a/api/Publisher.TextFrame.ColumnSpacing.md b/api/Publisher.TextFrame.ColumnSpacing.md
index 1cda2aee5ae..145100e0658 100644
--- a/api/Publisher.TextFrame.ColumnSpacing.md
+++ b/api/Publisher.TextFrame.ColumnSpacing.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** that represents the amount of space between text
_expression_ A variable that represents a **TextFrame** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.TextFrame.HasNextLink.md b/api/Publisher.TextFrame.HasNextLink.md
index 9717745d6c4..dc0f52a9406 100644
--- a/api/Publisher.TextFrame.HasNextLink.md
+++ b/api/Publisher.TextFrame.HasNextLink.md
@@ -23,7 +23,7 @@ Indicates whether the specified text frame has a valid forward text-box link. Re
_expression_ A variable that represents a **TextFrame** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.TextFrame.HasPreviousLink.md b/api/Publisher.TextFrame.HasPreviousLink.md
index 0632725fc5d..1e958300ba8 100644
--- a/api/Publisher.TextFrame.HasPreviousLink.md
+++ b/api/Publisher.TextFrame.HasPreviousLink.md
@@ -23,7 +23,7 @@ Returns **msoTrue** if the specified text frame has a valid link to a backward
_expression_ A variable that represents a **TextFrame** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.TextFrame.IncludeContinuedFromPage.md b/api/Publisher.TextFrame.IncludeContinuedFromPage.md
index bab1856044d..9d40c745869 100644
--- a/api/Publisher.TextFrame.IncludeContinuedFromPage.md
+++ b/api/Publisher.TextFrame.IncludeContinuedFromPage.md
@@ -23,7 +23,7 @@ Determines whether the text "Continued from page _pagenumber_" appears in a tex
_expression_ A variable that represents a **TextFrame** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.TextFrame.IncludeContinuedOnPage.md b/api/Publisher.TextFrame.IncludeContinuedOnPage.md
index 1e824c60f4b..a0d4245524c 100644
--- a/api/Publisher.TextFrame.IncludeContinuedOnPage.md
+++ b/api/Publisher.TextFrame.IncludeContinuedOnPage.md
@@ -23,7 +23,7 @@ Determines whether the text "Continued on page _pagenumber_" appears in a text
_expression_ A variable that represents a **TextFrame** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.TextFrame.NextLinkedTextFrame.md b/api/Publisher.TextFrame.NextLinkedTextFrame.md
index 8a6bedc12e1..64b5f2f13c4 100644
--- a/api/Publisher.TextFrame.NextLinkedTextFrame.md
+++ b/api/Publisher.TextFrame.NextLinkedTextFrame.md
@@ -23,7 +23,7 @@ Returns or sets a **[TextFrame](Publisher.TextFrame.md)** object representing t
_expression_ A variable that represents a **TextFrame** object.
-### Return Value
+### Return value
TextFrame
diff --git a/api/Publisher.TextFrame.Orientation.md b/api/Publisher.TextFrame.Orientation.md
index 03690d991c4..4b150cdedef 100644
--- a/api/Publisher.TextFrame.Orientation.md
+++ b/api/Publisher.TextFrame.Orientation.md
@@ -23,7 +23,7 @@ Returns or sets a **PbTextOrientation**constant that represents how text flows
_expression_ A variable that represents a **TextFrame** object.
-### Return Value
+### Return value
PbTextOrientation
diff --git a/api/Publisher.TextFrame.Overflowing.md b/api/Publisher.TextFrame.Overflowing.md
index 9391d50ca3d..329ac5ca5a7 100644
--- a/api/Publisher.TextFrame.Overflowing.md
+++ b/api/Publisher.TextFrame.Overflowing.md
@@ -23,7 +23,7 @@ Indicates whether the text frame contains more text than can fit into the text f
_expression_ A variable that represents an **TextFrame** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.TextFrame.PreviousLinkedTextFrame.md b/api/Publisher.TextFrame.PreviousLinkedTextFrame.md
index 82c49c7415c..f9c651fc68c 100644
--- a/api/Publisher.TextFrame.PreviousLinkedTextFrame.md
+++ b/api/Publisher.TextFrame.PreviousLinkedTextFrame.md
@@ -23,7 +23,7 @@ Returns a **[TextFrame](Publisher.TextFrame.md)** object representing the text
_expression_ A variable that represents a **TextFrame** object.
-### Return Value
+### Return value
TextFrame
diff --git a/api/Publisher.TextFrame.ValidLinkTarget.md b/api/Publisher.TextFrame.ValidLinkTarget.md
index 55547256524..f3a2f60b443 100644
--- a/api/Publisher.TextFrame.ValidLinkTarget.md
+++ b/api/Publisher.TextFrame.ValidLinkTarget.md
@@ -27,11 +27,11 @@ Determines whether the text frame of one shape can be linked to the text frame o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|LinkTarget|Required| **Shape**|The shape with the target text frame to which you want to link the text frame returned by expression.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.TextRange.BoundHeight.md b/api/Publisher.TextRange.BoundHeight.md
index 3dfd1069cb3..13358914a56 100644
--- a/api/Publisher.TextRange.BoundHeight.md
+++ b/api/Publisher.TextRange.BoundHeight.md
@@ -23,7 +23,7 @@ Returns a **Single** indicating the height, in points, of the bounding box for
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.TextRange.BoundLeft.md b/api/Publisher.TextRange.BoundLeft.md
index a0d95bb6e0a..4b2b973e486 100644
--- a/api/Publisher.TextRange.BoundLeft.md
+++ b/api/Publisher.TextRange.BoundLeft.md
@@ -23,7 +23,7 @@ Returns a **Single** indicating the distance, in points, from the left edge of
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.TextRange.BoundTop.md b/api/Publisher.TextRange.BoundTop.md
index cc6994a8bbf..015494a8d94 100644
--- a/api/Publisher.TextRange.BoundTop.md
+++ b/api/Publisher.TextRange.BoundTop.md
@@ -23,7 +23,7 @@ Returns a **Single** indicating the distance, in points, from the top edge of t
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.TextRange.BoundWidth.md b/api/Publisher.TextRange.BoundWidth.md
index edf4b625dd2..7d0ba780d2f 100644
--- a/api/Publisher.TextRange.BoundWidth.md
+++ b/api/Publisher.TextRange.BoundWidth.md
@@ -23,7 +23,7 @@ Returns a **Single** indicating the width, in points, of the bounding box for t
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.TextRange.Characters.md b/api/Publisher.TextRange.Characters.md
index 801a57a80d0..41955a9d004 100644
--- a/api/Publisher.TextRange.Characters.md
+++ b/api/Publisher.TextRange.Characters.md
@@ -27,12 +27,12 @@ Returns a **[TextRange](Publisher.TextRange.md)** object that represents the sp
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Start|Required| **Long**|The first character in the returned range.|
|Length|Optional| **Long**|The number of characters to be returned. Default is 1.|
-### Return Value
+### Return value
TextRange
diff --git a/api/Publisher.TextRange.Collapse.md b/api/Publisher.TextRange.Collapse.md
index eb1f36b91dd..25540b98c03 100644
--- a/api/Publisher.TextRange.Collapse.md
+++ b/api/Publisher.TextRange.Collapse.md
@@ -27,7 +27,7 @@ Collapses a range or selection to the starting position or ending position. Afte
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Direction|Required| **PbCollapseDirection**|The direction in which to collapse the range or selection.|
diff --git a/api/Publisher.TextRange.ContainingObject.md b/api/Publisher.TextRange.ContainingObject.md
index e45390d8c2d..0a6bc6b4fd9 100644
--- a/api/Publisher.TextRange.ContainingObject.md
+++ b/api/Publisher.TextRange.ContainingObject.md
@@ -23,7 +23,7 @@ Returns an **Object** that represents the object that contains the text range.
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
Object
diff --git a/api/Publisher.TextRange.Copy.md b/api/Publisher.TextRange.Copy.md
index 245af2f3e7a..cfc7c0bab8e 100644
--- a/api/Publisher.TextRange.Copy.md
+++ b/api/Publisher.TextRange.Copy.md
@@ -23,7 +23,7 @@ Copies the specified object to the Clipboard.
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.TextRange.Cut.md b/api/Publisher.TextRange.Cut.md
index f92d17253a8..22e82bff5db 100644
--- a/api/Publisher.TextRange.Cut.md
+++ b/api/Publisher.TextRange.Cut.md
@@ -23,7 +23,7 @@ Deletes the specified object and places it on the Clipboard.
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.TextRange.DropCap.md b/api/Publisher.TextRange.DropCap.md
index 5f6e0cd4e7d..37cdcbf0e0b 100644
--- a/api/Publisher.TextRange.DropCap.md
+++ b/api/Publisher.TextRange.DropCap.md
@@ -23,7 +23,7 @@ Returns a **[DropCap](Publisher.DropCap.md)** object that represents a dropped
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
DropCap
diff --git a/api/Publisher.TextRange.Duplicate.md b/api/Publisher.TextRange.Duplicate.md
index 730c0156bfe..fa600a45bbf 100644
--- a/api/Publisher.TextRange.Duplicate.md
+++ b/api/Publisher.TextRange.Duplicate.md
@@ -23,7 +23,7 @@ Returns a **[TextRange](Publisher.TextRange.md)** object that represents a dupl
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
TextRange
diff --git a/api/Publisher.TextRange.End.md b/api/Publisher.TextRange.End.md
index 40797c9885a..be68e7b4334 100644
--- a/api/Publisher.TextRange.End.md
+++ b/api/Publisher.TextRange.End.md
@@ -23,7 +23,7 @@ Sets or returns a **Long** that represents the ending character position of a s
_expression_ A variable that represents an **TextRange** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.TextRange.Expand.md b/api/Publisher.TextRange.Expand.md
index be2a9aacfca..923a87993a2 100644
--- a/api/Publisher.TextRange.Expand.md
+++ b/api/Publisher.TextRange.Expand.md
@@ -27,11 +27,11 @@ Expands the specified range or selection. Returns or sets a **Long** that repre
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Unit|Required| **PbTextUnit**|The unit by which to expand the range.|
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.TextRange.Fields.md b/api/Publisher.TextRange.Fields.md
index 04802bed674..11cd5841bb0 100644
--- a/api/Publisher.TextRange.Fields.md
+++ b/api/Publisher.TextRange.Fields.md
@@ -23,7 +23,7 @@ Returns a **Fields** object that represents all the fields in the specified tex
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
Fields
diff --git a/api/Publisher.TextRange.Hyperlinks.md b/api/Publisher.TextRange.Hyperlinks.md
index 5d7b434c840..521ccfe59b1 100644
--- a/api/Publisher.TextRange.Hyperlinks.md
+++ b/api/Publisher.TextRange.Hyperlinks.md
@@ -23,7 +23,7 @@ Returns a **[Hyperlinks](Publisher.Hyperlinks.md)** collection representing all
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
Hyperlinks
diff --git a/api/Publisher.TextRange.InlineShapes.md b/api/Publisher.TextRange.InlineShapes.md
index a3c2dea04d6..53ecfd70d01 100644
--- a/api/Publisher.TextRange.InlineShapes.md
+++ b/api/Publisher.TextRange.InlineShapes.md
@@ -23,7 +23,7 @@ Returns an **[InlineShapes](Publisher.InlineShapes.md)** collection, which repr
_expression_ A variable that represents an **TextRange** object.
-### Return Value
+### Return value
InlineShapes
diff --git a/api/Publisher.TextRange.InsertAfter.md b/api/Publisher.TextRange.InsertAfter.md
index 15f176ad745..a63c5052f66 100644
--- a/api/Publisher.TextRange.InsertAfter.md
+++ b/api/Publisher.TextRange.InsertAfter.md
@@ -27,11 +27,11 @@ Returns a **[TextRange](Publisher.TextRange.md)** object that represents text a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|NewText|Required| **String**|The text to be inserted.|
-### Return Value
+### Return value
TextRange
diff --git a/api/Publisher.TextRange.InsertBarcode.md b/api/Publisher.TextRange.InsertBarcode.md
index c695e2c8aec..cd3a53581cf 100644
--- a/api/Publisher.TextRange.InsertBarcode.md
+++ b/api/Publisher.TextRange.InsertBarcode.md
@@ -23,7 +23,7 @@ Inserts a bar code field at the end of the text range represented by the parent
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
TextRange
diff --git a/api/Publisher.TextRange.InsertBefore.md b/api/Publisher.TextRange.InsertBefore.md
index e73bc46f76f..43ec449c3da 100644
--- a/api/Publisher.TextRange.InsertBefore.md
+++ b/api/Publisher.TextRange.InsertBefore.md
@@ -27,11 +27,11 @@ Appends a string to the beginning of the specified text range. Returns a **Text
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|NewText|Required| **String**|The text to be inserted. The default value is an empty string.|
-### Return Value
+### Return value
TextRange
diff --git a/api/Publisher.TextRange.InsertDateTime.md b/api/Publisher.TextRange.InsertDateTime.md
index 8e56d9f9127..998d6fde16c 100644
--- a/api/Publisher.TextRange.InsertDateTime.md
+++ b/api/Publisher.TextRange.InsertDateTime.md
@@ -27,7 +27,7 @@ Returns a **[TextRange](Publisher.TextRange.md)** object that represents the da
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Format|Required| **PbDateTimeFormat**|A format for the date and time.|
|InsertAsField|Optional| **Boolean**| **True** for Microsoft Publisher to update date and time whenever opening the publication. Default is **False**.|
@@ -35,7 +35,7 @@ Returns a **[TextRange](Publisher.TextRange.md)** object that represents the da
|Language|Optional| **MsoLanguageID**|The language in which to display the date or time.|
|Calendar|Optional| **PbCalendarType**|The calendar type to use when displaying the date or time.|
-### Return Value
+### Return value
TextRange
diff --git a/api/Publisher.TextRange.InsertMailMergeField.md b/api/Publisher.TextRange.InsertMailMergeField.md
index 074ef218ae6..3a27be2888e 100644
--- a/api/Publisher.TextRange.InsertMailMergeField.md
+++ b/api/Publisher.TextRange.InsertMailMergeField.md
@@ -27,11 +27,11 @@ Returns a **[TextRange](Publisher.TextRange.md)** object that represents a text
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|varIndex|Required| **Variant**|The name or index of the data field in the datasource.|
-### Return Value
+### Return value
TextRange
diff --git a/api/Publisher.TextRange.InsertPageNumber.md b/api/Publisher.TextRange.InsertPageNumber.md
index 8b7bc31c46b..1a349d2b0e4 100644
--- a/api/Publisher.TextRange.InsertPageNumber.md
+++ b/api/Publisher.TextRange.InsertPageNumber.md
@@ -27,11 +27,11 @@ Returns a **[TextRange](Publisher.TextRange.md)** object that represents a page
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Type|Optional| **PbPageNumberType**|Specifies whether the page number is the current page number or the next or previous page number of a linked text box.|
-### Return Value
+### Return value
TextRange
diff --git a/api/Publisher.TextRange.InsertSymbol.md b/api/Publisher.TextRange.InsertSymbol.md
index 7151c05a2c7..b05a5b8a329 100644
--- a/api/Publisher.TextRange.InsertSymbol.md
+++ b/api/Publisher.TextRange.InsertSymbol.md
@@ -27,12 +27,12 @@ Returns a **[TextRange](Publisher.TextRange.md)** object that represents a symb
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|FontName|Required| **String**|The name of the font that contains the symbol.|
|CharIndex|Required| **Long**|The Unicode character for the specified symbol.|
-### Return Value
+### Return value
TextRange
diff --git a/api/Publisher.TextRange.LanguageID.md b/api/Publisher.TextRange.LanguageID.md
index 7daeb3890da..2c9b58c34b9 100644
--- a/api/Publisher.TextRange.LanguageID.md
+++ b/api/Publisher.TextRange.LanguageID.md
@@ -23,7 +23,7 @@ Returns or sets a **MsoLanguageID** constant that represents the language for t
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
MsoLanguageID
diff --git a/api/Publisher.TextRange.Lines.md b/api/Publisher.TextRange.Lines.md
index ecb54c290c0..180cc7b6b3e 100644
--- a/api/Publisher.TextRange.Lines.md
+++ b/api/Publisher.TextRange.Lines.md
@@ -27,12 +27,12 @@ Returns a **[TextRange](Publisher.TextRange.md)** object that represents the sp
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Start|Required| **Long**|The first line in the returned range.|
|Length|Optional| **Long**|The number of lines to be returned. Default is 1.|
-### Return Value
+### Return value
TextRange
diff --git a/api/Publisher.TextRange.LinesCount.md b/api/Publisher.TextRange.LinesCount.md
index 818e92cb94b..82f8da6cfd3 100644
--- a/api/Publisher.TextRange.LinesCount.md
+++ b/api/Publisher.TextRange.LinesCount.md
@@ -23,7 +23,7 @@ Returns the number of lines of text in the text range represented by the parent
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.TextRange.MajorityFont.md b/api/Publisher.TextRange.MajorityFont.md
index c102f7b3b06..04c6e7b6db5 100644
--- a/api/Publisher.TextRange.MajorityFont.md
+++ b/api/Publisher.TextRange.MajorityFont.md
@@ -23,7 +23,7 @@ Returns a **[Font](Publisher.Font.md)** object that represents the font name mo
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
Font
diff --git a/api/Publisher.TextRange.MajorityParagraphFormat.md b/api/Publisher.TextRange.MajorityParagraphFormat.md
index 21838c79bd5..d61034136c1 100644
--- a/api/Publisher.TextRange.MajorityParagraphFormat.md
+++ b/api/Publisher.TextRange.MajorityParagraphFormat.md
@@ -23,7 +23,7 @@ Returns a **[ParagraphFormat](Publisher.ParagraphFormat.md)** object that repre
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
ParagraphFormat
diff --git a/api/Publisher.TextRange.Move.md b/api/Publisher.TextRange.Move.md
index 26369e92c3e..b5b21656285 100644
--- a/api/Publisher.TextRange.Move.md
+++ b/api/Publisher.TextRange.Move.md
@@ -27,12 +27,12 @@ Collapses the specified range to its start position or end position and then mov
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Unit|Required| **PbTextUnit**|The unit by which the collapsed range or selection is to be moved.|
|Size|Required| **Long**|The number of units by which the specified range or selection is to be moved. If **Size** is a positive number, the object is collapsed to its end position and moved forward in the document by the specified number of units. If **Size** is a negative number, the object is collapsed to its start position and moved backward by the specified number of units. You can also control the collapse direction by using the **Collapse** method before using the **Move** method.|
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.TextRange.MoveEnd.md b/api/Publisher.TextRange.MoveEnd.md
index a0beceeb25e..6334777dad0 100644
--- a/api/Publisher.TextRange.MoveEnd.md
+++ b/api/Publisher.TextRange.MoveEnd.md
@@ -27,12 +27,12 @@ Moves the ending character position of a range. This method returns a **Long**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Unit|Required| **PbTextUnit**|The unit by which the collapsed range or selection is to be moved.|
|Size|Required| **Long**|The number of units to move. If this number is positive, the ending character position is moved forward in the document. If this number is negative, the end is moved backward. If the ending position overtakes the starting position, the range collapses and both character positions move together.|
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.TextRange.MoveStart.md b/api/Publisher.TextRange.MoveStart.md
index f93c958c6f3..49134f31872 100644
--- a/api/Publisher.TextRange.MoveStart.md
+++ b/api/Publisher.TextRange.MoveStart.md
@@ -27,12 +27,12 @@ Moves the start position of the specified range. This method returns a **Long**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Unit|Required| **PbTextUnit**|The unit by which the collapsed range or selection is to be moved.|
|Size|Required| **Long**|The number of units to move. If this number is positive, the ending character position is moved forward in the document. If this number is negative, the end is moved backward. If the ending position overtakes the starting position, the range collapses and both character positions move together.|
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.TextRange.Paragraphs.md b/api/Publisher.TextRange.Paragraphs.md
index 7b7d4402a64..cf037e56e2b 100644
--- a/api/Publisher.TextRange.Paragraphs.md
+++ b/api/Publisher.TextRange.Paragraphs.md
@@ -27,12 +27,12 @@ Returns a **[TextRange](Publisher.TextRange.md)** object that represents the sp
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Start|Required| **Long**|The first paragraph in the returned range.|
|Length|Optional| **Long**|The number of paragraphs to be returned. Default is 1.|
-### Return Value
+### Return value
TextRange
diff --git a/api/Publisher.TextRange.ParagraphsCount.md b/api/Publisher.TextRange.ParagraphsCount.md
index 3a6368c529a..28a0e12a1dd 100644
--- a/api/Publisher.TextRange.ParagraphsCount.md
+++ b/api/Publisher.TextRange.ParagraphsCount.md
@@ -23,7 +23,7 @@ Returns the number of paragraphs of text in the text range represented by the pa
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.TextRange.Paste.md b/api/Publisher.TextRange.Paste.md
index 3b42123c27c..3f4061af88c 100644
--- a/api/Publisher.TextRange.Paste.md
+++ b/api/Publisher.TextRange.Paste.md
@@ -23,7 +23,7 @@ Pastes the text on the Clipboard into the specified text range, and returns a *
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
TextRange
diff --git a/api/Publisher.TextRange.Script.md b/api/Publisher.TextRange.Script.md
index a258ffa95d0..5b4a0d79379 100644
--- a/api/Publisher.TextRange.Script.md
+++ b/api/Publisher.TextRange.Script.md
@@ -23,7 +23,7 @@ Returns a **PbFontScriptType** constant that represents the font script for a t
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
PbFontScriptType
diff --git a/api/Publisher.TextRange.Start.md b/api/Publisher.TextRange.Start.md
index d0b302e7e00..7ac466f1685 100644
--- a/api/Publisher.TextRange.Start.md
+++ b/api/Publisher.TextRange.Start.md
@@ -23,7 +23,7 @@ Returns or sets a **Long** that represents the starting character position of a
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.TextRange.Words.md b/api/Publisher.TextRange.Words.md
index 08d7f76ad52..77c871ca3c0 100644
--- a/api/Publisher.TextRange.Words.md
+++ b/api/Publisher.TextRange.Words.md
@@ -27,12 +27,12 @@ Returns a **[TextRange](Publisher.TextRange.md)** object that represents the sp
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Start|Required| **Long**|The first word in the returned range.|
|Length|Optional| **Long**|The number of words to be returned. Default is 1.|
-### Return Value
+### Return value
TextRange
diff --git a/api/Publisher.TextRange.WordsCount.md b/api/Publisher.TextRange.WordsCount.md
index 87e59746f51..61dd03e6b47 100644
--- a/api/Publisher.TextRange.WordsCount.md
+++ b/api/Publisher.TextRange.WordsCount.md
@@ -23,7 +23,7 @@ Returns the number of words in the text range represented by the parent **TextR
_expression_ A variable that represents a **TextRange** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.TextStyle.BaseStyle.md b/api/Publisher.TextStyle.BaseStyle.md
index f0ce6b7e907..7b2c4a24a3d 100644
--- a/api/Publisher.TextStyle.BaseStyle.md
+++ b/api/Publisher.TextStyle.BaseStyle.md
@@ -23,7 +23,7 @@ Returns or sets a **String** that represents the style upon which the formattin
_expression_ A variable that represents a **TextStyle** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.TextStyle.NextParagraphStyle.md b/api/Publisher.TextStyle.NextParagraphStyle.md
index 1da5817f693..e8dcf4be2af 100644
--- a/api/Publisher.TextStyle.NextParagraphStyle.md
+++ b/api/Publisher.TextStyle.NextParagraphStyle.md
@@ -23,7 +23,7 @@ Returns or sets a **String** that represents the paragraph style that follows t
_expression_ A variable that represents a **TextStyle** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.TextStyles.Add.md b/api/Publisher.TextStyles.Add.md
index 75b6a47a9d9..7f50666aec1 100644
--- a/api/Publisher.TextStyles.Add.md
+++ b/api/Publisher.TextStyles.Add.md
@@ -27,14 +27,14 @@ Adds a new **TextStyle** object to the specified **TextStyles** object and retu
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|StyleName|Required| **String**|The name of the new text style. If the name matches an existing text style, the existing text style is overwritten.|
|BasedOn|Optional| **String**|The name of the text style on which the new text style is based. If the name does not match an existing text style, an error occurs.|
|Font|Optional| **Font**|The font settings to apply to the new text style.|
|ParagraphFormat|Optional| **ParagraphFormat**|The paragraph formatting to apply to the new text style.|
-### Return Value
+### Return value
TextStyle
diff --git a/api/Publisher.TextStyles.Item.md b/api/Publisher.TextStyles.Item.md
index 31226984db7..d8922341ede 100644
--- a/api/Publisher.TextStyles.Item.md
+++ b/api/Publisher.TextStyles.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The number or name of the field or list box item to return.|
-### Return Value
+### Return value
TextStyle
diff --git a/api/Publisher.ThreeDFormat.Depth.md b/api/Publisher.ThreeDFormat.Depth.md
index 5d4cc9daacd..c22a1109cce 100644
--- a/api/Publisher.ThreeDFormat.Depth.md
+++ b/api/Publisher.ThreeDFormat.Depth.md
@@ -23,7 +23,7 @@ Returns or sets a **Variant** indicating the depth of the shape's extrusion. Re
_expression_ A variable that represents a **ThreeDFormat** object.
-### Return Value
+### Return value
Variant
diff --git a/api/Publisher.ThreeDFormat.ExtrusionColor.md b/api/Publisher.ThreeDFormat.ExtrusionColor.md
index d339ed72480..1783715bb2e 100644
--- a/api/Publisher.ThreeDFormat.ExtrusionColor.md
+++ b/api/Publisher.ThreeDFormat.ExtrusionColor.md
@@ -23,7 +23,7 @@ Returns a **[ColorFormat](Publisher.ColorFormat.md)** object representing the c
_expression_ A variable that represents an **ThreeDFormat** object.
-### Return Value
+### Return value
ColorFormat
diff --git a/api/Publisher.ThreeDFormat.ExtrusionColorType.md b/api/Publisher.ThreeDFormat.ExtrusionColorType.md
index 1fe1838ea3c..6be9b887436 100644
--- a/api/Publisher.ThreeDFormat.ExtrusionColorType.md
+++ b/api/Publisher.ThreeDFormat.ExtrusionColorType.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoExtrusionColorType** constant indicating whether the ex
_expression_ A variable that represents an **ThreeDFormat** object.
-### Return Value
+### Return value
MsoExtrusionColorType
diff --git a/api/Publisher.ThreeDFormat.IncrementRotationX.md b/api/Publisher.ThreeDFormat.IncrementRotationX.md
index 47dd11d1fb6..463b13695ed 100644
--- a/api/Publisher.ThreeDFormat.IncrementRotationX.md
+++ b/api/Publisher.ThreeDFormat.IncrementRotationX.md
@@ -27,7 +27,7 @@ Changes the rotation of the specified shape around the x-axis (horizontal) by th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Increment|Required| **Single**|Specifies by how many degrees to rotate the shape around the x-axis. Can be a value from - 90 through 90. A positive value tilts the shape up; a negative value tilts it down.|
diff --git a/api/Publisher.ThreeDFormat.IncrementRotationY.md b/api/Publisher.ThreeDFormat.IncrementRotationY.md
index c1ac78d583d..b9bf39d85f8 100644
--- a/api/Publisher.ThreeDFormat.IncrementRotationY.md
+++ b/api/Publisher.ThreeDFormat.IncrementRotationY.md
@@ -27,7 +27,7 @@ Changes the rotation of the specified shape around the y-axis (vertical) by the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Increment|Required| **Single**|Specifies by how many degrees to rotate the shape around the y-axis. Can be a value from - 90 through 90. A positive value tilts the shape to the left; a negative value tilts it to the right.|
diff --git a/api/Publisher.ThreeDFormat.Perspective.md b/api/Publisher.ThreeDFormat.Perspective.md
index 9fc25a36487..ec2c61d9ded 100644
--- a/api/Publisher.ThreeDFormat.Perspective.md
+++ b/api/Publisher.ThreeDFormat.Perspective.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **ThreeDFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.ThreeDFormat.PresetExtrusionDirection.md b/api/Publisher.ThreeDFormat.PresetExtrusionDirection.md
index 02e73a1a3e3..acb18d626b9 100644
--- a/api/Publisher.ThreeDFormat.PresetExtrusionDirection.md
+++ b/api/Publisher.ThreeDFormat.PresetExtrusionDirection.md
@@ -23,7 +23,7 @@ Returns an **MsoPresetExtrusionDirection** constant that represents the directi
_expression_ A variable that represents a **ThreeDFormat** object.
-### Return Value
+### Return value
MsoPresetExtrusionDirection
diff --git a/api/Publisher.ThreeDFormat.PresetLightingDirection.md b/api/Publisher.ThreeDFormat.PresetLightingDirection.md
index 052fd0a4bae..31cf3b7d1be 100644
--- a/api/Publisher.ThreeDFormat.PresetLightingDirection.md
+++ b/api/Publisher.ThreeDFormat.PresetLightingDirection.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoPresetLightingDirection** constant that represents the
_expression_ A variable that represents a **ThreeDFormat** object.
-### Return Value
+### Return value
MsoPresetLightingDirection
diff --git a/api/Publisher.ThreeDFormat.PresetLightingSoftness.md b/api/Publisher.ThreeDFormat.PresetLightingSoftness.md
index aec9a5f1940..717bca6f797 100644
--- a/api/Publisher.ThreeDFormat.PresetLightingSoftness.md
+++ b/api/Publisher.ThreeDFormat.PresetLightingSoftness.md
@@ -23,7 +23,7 @@ Returns or sets a **MsoPresetLightingSoftness** constant that represents the in
_expression_ A variable that represents a **ThreeDFormat** object.
-### Return Value
+### Return value
MsoPresetLightingSoftness
diff --git a/api/Publisher.ThreeDFormat.PresetMaterial.md b/api/Publisher.ThreeDFormat.PresetMaterial.md
index 93319b2892a..c39a99960ee 100644
--- a/api/Publisher.ThreeDFormat.PresetMaterial.md
+++ b/api/Publisher.ThreeDFormat.PresetMaterial.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoPresetMaterial** constant that represents the extrusion
_expression_ A variable that represents a **ThreeDFormat** object.
-### Return Value
+### Return value
MsoPresetMaterial
diff --git a/api/Publisher.ThreeDFormat.PresetThreeDFormat.md b/api/Publisher.ThreeDFormat.PresetThreeDFormat.md
index 20ecc488b3e..898df2bee31 100644
--- a/api/Publisher.ThreeDFormat.PresetThreeDFormat.md
+++ b/api/Publisher.ThreeDFormat.PresetThreeDFormat.md
@@ -23,7 +23,7 @@ Returns an **MsoPresetThreeDFormat** constant that represents the preset extrus
_expression_ A variable that represents a **ThreeDFormat** object.
-### Return Value
+### Return value
MsoPresetThreeDFormat
diff --git a/api/Publisher.ThreeDFormat.RotationX.md b/api/Publisher.ThreeDFormat.RotationX.md
index 21880317163..df4f629ff43 100644
--- a/api/Publisher.ThreeDFormat.RotationX.md
+++ b/api/Publisher.ThreeDFormat.RotationX.md
@@ -23,7 +23,7 @@ Returns or sets the rotation of the extruded shape around the x-axis in degrees.
_expression_ A variable that represents a **ThreeDFormat** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.ThreeDFormat.RotationY.md b/api/Publisher.ThreeDFormat.RotationY.md
index 1fb452e50ca..067be5d1b04 100644
--- a/api/Publisher.ThreeDFormat.RotationY.md
+++ b/api/Publisher.ThreeDFormat.RotationY.md
@@ -23,7 +23,7 @@ Returns or sets the rotation of the extruded shape around the y-axis, in degrees
_expression_ A variable that represents a **ThreeDFormat** object.
-### Return Value
+### Return value
Single
diff --git a/api/Publisher.ThreeDFormat.SetExtrusionDirection.md b/api/Publisher.ThreeDFormat.SetExtrusionDirection.md
index fe7ecc504a4..a19060b99ad 100644
--- a/api/Publisher.ThreeDFormat.SetExtrusionDirection.md
+++ b/api/Publisher.ThreeDFormat.SetExtrusionDirection.md
@@ -27,7 +27,7 @@ Sets the direction that the extrusion's sweep path takes away from the extruded
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PresetExtrusionDirection|Required| **MsoPresetExtrusionDirection**|Specifies the extrusion direction.|
diff --git a/api/Publisher.ThreeDFormat.SetThreeDFormat.md b/api/Publisher.ThreeDFormat.SetThreeDFormat.md
index 3038720f45f..5210947fade 100644
--- a/api/Publisher.ThreeDFormat.SetThreeDFormat.md
+++ b/api/Publisher.ThreeDFormat.SetThreeDFormat.md
@@ -27,7 +27,7 @@ Sets the preset extrusion format. Each preset extrusion format contains a set of
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PresetThreeDFormat|Required| **MsoPresetThreeDFormat**|Specifies a preset extrusion format that corresponds to one of the options (numbered from left to right, from top to bottom) displayed when you click the **3-D** button on the **Drawing** toolbar.|
diff --git a/api/Publisher.View.ActivePage.md b/api/Publisher.View.ActivePage.md
index fbe666b4bfe..fbbadc51a73 100644
--- a/api/Publisher.View.ActivePage.md
+++ b/api/Publisher.View.ActivePage.md
@@ -23,7 +23,7 @@ Returns a **[Page](Publisher.Page.md)** object that represents the page current
_expression_ A variable that represents a **View** object.
-### Return Value
+### Return value
Page
diff --git a/api/Publisher.View.ScrollShapeIntoView.md b/api/Publisher.View.ScrollShapeIntoView.md
index 12b32e2abda..d80b2fed2b0 100644
--- a/api/Publisher.View.ScrollShapeIntoView.md
+++ b/api/Publisher.View.ScrollShapeIntoView.md
@@ -27,7 +27,7 @@ Scrolls the publication window so that the specified shape is displayed in the p
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Shape|Required| **Shape**|The shape to scroll into view.|
diff --git a/api/Publisher.View.Zoom.md b/api/Publisher.View.Zoom.md
index 1e55618fbc2..e06e0ad7ce2 100644
--- a/api/Publisher.View.Zoom.md
+++ b/api/Publisher.View.Zoom.md
@@ -23,7 +23,7 @@ Returns or sets a **PbZoom** constant or a value between 10 and 400 indicating
_expression_ A variable that represents a **View** object.
-### Return Value
+### Return value
PbZoom
diff --git a/api/Publisher.WebCommandButton.ActionURL.md b/api/Publisher.WebCommandButton.ActionURL.md
index e2756346613..a63ef669a41 100644
--- a/api/Publisher.WebCommandButton.ActionURL.md
+++ b/api/Publisher.WebCommandButton.ActionURL.md
@@ -23,7 +23,7 @@ Returns or sets a **String** that represents the URL of the server-side script
_expression_ A variable that represents a **WebCommandButton** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.WebCommandButton.ButtonText.md b/api/Publisher.WebCommandButton.ButtonText.md
index 9d6e2d1245d..5b12975968c 100644
--- a/api/Publisher.WebCommandButton.ButtonText.md
+++ b/api/Publisher.WebCommandButton.ButtonText.md
@@ -23,7 +23,7 @@ Returns or sets a **String** that represents the text that appears on the face
_expression_ A variable that represents a **WebCommandButton** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.WebCommandButton.ButtonType.md b/api/Publisher.WebCommandButton.ButtonType.md
index 19e0cdcfcfc..14435a054d9 100644
--- a/api/Publisher.WebCommandButton.ButtonType.md
+++ b/api/Publisher.WebCommandButton.ButtonType.md
@@ -23,7 +23,7 @@ Returns or sets a **PbCommandButtonType** constant that indicates whether a Web
_expression_ A variable that represents a **WebCommandButton** object.
-### Return Value
+### Return value
PbCommandButtonType
diff --git a/api/Publisher.WebCommandButton.DataFileFormat.md b/api/Publisher.WebCommandButton.DataFileFormat.md
index f89734cc6ca..ed3ec2691b8 100644
--- a/api/Publisher.WebCommandButton.DataFileFormat.md
+++ b/api/Publisher.WebCommandButton.DataFileFormat.md
@@ -23,7 +23,7 @@ Sets or returns a **PbSubmitDataFormatType** constant that represents the forma
_expression_ A variable that represents a **WebCommandButton** object.
-### Return Value
+### Return value
PbSubmitDataFormatType
diff --git a/api/Publisher.WebCommandButton.DataFileName.md b/api/Publisher.WebCommandButton.DataFileName.md
index 66c08d7fc72..554cae2a215 100644
--- a/api/Publisher.WebCommandButton.DataFileName.md
+++ b/api/Publisher.WebCommandButton.DataFileName.md
@@ -23,7 +23,7 @@ Returns or sets a **String** that represents the name of the file in which to s
_expression_ A variable that represents a **WebCommandButton** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.WebCommandButton.DataRetrievalMethod.md b/api/Publisher.WebCommandButton.DataRetrievalMethod.md
index 90e706cb08e..183e8e9f461 100644
--- a/api/Publisher.WebCommandButton.DataRetrievalMethod.md
+++ b/api/Publisher.WebCommandButton.DataRetrievalMethod.md
@@ -23,7 +23,7 @@ Sets or returns a **PbSubmitDataRetrievalMethodType** that represents the way d
_expression_ A variable that represents a **WebCommandButton** object.
-### Return Value
+### Return value
PbSubmitDataRetrievalMethodType
diff --git a/api/Publisher.WebCommandButton.EmailAddress.md b/api/Publisher.WebCommandButton.EmailAddress.md
index fc2c87c6610..6eaf4c69899 100644
--- a/api/Publisher.WebCommandButton.EmailAddress.md
+++ b/api/Publisher.WebCommandButton.EmailAddress.md
@@ -23,7 +23,7 @@ Sets or returns a **String** representing the e-mail address to use when proces
_expression_ A variable that represents an **WebCommandButton** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.WebCommandButton.HiddenFields.md b/api/Publisher.WebCommandButton.HiddenFields.md
index 46daeafb4b9..3a35d47ed06 100644
--- a/api/Publisher.WebCommandButton.HiddenFields.md
+++ b/api/Publisher.WebCommandButton.HiddenFields.md
@@ -23,7 +23,7 @@ Returns a **WebHiddenFields** object that represents hidden Web fields attached
_expression_ A variable that represents a **WebCommandButton** object.
-### Return Value
+### Return value
WebHiddenFields
diff --git a/api/Publisher.WebCommandButton.PostFormData.md b/api/Publisher.WebCommandButton.PostFormData.md
index 0dde5d20f2a..620ed5c57d6 100644
--- a/api/Publisher.WebCommandButton.PostFormData.md
+++ b/api/Publisher.WebCommandButton.PostFormData.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState** constant indicating whether the specified We
_expression_ A variable that represents a **WebCommandButton** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.WebHiddenFields.Add.md b/api/Publisher.WebHiddenFields.Add.md
index 01225340a07..ffd0b7dd800 100644
--- a/api/Publisher.WebHiddenFields.Add.md
+++ b/api/Publisher.WebHiddenFields.Add.md
@@ -27,12 +27,12 @@ Adds a new hidden field to a Web form and returns a **Long** indicating the num
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Name|Required| **String**|The name of the new field.|
|Value|Required| **String**|The value of the new field.|
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.WebHiddenFields.Delete.md b/api/Publisher.WebHiddenFields.Delete.md
index e39367e5be2..702d62e4e07 100644
--- a/api/Publisher.WebHiddenFields.Delete.md
+++ b/api/Publisher.WebHiddenFields.Delete.md
@@ -27,7 +27,7 @@ Deletes the specified hidden Web field or Web list box item object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The number of the Web field or list box item to delete.|
diff --git a/api/Publisher.WebHiddenFields.Item.md b/api/Publisher.WebHiddenFields.Item.md
index 613ce50fa5b..eae3780812c 100644
--- a/api/Publisher.WebHiddenFields.Item.md
+++ b/api/Publisher.WebHiddenFields.Item.md
@@ -27,11 +27,11 @@ Returns a **String** corresponding to the value of a hidden field in a Web form
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The number or name of the field or list box item to return.|
-### Return Value
+### Return value
String
diff --git a/api/Publisher.WebHiddenFields.Name.md b/api/Publisher.WebHiddenFields.Name.md
index 80be18ab731..6977df721d6 100644
--- a/api/Publisher.WebHiddenFields.Name.md
+++ b/api/Publisher.WebHiddenFields.Name.md
@@ -27,11 +27,11 @@ Returns a **String** that represents the name of a hidden Web field for a Web c
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The index number of the hidden field.|
-### Return Value
+### Return value
String
diff --git a/api/Publisher.WebListBox.ListBoxItems.md b/api/Publisher.WebListBox.ListBoxItems.md
index 324415bc51d..6a41c2f2625 100644
--- a/api/Publisher.WebListBox.ListBoxItems.md
+++ b/api/Publisher.WebListBox.ListBoxItems.md
@@ -23,7 +23,7 @@ Returns a **[WebListBoxItems](Publisher.WebListBoxItems.md)** object that repre
_expression_ A variable that represents a **WebListBox** object.
-### Return Value
+### Return value
WebListBoxItems
diff --git a/api/Publisher.WebListBox.MultiSelect.md b/api/Publisher.WebListBox.MultiSelect.md
index 07f1ada2c82..6b3bea64eca 100644
--- a/api/Publisher.WebListBox.MultiSelect.md
+++ b/api/Publisher.WebListBox.MultiSelect.md
@@ -23,7 +23,7 @@ Specifies whether a user may select more than one item in a Web list box control
_expression_ A variable that represents a **WebListBox** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.WebListBoxItems.AddItem.md b/api/Publisher.WebListBoxItems.AddItem.md
index 2cecb39f124..a5494ee2ea7 100644
--- a/api/Publisher.WebListBoxItems.AddItem.md
+++ b/api/Publisher.WebListBoxItems.AddItem.md
@@ -27,7 +27,7 @@ Adds list items to a Web list box control.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Item|Required| **String**|The name of the item as it appears in the list.|
|Index|Optional| **Long**|The number of the list item. If Index is not specified or it is out of range of the indices of existing list box items, the new item will be added to the end of the list box. Otherwise the new item will be inserted at the position specified by Index and the index position of all items after it will be increased by one.|
diff --git a/api/Publisher.WebListBoxItems.Delete.md b/api/Publisher.WebListBoxItems.Delete.md
index 8e37f5fff85..3d9c06f7cf9 100644
--- a/api/Publisher.WebListBoxItems.Delete.md
+++ b/api/Publisher.WebListBoxItems.Delete.md
@@ -27,7 +27,7 @@ Deletes the specified hidden Web field or Web list box item object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The number of the Web field or list box item to delete.|
diff --git a/api/Publisher.WebListBoxItems.Item.md b/api/Publisher.WebListBoxItems.Item.md
index a7b6c20d05c..c7ce5191eed 100644
--- a/api/Publisher.WebListBoxItems.Item.md
+++ b/api/Publisher.WebListBoxItems.Item.md
@@ -27,11 +27,11 @@ Returns a **String** corresponding to the value of a hidden field in a Web form
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The number or name of the field or list box item to return.|
-### Return Value
+### Return value
String
diff --git a/api/Publisher.WebListBoxItems.Selected.md b/api/Publisher.WebListBoxItems.Selected.md
index a31a2b9a796..06eb16605b1 100644
--- a/api/Publisher.WebListBoxItems.Selected.md
+++ b/api/Publisher.WebListBoxItems.Selected.md
@@ -27,7 +27,7 @@ Selects or cancels the selection of an item in a Web list box control.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**|The number of the Web list box item.|
|SelectState|Required| **Boolean**| **True** to select the list item.|
diff --git a/api/Publisher.WebNavigationBarHyperlinks.Add.md b/api/Publisher.WebNavigationBarHyperlinks.Add.md
index d999fd44f86..5c243e888b8 100644
--- a/api/Publisher.WebNavigationBarHyperlinks.Add.md
+++ b/api/Publisher.WebNavigationBarHyperlinks.Add.md
@@ -27,7 +27,7 @@ Adds a new **Hyperlink** object to the specified **WebNavigationBarHyperlinks**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Address|Optional| **String**|The address of the new hyperlink. If RelativePage is **pbHlinkTargetTypeURL** (default) or **pbHlinkTargetTypeEmail**, Address must be specified or an error occurs.|
|RelativePage|Optional| **PbHlinkTargetType**|The type of hyperlink to add.|
@@ -35,7 +35,7 @@ Adds a new **Hyperlink** object to the specified **WebNavigationBarHyperlinks**
|TextToDisplay|Optional| **String**|The display text of the new hyperlink. |
|Index|Optional| **Long**|The index of the new **Hyperlink** object in the **WebNavigationBarHyperlinks** collection.|
-### Return Value
+### Return value
Hyperlink
diff --git a/api/Publisher.WebNavigationBarHyperlinks.Item.md b/api/Publisher.WebNavigationBarHyperlinks.Item.md
index 0255e4eaafd..ed217289f5a 100644
--- a/api/Publisher.WebNavigationBarHyperlinks.Item.md
+++ b/api/Publisher.WebNavigationBarHyperlinks.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Long**| **Variant**. The number or name of the field or list box item to return.|
-### Return Value
+### Return value
Hyperlink
diff --git a/api/Publisher.WebNavigationBarSet.AddToEveryPage.md b/api/Publisher.WebNavigationBarSet.AddToEveryPage.md
index 7ae26dd7007..3a518dad25e 100644
--- a/api/Publisher.WebNavigationBarSet.AddToEveryPage.md
+++ b/api/Publisher.WebNavigationBarSet.AddToEveryPage.md
@@ -27,13 +27,13 @@ Adds a **ShapeRange** of type **pbWebNavigationBar** to each page of the curren
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Left|Required| **Variant**|The position of the left edge of the shape representing the Web navigation bar set.|
|Top|Required| **Variant**|The position of the top edge of the shape representing the Web navigation bar set.|
|Width|Optional| **Variant**|The width of the shape representing the Web navigation bar set.|
-### Return Value
+### Return value
ShapeRange
diff --git a/api/Publisher.WebNavigationBarSet.AutoUpdate.md b/api/Publisher.WebNavigationBarSet.AutoUpdate.md
index bbe9177911f..6f230445690 100644
--- a/api/Publisher.WebNavigationBarSet.AutoUpdate.md
+++ b/api/Publisher.WebNavigationBarSet.AutoUpdate.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **WebNavigationBarSet** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.WebNavigationBarSet.ButtonStyle.md b/api/Publisher.WebNavigationBarSet.ButtonStyle.md
index a6a25eaf8dc..263849b9af6 100644
--- a/api/Publisher.WebNavigationBarSet.ButtonStyle.md
+++ b/api/Publisher.WebNavigationBarSet.ButtonStyle.md
@@ -23,7 +23,7 @@ Sets or returns a **PbWizardNavBarButtonStyle** constant that represents the st
_expression_ A variable that represents a **WebNavigationBarSet** object.
-### Return Value
+### Return value
PbWizardNavBarButtonStyle
diff --git a/api/Publisher.WebNavigationBarSet.ChangeOrientation.md b/api/Publisher.WebNavigationBarSet.ChangeOrientation.md
index b32d0ef7722..0be87b3d7df 100644
--- a/api/Publisher.WebNavigationBarSet.ChangeOrientation.md
+++ b/api/Publisher.WebNavigationBarSet.ChangeOrientation.md
@@ -27,7 +27,7 @@ Sets a **PbNavBarOrientation** constant that represents the alignment of the na
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Orientation|Required| **PbNavBarOrientation**|
diff --git a/api/Publisher.WebNavigationBarSet.Design.md b/api/Publisher.WebNavigationBarSet.Design.md
index 53ea0bdc5dd..4c06c5cba4d 100644
--- a/api/Publisher.WebNavigationBarSet.Design.md
+++ b/api/Publisher.WebNavigationBarSet.Design.md
@@ -23,7 +23,7 @@ Sets or returns a **PbWizardNavBarDesign** constant representing the design of
_expression_ A variable that represents a **WebNavigationBarSet** object.
-### Return Value
+### Return value
PbWizardNavBarDesign
diff --git a/api/Publisher.WebNavigationBarSet.HorizontalAlignment.md b/api/Publisher.WebNavigationBarSet.HorizontalAlignment.md
index 1e7ee481a7c..ce471f60bcd 100644
--- a/api/Publisher.WebNavigationBarSet.HorizontalAlignment.md
+++ b/api/Publisher.WebNavigationBarSet.HorizontalAlignment.md
@@ -23,7 +23,7 @@ Sets or returns a **PbWizardNavBarAlignment** constant that represents the hori
_expression_ A variable that represents a **WebNavigationBarSet** object.
-### Return Value
+### Return value
PbWizardNavBarAlignment
diff --git a/api/Publisher.WebNavigationBarSet.HorizontalButtonCount.md b/api/Publisher.WebNavigationBarSet.HorizontalButtonCount.md
index 55429406bf7..2fcdc7f9f55 100644
--- a/api/Publisher.WebNavigationBarSet.HorizontalButtonCount.md
+++ b/api/Publisher.WebNavigationBarSet.HorizontalButtonCount.md
@@ -23,7 +23,7 @@ Sets or returns a **Long** representing the number of buttons in each row of bu
_expression_ A variable that represents a **WebNavigationBarSet** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.WebNavigationBarSet.IsHorizontal.md b/api/Publisher.WebNavigationBarSet.IsHorizontal.md
index 9000d66096a..41459c27ec1 100644
--- a/api/Publisher.WebNavigationBarSet.IsHorizontal.md
+++ b/api/Publisher.WebNavigationBarSet.IsHorizontal.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **WebNavigationBarSet** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.WebNavigationBarSet.Links.md b/api/Publisher.WebNavigationBarSet.Links.md
index e5b911013b7..0e261d7cbad 100644
--- a/api/Publisher.WebNavigationBarSet.Links.md
+++ b/api/Publisher.WebNavigationBarSet.Links.md
@@ -23,7 +23,7 @@ Returns a **WebNavigationBarHyperlinks** collection containing all of the hyper
_expression_ A variable that represents a **WebNavigationBarSet** object.
-### Return Value
+### Return value
WebNavigationBarHyperlinks
diff --git a/api/Publisher.WebNavigationBarSet.Name.md b/api/Publisher.WebNavigationBarSet.Name.md
index 80aaddd2971..ce6c977a9de 100644
--- a/api/Publisher.WebNavigationBarSet.Name.md
+++ b/api/Publisher.WebNavigationBarSet.Name.md
@@ -23,7 +23,7 @@ Indicates the name of the specified Web navigation bar set. Read/write.
_expression_An expression that returns a **WebNavigationBarSet** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.WebNavigationBarSet.ShowSelected.md b/api/Publisher.WebNavigationBarSet.ShowSelected.md
index 35044658641..c0277c75c01 100644
--- a/api/Publisher.WebNavigationBarSet.ShowSelected.md
+++ b/api/Publisher.WebNavigationBarSet.ShowSelected.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a **WebNavigationBarSet** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.WebNavigationBarSets.AddSet.md b/api/Publisher.WebNavigationBarSets.AddSet.md
index 79041d8a251..edf0625ad2a 100644
--- a/api/Publisher.WebNavigationBarSets.AddSet.md
+++ b/api/Publisher.WebNavigationBarSets.AddSet.md
@@ -27,13 +27,13 @@ Adds a new **WebNavigationBarSet** object representing a Web navigation bar set
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Name|Required| **String**|The name of the Web navigation bar to be added. This parameter must be unique.|
|Design|Optional| **PbWizardNavBarDesign**|Specifies the navigation bar design scheme.|
|AutoUpdate|Optional| **Boolean**| **True** if all pages with the **AddHyperlinkToWebNavBar** property set to **True**are added as links to the navigation bar and the navigation bar is kept updated.|
-### Return Value
+### Return value
WebNavigationBarSet
diff --git a/api/Publisher.WebNavigationBarSets.Item.md b/api/Publisher.WebNavigationBarSets.Item.md
index 41fdce8bb42..66bbb8ccd83 100644
--- a/api/Publisher.WebNavigationBarSets.Item.md
+++ b/api/Publisher.WebNavigationBarSets.Item.md
@@ -27,11 +27,11 @@ Returns an individual object in a specified collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Index|Required| **Variant**|The number or name of the field or list box item to return.|
-### Return Value
+### Return value
WebNavigationBarSet
diff --git a/api/Publisher.WebOptions.AlwaysSaveInDefaultEncoding.md b/api/Publisher.WebOptions.AlwaysSaveInDefaultEncoding.md
index 5340beb5d12..6866ba91028 100644
--- a/api/Publisher.WebOptions.AlwaysSaveInDefaultEncoding.md
+++ b/api/Publisher.WebOptions.AlwaysSaveInDefaultEncoding.md
@@ -23,7 +23,7 @@ Returns or sets a **Boolean** value that specifies whether Web pages within a W
_expression_ A variable that represents a **WebOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.WebOptions.EmailAsImg.md b/api/Publisher.WebOptions.EmailAsImg.md
index 836086aa32f..1a50812e363 100644
--- a/api/Publisher.WebOptions.EmailAsImg.md
+++ b/api/Publisher.WebOptions.EmailAsImg.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **WebOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.WebOptions.EnableIncrementalUpload.md b/api/Publisher.WebOptions.EnableIncrementalUpload.md
index a06e2a07514..5e0c2ab9f12 100644
--- a/api/Publisher.WebOptions.EnableIncrementalUpload.md
+++ b/api/Publisher.WebOptions.EnableIncrementalUpload.md
@@ -23,7 +23,7 @@ Returns or sets a **Boolean** value that specifies whether changes made to a We
_expression_ A variable that represents an **WebOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.WebOptions.Encoding.md b/api/Publisher.WebOptions.Encoding.md
index c84856a524f..7d95ba0482d 100644
--- a/api/Publisher.WebOptions.Encoding.md
+++ b/api/Publisher.WebOptions.Encoding.md
@@ -23,7 +23,7 @@ Returns an **MsoEncoding** constant that specifies the encoding of the Web publ
_expression_ A variable that represents an **WebOptions** object.
-### Return Value
+### Return value
MsoEncoding
diff --git a/api/Publisher.WebOptions.OrganizeInFolder.md b/api/Publisher.WebOptions.OrganizeInFolder.md
index 8f363052fe9..d503d62f0c9 100644
--- a/api/Publisher.WebOptions.OrganizeInFolder.md
+++ b/api/Publisher.WebOptions.OrganizeInFolder.md
@@ -23,7 +23,7 @@ Returns or sets a **Boolean** value that specifies whether a Web publication wi
_expression_ A variable that represents an **WebOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.WebOptions.RelyOnVML.md b/api/Publisher.WebOptions.RelyOnVML.md
index 632a5ebae5d..529216be5bc 100644
--- a/api/Publisher.WebOptions.RelyOnVML.md
+++ b/api/Publisher.WebOptions.RelyOnVML.md
@@ -23,7 +23,7 @@ Returns or sets a **Boolean** value that specifies whether image files are gene
_expression_ A variable that represents a **WebOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.WebOptions.ShowOnlyWebFonts.md b/api/Publisher.WebOptions.ShowOnlyWebFonts.md
index bcb3c390d70..987155381e1 100644
--- a/api/Publisher.WebOptions.ShowOnlyWebFonts.md
+++ b/api/Publisher.WebOptions.ShowOnlyWebFonts.md
@@ -23,7 +23,7 @@ Returns or sets a **Boolean** value that specifies whether only Web-safe fonts a
_expression_ A variable that represents a **WebOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.WebPageOptions.BackgroundSound.md b/api/Publisher.WebPageOptions.BackgroundSound.md
index ff1fe06b507..16b1b41f55e 100644
--- a/api/Publisher.WebPageOptions.BackgroundSound.md
+++ b/api/Publisher.WebPageOptions.BackgroundSound.md
@@ -23,7 +23,7 @@ Returns or sets a **String** that specifies the path to a sound file that is pl
_expression_ A variable that represents a **WebPageOptions** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.WebPageOptions.BackgroundSoundLoopCount.md b/api/Publisher.WebPageOptions.BackgroundSoundLoopCount.md
index 8ae73192251..bfb5777b926 100644
--- a/api/Publisher.WebPageOptions.BackgroundSoundLoopCount.md
+++ b/api/Publisher.WebPageOptions.BackgroundSoundLoopCount.md
@@ -23,7 +23,7 @@ Returns a **Long** value that specifies the number of times the background soun
_expression_ A variable that represents a **WebPageOptions** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.WebPageOptions.BackgroundSoundLoopForever.md b/api/Publisher.WebPageOptions.BackgroundSoundLoopForever.md
index 4225eb85071..db5e6a2cdc8 100644
--- a/api/Publisher.WebPageOptions.BackgroundSoundLoopForever.md
+++ b/api/Publisher.WebPageOptions.BackgroundSoundLoopForever.md
@@ -23,7 +23,7 @@ Returns a **Boolean** value that specifies whether the background sound attache
_expression_ A variable that represents a **WebPageOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.WebPageOptions.IncludePageOnNewWebNavigationBars.md b/api/Publisher.WebPageOptions.IncludePageOnNewWebNavigationBars.md
index d5979c09537..6472c9bb674 100644
--- a/api/Publisher.WebPageOptions.IncludePageOnNewWebNavigationBars.md
+++ b/api/Publisher.WebPageOptions.IncludePageOnNewWebNavigationBars.md
@@ -23,7 +23,7 @@ Returns or sets a **Boolean** value that specifies whether a link to a Web page
_expression_ A variable that represents an **WebPageOptions** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.WebPageOptions.Keywords.md b/api/Publisher.WebPageOptions.Keywords.md
index 9ede90190d4..2a6d9b73ae0 100644
--- a/api/Publisher.WebPageOptions.Keywords.md
+++ b/api/Publisher.WebPageOptions.Keywords.md
@@ -23,7 +23,7 @@ Returns or sets a **String** that represents the keywords for a Web page within
_expression_ A variable that represents a **WebPageOptions** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.WebPageOptions.PublishFileName.md b/api/Publisher.WebPageOptions.PublishFileName.md
index 83a88b0fffb..39924eb06a3 100644
--- a/api/Publisher.WebPageOptions.PublishFileName.md
+++ b/api/Publisher.WebPageOptions.PublishFileName.md
@@ -23,7 +23,7 @@ Returns or sets a **String** that represents the file name of a Web page (withi
_expression_ A variable that represents a **WebPageOptions** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.WebPageOptions.SetBackgroundSoundRepeat.md b/api/Publisher.WebPageOptions.SetBackgroundSoundRepeat.md
index 8c9e3631f62..0da5941489a 100644
--- a/api/Publisher.WebPageOptions.SetBackgroundSoundRepeat.md
+++ b/api/Publisher.WebPageOptions.SetBackgroundSoundRepeat.md
@@ -27,7 +27,7 @@ Specifies whether the background sound attached to a Web page should be played i
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|RepeatForever|Required| **Boolean**|Specifies whether the background sound should be played infinitely. The value of this parameter is used to populate the value of the ** [BackgroundSoundLoopForever Property](Publisher.WebPageOptions.BackgroundSoundLoopForever.md)** property.|
|RepeatTimes|Optional| **Long**|Specifies how many times the background sound should be played. The value of this parameter is used to populate the value of the ** [BackgroundSoundLoopCount Property](Publisher.WebPageOptions.BackgroundSoundLoopCount.md)** property.|
diff --git a/api/Publisher.WebTextBox.DefaultText.md b/api/Publisher.WebTextBox.DefaultText.md
index b931c55888e..2124b57661b 100644
--- a/api/Publisher.WebTextBox.DefaultText.md
+++ b/api/Publisher.WebTextBox.DefaultText.md
@@ -23,7 +23,7 @@ Returns or sets a **String** that represents the default text in a Web text box
_expression_ A variable that represents a **WebTextBox** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.WebTextBox.EchoAsterisks.md b/api/Publisher.WebTextBox.EchoAsterisks.md
index bd2ba8e5ab6..f3b8861c372 100644
--- a/api/Publisher.WebTextBox.EchoAsterisks.md
+++ b/api/Publisher.WebTextBox.EchoAsterisks.md
@@ -23,7 +23,7 @@ Specifies whether asterisks should be displayed in place of text that is entered
_expression_ A variable that represents an **WebTextBox** object.
-### Return Value
+### Return value
MsoTrue
diff --git a/api/Publisher.WebTextBox.Limit.md b/api/Publisher.WebTextBox.Limit.md
index bcaca48936f..38a0d257dbb 100644
--- a/api/Publisher.WebTextBox.Limit.md
+++ b/api/Publisher.WebTextBox.Limit.md
@@ -23,7 +23,7 @@ Returns or sets a **Long** that represents the maximum number of characters tha
_expression_ A variable that represents a **WebTextBox** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.WebTextBox.RequiredControl.md b/api/Publisher.WebTextBox.RequiredControl.md
index 41cd0cbb8e4..f86e4d70451 100644
--- a/api/Publisher.WebTextBox.RequiredControl.md
+++ b/api/Publisher.WebTextBox.RequiredControl.md
@@ -23,7 +23,7 @@ Specifies whether an entry into a Web text box control is required. Read/write.
_expression_ A variable that represents a **WebTextBox** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.Window.Activate.md b/api/Publisher.Window.Activate.md
index dc105181c9d..be5fb5df4a6 100644
--- a/api/Publisher.Window.Activate.md
+++ b/api/Publisher.Window.Activate.md
@@ -23,7 +23,7 @@ Activates a window or OLE object.
_expression_ A variable that represents a **Window** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Publisher.Window.Caption.md b/api/Publisher.Window.Caption.md
index 8cfd1285089..8b43f490cfa 100644
--- a/api/Publisher.Window.Caption.md
+++ b/api/Publisher.Window.Caption.md
@@ -23,7 +23,7 @@ Returns or sets a **String** indicating the caption at the top of the Microsoft
_expression_ A variable that represents a **Window** object.
-### Return Value
+### Return value
String
diff --git a/api/Publisher.Window.Hwnd.md b/api/Publisher.Window.Hwnd.md
index 63d6c52a918..5af2436ead2 100644
--- a/api/Publisher.Window.Hwnd.md
+++ b/api/Publisher.Window.Hwnd.md
@@ -23,7 +23,7 @@ Returns a **Long** indicating the handle to the Microsoft Publisher application
_expression_ A variable that represents a **Window** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.Window.Move.md b/api/Publisher.Window.Move.md
index e7aa6c95a40..0124ce9f55a 100644
--- a/api/Publisher.Window.Move.md
+++ b/api/Publisher.Window.Move.md
@@ -27,7 +27,7 @@ Moves the active document window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Left|Required| **Long**|The horizontal screen position of the specified window.|
|Top|Required| **Long**|The vertical screen position of the specified window.|
diff --git a/api/Publisher.Window.Resize.md b/api/Publisher.Window.Resize.md
index 6b453973a97..3cc5acee907 100644
--- a/api/Publisher.Window.Resize.md
+++ b/api/Publisher.Window.Resize.md
@@ -27,7 +27,7 @@ Sizes the Microsoft Publisher application window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Width|Required| **Long**|The width of the window, in points.|
|Height|Required| **Long**|The height of the window, in points.|
diff --git a/api/Publisher.Window.WindowState.md b/api/Publisher.Window.WindowState.md
index f68e1b511e5..4a566b76732 100644
--- a/api/Publisher.Window.WindowState.md
+++ b/api/Publisher.Window.WindowState.md
@@ -23,7 +23,7 @@ Returns or sets a **PbWindowState** constant indicating the state of the Micros
_expression_ A variable that represents a **Window** object.
-### Return Value
+### Return value
PbWindowState
diff --git a/api/Publisher.Wizard.Properties.md b/api/Publisher.Wizard.Properties.md
index 16510322f21..58b69da5ecb 100644
--- a/api/Publisher.Wizard.Properties.md
+++ b/api/Publisher.Wizard.Properties.md
@@ -23,7 +23,7 @@ Returns a **[WizardProperties](Publisher.WizardProperties.md)** collection repr
_expression_ A variable that represents a **Wizard** object.
-### Return Value
+### Return value
WizardProperties
diff --git a/api/Publisher.Wizard.SetId.md b/api/Publisher.Wizard.SetId.md
index 1a0fd463a22..82c66dd3e88 100644
--- a/api/Publisher.Wizard.SetId.md
+++ b/api/Publisher.Wizard.SetId.md
@@ -27,7 +27,7 @@ Specifies the type of the wizard (template) to which to convert the current publ
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ID|Required| **Long**|ID of the wizard (template) to which to convert the current publication.|
diff --git a/api/Publisher.WizardProperties.FindPropertyById.md b/api/Publisher.WizardProperties.FindPropertyById.md
index e0aa196891d..78418e7d5ad 100644
--- a/api/Publisher.WizardProperties.FindPropertyById.md
+++ b/api/Publisher.WizardProperties.FindPropertyById.md
@@ -27,11 +27,11 @@ Returns a **[WizardProperty](Publisher.WizardProperty.md)** object, based on th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ID|Required| **Long**|The ID of the the wizard property to return; corresponds to the **[ID](Publisher.WizardProperty.ID.md)** property of the **WizardProperty** object.|
-### Return Value
+### Return value
WizardProperty
diff --git a/api/Publisher.WizardProperties.Item.md b/api/Publisher.WizardProperties.Item.md
index 76fc9b85569..2c73cfefad7 100644
--- a/api/Publisher.WizardProperties.Item.md
+++ b/api/Publisher.WizardProperties.Item.md
@@ -27,7 +27,7 @@ Returns an individual object from a specified collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Item|Required| **Long**|The number of the object to return.|
diff --git a/api/Publisher.WizardProperty.CurrentValueId.md b/api/Publisher.WizardProperty.CurrentValueId.md
index dad7548a9b3..a49d7ba2c71 100644
--- a/api/Publisher.WizardProperty.CurrentValueId.md
+++ b/api/Publisher.WizardProperty.CurrentValueId.md
@@ -23,7 +23,7 @@ Returns or sets a **Long** indicating the value of a setting in the specified p
_expression_ A variable that represents a **WizardProperty** object.
-### Return Value
+### Return value
Long
diff --git a/api/Publisher.WizardProperty.Enabled.md b/api/Publisher.WizardProperty.Enabled.md
index 8d3c1229459..6bbed62e1c4 100644
--- a/api/Publisher.WizardProperty.Enabled.md
+++ b/api/Publisher.WizardProperty.Enabled.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents an **WizardProperty** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Publisher.WizardProperty.Values.md b/api/Publisher.WizardProperty.Values.md
index 990114de1a0..94bab8419fd 100644
--- a/api/Publisher.WizardProperty.Values.md
+++ b/api/Publisher.WizardProperty.Values.md
@@ -23,7 +23,7 @@ Returns a **[WizardValues](Publisher.WizardValues.md)** collection representing
_expression_ A variable that represents a **WizardProperty** object.
-### Return Value
+### Return value
WizardValues
diff --git a/api/Publisher.WizardValues.Item.md b/api/Publisher.WizardValues.Item.md
index e32dd4a9cce..c9089c31dc7 100644
--- a/api/Publisher.WizardValues.Item.md
+++ b/api/Publisher.WizardValues.Item.md
@@ -27,7 +27,7 @@ Returns an individual object from a specified collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Item|Required| **Long**|The number of the object to return.|
diff --git a/api/Publisher.WrapFormat.DistanceAuto.md b/api/Publisher.WrapFormat.DistanceAuto.md
index c38a0fbb5cf..b486687c56e 100644
--- a/api/Publisher.WrapFormat.DistanceAuto.md
+++ b/api/Publisher.WrapFormat.DistanceAuto.md
@@ -23,7 +23,7 @@ Returns or sets an **MsoTriState** constant indicating whether an appropriate d
_expression_ A variable that represents a **WrapFormat** object.
-### Return Value
+### Return value
MsoTriState
diff --git a/api/Publisher.WrapFormat.Side.md b/api/Publisher.WrapFormat.Side.md
index 8d3a74230f7..e162be87ca1 100644
--- a/api/Publisher.WrapFormat.Side.md
+++ b/api/Publisher.WrapFormat.Side.md
@@ -23,7 +23,7 @@ Returns or sets a **PbWrapSideType** constant that indicates whether text shoul
_expression_ A variable that represents a **WrapFormat** object.
-### Return Value
+### Return value
PbWrapSideType
diff --git a/api/Publisher.application.captionstyles.md b/api/Publisher.application.captionstyles.md
index 634f96b987a..9d796995c16 100644
--- a/api/Publisher.application.captionstyles.md
+++ b/api/Publisher.application.captionstyles.md
@@ -21,7 +21,7 @@ Returns a **[CaptionStyles](Publisher.Documents.md)** collection that represent
_expression_ A variable that represents a **Application** object.
-### Return Value
+### Return value
**CaptionStyles**
diff --git a/api/Publisher.document.availablebuildingblocks.md b/api/Publisher.document.availablebuildingblocks.md
index ec72a3f5692..a290b0dd916 100644
--- a/api/Publisher.document.availablebuildingblocks.md
+++ b/api/Publisher.document.availablebuildingblocks.md
@@ -21,7 +21,7 @@ Returns the available members of the **[BuildingBlocks](Publisher.BuildingBlock
_expression_ A variable that represents a **Document** object.
-### Return Value
+### Return value
**BuildingBlocks**
diff --git a/api/Publisher.font.strikethrough.md b/api/Publisher.font.strikethrough.md
index 2c1ec1c212e..82888ed0028 100644
--- a/api/Publisher.font.strikethrough.md
+++ b/api/Publisher.font.strikethrough.md
@@ -21,7 +21,7 @@ Returns or sets an **MsoTriState** constant that represents the state of the **
_expression_ A variable that represents a **Font** object.
-### Return Value
+### Return value
**MsoTriState**
diff --git a/api/Publisher.lineformat.presetgradient.md b/api/Publisher.lineformat.presetgradient.md
index 0f2fdab08c8..1bfc5ca2f94 100644
--- a/api/Publisher.lineformat.presetgradient.md
+++ b/api/Publisher.lineformat.presetgradient.md
@@ -30,7 +30,7 @@ ms.date: 06/08/2017
|PresetGradientType|Required|MSOPRESETGRADIENTTYPE||
|Name|Required/Optional|Data type|Description|
-### Return Value
+### Return value
**VOID**
diff --git a/api/Publisher.pbEmailMergePriority.md b/api/Publisher.pbEmailMergePriority.md
index 5aff3fe17b9..6966a23da2d 100644
--- a/api/Publisher.pbEmailMergePriority.md
+++ b/api/Publisher.pbEmailMergePriority.md
@@ -17,7 +17,7 @@ Constants for merged e-mail message priority passed to and returned by the ** [
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbPriorityHigh**|1|High priority|
| **pbPriorityLow**|2|Low priority|
diff --git a/api/Publisher.pbbuildingblockgallery.md b/api/Publisher.pbbuildingblockgallery.md
index 10f0bbbca0a..1c075ea3171 100644
--- a/api/Publisher.pbbuildingblockgallery.md
+++ b/api/Publisher.pbbuildingblockgallery.md
@@ -15,7 +15,7 @@ Constants that represent galleries of building blocks.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbBBGalAccents**|1|Borders &; Accents gallery|
| **pbBBGalAdvertisements**|0|Advertisements gallery|
diff --git a/api/Publisher.pbbuildingblocktype.md b/api/Publisher.pbbuildingblocktype.md
index 15dc6acb1e8..06d49645bd6 100644
--- a/api/Publisher.pbbuildingblocktype.md
+++ b/api/Publisher.pbbuildingblocktype.md
@@ -15,7 +15,7 @@ Constants that represent building block types.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbBBBuiltIn**|1|Built-in type|
| **pbBBDownloaded**|2|Downloaded type|
diff --git a/api/Publisher.pbcanvasarrangementtype.md b/api/Publisher.pbcanvasarrangementtype.md
index 612e9e6c148..6740b9e581f 100644
--- a/api/Publisher.pbcanvasarrangementtype.md
+++ b/api/Publisher.pbcanvasarrangementtype.md
@@ -12,7 +12,7 @@ Constants passed to and returned by the ** [Shapes.CanvasArrangementType](Publi
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbCanvasArrangementTypeColsCanvas**|1|Canvas arranged into columns.|
| **pbCanvasArrangementTypeOneCanvas**|0|Canvas arranged as a single unit.|
diff --git a/api/Publisher.pbcatalogmergefieldtype.md b/api/Publisher.pbcatalogmergefieldtype.md
index d5617fe5fb5..5ab555ea853 100644
--- a/api/Publisher.pbcatalogmergefieldtype.md
+++ b/api/Publisher.pbcatalogmergefieldtype.md
@@ -15,7 +15,7 @@ Represents the type of catalog merge field.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbCatalogMergeFieldTypeText**|0|Text field.|
| **pbCatalogMergeFieldTypePicture**|1|Picture field.|
diff --git a/api/Publisher.pbligaturepresettype.md b/api/Publisher.pbligaturepresettype.md
index 4ba9f406303..ee85e4357e8 100644
--- a/api/Publisher.pbligaturepresettype.md
+++ b/api/Publisher.pbligaturepresettype.md
@@ -15,7 +15,7 @@ Constants passed to and returned by the ** [Font.Ligature](Publisher.font.ligat
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbLigatureAll**|3|Ligature applied to all characters|
| **pbLigatureMixed**|-1|Ligature applied to some characters, but not others|
diff --git a/api/Publisher.pbnumberstylestype.md b/api/Publisher.pbnumberstylestype.md
index 89b3959b943..fd1e0bc42f1 100644
--- a/api/Publisher.pbnumberstylestype.md
+++ b/api/Publisher.pbnumberstylestype.md
@@ -12,7 +12,7 @@ Constants passed to and returned by the ** [Font.NumberStyle](Publisher.font.nu
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbNumberStyleDefault**|0|Default number style|
| **pbNumberStyleMixed**|-1|Mixed number styles|
diff --git a/api/Publisher.pbpresetwordart.md b/api/Publisher.pbpresetwordart.md
index 89c0b8bd0e6..17f3e308d6a 100644
--- a/api/Publisher.pbpresetwordart.md
+++ b/api/Publisher.pbpresetwordart.md
@@ -15,7 +15,7 @@ Constants that specify the type of preset WordArt, passed to the ** [Shapes.Add
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **pbPresetWordArt1**|0|Style 1|
| **pbPresetWordArt2**|1|Style 2|
diff --git a/api/Publisher.pbpublicationlayout.md b/api/Publisher.pbpublicationlayout.md
index 0b76e38c0c5..b2991fb5998 100644
--- a/api/Publisher.pbpublicationlayout.md
+++ b/api/Publisher.pbpublicationlayout.md
@@ -18,7 +18,7 @@ Represents the layout type of the specified publication.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
||||
| **pbLayout4x6BaePan**| **10**||
diff --git a/api/Publisher.shape.saveasbuildingblock.md b/api/Publisher.shape.saveasbuildingblock.md
index 8bf026a37a8..60fbcfb0793 100644
--- a/api/Publisher.shape.saveasbuildingblock.md
+++ b/api/Publisher.shape.saveasbuildingblock.md
@@ -25,7 +25,7 @@ Saves a single shape as a building block. Returns the resulting **[BuildingBloc
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Name|Required| **String**|The name of the new building block you want to create.|
diff --git a/api/Publisher.shape.setcaption.md b/api/Publisher.shape.setcaption.md
index 531a8e1b9ee..caacdb7af72 100644
--- a/api/Publisher.shape.setcaption.md
+++ b/api/Publisher.shape.setcaption.md
@@ -22,7 +22,7 @@ Sets the caption style for the shape.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Style|Required| **CaptionStyle**|Specifies the style of the caption.|
diff --git a/api/Publisher.shaperange.saveasbuildingblock.md b/api/Publisher.shaperange.saveasbuildingblock.md
index dee89c955a4..f9b6461240b 100644
--- a/api/Publisher.shaperange.saveasbuildingblock.md
+++ b/api/Publisher.shaperange.saveasbuildingblock.md
@@ -25,7 +25,7 @@ Saves a single shape range as a building block. Returns the resulting **[Buildi
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Name|Required| **String**|The name of the new building block you want to create.|
diff --git a/api/Publisher.shapes.addbuildingblock.md b/api/Publisher.shapes.addbuildingblock.md
index 730d020568e..247aa38f3dd 100644
--- a/api/Publisher.shapes.addbuildingblock.md
+++ b/api/Publisher.shapes.addbuildingblock.md
@@ -25,13 +25,13 @@ Adds a **[BuildingBlock](Publisher.BuildingBlock.md)** object and returns a **[
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Type|Required| **BuildingBlock**|The building block to return as a shape.|
|Left|Required| **Variant**|The position of the left edge of the shape that represents the building block.|
|Top|Required| **Variant**|The position of the top edge of the shape that represents the building block.|
-### Return Value
+### Return value
**Shape**
diff --git a/api/Visio.AccelItem.AddOnArgs.md b/api/Visio.AccelItem.AddOnArgs.md
index 2ae2e692151..fae762a4cdd 100644
--- a/api/Visio.AccelItem.AddOnArgs.md
+++ b/api/Visio.AccelItem.AddOnArgs.md
@@ -23,7 +23,7 @@ Gets or sets the argument string that you send to the add-on associated with a p
_expression_ An expression that returns a [AccelItem](./Visio.AccelItem.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.AccelItem.AddOnName.md b/api/Visio.AccelItem.AddOnName.md
index a14cde78d56..e1ecc2c607a 100644
--- a/api/Visio.AccelItem.AddOnName.md
+++ b/api/Visio.AccelItem.AddOnName.md
@@ -23,7 +23,7 @@ Gets or sets the name of an add-on or procedure that is run when its associated
_expression_ A variable that represents an [AccelItem](./Visio.AccelItem.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.AccelItem.Alt.md b/api/Visio.AccelItem.Alt.md
index 71a8a0581fb..f2ad3fd147e 100644
--- a/api/Visio.AccelItem.Alt.md
+++ b/api/Visio.AccelItem.Alt.md
@@ -23,7 +23,7 @@ Determines whether the ALT key is a modifier for an accelerator. Read/write.
_expression_ A variable that represents an [AccelItem](./Visio.AccelItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.AccelItem.CmdNum.md b/api/Visio.AccelItem.CmdNum.md
index 9b62b533d85..087bca64118 100644
--- a/api/Visio.AccelItem.CmdNum.md
+++ b/api/Visio.AccelItem.CmdNum.md
@@ -23,7 +23,7 @@ Gets or sets the command ID associated with an accelerator. Read/write.
_expression_ A variable that represents an [AccelItem](./Visio.AccelItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.AccelItem.Control.md b/api/Visio.AccelItem.Control.md
index ef359dbab00..aa3578c31eb 100644
--- a/api/Visio.AccelItem.Control.md
+++ b/api/Visio.AccelItem.Control.md
@@ -23,7 +23,7 @@ Determines whether the CTRL key modifies the accelerator key in an **AccelItem*
_expression_ A variable that represents an [AccelItem](./Visio.AccelItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.AccelItem.Delete.md b/api/Visio.AccelItem.Delete.md
index cda38e779fb..aaa64002c7a 100644
--- a/api/Visio.AccelItem.Delete.md
+++ b/api/Visio.AccelItem.Delete.md
@@ -23,7 +23,7 @@ Deletes an object.
_expression_ A variable that represents an [AccelItem](./Visio.AccelItem.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.AccelItem.Key.md b/api/Visio.AccelItem.Key.md
index 9f1362826dc..0d58e01583c 100644
--- a/api/Visio.AccelItem.Key.md
+++ b/api/Visio.AccelItem.Key.md
@@ -23,7 +23,7 @@ Gets or sets the ASCII key code value for an accelerator. Read/write.
_expression_ A variable that represents an [AccelItem](./Visio.AccelItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.AccelItem.Parent.md b/api/Visio.AccelItem.Parent.md
index 99e7a8e229d..d299edb2557 100644
--- a/api/Visio.AccelItem.Parent.md
+++ b/api/Visio.AccelItem.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [AccelItem](./Visio.AccelItem.md) object.
-### Return Value
+### Return value
AccelItems
diff --git a/api/Visio.AccelItem.Shift.md b/api/Visio.AccelItem.Shift.md
index acb30019005..afe030e8b96 100644
--- a/api/Visio.AccelItem.Shift.md
+++ b/api/Visio.AccelItem.Shift.md
@@ -23,7 +23,7 @@ Determines whether the SHIFT key is a modifier for an **AccelItem** object. Rea
_expression_ A variable that represents an [AccelItem](./Visio.AccelItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.AccelItems.Add.md b/api/Visio.AccelItems.Add.md
index 138b9e25718..dc3ea141ab0 100644
--- a/api/Visio.AccelItems.Add.md
+++ b/api/Visio.AccelItems.Add.md
@@ -23,7 +23,7 @@ Adds a new object to a collection.
_expression_ A variable that represents an [AccelItems](./Visio.AccelItems.md) collection.
-### Return Value
+### Return value
AccelItem
diff --git a/api/Visio.AccelItems.Count.md b/api/Visio.AccelItems.Count.md
index c3e69337053..3e7328c5612 100644
--- a/api/Visio.AccelItems.Count.md
+++ b/api/Visio.AccelItems.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents an [AccelItems](./Visio.AccelItems.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.AccelItems.Item.md b/api/Visio.AccelItems.Item.md
index b51faac7cab..db87537192d 100644
--- a/api/Visio.AccelItems.Item.md
+++ b/api/Visio.AccelItems.Item.md
@@ -27,11 +27,11 @@ Returns an object from a collection. The **Item** property is the default prope
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _lIndex_|Required| **Long**|Contains the index of the object to retrieve.|
-### Return Value
+### Return value
AccelItem
diff --git a/api/Visio.AccelItems.Parent.md b/api/Visio.AccelItems.Parent.md
index 1c6e797c581..0250a500bd0 100644
--- a/api/Visio.AccelItems.Parent.md
+++ b/api/Visio.AccelItems.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [AccelItems](./Visio.AccelItems.md) object.
-### Return Value
+### Return value
AccelTable
diff --git a/api/Visio.AccelTable.AccelItems.md b/api/Visio.AccelTable.AccelItems.md
index 19561bbad79..411cb70d63a 100644
--- a/api/Visio.AccelTable.AccelItems.md
+++ b/api/Visio.AccelTable.AccelItems.md
@@ -23,7 +23,7 @@ Returns the **AccelItems** collection of an **AccelTable** object. Read-only.
_expression_ A variable that represents an [AccelTable](./Visio.AccelTable.md) object.
-### Return Value
+### Return value
AccelItems
diff --git a/api/Visio.AccelTable.Delete.md b/api/Visio.AccelTable.Delete.md
index 9c86e6f35af..32bfbb76732 100644
--- a/api/Visio.AccelTable.Delete.md
+++ b/api/Visio.AccelTable.Delete.md
@@ -23,7 +23,7 @@ Deletes an object.
_expression_ A variable that represents an [AccelTable](./Visio.AccelTable.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.AccelTable.Parent.md b/api/Visio.AccelTable.Parent.md
index 2f3ee9a4928..770ed5a05c0 100644
--- a/api/Visio.AccelTable.Parent.md
+++ b/api/Visio.AccelTable.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [AccelTable](./Visio.AccelTable.md) object.
-### Return Value
+### Return value
AccelTables
diff --git a/api/Visio.AccelTable.SetID.md b/api/Visio.AccelTable.SetID.md
index 55a6ba0617d..1b6c25e82c3 100644
--- a/api/Visio.AccelTable.SetID.md
+++ b/api/Visio.AccelTable.SetID.md
@@ -23,7 +23,7 @@ Returns the set ID of an **AccelTable** object in its collection. Read-only.
_expression_ A variable that represents an [AccelTable](./Visio.AccelTable.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.AccelTable.TableName.md b/api/Visio.AccelTable.TableName.md
index c8a8a171caf..0b54004d0e2 100644
--- a/api/Visio.AccelTable.TableName.md
+++ b/api/Visio.AccelTable.TableName.md
@@ -23,7 +23,7 @@ Gets or sets the name of an **AccelTable** object. Read/write.
_expression_ A variable that represents an [AccelTable](./Visio.AccelTable.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.AccelTables.Add.md b/api/Visio.AccelTables.Add.md
index ab777886586..b7831a93ae3 100644
--- a/api/Visio.AccelTables.Add.md
+++ b/api/Visio.AccelTables.Add.md
@@ -23,7 +23,7 @@ Adds a new object to a collection.
_expression_ A variable that represents an [AccelTables](./Visio.AccelTables.md) collection.
-### Return Value
+### Return value
AccelTable
diff --git a/api/Visio.AccelTables.AddAtID.md b/api/Visio.AccelTables.AddAtID.md
index 7da02bf3b5a..d109c29769d 100644
--- a/api/Visio.AccelTables.AddAtID.md
+++ b/api/Visio.AccelTables.AddAtID.md
@@ -27,11 +27,11 @@ Creates a new object with a specified ID in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _lID_|Required| **Long**| The window context for the new object.|
-### Return Value
+### Return value
AccelTable
diff --git a/api/Visio.AccelTables.Count.md b/api/Visio.AccelTables.Count.md
index 2ba0c619121..609f9768212 100644
--- a/api/Visio.AccelTables.Count.md
+++ b/api/Visio.AccelTables.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents an [AccelTables](./Visio.AccelTables.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.AccelTables.Item.md b/api/Visio.AccelTables.Item.md
index c16b4b7bd1d..249a2d7c2da 100644
--- a/api/Visio.AccelTables.Item.md
+++ b/api/Visio.AccelTables.Item.md
@@ -27,11 +27,11 @@ Returns an object from a collection. The **Item** property is the default prope
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _lIndex_|Required| **Long**|Contains the index of the object to retrieve.|
-### Return Value
+### Return value
AccelTable
diff --git a/api/Visio.AccelTables.ItemAtID.md b/api/Visio.AccelTables.ItemAtID.md
index 860e22af54f..3febf54fb11 100644
--- a/api/Visio.AccelTables.ItemAtID.md
+++ b/api/Visio.AccelTables.ItemAtID.md
@@ -27,11 +27,11 @@ Returns the **AccelTable** object for an ID within a collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _lID_|Required| **Long**|The Visio context ID of the object to retrieve.|
-### Return Value
+### Return value
AccelTable
diff --git a/api/Visio.AccelTables.Parent.md b/api/Visio.AccelTables.Parent.md
index a302043dd63..33fd4a2ae3e 100644
--- a/api/Visio.AccelTables.Parent.md
+++ b/api/Visio.AccelTables.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [AccelTables](./Visio.AccelTables.md) object.
-### Return Value
+### Return value
UIObject
diff --git a/api/Visio.Addon.Application.md b/api/Visio.Addon.Application.md
index 4d8d7bf9d5a..d2d04bd5073 100644
--- a/api/Visio.Addon.Application.md
+++ b/api/Visio.Addon.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents an [Addon](./Visio.Addon.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Addon.Enabled.md b/api/Visio.Addon.Enabled.md
index 213f6167a2f..12ee8a8f752 100644
--- a/api/Visio.Addon.Enabled.md
+++ b/api/Visio.Addon.Enabled.md
@@ -23,7 +23,7 @@ Determines whether or not an **Addon** object is currently enabled. Read/write.
_expression_ A variable that represents an [Addon](./Visio.Addon.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Addon.Index.md b/api/Visio.Addon.Index.md
index c6a9d454392..868a0f18c70 100644
--- a/api/Visio.Addon.Index.md
+++ b/api/Visio.Addon.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of an **Addon** object in the **Addons** collection.
_expression_ A variable that represents a [Addon](./Visio.Addon.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Addon.Name.md b/api/Visio.Addon.Name.md
index acb37b6838a..a5b3bf10be5 100644
--- a/api/Visio.Addon.Name.md
+++ b/api/Visio.Addon.Name.md
@@ -23,7 +23,7 @@ Specifies the locale-specific name of an **Addon** object. Read-only.
_expression_ A variable that represents an [Addon](./Visio.Addon.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Addon.NameU.md b/api/Visio.Addon.NameU.md
index f0e92c3c094..b46c25f17b3 100644
--- a/api/Visio.Addon.NameU.md
+++ b/api/Visio.Addon.NameU.md
@@ -23,7 +23,7 @@ Specifies the universal name of an **Addon** object. Read-only.
_expression_ A variable that represents an [Addon](./Visio.Addon.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Addon.ObjectType.md b/api/Visio.Addon.ObjectType.md
index 7937a3d6171..4a011fdee14 100644
--- a/api/Visio.Addon.ObjectType.md
+++ b/api/Visio.Addon.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents an [Addon](./Visio.Addon.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Addon.Run.md b/api/Visio.Addon.Run.md
index 39ad683ee13..d01e97288d2 100644
--- a/api/Visio.Addon.Run.md
+++ b/api/Visio.Addon.Run.md
@@ -27,11 +27,11 @@ Runs the add-on represented by an **Addon** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ArgString_|Required| **String**|The argument string to pass to the add-on.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Addons.Add.md b/api/Visio.Addons.Add.md
index 1c6ea1d7ef8..35176385f6e 100644
--- a/api/Visio.Addons.Add.md
+++ b/api/Visio.Addons.Add.md
@@ -27,11 +27,11 @@ Adds a new **Addon** object to an **Addons** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the add-on.|
-### Return Value
+### Return value
Addon
diff --git a/api/Visio.Addons.Application.md b/api/Visio.Addons.Application.md
index 1d807a39652..d2501ee4fc2 100644
--- a/api/Visio.Addons.Application.md
+++ b/api/Visio.Addons.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents an [Addons](./Visio.Addons.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Addons.Count.md b/api/Visio.Addons.Count.md
index e3b3e2b6c23..b28927e0375 100644
--- a/api/Visio.Addons.Count.md
+++ b/api/Visio.Addons.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents an [Addons](./Visio.Addons.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Addons.GetNames.md b/api/Visio.Addons.GetNames.md
index 22e3bf44ca5..327000442ff 100644
--- a/api/Visio.Addons.GetNames.md
+++ b/api/Visio.Addons.GetNames.md
@@ -27,11 +27,11 @@ Returns the names of all items in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameArray()_|Required| **String**|Out parameter. An array that receives the names of members of the indicated object.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Addons.GetNamesU.md b/api/Visio.Addons.GetNamesU.md
index db56e1404ea..b88a291eaeb 100644
--- a/api/Visio.Addons.GetNamesU.md
+++ b/api/Visio.Addons.GetNamesU.md
@@ -27,11 +27,11 @@ Returns the universal names of all items in an **Addons** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameArray()_|Required| **String**|Out parameter. An array that receives the names of members of the indicated object.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Addons.Item.md b/api/Visio.Addons.Item.md
index 0f1f72896f5..e9f30b23812 100644
--- a/api/Visio.Addons.Item.md
+++ b/api/Visio.Addons.Item.md
@@ -27,11 +27,11 @@ Returns an item from a collection. The **Item** property is the default propert
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|Contains the name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
Addon
diff --git a/api/Visio.Addons.ItemU.md b/api/Visio.Addons.ItemU.md
index d7b2d6457cb..5951ba242aa 100644
--- a/api/Visio.Addons.ItemU.md
+++ b/api/Visio.Addons.ItemU.md
@@ -27,11 +27,11 @@ Returns an object from a collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|Contains the universal name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
Addon
diff --git a/api/Visio.Addons.ObjectType.md b/api/Visio.Addons.ObjectType.md
index 9880d35d576..d308ab40241 100644
--- a/api/Visio.Addons.ObjectType.md
+++ b/api/Visio.Addons.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents an [Addons](./Visio.Addons.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.AlertsEnabled.md b/api/Visio.AlertsEnabled.md
index 571dc381134..1fae18b046c 100644
--- a/api/Visio.AlertsEnabled.md
+++ b/api/Visio.AlertsEnabled.md
@@ -20,7 +20,7 @@ Gets or sets a value that indicates whether warnings and alerts appear when an e
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.AltFormat.md b/api/Visio.AltFormat.md
index 7a3bd769711..34c3af50a22 100644
--- a/api/Visio.AltFormat.md
+++ b/api/Visio.AltFormat.md
@@ -20,7 +20,7 @@ Determines whether a secondary output format for the Web page is defined. Read/w
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.Application.Active.md b/api/Visio.Application.Active.md
index d7006455afa..cf255980205 100644
--- a/api/Visio.Application.Active.md
+++ b/api/Visio.Application.Active.md
@@ -23,7 +23,7 @@ Indicates whether the instance of Microsoft Visio represented by the **Applicat
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Application.ActiveDocument.md b/api/Visio.Application.ActiveDocument.md
index 85dcb015004..1525a04f30f 100644
--- a/api/Visio.Application.ActiveDocument.md
+++ b/api/Visio.Application.ActiveDocument.md
@@ -23,7 +23,7 @@ Returns the active **Document** object, which is the document shown in the acti
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Application.ActivePage.md b/api/Visio.Application.ActivePage.md
index 7513440cf98..da8997dbec0 100644
--- a/api/Visio.Application.ActivePage.md
+++ b/api/Visio.Application.ActivePage.md
@@ -23,7 +23,7 @@ Returns the active **Page** object. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Page
diff --git a/api/Visio.Application.ActivePrinter.md b/api/Visio.Application.ActivePrinter.md
index 899a652acb9..cb849a46b0e 100644
--- a/api/Visio.Application.ActivePrinter.md
+++ b/api/Visio.Application.ActivePrinter.md
@@ -23,7 +23,7 @@ Specifies the printer that all Microsoft Visio documents print to. Read/write.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Application.ActiveWindow.md b/api/Visio.Application.ActiveWindow.md
index 40e9a3123d6..aa37b725b34 100644
--- a/api/Visio.Application.ActiveWindow.md
+++ b/api/Visio.Application.ActiveWindow.md
@@ -23,7 +23,7 @@ Returns the active **Window** object. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.Application.AddUndoUnit.md b/api/Visio.Application.AddUndoUnit.md
index bf83a7ba402..28253a10b84 100644
--- a/api/Visio.Application.AddUndoUnit.md
+++ b/api/Visio.Application.AddUndoUnit.md
@@ -27,11 +27,11 @@ Adds an object that supports the **IOleUndoUnit** or **IVBUndoUnit** interface
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pUndoUnit_|Required| **[UNKNOWN]**|A reference to an object that supports the **IOleUndoUnit** or **IVBUndoUnit** interface.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Application.AddonPaths.md b/api/Visio.Application.AddonPaths.md
index f8e8889af49..f580eea5fc0 100644
--- a/api/Visio.Application.AddonPaths.md
+++ b/api/Visio.Application.AddonPaths.md
@@ -23,7 +23,7 @@ Gets or sets the paths where Microsoft Visio looks for third-party or user add-o
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Application.Addons.md b/api/Visio.Application.Addons.md
index fa618636a90..0191d560e16 100644
--- a/api/Visio.Application.Addons.md
+++ b/api/Visio.Application.Addons.md
@@ -23,7 +23,7 @@ Returns the **Addons** collection of an **Application** or **InvisibleApp** obj
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Addons
diff --git a/api/Visio.Application.AfterModal.md b/api/Visio.Application.AfterModal.md
index b698c6af571..76166536722 100644
--- a/api/Visio.Application.AfterModal.md
+++ b/api/Visio.Application.AfterModal.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'AfterModal'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance that is no longer modal.|
diff --git a/api/Visio.Application.AfterRemoveHiddenInformation.md b/api/Visio.Application.AfterRemoveHiddenInformation.md
index 228d0fa480c..d9017a2d5ab 100644
--- a/api/Visio.Application.AfterRemoveHiddenInformation.md
+++ b/api/Visio.Application.AfterRemoveHiddenInformation.md
@@ -24,7 +24,7 @@ Occurs when hidden information is removed from the document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document from which hidden information has been removed.|
diff --git a/api/Visio.Application.AfterResume.md b/api/Visio.Application.AfterResume.md
index 93664ccae2e..b382c864d0a 100644
--- a/api/Visio.Application.AfterResume.md
+++ b/api/Visio.Application.AfterResume.md
@@ -24,7 +24,7 @@ Occurs when the operating system resumes normal operation after having been susp
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that resumes after the operating system resumes normal operation.|
diff --git a/api/Visio.Application.AfterResumeEvents.md b/api/Visio.Application.AfterResumeEvents.md
index 00e80dd25e8..ff7f8dc551f 100644
--- a/api/Visio.Application.AfterResumeEvents.md
+++ b/api/Visio.Application.AfterResumeEvents.md
@@ -24,11 +24,11 @@ Occurs after firing of events is resumed.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio in which firing of events resumed.|
-### Return Value
+### Return value
nothing
diff --git a/api/Visio.Application.AlertResponse.md b/api/Visio.Application.AlertResponse.md
index 10c8349ec38..7ffb9df26e8 100644
--- a/api/Visio.Application.AlertResponse.md
+++ b/api/Visio.Application.AlertResponse.md
@@ -23,7 +23,7 @@ Determines whether Microsoft Visio shows alerts and modal dialog boxes to the us
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Application.AppActivated.md b/api/Visio.Application.AppActivated.md
index b698e32cf9d..10d59708497 100644
--- a/api/Visio.Application.AppActivated.md
+++ b/api/Visio.Application.AppActivated.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'AppActivated'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that becomes the active application.|
diff --git a/api/Visio.Application.AppDeactivated.md b/api/Visio.Application.AppDeactivated.md
index d703dccee05..b756158a424 100644
--- a/api/Visio.Application.AppDeactivated.md
+++ b/api/Visio.Application.AppDeactivated.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'AppDeactivated'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that is no longer the active application.|
diff --git a/api/Visio.Application.AppObjActivated.md b/api/Visio.Application.AppObjActivated.md
index f6a74d1f550..659d6250ead 100644
--- a/api/Visio.Application.AppObjActivated.md
+++ b/api/Visio.Application.AppObjActivated.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'AppObjActivated'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that has become the active instance.|
diff --git a/api/Visio.Application.AppObjDeactivated.md b/api/Visio.Application.AppObjDeactivated.md
index b3679a845a7..f3e7fd1ee61 100644
--- a/api/Visio.Application.AppObjDeactivated.md
+++ b/api/Visio.Application.AppObjDeactivated.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'AppObjDeactivated'(**_ByVal app As [IVAPPLICATION]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that is no longer the active instance.|
diff --git a/api/Visio.Application.Application.md b/api/Visio.Application.Application.md
index 0847b7bd025..735dcf08acb 100644
--- a/api/Visio.Application.Application.md
+++ b/api/Visio.Application.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Application.Assistance.md b/api/Visio.Application.Assistance.md
index 66c6f540b03..d185ec9574d 100644
--- a/api/Visio.Application.Assistance.md
+++ b/api/Visio.Application.Assistance.md
@@ -23,7 +23,7 @@ Gets a reference to the Microsoft Office (MSO) **IAssistance** object, which pr
_expression_ An expression that returns a [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.Application.AutoLayout.md b/api/Visio.Application.AutoLayout.md
index 3ce233efeab..a385144010c 100644
--- a/api/Visio.Application.AutoLayout.md
+++ b/api/Visio.Application.AutoLayout.md
@@ -23,7 +23,7 @@ Allows you to temporarily disable automatic layout functionality in Microsoft Vi
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Application.AutoRecoverInterval.md b/api/Visio.Application.AutoRecoverInterval.md
index 0fc80c685a0..b91d6693426 100644
--- a/api/Visio.Application.AutoRecoverInterval.md
+++ b/api/Visio.Application.AutoRecoverInterval.md
@@ -23,7 +23,7 @@ Represents the time interval (in minutes) for how often you want to save copies
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Application.AvailablePrinters.md b/api/Visio.Application.AvailablePrinters.md
index 6fea522904c..695982fdcde 100644
--- a/api/Visio.Application.AvailablePrinters.md
+++ b/api/Visio.Application.AvailablePrinters.md
@@ -23,7 +23,7 @@ Returns a list of installed printers. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
String()
diff --git a/api/Visio.Application.BeforeDataRecordsetDelete.md b/api/Visio.Application.BeforeDataRecordsetDelete.md
index 7ca9d8ded9d..07782607ffd 100644
--- a/api/Visio.Application.BeforeDataRecordsetDelete.md
+++ b/api/Visio.Application.BeforeDataRecordsetDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeDataRecordsetDelete'(**_ByVal DataRecordset As
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordset_|Required| **[IVDATARECORDSET]**|The data recordset that is going to be deleted.|
diff --git a/api/Visio.Application.BeforeDocumentClose.md b/api/Visio.Application.BeforeDocumentClose.md
index 780a5498b44..3d58f5a4541 100644
--- a/api/Visio.Application.BeforeDocumentClose.md
+++ b/api/Visio.Application.BeforeDocumentClose.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeDocumentClose'(**_ByVal doc As [IVDOCUMENT]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be closed.|
diff --git a/api/Visio.Application.BeforeDocumentSave.md b/api/Visio.Application.BeforeDocumentSave.md
index 006f1ef3cd7..6d14206846e 100644
--- a/api/Visio.Application.BeforeDocumentSave.md
+++ b/api/Visio.Application.BeforeDocumentSave.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeDocumentSave'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be saved.|
diff --git a/api/Visio.Application.BeforeDocumentSaveAs.md b/api/Visio.Application.BeforeDocumentSaveAs.md
index 6f46c0ebe2b..920582c5ed6 100644
--- a/api/Visio.Application.BeforeDocumentSaveAs.md
+++ b/api/Visio.Application.BeforeDocumentSaveAs.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeDocumentSaveAs'(**_ByVal doc As [IVDOCUMENT]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be saved.|
diff --git a/api/Visio.Application.BeforeMasterDelete.md b/api/Visio.Application.BeforeMasterDelete.md
index 4ef42bc25a0..37dfd6f139a 100644
--- a/api/Visio.Application.BeforeMasterDelete.md
+++ b/api/Visio.Application.BeforeMasterDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeMasterDelete'(**_ByVal Master As [IVMASTER]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that is going to be deleted.|
diff --git a/api/Visio.Application.BeforeModal.md b/api/Visio.Application.BeforeModal.md
index cda4647664a..45ad7adbc96 100644
--- a/api/Visio.Application.BeforeModal.md
+++ b/api/Visio.Application.BeforeModal.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeModal'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that is going to enter a modal state.|
diff --git a/api/Visio.Application.BeforePageDelete.md b/api/Visio.Application.BeforePageDelete.md
index 1bb87146e21..d042e6a5269 100644
--- a/api/Visio.Application.BeforePageDelete.md
+++ b/api/Visio.Application.BeforePageDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforePageDelete'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that is going to be deleted.|
diff --git a/api/Visio.Application.BeforeQuit.md b/api/Visio.Application.BeforeQuit.md
index 1a847063c04..04ebf0fd884 100644
--- a/api/Visio.Application.BeforeQuit.md
+++ b/api/Visio.Application.BeforeQuit.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeQuit'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that is going to terminate.|
diff --git a/api/Visio.Application.BeforeSelectionDelete.md b/api/Visio.Application.BeforeSelectionDelete.md
index e11e69c8ada..920b7d600a3 100644
--- a/api/Visio.Application.BeforeSelectionDelete.md
+++ b/api/Visio.Application.BeforeSelectionDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeSelectionDelete'(**_ByVal Selection As [IVSELE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selected objects that are going to be deleted.|
diff --git a/api/Visio.Application.BeforeShapeDelete.md b/api/Visio.Application.BeforeShapeDelete.md
index b2fd6bea715..15583deed96 100644
--- a/api/Visio.Application.BeforeShapeDelete.md
+++ b/api/Visio.Application.BeforeShapeDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeShapeDelete'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be deleted.|
diff --git a/api/Visio.Application.BeforeShapeTextEdit.md b/api/Visio.Application.BeforeShapeTextEdit.md
index 82dc8e717b7..5fe22bb878f 100644
--- a/api/Visio.Application.BeforeShapeTextEdit.md
+++ b/api/Visio.Application.BeforeShapeTextEdit.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeShapeTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be opened for text editing.|
diff --git a/api/Visio.Application.BeforeStyleDelete.md b/api/Visio.Application.BeforeStyleDelete.md
index 77b811acc8b..d530620b17d 100644
--- a/api/Visio.Application.BeforeStyleDelete.md
+++ b/api/Visio.Application.BeforeStyleDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeStyleDelete'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that is going to be deleted.|
diff --git a/api/Visio.Application.BeforeSuspend.md b/api/Visio.Application.BeforeSuspend.md
index b53fd4059ef..4dc5943d380 100644
--- a/api/Visio.Application.BeforeSuspend.md
+++ b/api/Visio.Application.BeforeSuspend.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeSuspend'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that is going to be suspended.|
diff --git a/api/Visio.Application.BeforeSuspendEvents.md b/api/Visio.Application.BeforeSuspendEvents.md
index ea8089f7cac..54f462ef498 100644
--- a/api/Visio.Application.BeforeSuspendEvents.md
+++ b/api/Visio.Application.BeforeSuspendEvents.md
@@ -24,11 +24,11 @@ Private Sub _expression_ _'BeforeSuspendEvents'(**_ByVal app As [IVAPPLICATION]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio in which firing of events is going to be suspended.|
-### Return Value
+### Return value
nothing
diff --git a/api/Visio.Application.BeforeWindowClosed.md b/api/Visio.Application.BeforeWindowClosed.md
index fb7b89fabac..97bf475f2cf 100644
--- a/api/Visio.Application.BeforeWindowClosed.md
+++ b/api/Visio.Application.BeforeWindowClosed.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeWindowClosed'(**_ByVal Window As [IVWINDOW]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that is going to be closed.|
diff --git a/api/Visio.Application.BeforeWindowPageTurn.md b/api/Visio.Application.BeforeWindowPageTurn.md
index 73279e4196a..31e91fdc948 100644
--- a/api/Visio.Application.BeforeWindowPageTurn.md
+++ b/api/Visio.Application.BeforeWindowPageTurn.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeWindowPageTurn'(**_ByVal Window As [IVWINDOW]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that is going to show a different page.|
diff --git a/api/Visio.Application.BeforeWindowSelDelete.md b/api/Visio.Application.BeforeWindowSelDelete.md
index 295cc67b96d..3b5ec8add17 100644
--- a/api/Visio.Application.BeforeWindowSelDelete.md
+++ b/api/Visio.Application.BeforeWindowSelDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeWindowSelDelete'(**_ByVal Window As [IVWINDOW]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that contains the selection that is going to be deleted.|
diff --git a/api/Visio.Application.BeginUndoScope.md b/api/Visio.Application.BeginUndoScope.md
index 18083f3cebe..ae405c23b96 100644
--- a/api/Visio.Application.BeginUndoScope.md
+++ b/api/Visio.Application.BeginUndoScope.md
@@ -27,11 +27,11 @@ Starts a transaction with a unique scope ID for an instance of Microsoft Visio.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _bstrUndoScopeName_|Required| **String**|The name of the scope; could appear in the Visio user interface.|
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Application.Build.md b/api/Visio.Application.Build.md
index ca0fa8f7c2b..403b0a6d8ba 100644
--- a/api/Visio.Application.Build.md
+++ b/api/Visio.Application.Build.md
@@ -23,7 +23,7 @@ Returns the build number of the running instance. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Application.BuiltInMenus.md b/api/Visio.Application.BuiltInMenus.md
index 08ddceaf5cf..af61aca4d1f 100644
--- a/api/Visio.Application.BuiltInMenus.md
+++ b/api/Visio.Application.BuiltInMenus.md
@@ -23,7 +23,7 @@ Returns a **UIObject** object that represents a copy of the built-in Microsoft
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
UIObject
diff --git a/api/Visio.Application.BuiltInToolbars.md b/api/Visio.Application.BuiltInToolbars.md
index 0ba43dc6a3c..43caa4dd6ab 100644
--- a/api/Visio.Application.BuiltInToolbars.md
+++ b/api/Visio.Application.BuiltInToolbars.md
@@ -27,11 +27,11 @@ Returns a **UIObject** object that represents a copy of the built-in Microsoft
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _fIgnored_|Required| **Integer**| Required **Integer** . Required for backward compatibility, but ignored. It is suggested that you pass zero (0).|
-### Return Value
+### Return value
UIObject
diff --git a/api/Visio.Application.COMAddIns.md b/api/Visio.Application.COMAddIns.md
index 46bf755ef25..bc0880244d6 100644
--- a/api/Visio.Application.COMAddIns.md
+++ b/api/Visio.Application.COMAddIns.md
@@ -23,7 +23,7 @@ Returns a reference to the **COMAddIns** collection that represents all the Com
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.Application.CalloutRelationshipAdded.md b/api/Visio.Application.CalloutRelationshipAdded.md
index 0f84cc45423..92f6376854b 100644
--- a/api/Visio.Application.CalloutRelationshipAdded.md
+++ b/api/Visio.Application.CalloutRelationshipAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'CalloutRelationshipAdded'(**_By Val ShapePair As Rel
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the new callout shape-pair relationship.|
diff --git a/api/Visio.Application.CalloutRelationshipDeleted.md b/api/Visio.Application.CalloutRelationshipDeleted.md
index 8cc6b802527..967b23d7afe 100644
--- a/api/Visio.Application.CalloutRelationshipDeleted.md
+++ b/api/Visio.Application.CalloutRelationshipDeleted.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'CalloutRelationshipDeleted'(**_By Val ShapePair As R
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the callout shape-pair relationship.|
diff --git a/api/Visio.Application.CellChanged.md b/api/Visio.Application.CellChanged.md
index 15628f291d1..d1850321ec1 100644
--- a/api/Visio.Application.CellChanged.md
+++ b/api/Visio.Application.CellChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'CellChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose value has changed.|
diff --git a/api/Visio.Application.ClearCustomMenus.md b/api/Visio.Application.ClearCustomMenus.md
index d2d5dd4ca4f..988a9cfb6a6 100644
--- a/api/Visio.Application.ClearCustomMenus.md
+++ b/api/Visio.Application.ClearCustomMenus.md
@@ -23,7 +23,7 @@ Restores the built-in Microsoft Visio user interface.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Application.ClearCustomToolbars.md b/api/Visio.Application.ClearCustomToolbars.md
index 1bfb31eec56..21e5d0b551c 100644
--- a/api/Visio.Application.ClearCustomToolbars.md
+++ b/api/Visio.Application.ClearCustomToolbars.md
@@ -23,7 +23,7 @@ Restores the built-in Microsoft Visio user interface.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Application.CommandBars.md b/api/Visio.Application.CommandBars.md
index 4034ef74640..4346ab9b28f 100644
--- a/api/Visio.Application.CommandBars.md
+++ b/api/Visio.Application.CommandBars.md
@@ -23,7 +23,7 @@ Returns a reference to the **CommandBars** collection that represents the comma
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
CommandBars
diff --git a/api/Visio.Application.CommandLine.md b/api/Visio.Application.CommandLine.md
index e9804f6e78e..1ed1792c650 100644
--- a/api/Visio.Application.CommandLine.md
+++ b/api/Visio.Application.CommandLine.md
@@ -23,7 +23,7 @@ Determines how Microsoft Visio was started. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Application.ConnectionsAdded.md b/api/Visio.Application.ConnectionsAdded.md
index 6b4ed800d0d..a53740beadb 100644
--- a/api/Visio.Application.ConnectionsAdded.md
+++ b/api/Visio.Application.ConnectionsAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ConnectionsAdded'(**_ByVal Connects As [IVCONNECTS]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Connects_|Required| **[IVCONNECTS]**|The connections that were established.|
diff --git a/api/Visio.Application.ConnectionsDeleted.md b/api/Visio.Application.ConnectionsDeleted.md
index 5b20798112c..bd7685d403c 100644
--- a/api/Visio.Application.ConnectionsDeleted.md
+++ b/api/Visio.Application.ConnectionsDeleted.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ConnectionsDeleted'(**_ByVal Connects As [IVCONNECTS
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Connects_|Required| **[IVCONNECTS]**|The connections that have been removed.|
diff --git a/api/Visio.Application.ConnectorToolDataObject.md b/api/Visio.Application.ConnectorToolDataObject.md
index ba99ff44294..28aa2f23c51 100644
--- a/api/Visio.Application.ConnectorToolDataObject.md
+++ b/api/Visio.Application.ConnectorToolDataObject.md
@@ -23,7 +23,7 @@ Returns an **IDataObject** interface representing the active **Connector** tool
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
IDataObject
diff --git a/api/Visio.Application.ContainerRelationshipAdded.md b/api/Visio.Application.ContainerRelationshipAdded.md
index 0bb4f4c03d3..67f6964fbbf 100644
--- a/api/Visio.Application.ContainerRelationshipAdded.md
+++ b/api/Visio.Application.ContainerRelationshipAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ContainerRelationshipAdded'(**_By Val ShapePair As R
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the new container shape-pair relationship.|
diff --git a/api/Visio.Application.ContainerRelationshipDeleted.md b/api/Visio.Application.ContainerRelationshipDeleted.md
index 39c7ecaf361..63f1d36651c 100644
--- a/api/Visio.Application.ContainerRelationshipDeleted.md
+++ b/api/Visio.Application.ContainerRelationshipDeleted.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ContainerRelationshipDeleted'(**_By Val ShapePair As
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the container shape-pair relationship.|
diff --git a/api/Visio.Application.ConvertResult.md b/api/Visio.Application.ConvertResult.md
index 72ccea52ac0..9b82ee4350a 100644
--- a/api/Visio.Application.ConvertResult.md
+++ b/api/Visio.Application.ConvertResult.md
@@ -27,13 +27,13 @@ Converts a string or number into an equivalent number in different measurement u
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StringOrNumber_|Required| **Variant**|String or number to be converted; can be a string, floating point number, or integer.|
| _UnitsIn_|Required| **Variant**|Measurement units to attribute to _StringOrNumber_.|
| _UnitsOut_|Required| **Variant**|Measurement units to express the result in.|
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Application.ConvertToGroupCanceled.md b/api/Visio.Application.ConvertToGroupCanceled.md
index c83a7f0f7a2..36b5e04552a 100644
--- a/api/Visio.Application.ConvertToGroupCanceled.md
+++ b/api/Visio.Application.ConvertToGroupCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ConvertToGroupCanceled'(**_ByVal Selection As [IVSEL
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.Application.CurrentEdition.md b/api/Visio.Application.CurrentEdition.md
index e49e3f4f5b4..ab46e40b834 100644
--- a/api/Visio.Application.CurrentEdition.md
+++ b/api/Visio.Application.CurrentEdition.md
@@ -23,7 +23,7 @@ Returns an enumerated value that represents the edition of the current instance
_expression_ An expression that returns an '[Application](Visio.Application.md)' object.
-### Return Value
+### Return value
**[VisEdition](Visio.VisEdition.md)**
diff --git a/api/Visio.Application.CurrentScope.md b/api/Visio.Application.CurrentScope.md
index 8afae29cc1c..010a51d0a57 100644
--- a/api/Visio.Application.CurrentScope.md
+++ b/api/Visio.Application.CurrentScope.md
@@ -23,7 +23,7 @@ Determines the ID of the scope that causes an event to fire. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Application.CustomMenus.md b/api/Visio.Application.CustomMenus.md
index 21aa99218dd..243956f8463 100644
--- a/api/Visio.Application.CustomMenus.md
+++ b/api/Visio.Application.CustomMenus.md
@@ -23,7 +23,7 @@ Gets a **UIObject** object that represents the current custom menus and acceler
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
UIObject
diff --git a/api/Visio.Application.CustomMenusFile.md b/api/Visio.Application.CustomMenusFile.md
index 284a39e996b..c7edd89060e 100644
--- a/api/Visio.Application.CustomMenusFile.md
+++ b/api/Visio.Application.CustomMenusFile.md
@@ -23,7 +23,7 @@ Gets or sets the name of the file that defines custom menus and accelerators for
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Application.CustomToolbars.md b/api/Visio.Application.CustomToolbars.md
index a937fe988c3..a171de3c01d 100644
--- a/api/Visio.Application.CustomToolbars.md
+++ b/api/Visio.Application.CustomToolbars.md
@@ -23,7 +23,7 @@ Gets a **UIObject** object that represents the current custom toolbars and stat
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
UIObject
diff --git a/api/Visio.Application.CustomToolbarsFile.md b/api/Visio.Application.CustomToolbarsFile.md
index e5aafa9b14c..71de4ebe636 100644
--- a/api/Visio.Application.CustomToolbarsFile.md
+++ b/api/Visio.Application.CustomToolbarsFile.md
@@ -23,7 +23,7 @@ Returns or sets the name of the file that defines custom toolbars and status bar
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Application.DataFeaturesEnabled.md b/api/Visio.Application.DataFeaturesEnabled.md
index 116eabdc998..2163ec1dad0 100644
--- a/api/Visio.Application.DataFeaturesEnabled.md
+++ b/api/Visio.Application.DataFeaturesEnabled.md
@@ -23,7 +23,7 @@ Gets whether the data features in Microsoft Visio are enabled for the current in
_expression_ An expression that returns a [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Application.DataRecordsetAdded.md b/api/Visio.Application.DataRecordsetAdded.md
index f1b1277342d..874d0b3f88a 100644
--- a/api/Visio.Application.DataRecordsetAdded.md
+++ b/api/Visio.Application.DataRecordsetAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DataRecordsetAdded'(**_ByVal DataRecordset As [IVDAT
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordset_|Required| **[IVDATARECORDSET]**|The data recordset that was added.|
diff --git a/api/Visio.Application.DataRecordsetChanged.md b/api/Visio.Application.DataRecordsetChanged.md
index 787a0c02ad6..6bf7ec99f84 100644
--- a/api/Visio.Application.DataRecordsetChanged.md
+++ b/api/Visio.Application.DataRecordsetChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DataRecordsetChanged'(**_ByVal DataRecordsetChanged
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetChanged_|Required| **[IVDATARECORDSETCHANGEDEVENT]**|The data recordset that changed.|
diff --git a/api/Visio.Application.DefaultAngleUnits.md b/api/Visio.Application.DefaultAngleUnits.md
index e74ee65da07..88dfb3abe77 100644
--- a/api/Visio.Application.DefaultAngleUnits.md
+++ b/api/Visio.Application.DefaultAngleUnits.md
@@ -23,7 +23,7 @@ Determines the default unit of measure for quantities that represent angles. Rea
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Variant
diff --git a/api/Visio.Application.DefaultDurationUnits.md b/api/Visio.Application.DefaultDurationUnits.md
index 83c09328dc9..2ec26b598e0 100644
--- a/api/Visio.Application.DefaultDurationUnits.md
+++ b/api/Visio.Application.DefaultDurationUnits.md
@@ -23,7 +23,7 @@ Determines the default unit of measure for quantities that represent durations.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Variant
diff --git a/api/Visio.Application.DefaultRectangleDataObject.md b/api/Visio.Application.DefaultRectangleDataObject.md
index 92a48cc1fc1..0869c330697 100644
--- a/api/Visio.Application.DefaultRectangleDataObject.md
+++ b/api/Visio.Application.DefaultRectangleDataObject.md
@@ -23,7 +23,7 @@ Returns an **IDataObject** interface that represents the **Rectangle** tool use
_expression_ An expression that returns a [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
IDataObject
diff --git a/api/Visio.Application.DefaultTextUnits.md b/api/Visio.Application.DefaultTextUnits.md
index 570a8a7fe3d..9ee5381f9e0 100644
--- a/api/Visio.Application.DefaultTextUnits.md
+++ b/api/Visio.Application.DefaultTextUnits.md
@@ -23,7 +23,7 @@ Determines the default unit of measure for quantities that represent text metric
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Variant
diff --git a/api/Visio.Application.DefaultZoomBehavior.md b/api/Visio.Application.DefaultZoomBehavior.md
index 87847531e81..84d969bc946 100644
--- a/api/Visio.Application.DefaultZoomBehavior.md
+++ b/api/Visio.Application.DefaultZoomBehavior.md
@@ -23,7 +23,7 @@ Determines the zoom behavior for all new Microsoft Visio documents and drawing w
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
VisZoomBehavior
diff --git a/api/Visio.Application.DeferRecalc.md b/api/Visio.Application.DeferRecalc.md
index 81f5ac26652..b358d64fb09 100644
--- a/api/Visio.Application.DeferRecalc.md
+++ b/api/Visio.Application.DeferRecalc.md
@@ -23,7 +23,7 @@ Determines whether the application recalculates cell formulas during a series of
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Application.DeferRelationshipRecalc.md b/api/Visio.Application.DeferRelationshipRecalc.md
index 0827b6c7f1a..db6633e22f7 100644
--- a/api/Visio.Application.DeferRelationshipRecalc.md
+++ b/api/Visio.Application.DeferRelationshipRecalc.md
@@ -23,7 +23,7 @@ Determines whether Microsoft Visio defers recalculating shape sizes and relation
_expression_ A variable that represents an '[Application](Visio.Application.md)' object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.Application.DesignModeEntered.md b/api/Visio.Application.DesignModeEntered.md
index c7be2c78bf9..802600c898a 100644
--- a/api/Visio.Application.DesignModeEntered.md
+++ b/api/Visio.Application.DesignModeEntered.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DesignModeEntered'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to enter design mode.|
diff --git a/api/Visio.Application.DialogFont.md b/api/Visio.Application.DialogFont.md
index fbca72a5ff8..5a9bcbcb4a1 100644
--- a/api/Visio.Application.DialogFont.md
+++ b/api/Visio.Application.DialogFont.md
@@ -23,7 +23,7 @@ Returns information about the fonts that Microsoft Visio uses in its dialog boxe
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
IFontDisp
diff --git a/api/Visio.Application.DoCmd.md b/api/Visio.Application.DoCmd.md
index b36f3b5e4af..050f3923fb9 100644
--- a/api/Visio.Application.DoCmd.md
+++ b/api/Visio.Application.DoCmd.md
@@ -27,11 +27,11 @@ Performs the command that has the indicated command ID.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CommandID_|Required| **Integer**|The command to perform.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Application.DocumentChanged.md b/api/Visio.Application.DocumentChanged.md
index fa7370de12a..b676f4ed493 100644
--- a/api/Visio.Application.DocumentChanged.md
+++ b/api/Visio.Application.DocumentChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentChanged'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document whose properties were changed.|
diff --git a/api/Visio.Application.DocumentCloseCanceled.md b/api/Visio.Application.DocumentCloseCanceled.md
index 85883a7315e..c97633ae238 100644
--- a/api/Visio.Application.DocumentCloseCanceled.md
+++ b/api/Visio.Application.DocumentCloseCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentCloseCanceled'(**_ByVal doc As [IVDOCUMENT]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was going to be closed.|
diff --git a/api/Visio.Application.DocumentCreated.md b/api/Visio.Application.DocumentCreated.md
index 9196dd88828..8adbb50f0a2 100644
--- a/api/Visio.Application.DocumentCreated.md
+++ b/api/Visio.Application.DocumentCreated.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentCreated'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was created.|
diff --git a/api/Visio.Application.DocumentOpened.md b/api/Visio.Application.DocumentOpened.md
index e7b8972d3eb..1ca89246a3c 100644
--- a/api/Visio.Application.DocumentOpened.md
+++ b/api/Visio.Application.DocumentOpened.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentOpened'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was opened.|
diff --git a/api/Visio.Application.DocumentSaved.md b/api/Visio.Application.DocumentSaved.md
index 2c17481fba5..d06323cecdf 100644
--- a/api/Visio.Application.DocumentSaved.md
+++ b/api/Visio.Application.DocumentSaved.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentSaved'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was saved.|
diff --git a/api/Visio.Application.DocumentSavedAs.md b/api/Visio.Application.DocumentSavedAs.md
index af348866e7c..456700cf2c5 100644
--- a/api/Visio.Application.DocumentSavedAs.md
+++ b/api/Visio.Application.DocumentSavedAs.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentSavedAs'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was saved.|
diff --git a/api/Visio.Application.Documents.md b/api/Visio.Application.Documents.md
index 6f75b4d4ebb..cb67222b82c 100644
--- a/api/Visio.Application.Documents.md
+++ b/api/Visio.Application.Documents.md
@@ -23,7 +23,7 @@ Returns the **Documents** collection for a Microsoft Visio instance. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Documents
diff --git a/api/Visio.Application.DrawingPaths.md b/api/Visio.Application.DrawingPaths.md
index 65cd74ef6d8..01ffe889c83 100644
--- a/api/Visio.Application.DrawingPaths.md
+++ b/api/Visio.Application.DrawingPaths.md
@@ -23,7 +23,7 @@ Gets or sets the paths where Microsoft Visio looks for drawings. Read/write.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Application.EndUndoScope.md b/api/Visio.Application.EndUndoScope.md
index 1334fdec042..ebdff998b5f 100644
--- a/api/Visio.Application.EndUndoScope.md
+++ b/api/Visio.Application.EndUndoScope.md
@@ -27,12 +27,12 @@ Ends or cancels a transaction that has a unique scope.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nScopeID_|Required| **Long**|The ID of the scope to close.|
| _bCommit_|Required| **Boolean**| flag indicating that the changes made during the scope should be accepted (**True**) or canceled (**False**).|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Application.EnterScope.md b/api/Visio.Application.EnterScope.md
index 046ec76ca1d..d98200dd2f7 100644
--- a/api/Visio.Application.EnterScope.md
+++ b/api/Visio.Application.EnterScope.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'EnterScope'(**_ByVal app As [IVAPPLICATION]_** , **_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio that contains the scope.|
| _nScopeID_|Required| **Long**|A language-independent number that describes the operation that just ended or the scope ID returned by the **BeginUndoScope** method.|
diff --git a/api/Visio.Application.EnumDirectories.md b/api/Visio.Application.EnumDirectories.md
index 709c3cada2b..e6f42dd542e 100644
--- a/api/Visio.Application.EnumDirectories.md
+++ b/api/Visio.Application.EnumDirectories.md
@@ -27,12 +27,12 @@ Returns an array naming the folders Microsoft Visio would search, given a list o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PathsString_|Required| **String**|A string of full or partial paths separated by semicolons.|
| _NameArray()_|Required| **String**|Out parameter. An array that receives the enumerated folder names.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Application.EventInfo.md b/api/Visio.Application.EventInfo.md
index 27bf8a798b6..525eb7b364b 100644
--- a/api/Visio.Application.EventInfo.md
+++ b/api/Visio.Application.EventInfo.md
@@ -27,11 +27,11 @@ Gets additional information associated with an event, if any exists. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _eventSeqNum_|Required| **Long**| **visEvtIDMostRecent** (0) for information about the most recently fired event, or the sequence number of the event to examine.|
-### Return Value
+### Return value
String
diff --git a/api/Visio.Application.EventList.md b/api/Visio.Application.EventList.md
index c77414ed41f..6d87694f938 100644
--- a/api/Visio.Application.EventList.md
+++ b/api/Visio.Application.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Application.EventsEnabled.md b/api/Visio.Application.EventsEnabled.md
index 12a4b9a1c18..297e1196b1f 100644
--- a/api/Visio.Application.EventsEnabled.md
+++ b/api/Visio.Application.EventsEnabled.md
@@ -23,7 +23,7 @@ Determines whether a Microsoft Visio instance fires events. Read/write.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Application.ExitScope.md b/api/Visio.Application.ExitScope.md
index 4d006f1e268..00a8408fbd1 100644
--- a/api/Visio.Application.ExitScope.md
+++ b/api/Visio.Application.ExitScope.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ExitScope'(**_ByVal app As [IVAPPLICATION]_** , **_B
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio that contains the scope.|
| _nScopeID_|Required| **Long**|A language-independent number that describes the operation that just ended, or the scope ID returned by the **BeginUndoScope** method.|
diff --git a/api/Visio.Application.FormatResult.md b/api/Visio.Application.FormatResult.md
index 00721b441aa..9d3e99a0971 100644
--- a/api/Visio.Application.FormatResult.md
+++ b/api/Visio.Application.FormatResult.md
@@ -24,7 +24,7 @@ _expression_ A variable that represents an [Application](./Visio.Application.md)
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StringOrNumber_|Required| **Variant**|String or number to be formatted; can be passed as a string, floating point number, or integer.|
| _UnitsIn_|Required| **Variant**|Measurement units to attribute to _StringOrNumber_.|
diff --git a/api/Visio.Application.FormatResultEx.md b/api/Visio.Application.FormatResultEx.md
index 6fac2b74e2e..2d6ff6c0d25 100644
--- a/api/Visio.Application.FormatResultEx.md
+++ b/api/Visio.Application.FormatResultEx.md
@@ -25,7 +25,7 @@ Formats a string or number into a string according to a format picture, using sp
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StringOrNumber_|Required| **Variant**|String or number to be formatted; can be passed as a string, floating point number, or integer.|
| _UnitsIn_|Required| **Variant**|Measurement units to attribute to _StringOrNumber_.|
diff --git a/api/Visio.Application.FormulaChanged.md b/api/Visio.Application.FormulaChanged.md
index a99e329a875..277a4441272 100644
--- a/api/Visio.Application.FormulaChanged.md
+++ b/api/Visio.Application.FormulaChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'FormulaChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose formula changed.|
diff --git a/api/Visio.Application.FullBuild.md b/api/Visio.Application.FullBuild.md
index 7e500ec54dd..2fe962fb541 100644
--- a/api/Visio.Application.FullBuild.md
+++ b/api/Visio.Application.FullBuild.md
@@ -23,7 +23,7 @@ Returns the full build number of the running instance. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Application.GetBuiltInStencilFile.md b/api/Visio.Application.GetBuiltInStencilFile.md
index e1db0e27377..75973243fa0 100644
--- a/api/Visio.Application.GetBuiltInStencilFile.md
+++ b/api/Visio.Application.GetBuiltInStencilFile.md
@@ -27,12 +27,12 @@ Returns the file path to the specified built-in, hidden stencil used to populate
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StencilType_|Required| **[VisBuiltInStencilTypes](Visio.VisBuiltInStencilTypes.md)**|The stencil to retrieve. See Remarks for possible values.|
| _MeasurementSystem_|Required| **[VisMeasurementSystem](Visio.vismeasurementsystem.md)**|The measurement system for the stencil.|
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.Application.GetCustomStencilFile.md b/api/Visio.Application.GetCustomStencilFile.md
index 6d16ca468c5..16f764a7b1b 100644
--- a/api/Visio.Application.GetCustomStencilFile.md
+++ b/api/Visio.Application.GetCustomStencilFile.md
@@ -27,11 +27,11 @@ Returns the path to the specified custom stencil used to populate certain galler
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StencilType_|Required| **[VisBuiltInStencilTypes](Visio.VisBuiltInStencilTypes.md)**|The stencil to retrieve. See Remarks for possible values.|
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.Application.GetPreviewEnabled.md b/api/Visio.Application.GetPreviewEnabled.md
index 8a0ed09d033..db732659eed 100644
--- a/api/Visio.Application.GetPreviewEnabled.md
+++ b/api/Visio.Application.GetPreviewEnabled.md
@@ -27,11 +27,11 @@ Returns a value that indicates whether preview is enabled for the specified gall
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _GalleryName_|Required| **String**|The name of the gallery for which you want to check the preview status. See Remarks.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.Application.GroupCanceled.md b/api/Visio.Application.GroupCanceled.md
index 69765e0db51..44df3b3b42c 100644
--- a/api/Visio.Application.GroupCanceled.md
+++ b/api/Visio.Application.GroupCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'GroupCanceled'(**_ByVal Selection As [IVSELECTION]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.Application.HelpPaths.md b/api/Visio.Application.HelpPaths.md
index 2da46452c41..0e66ff1ffb8 100644
--- a/api/Visio.Application.HelpPaths.md
+++ b/api/Visio.Application.HelpPaths.md
@@ -23,7 +23,7 @@ Gets or sets the paths where Microsoft Visio looks for Help files. Read/write.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Application.InhibitSelectChange.md b/api/Visio.Application.InhibitSelectChange.md
index 6c4f7475a08..e413852defd 100644
--- a/api/Visio.Application.InhibitSelectChange.md
+++ b/api/Visio.Application.InhibitSelectChange.md
@@ -23,7 +23,7 @@ Determines whether shapes added to the drawing page by Automation are selected.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Application.InstanceHandle32.md b/api/Visio.Application.InstanceHandle32.md
index cf875b98cbe..d2ea4db82e4 100644
--- a/api/Visio.Application.InstanceHandle32.md
+++ b/api/Visio.Application.InstanceHandle32.md
@@ -23,7 +23,7 @@ Gets the instance handle of the **Application** object for a 32-bit version of
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Application.InstanceHandle64.md b/api/Visio.Application.InstanceHandle64.md
index 842faa4acd1..37492edcee6 100644
--- a/api/Visio.Application.InstanceHandle64.md
+++ b/api/Visio.Application.InstanceHandle64.md
@@ -23,7 +23,7 @@ Gets the instance handle of the **[Application](Visio.Application.md)** object
_expression_ An expression that returns an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
**Int64**
diff --git a/api/Visio.Application.InvokeHelp.md b/api/Visio.Application.InvokeHelp.md
index 47e526a4229..0d17b64ebfe 100644
--- a/api/Visio.Application.InvokeHelp.md
+++ b/api/Visio.Application.InvokeHelp.md
@@ -27,13 +27,13 @@ Performs operations that involve the Microsoft Visio Help system.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _bstrHelpFileName_|Required| **String**|Specifies an HTML file, a URL, a compiled HTML file, or an optional window definition (preceded with a ">" character). If the command being used does not require a file or URL, this value may be "".|
| _Command_|Required| **Long**|The action to perform.|
| _Data_|Required| **Long**|Any data that is required based on the value of the command argument.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Application.IsInScope.md b/api/Visio.Application.IsInScope.md
index cc3fb19a7bc..624d82bae5b 100644
--- a/api/Visio.Application.IsInScope.md
+++ b/api/Visio.Application.IsInScope.md
@@ -27,11 +27,11 @@ Determines whether a call to an event handler is between an **EnterScope** even
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nCmdID_|Required| **Long**|The scope ID.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Application.IsUndoingOrRedoing.md b/api/Visio.Application.IsUndoingOrRedoing.md
index 6ae7a065551..566416fe28a 100644
--- a/api/Visio.Application.IsUndoingOrRedoing.md
+++ b/api/Visio.Application.IsUndoingOrRedoing.md
@@ -23,7 +23,7 @@ Determines whether the current event handler is being called as a result of an
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Application.KeyDown.md b/api/Visio.Application.KeyDown.md
index 39c57964f8c..e0f66fc433a 100644
--- a/api/Visio.Application.KeyDown.md
+++ b/api/Visio.Application.KeyDown.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'KeyDown'(**_ByVal KeyCode As Long_** , **_ByVal KeyB
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCode_|Required| **Long**|The key that was pressed. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.Application.KeyPress.md b/api/Visio.Application.KeyPress.md
index 7c1c5b1f450..4ad3788d4b4 100644
--- a/api/Visio.Application.KeyPress.md
+++ b/api/Visio.Application.KeyPress.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'KeyPress'(**_ByVal KeyAscii As Long_** , **_ByVal Ca
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyAscii_|Required| **Long**|The ASCII value of the key that was pressed. See Remarks for possible values.|
| _CancelDefault_|Required| **Boolean**| **False** if Microsoft Visio should process the message it receives from this event; otherwise, **True** .|
diff --git a/api/Visio.Application.KeyUp.md b/api/Visio.Application.KeyUp.md
index e3ae4408f9d..41159ad8844 100644
--- a/api/Visio.Application.KeyUp.md
+++ b/api/Visio.Application.KeyUp.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'KeyUp'(**_ByVal KeyCode As Long_** , **_ByVal KeyBut
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCode_|Required| **Long**|The key that was released. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.Application.Language.md b/api/Visio.Application.Language.md
index 965747273f2..2896064fd6f 100644
--- a/api/Visio.Application.Language.md
+++ b/api/Visio.Application.Language.md
@@ -23,7 +23,7 @@ Represents the language ID of the version of the Microsoft Visio instance repres
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Application.LanguageHelp.md b/api/Visio.Application.LanguageHelp.md
index e28defd97ba..bb7ba424df0 100644
--- a/api/Visio.Application.LanguageHelp.md
+++ b/api/Visio.Application.LanguageHelp.md
@@ -23,7 +23,7 @@ Represents the language ID of the Help in the version of the Microsoft Visio ins
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Application.LanguageSettings.md b/api/Visio.Application.LanguageSettings.md
index 8d2722f108b..dba9207c940 100644
--- a/api/Visio.Application.LanguageSettings.md
+++ b/api/Visio.Application.LanguageSettings.md
@@ -23,7 +23,7 @@ Returns a reference to the Microsoft Office (MSO) **LanguageSettings** interfac
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.Application.LiveDynamics.md b/api/Visio.Application.LiveDynamics.md
index cf2302bff36..e593c2ca7ab 100644
--- a/api/Visio.Application.LiveDynamics.md
+++ b/api/Visio.Application.LiveDynamics.md
@@ -23,7 +23,7 @@ Controls whether Microsoft Visio recalculates shape properties during drag opera
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Application.MarkerEvent.md b/api/Visio.Application.MarkerEvent.md
index 7cbbbc5d240..914caa50b6c 100644
--- a/api/Visio.Application.MarkerEvent.md
+++ b/api/Visio.Application.MarkerEvent.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MarkerEvent'(**_ByVal app As [IVAPPLICATION]_** , **
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The active instance of Microsoft Visio.|
| _SequenceNum_|Required| **Long**|The ordinal position of this event with respect to past events.|
diff --git a/api/Visio.Application.MasterAdded.md b/api/Visio.Application.MasterAdded.md
index 299eada2b12..9c3a64ba5d9 100644
--- a/api/Visio.Application.MasterAdded.md
+++ b/api/Visio.Application.MasterAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MasterAdded'(**_ByVal Master As [IVMASTER]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that was added to the document.|
diff --git a/api/Visio.Application.MasterChanged.md b/api/Visio.Application.MasterChanged.md
index 7e3124e55ea..6e04f1d8ddb 100644
--- a/api/Visio.Application.MasterChanged.md
+++ b/api/Visio.Application.MasterChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MasterChanged'(**_ByVal Master As [IVMASTER]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master whose properties changed.|
diff --git a/api/Visio.Application.MasterDeleteCanceled.md b/api/Visio.Application.MasterDeleteCanceled.md
index f9b01a3f863..1f8967b6b1f 100644
--- a/api/Visio.Application.MasterDeleteCanceled.md
+++ b/api/Visio.Application.MasterDeleteCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MasterDeleteCanceled'(**_ByVal Master As [IVMASTER]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that was going to be deleted.|
diff --git a/api/Visio.Application.MouseDown.md b/api/Visio.Application.MouseDown.md
index 5edd4cce0d3..7b71b2c216e 100644
--- a/api/Visio.Application.MouseDown.md
+++ b/api/Visio.Application.MouseDown.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MouseDown'(**_ByVal Button As Long_** , **_ByVal Key
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Button_|Required| **Long**|The mouse button that was pressed. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the mouse buttons and the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.Application.MouseMove.md b/api/Visio.Application.MouseMove.md
index 212e0e0b3eb..423a55d7615 100644
--- a/api/Visio.Application.MouseMove.md
+++ b/api/Visio.Application.MouseMove.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MouseMove'(**_ByVal Button As Long_** , **_ByVal Key
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Button_|Required| **Long**|The mouse button that was clicked. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the mouse buttons and the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.Application.MouseUp.md b/api/Visio.Application.MouseUp.md
index 581d3ee2c2c..9a6b6cd4676 100644
--- a/api/Visio.Application.MouseUp.md
+++ b/api/Visio.Application.MouseUp.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MouseUp'(**_ByVal Button As Long_** , **_ByVal KeyBu
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Button_|Required| **Long**|The mouse button that was released. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the mouse buttons and the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.Application.MustFlushScopeBeginning.md b/api/Visio.Application.MustFlushScopeBeginning.md
index 2ee9ba75297..b82b475a593 100644
--- a/api/Visio.Application.MustFlushScopeBeginning.md
+++ b/api/Visio.Application.MustFlushScopeBeginning.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MustFlushScopeBeginning'(**_ByVal app As [IVAPPLICAT
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that is forced to flush its event queue.|
diff --git a/api/Visio.Application.MustFlushScopeEnded.md b/api/Visio.Application.MustFlushScopeEnded.md
index 20abb4d77bb..7d5d10856c6 100644
--- a/api/Visio.Application.MustFlushScopeEnded.md
+++ b/api/Visio.Application.MustFlushScopeEnded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MustFlushScopeEnded'(**_ByVal app As [IVAPPLICATION]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that is forced to flush its event queue.|
diff --git a/api/Visio.Application.MyShapesPath.md b/api/Visio.Application.MyShapesPath.md
index 9b7d24db599..36fdf5f1655 100644
--- a/api/Visio.Application.MyShapesPath.md
+++ b/api/Visio.Application.MyShapesPath.md
@@ -23,7 +23,7 @@ Gets or sets where Microsoft Visio looks for the **My Shapes** folder on the us
_expression_ An expression that returns an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Application.Name.md b/api/Visio.Application.Name.md
index 20249a461e9..be31cb68e2f 100644
--- a/api/Visio.Application.Name.md
+++ b/api/Visio.Application.Name.md
@@ -23,7 +23,7 @@ Specifies the name of an object. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Application.NoEventsPending.md b/api/Visio.Application.NoEventsPending.md
index fe22cf367a7..94c7338a274 100644
--- a/api/Visio.Application.NoEventsPending.md
+++ b/api/Visio.Application.NoEventsPending.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'NoEventsPending'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that flushed its event queue.|
diff --git a/api/Visio.Application.ObjectType.md b/api/Visio.Application.ObjectType.md
index bbb70de3d03..56cee9ca9dd 100644
--- a/api/Visio.Application.ObjectType.md
+++ b/api/Visio.Application.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Application.OnComponentEnterState.md b/api/Visio.Application.OnComponentEnterState.md
index 58dadf45d95..695892705bf 100644
--- a/api/Visio.Application.OnComponentEnterState.md
+++ b/api/Visio.Application.OnComponentEnterState.md
@@ -27,12 +27,12 @@ Informs a Microsoft Visio instance that client code is causing the instance to e
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _uStateID_|Required| **VisOnComponentEnterCodes**|Describes the state being entered or exited along with flags that influence behavior while in the indicated state.|
| _bEnter_|Required| **Boolean**| **True** to indicate that a state is being entered; **False** to indicate that a state is being exited.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Application.OnDataChangeDelay.md b/api/Visio.Application.OnDataChangeDelay.md
index 678416c56af..f3a65b86447 100644
--- a/api/Visio.Application.OnDataChangeDelay.md
+++ b/api/Visio.Application.OnDataChangeDelay.md
@@ -23,7 +23,7 @@ Gets or sets how long the Microsoft Visio instance waits before advising a conta
_expression_ An expression that returns a [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Application.OnKeystrokeMessageForAddon.md b/api/Visio.Application.OnKeystrokeMessageForAddon.md
index 7e8931230fc..9336593b7a0 100644
--- a/api/Visio.Application.OnKeystrokeMessageForAddon.md
+++ b/api/Visio.Application.OnKeystrokeMessageForAddon.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'OnKeystrokeMessageForAddon'(**_ByVal MSG As [IVMSGWR
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MSG_|Required| **[IVMSGWRAP]**|The message that Visio receives.|
diff --git a/api/Visio.Application.PageAdded.md b/api/Visio.Application.PageAdded.md
index 439cd905a31..16713625d65 100644
--- a/api/Visio.Application.PageAdded.md
+++ b/api/Visio.Application.PageAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'PageAdded'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that was added.|
diff --git a/api/Visio.Application.PageChanged.md b/api/Visio.Application.PageChanged.md
index f44458397b8..900189557a7 100644
--- a/api/Visio.Application.PageChanged.md
+++ b/api/Visio.Application.PageChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'PageChanged'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that changed.|
diff --git a/api/Visio.Application.PageDeleteCanceled.md b/api/Visio.Application.PageDeleteCanceled.md
index 0cce1368b8c..7b66bd97b8a 100644
--- a/api/Visio.Application.PageDeleteCanceled.md
+++ b/api/Visio.Application.PageDeleteCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'PageDeleteCanceled'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that was going to be deleted.|
diff --git a/api/Visio.Application.Path.md b/api/Visio.Application.Path.md
index 34c233d9d4b..2adcb2b8b44 100644
--- a/api/Visio.Application.Path.md
+++ b/api/Visio.Application.Path.md
@@ -23,7 +23,7 @@ Returns the drive and folder path of the Microsoft Visio application. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Application.PersistsEvents.md b/api/Visio.Application.PersistsEvents.md
index 3d79862915b..54d4fd66538 100644
--- a/api/Visio.Application.PersistsEvents.md
+++ b/api/Visio.Application.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Application.ProcessID.md b/api/Visio.Application.ProcessID.md
index a6327e0455a..f2459d88ba7 100644
--- a/api/Visio.Application.ProcessID.md
+++ b/api/Visio.Application.ProcessID.md
@@ -23,7 +23,7 @@ Returns the unique identity of the current Microsoft Visio process. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.Application.PromptForSummary.md b/api/Visio.Application.PromptForSummary.md
index d7ff18c73ae..837c1f16fc4 100644
--- a/api/Visio.Application.PromptForSummary.md
+++ b/api/Visio.Application.PromptForSummary.md
@@ -23,7 +23,7 @@ Determines whether Microsoft Visio prompts for document properties when it saves
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Application.PurgeUndo.md b/api/Visio.Application.PurgeUndo.md
index ee0028ea1af..64bf194a8df 100644
--- a/api/Visio.Application.PurgeUndo.md
+++ b/api/Visio.Application.PurgeUndo.md
@@ -23,7 +23,7 @@ Empties the Microsoft Visio queue of undo actions.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Application.QueryCancelConvertToGroup.md b/api/Visio.Application.QueryCancelConvertToGroup.md
index 3dd41b0f071..baa7d465470 100644
--- a/api/Visio.Application.QueryCancelConvertToGroup.md
+++ b/api/Visio.Application.QueryCancelConvertToGroup.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelConvertToGroup'(**_ByVal Selection As [IV
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be converted to a group.|
diff --git a/api/Visio.Application.QueryCancelDocumentClose.md b/api/Visio.Application.QueryCancelDocumentClose.md
index dcd09ac0b44..77df3c9d0d1 100644
--- a/api/Visio.Application.QueryCancelDocumentClose.md
+++ b/api/Visio.Application.QueryCancelDocumentClose.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelDocumentClose'(**_ByVal doc As [IVDOCUMEN
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be closed.|
diff --git a/api/Visio.Application.QueryCancelGroup.md b/api/Visio.Application.QueryCancelGroup.md
index d353d1f9188..95a5deb7147 100644
--- a/api/Visio.Application.QueryCancelGroup.md
+++ b/api/Visio.Application.QueryCancelGroup.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelGroup'(**_ByVal Selection As [IVSELECTION
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be grouped.|
diff --git a/api/Visio.Application.QueryCancelMasterDelete.md b/api/Visio.Application.QueryCancelMasterDelete.md
index 1f663ba5475..072e49c3de0 100644
--- a/api/Visio.Application.QueryCancelMasterDelete.md
+++ b/api/Visio.Application.QueryCancelMasterDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelMasterDelete'(**_ByVal Master As [IVMASTE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that is going to be deleted.|
diff --git a/api/Visio.Application.QueryCancelPageDelete.md b/api/Visio.Application.QueryCancelPageDelete.md
index 315d25d5de3..7ffae32ba16 100644
--- a/api/Visio.Application.QueryCancelPageDelete.md
+++ b/api/Visio.Application.QueryCancelPageDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelPageDelete'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that is going to be deleted.|
diff --git a/api/Visio.Application.QueryCancelQuit.md b/api/Visio.Application.QueryCancelQuit.md
index 5d8c79dce9f..cb6fd00c5a7 100644
--- a/api/Visio.Application.QueryCancelQuit.md
+++ b/api/Visio.Application.QueryCancelQuit.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelQuit'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio that is going to terminate.|
diff --git a/api/Visio.Application.QueryCancelSelectionDelete.md b/api/Visio.Application.QueryCancelSelectionDelete.md
index b5536f98de2..4dc473f9000 100644
--- a/api/Visio.Application.QueryCancelSelectionDelete.md
+++ b/api/Visio.Application.QueryCancelSelectionDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelSelectionDelete'(**_ByVal Selection As [I
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be deleted.|
diff --git a/api/Visio.Application.QueryCancelStyleDelete.md b/api/Visio.Application.QueryCancelStyleDelete.md
index af4d2442219..a459f748030 100644
--- a/api/Visio.Application.QueryCancelStyleDelete.md
+++ b/api/Visio.Application.QueryCancelStyleDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelStyleDelete'(**_ByVal Style As [IVSTYLE]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _style_|Required| **[IVSTYLE]**|The style that is going to be deleted.|
diff --git a/api/Visio.Application.QueryCancelSuspend.md b/api/Visio.Application.QueryCancelSuspend.md
index 60e2d825d9d..6d8120484f1 100644
--- a/api/Visio.Application.QueryCancelSuspend.md
+++ b/api/Visio.Application.QueryCancelSuspend.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelSuspend'(**_ByVal app As [IVAPPLICATION]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that responds to the operating system request.|
diff --git a/api/Visio.Application.QueryCancelSuspendEvents.md b/api/Visio.Application.QueryCancelSuspendEvents.md
index 8e12df42eb9..0b275fa6f2f 100644
--- a/api/Visio.Application.QueryCancelSuspendEvents.md
+++ b/api/Visio.Application.QueryCancelSuspendEvents.md
@@ -24,11 +24,11 @@ Private Sub _expression_ _'QueryCancelSuspendEvents'(**_ByVal app As [IVAPPLICA
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio in which firing of events is going to be suspended.|
-### Return Value
+### Return value
nothing
diff --git a/api/Visio.Application.QueryCancelUngroup.md b/api/Visio.Application.QueryCancelUngroup.md
index 035ff6b68df..6f82674e80b 100644
--- a/api/Visio.Application.QueryCancelUngroup.md
+++ b/api/Visio.Application.QueryCancelUngroup.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelUngroup'(**_ByVal Selection As [IVSELECTI
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be ungrouped.|
diff --git a/api/Visio.Application.QueryCancelWindowClose.md b/api/Visio.Application.QueryCancelWindowClose.md
index 2738d4cd2fb..041d38f1887 100644
--- a/api/Visio.Application.QueryCancelWindowClose.md
+++ b/api/Visio.Application.QueryCancelWindowClose.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelWindowClose'(**_ByVal Window As [IVWINDOW
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that is going to be closed.|
diff --git a/api/Visio.Application.QueueMarkerEvent.md b/api/Visio.Application.QueueMarkerEvent.md
index 155ee3e27f5..678eef3314a 100644
--- a/api/Visio.Application.QueueMarkerEvent.md
+++ b/api/Visio.Application.QueueMarkerEvent.md
@@ -27,11 +27,11 @@ Queues a **MarkerEvent** event that fires after all other queued events.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ContextString_|Required| **String**|An arbitrary string that is passed with the event that fires.|
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Application.Quit.md b/api/Visio.Application.Quit.md
index a1409808d62..b5e0c53a3ae 100644
--- a/api/Visio.Application.Quit.md
+++ b/api/Visio.Application.Quit.md
@@ -23,7 +23,7 @@ Closes the indicated instance of Microsoft Visio.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Application.QuitCanceled.md b/api/Visio.Application.QuitCanceled.md
index 380b99e3beb..7f7f60a3d44 100644
--- a/api/Visio.Application.QuitCanceled.md
+++ b/api/Visio.Application.QuitCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QuitCanceled'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio that was going to be terminated.|
diff --git a/api/Visio.Application.Redo.md b/api/Visio.Application.Redo.md
index b47d7126ee0..105aa6d2186 100644
--- a/api/Visio.Application.Redo.md
+++ b/api/Visio.Application.Redo.md
@@ -23,7 +23,7 @@ Reverses the most recent undo unit.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Application.RegisterRibbonX.md b/api/Visio.Application.RegisterRibbonX.md
index a58740f87f3..bc62ce18b19 100644
--- a/api/Visio.Application.RegisterRibbonX.md
+++ b/api/Visio.Application.RegisterRibbonX.md
@@ -27,14 +27,14 @@ Registers the **[IRibbonExtensibility](./Office.IRibbonExtensibility.md)** inte
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SourceAddOn_|Required| **IRibbonExtensibilty**|The add-on to register.|
| _TargetDocument_|Required| **[Document](Visio.Document.md)**|The document that uses the custom UI.|
| _TargetModes_|Required| **[VisRibbonXModes](Visio.VisRibbonXModes.md)**|The modes in which the custom UI should be visible. See Remarks for possible values.|
| _FriendlyName_|Required| **String**|The name to associate with the UI items and errors that originate in the add-on.|
-### Return Value
+### Return value
**Nothing**
@@ -47,7 +47,7 @@ If _TargetDocument_ is null, the custom UI is defined at the level of the appli
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visRxModeNone**|0|Display the custom UI when no documents are open.|
| **visRxModeDrawing**|1|Display the custom UI in Drawing mode.|
diff --git a/api/Visio.Application.RenameCurrentScope.md b/api/Visio.Application.RenameCurrentScope.md
index 4dea30d0ec4..e0381d51898 100644
--- a/api/Visio.Application.RenameCurrentScope.md
+++ b/api/Visio.Application.RenameCurrentScope.md
@@ -27,11 +27,11 @@ Renames the top-level open undo scope.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _bstrScopeName_|Required| **String**|The new name of the undo scope.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Application.RuleSetValidated.md b/api/Visio.Application.RuleSetValidated.md
index e23b581cbc5..9f4bf32cade 100644
--- a/api/Visio.Application.RuleSetValidated.md
+++ b/api/Visio.Application.RuleSetValidated.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'RuleSetValidated'(**_ByVal RuleSet As ValidationRule
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RuleSet_|Required| **[ValidationRuleSet](Visio.ValidationRuleSet.md)**|The rule set that was validated.|
diff --git a/api/Visio.Application.RunModeEntered.md b/api/Visio.Application.RunModeEntered.md
index 107401d7d2d..c8ab6b37ac8 100644
--- a/api/Visio.Application.RunModeEntered.md
+++ b/api/Visio.Application.RunModeEntered.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'RunModeEntered'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that entered run mode.|
diff --git a/api/Visio.Application.SaveAsWebObject.md b/api/Visio.Application.SaveAsWebObject.md
index a6996d9d0f9..725c0d9b487 100644
--- a/api/Visio.Application.SaveAsWebObject.md
+++ b/api/Visio.Application.SaveAsWebObject.md
@@ -23,7 +23,7 @@ Returns a reference to the **IDispatch** interface of a **VisSaveAsWeb** object
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.Application.ScreenUpdating.md b/api/Visio.Application.ScreenUpdating.md
index 2bdb0b60d80..eb5d3900b12 100644
--- a/api/Visio.Application.ScreenUpdating.md
+++ b/api/Visio.Application.ScreenUpdating.md
@@ -23,7 +23,7 @@ Determines whether the screen is updated (redrawn) during a series of actions. R
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Application.SelectionAdded.md b/api/Visio.Application.SelectionAdded.md
index a92059881b2..ae269206b86 100644
--- a/api/Visio.Application.SelectionAdded.md
+++ b/api/Visio.Application.SelectionAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'SelectionAdded'(**_ByVal Selection As [IVSELECTION]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was added to the document.|
diff --git a/api/Visio.Application.SelectionChanged.md b/api/Visio.Application.SelectionChanged.md
index dc5593ffcfb..49afbe29f2e 100644
--- a/api/Visio.Application.SelectionChanged.md
+++ b/api/Visio.Application.SelectionChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'SelectionChanged'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window in which the selection changed.|
diff --git a/api/Visio.Application.SelectionDeleteCanceled.md b/api/Visio.Application.SelectionDeleteCanceled.md
index e5880accd9e..4a006121ef9 100644
--- a/api/Visio.Application.SelectionDeleteCanceled.md
+++ b/api/Visio.Application.SelectionDeleteCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'SelectionDeleteCanceled'(**_ByVal Selection As [IVSE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be deleted.|
diff --git a/api/Visio.Application.SetCustomMenus.md b/api/Visio.Application.SetCustomMenus.md
index e101a7ae248..d3b2158ede1 100644
--- a/api/Visio.Application.SetCustomMenus.md
+++ b/api/Visio.Application.SetCustomMenus.md
@@ -27,11 +27,11 @@ Replaces the current built-in or custom menus of an application or document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MenusObject_|Required| **[IVUIOBJECT]**|An expression that returns a **UIObject** object that represents the new custom menus.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Application.SetCustomToolbars.md b/api/Visio.Application.SetCustomToolbars.md
index a89ffda4ccf..8bc749a5c2d 100644
--- a/api/Visio.Application.SetCustomToolbars.md
+++ b/api/Visio.Application.SetCustomToolbars.md
@@ -27,11 +27,11 @@ Replaces the current built-in or custom toolbars of an application or document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ToolbarsObject_|Required| **[IVUIOBJECT]**|An expression that returns a **UIObject** object that represents the new custom toolbars.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Application.SetPreviewEnabled.md b/api/Visio.Application.SetPreviewEnabled.md
index 301aa0c0452..63eb3792bd9 100644
--- a/api/Visio.Application.SetPreviewEnabled.md
+++ b/api/Visio.Application.SetPreviewEnabled.md
@@ -27,12 +27,12 @@ Turns preview on or off for a gallery in the Microsoft Visio user interface.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _GalleryName_|Required| **String**|The name of the gallery for which you want to set the preview status. See Remarks.|
| _OnOrOff_|Required| **Boolean**| **True** to turn preview on for the specified gallery; **False** to turn preview off.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Application.Settings.md b/api/Visio.Application.Settings.md
index 7f65eae0432..ae8462e8ebd 100644
--- a/api/Visio.Application.Settings.md
+++ b/api/Visio.Application.Settings.md
@@ -23,7 +23,7 @@ Returns an **ApplicationSettings** object, which you can use to set Microsoft V
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
**ApplicationSettings**
diff --git a/api/Visio.Application.ShapeAdded.md b/api/Visio.Application.ShapeAdded.md
index 2ba1975bbc4..1df8cca632b 100644
--- a/api/Visio.Application.ShapeAdded.md
+++ b/api/Visio.Application.ShapeAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ShapeAdded'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape or group of shapes that was added to the document.|
diff --git a/api/Visio.Application.ShapeChanged.md b/api/Visio.Application.ShapeChanged.md
index 2385af8f277..0eb45d7bc5a 100644
--- a/api/Visio.Application.ShapeChanged.md
+++ b/api/Visio.Application.ShapeChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ShapeChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose property changed.|
diff --git a/api/Visio.Application.ShapeDataGraphicChanged.md b/api/Visio.Application.ShapeDataGraphicChanged.md
index fce30e54e16..2dfa1931b41 100644
--- a/api/Visio.Application.ShapeDataGraphicChanged.md
+++ b/api/Visio.Application.ShapeDataGraphicChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeDataGraphicChanged'(**_ByVal Shape As IVSHAPE_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape to which the data graphic was applied or from which it was deleted.|
diff --git a/api/Visio.Application.ShapeExitedTextEdit.md b/api/Visio.Application.ShapeExitedTextEdit.md
index 8356056a2aa..55de2079409 100644
--- a/api/Visio.Application.ShapeExitedTextEdit.md
+++ b/api/Visio.Application.ShapeExitedTextEdit.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ShapeExitedTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that was closed for text editing.|
diff --git a/api/Visio.Application.ShapeLinkAdded.md b/api/Visio.Application.ShapeLinkAdded.md
index c352e1ccbe3..19aa2884d16 100644
--- a/api/Visio.Application.ShapeLinkAdded.md
+++ b/api/Visio.Application.ShapeLinkAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeLinkAdded'(**_ByVal Shape As [IVSHAPE]_** , **_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is linked to data.|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset containing the data row linked to the shape.|
diff --git a/api/Visio.Application.ShapeLinkDeleted.md b/api/Visio.Application.ShapeLinkDeleted.md
index 3272f8af1a1..a7801400365 100644
--- a/api/Visio.Application.ShapeLinkDeleted.md
+++ b/api/Visio.Application.ShapeLinkDeleted.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeLinkDeleted'(**_ByVal Shape As [IVSHAPE]_** , *
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose link to a data row was broken.|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset containing the data row that was linked to the shape.|
diff --git a/api/Visio.Application.ShapeParentChanged.md b/api/Visio.Application.ShapeParentChanged.md
index 6e94dee6ba1..74d65e4b4b2 100644
--- a/api/Visio.Application.ShapeParentChanged.md
+++ b/api/Visio.Application.ShapeParentChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ShapeParentChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose parent changed.|
diff --git a/api/Visio.Application.ShowChanges.md b/api/Visio.Application.ShowChanges.md
index 13c21dfa29d..7ca2a23980b 100644
--- a/api/Visio.Application.ShowChanges.md
+++ b/api/Visio.Application.ShowChanges.md
@@ -23,7 +23,7 @@ Determines whether the screen is updated (redrawn) during a series of actions. R
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Application.ShowProgress.md b/api/Visio.Application.ShowProgress.md
index 2f2ffd410a4..8f71ccc0d8e 100644
--- a/api/Visio.Application.ShowProgress.md
+++ b/api/Visio.Application.ShowProgress.md
@@ -23,7 +23,7 @@ Determines whether a progress indicator is shown while performing certain operat
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Application.ShowStatusBar.md b/api/Visio.Application.ShowStatusBar.md
index edadec775bb..9b005fae5e0 100644
--- a/api/Visio.Application.ShowStatusBar.md
+++ b/api/Visio.Application.ShowStatusBar.md
@@ -23,7 +23,7 @@ Determines whether the status bar is shown. Read/write.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Application.ShowToolbar.md b/api/Visio.Application.ShowToolbar.md
index 040d0d20767..8b7336187b4 100644
--- a/api/Visio.Application.ShowToolbar.md
+++ b/api/Visio.Application.ShowToolbar.md
@@ -23,7 +23,7 @@ Determines whether toolbars and menu bars are visible. Read/write.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Application.StartupPaths.md b/api/Visio.Application.StartupPaths.md
index 97fe5ad8f60..5c016dad1e4 100644
--- a/api/Visio.Application.StartupPaths.md
+++ b/api/Visio.Application.StartupPaths.md
@@ -23,7 +23,7 @@ Gets or sets the paths where Microsoft Visio looks for third-party and user add-
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Application.Stat.md b/api/Visio.Application.Stat.md
index 78941f60da3..c4280d26860 100644
--- a/api/Visio.Application.Stat.md
+++ b/api/Visio.Application.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Application.StencilPaths.md b/api/Visio.Application.StencilPaths.md
index e231d2d96d2..24a7c7a5302 100644
--- a/api/Visio.Application.StencilPaths.md
+++ b/api/Visio.Application.StencilPaths.md
@@ -23,7 +23,7 @@ Gets or sets the paths where Microsoft Visio looks for stencils. Read/write.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Application.StyleAdded.md b/api/Visio.Application.StyleAdded.md
index 2d26a181e05..bf725ff4233 100644
--- a/api/Visio.Application.StyleAdded.md
+++ b/api/Visio.Application.StyleAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'StyleAdded'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that was added to the document.|
diff --git a/api/Visio.Application.StyleChanged.md b/api/Visio.Application.StyleChanged.md
index 10b8acafafd..ae28dcb2a8c 100644
--- a/api/Visio.Application.StyleChanged.md
+++ b/api/Visio.Application.StyleChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'StyleChanged'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _style_|Required| **[IVSTYLE]**|The style that changed.|
diff --git a/api/Visio.Application.StyleDeleteCanceled.md b/api/Visio.Application.StyleDeleteCanceled.md
index e99f5a67dc3..8b345af2c7f 100644
--- a/api/Visio.Application.StyleDeleteCanceled.md
+++ b/api/Visio.Application.StyleDeleteCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'StyleDeleteCanceled'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that was going to be deleted.|
diff --git a/api/Visio.Application.SuspendCanceled.md b/api/Visio.Application.SuspendCanceled.md
index 701afc92739..e15b05fef2f 100644
--- a/api/Visio.Application.SuspendCanceled.md
+++ b/api/Visio.Application.SuspendCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'SuspendCanceled'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio that was going to be suspended.|
diff --git a/api/Visio.Application.SuspendEventsCanceled.md b/api/Visio.Application.SuspendEventsCanceled.md
index 0fcbcb3b174..83ffab6d100 100644
--- a/api/Visio.Application.SuspendEventsCanceled.md
+++ b/api/Visio.Application.SuspendEventsCanceled.md
@@ -24,11 +24,11 @@ Private Sub _expression_ _'SuspendEventsCanceled'(**_ByVal app As_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio in which firing of events was going to be suspended.|
-### Return Value
+### Return value
nothing
diff --git a/api/Visio.Application.TemplatePaths.md b/api/Visio.Application.TemplatePaths.md
index 1335489eb03..e4348e024b2 100644
--- a/api/Visio.Application.TemplatePaths.md
+++ b/api/Visio.Application.TemplatePaths.md
@@ -23,7 +23,7 @@ Gets or sets the paths where Microsoft Visio looks for templates. Read/write.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.Application.TextChanged.md b/api/Visio.Application.TextChanged.md
index 2eeb3466ec2..71835d63b51 100644
--- a/api/Visio.Application.TextChanged.md
+++ b/api/Visio.Application.TextChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'TextChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose text changed.|
diff --git a/api/Visio.Application.TraceFlags.md b/api/Visio.Application.TraceFlags.md
index 03a75793c97..bbca3b9d27f 100644
--- a/api/Visio.Application.TraceFlags.md
+++ b/api/Visio.Application.TraceFlags.md
@@ -23,7 +23,7 @@ Gets or sets events logged during a Microsoft Visio instance. Read/write.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Application.TypelibMajorVersion.md b/api/Visio.Application.TypelibMajorVersion.md
index beae84f1750..6f426968729 100644
--- a/api/Visio.Application.TypelibMajorVersion.md
+++ b/api/Visio.Application.TypelibMajorVersion.md
@@ -23,7 +23,7 @@ Returns the major version number of the Microsoft Visio type library. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Application.TypelibMinorVersion.md b/api/Visio.Application.TypelibMinorVersion.md
index 69aed05ade9..afc1973c392 100644
--- a/api/Visio.Application.TypelibMinorVersion.md
+++ b/api/Visio.Application.TypelibMinorVersion.md
@@ -23,7 +23,7 @@ Returns the minor version number of the Microsoft Visio type library. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Application.Undo.md b/api/Visio.Application.Undo.md
index 0e2704fcb77..d2d0c3db16e 100644
--- a/api/Visio.Application.Undo.md
+++ b/api/Visio.Application.Undo.md
@@ -23,7 +23,7 @@ Reverses the most recent undo unit, if the undo unit can be reversed.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Application.UndoEnabled.md b/api/Visio.Application.UndoEnabled.md
index 8e41418e3ad..959279763a9 100644
--- a/api/Visio.Application.UndoEnabled.md
+++ b/api/Visio.Application.UndoEnabled.md
@@ -23,7 +23,7 @@ Determines whether undo information is maintained in memory. Read/write.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Application.UngroupCanceled.md b/api/Visio.Application.UngroupCanceled.md
index f569f55f852..017c57a63f8 100644
--- a/api/Visio.Application.UngroupCanceled.md
+++ b/api/Visio.Application.UngroupCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'UngroupCanceled'(**_ByVal Selection As [IVSELECTION]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be ungrouped.|
diff --git a/api/Visio.Application.UnregisterRibbonX.md b/api/Visio.Application.UnregisterRibbonX.md
index 5e34f10bc6a..4be9f7bacb9 100644
--- a/api/Visio.Application.UnregisterRibbonX.md
+++ b/api/Visio.Application.UnregisterRibbonX.md
@@ -27,12 +27,12 @@ Unregisters a previouly registered **IRibbonExtensiblity** interface that a Mic
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SourceAddOn_|Required| **IRibbonExtensibility**|The add-in to unregister.|
| _TargetDocument_|Required| **[Document](Visio.Document.md)**|The document in which to unregister the add-in.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Application.UserName.md b/api/Visio.Application.UserName.md
index 72b0efcaad0..e55254b12c5 100644
--- a/api/Visio.Application.UserName.md
+++ b/api/Visio.Application.UserName.md
@@ -23,7 +23,7 @@ Gets or sets the user name of an **Application** object. Read/write.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Application.VBAEnabled.md b/api/Visio.Application.VBAEnabled.md
index 20c9cfb11bb..7666f40fe40 100644
--- a/api/Visio.Application.VBAEnabled.md
+++ b/api/Visio.Application.VBAEnabled.md
@@ -23,7 +23,7 @@ Specifies whether Microsoft Visual Basic for Applications (VBA) is enabled in th
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.Application.Vbe.md b/api/Visio.Application.Vbe.md
index 96ea70499b5..fdd24570712 100644
--- a/api/Visio.Application.Vbe.md
+++ b/api/Visio.Application.Vbe.md
@@ -23,7 +23,7 @@ Gets the root object of the object model exposed by Microsoft Visual Basic for A
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.Application.Version.md b/api/Visio.Application.Version.md
index 05049e81269..9b960598c38 100644
--- a/api/Visio.Application.Version.md
+++ b/api/Visio.Application.Version.md
@@ -23,7 +23,7 @@ Returns the version of a running Microsoft Visio instance. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Application.ViewChanged.md b/api/Visio.Application.ViewChanged.md
index e6e64d1a6f1..005653b46f9 100644
--- a/api/Visio.Application.ViewChanged.md
+++ b/api/Visio.Application.ViewChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ViewChanged'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window whose zoom level or scroll position changed.|
diff --git a/api/Visio.Application.Visible.md b/api/Visio.Application.Visible.md
index 798ff56a085..65b950932ce 100644
--- a/api/Visio.Application.Visible.md
+++ b/api/Visio.Application.Visible.md
@@ -23,7 +23,7 @@ Determines whether an object is visible. Read/write.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Application.VisioIsIdle.md b/api/Visio.Application.VisioIsIdle.md
index 15a6c5f7268..96ca359057a 100644
--- a/api/Visio.Application.VisioIsIdle.md
+++ b/api/Visio.Application.VisioIsIdle.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'VisioIsIdle'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio that emptied its message queue.|
diff --git a/api/Visio.Application.Window.md b/api/Visio.Application.Window.md
index 5d57bdae86a..183b9f81a3e 100644
--- a/api/Visio.Application.Window.md
+++ b/api/Visio.Application.Window.md
@@ -23,7 +23,7 @@ Returns the window associated with the current instance of Microsoft Visio. Read
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.Application.WindowActivated.md b/api/Visio.Application.WindowActivated.md
index ed35df94a58..79d2cb2a69d 100644
--- a/api/Visio.Application.WindowActivated.md
+++ b/api/Visio.Application.WindowActivated.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'WindowActivated'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that was activated.|
diff --git a/api/Visio.Application.WindowChanged.md b/api/Visio.Application.WindowChanged.md
index c8801b574b2..5495f2cd624 100644
--- a/api/Visio.Application.WindowChanged.md
+++ b/api/Visio.Application.WindowChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'WindowChanged'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window whose size or position has changed.|
diff --git a/api/Visio.Application.WindowCloseCanceled.md b/api/Visio.Application.WindowCloseCanceled.md
index 355ff7d7032..20ff99d4695 100644
--- a/api/Visio.Application.WindowCloseCanceled.md
+++ b/api/Visio.Application.WindowCloseCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'WindowCloseCanceled'(**_ByVal Window As [IVWINDOW]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that was going to be closed.|
diff --git a/api/Visio.Application.WindowHandle32.md b/api/Visio.Application.WindowHandle32.md
index f1157dd0076..ba8fa03c471 100644
--- a/api/Visio.Application.WindowHandle32.md
+++ b/api/Visio.Application.WindowHandle32.md
@@ -23,7 +23,7 @@ Returns the 32-bit handle of a Microsoft Visio window. Read-only.
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Application.WindowOpened.md b/api/Visio.Application.WindowOpened.md
index ca6003c1400..2b7206495b4 100644
--- a/api/Visio.Application.WindowOpened.md
+++ b/api/Visio.Application.WindowOpened.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'WindowOpened'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that opened.|
diff --git a/api/Visio.Application.WindowTurnedToPage.md b/api/Visio.Application.WindowTurnedToPage.md
index b166e8c3f3a..e344bc17257 100644
--- a/api/Visio.Application.WindowTurnedToPage.md
+++ b/api/Visio.Application.WindowTurnedToPage.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'WindowTurnedToPage'(**_ByVal Window As [IVWINDOW]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that shows a different page.|
diff --git a/api/Visio.Application.Windows.md b/api/Visio.Application.Windows.md
index 4bc1c9d0163..c702e1e17aa 100644
--- a/api/Visio.Application.Windows.md
+++ b/api/Visio.Application.Windows.md
@@ -23,7 +23,7 @@ Returns the **Windows** collection for a Microsoft Visio instance or window. Re
_expression_ A variable that represents an [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Windows
diff --git a/api/Visio.ApplicationSettings.Application.md b/api/Visio.ApplicationSettings.Application.md
index b11d95cf37e..9b47e0fb7f6 100644
--- a/api/Visio.ApplicationSettings.Application.md
+++ b/api/Visio.ApplicationSettings.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.ApplicationSettings.ApplyBackgroundToDocument.md b/api/Visio.ApplicationSettings.ApplyBackgroundToDocument.md
index ab7979934d1..e857f45ddf2 100644
--- a/api/Visio.ApplicationSettings.ApplyBackgroundToDocument.md
+++ b/api/Visio.ApplicationSettings.ApplyBackgroundToDocument.md
@@ -23,7 +23,7 @@ Determines whether the selected background or border is applied to all pages in
_expression_ A variable that represents an '[ApplicationSettings](Visio.ApplicationSettings.md)' object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.ApplicationSettings.ApplyThemesOnShapeAdd.md b/api/Visio.ApplicationSettings.ApplyThemesOnShapeAdd.md
index 66ff345dbe9..73d11f7efc9 100644
--- a/api/Visio.ApplicationSettings.ApplyThemesOnShapeAdd.md
+++ b/api/Visio.ApplicationSettings.ApplyThemesOnShapeAdd.md
@@ -23,7 +23,7 @@ Gets or sets whether to apply themes to new shapes when they are added to the dr
_expression_ An expression that returns a [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ApplicationSettings.AsianTextUI.md b/api/Visio.ApplicationSettings.AsianTextUI.md
index 6bd257eab01..548c0878d47 100644
--- a/api/Visio.ApplicationSettings.AsianTextUI.md
+++ b/api/Visio.ApplicationSettings.AsianTextUI.md
@@ -23,7 +23,7 @@ Gets whether Asian text is displayed in the Microsoft Visio user interface. Read
_expression_ An expression that returns a [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
VisRegionalUIOptions
diff --git a/api/Visio.ApplicationSettings.BIDITextUI.md b/api/Visio.ApplicationSettings.BIDITextUI.md
index 5839aabf8bb..ef4d4d3cc84 100644
--- a/api/Visio.ApplicationSettings.BIDITextUI.md
+++ b/api/Visio.ApplicationSettings.BIDITextUI.md
@@ -23,7 +23,7 @@ Gets the current setting for display of right-to-left languages. Read-only.
_expression_ An expression that returns a [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
VisRegionalUIOptions
diff --git a/api/Visio.ApplicationSettings.CenterSelectionOnZoom.md b/api/Visio.ApplicationSettings.CenterSelectionOnZoom.md
index 05fd43ff50b..447a7b03e7e 100644
--- a/api/Visio.ApplicationSettings.CenterSelectionOnZoom.md
+++ b/api/Visio.ApplicationSettings.CenterSelectionOnZoom.md
@@ -23,7 +23,7 @@ Determines whether when the user zooms in, the selection appears in the center o
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ApplicationSettings.ComplexTextUI.md b/api/Visio.ApplicationSettings.ComplexTextUI.md
index d6ad1aeb009..1243842a3b9 100644
--- a/api/Visio.ApplicationSettings.ComplexTextUI.md
+++ b/api/Visio.ApplicationSettings.ComplexTextUI.md
@@ -23,7 +23,7 @@ Gets whether complex text is displayed in the Microsoft Visio user interface. Re
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
VisRegionalUIOptions
diff --git a/api/Visio.ApplicationSettings.ConnectorSplittingEnabled.md b/api/Visio.ApplicationSettings.ConnectorSplittingEnabled.md
index 23218b6cb31..c27ba38dcaa 100644
--- a/api/Visio.ApplicationSettings.ConnectorSplittingEnabled.md
+++ b/api/Visio.ApplicationSettings.ConnectorSplittingEnabled.md
@@ -23,7 +23,7 @@ Determines whether connector splitting is enabled in Microsoft Visio. Read/write
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ApplicationSettings.DefaultSaveFormat.md b/api/Visio.ApplicationSettings.DefaultSaveFormat.md
index 88a48c57925..a1ba5464778 100644
--- a/api/Visio.ApplicationSettings.DefaultSaveFormat.md
+++ b/api/Visio.ApplicationSettings.DefaultSaveFormat.md
@@ -23,7 +23,7 @@ Determines the default format for saving Microsoft Visio files. Read/write.
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
VisDefaultSaveFormats
diff --git a/api/Visio.ApplicationSettings.DeleteConnectorsEnabled.md b/api/Visio.ApplicationSettings.DeleteConnectorsEnabled.md
index faf691c09fd..fe5b361eb24 100644
--- a/api/Visio.ApplicationSettings.DeleteConnectorsEnabled.md
+++ b/api/Visio.ApplicationSettings.DeleteConnectorsEnabled.md
@@ -23,7 +23,7 @@ Determines whether connectors are deleted when a shape to which they are connect
_expression_ A variable that represents an '[ApplicationSettings](Visio.ApplicationSettings.md)' object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ApplicationSettings.DeveloperMode.md b/api/Visio.ApplicationSettings.DeveloperMode.md
index a494d430b1c..fe1195eecf8 100644
--- a/api/Visio.ApplicationSettings.DeveloperMode.md
+++ b/api/Visio.ApplicationSettings.DeveloperMode.md
@@ -23,7 +23,7 @@ Determines if certain user interface functions for the development environment i
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ApplicationSettings.DrawingAids.md b/api/Visio.ApplicationSettings.DrawingAids.md
index ada2335b040..5136e8a43c3 100644
--- a/api/Visio.ApplicationSettings.DrawingAids.md
+++ b/api/Visio.ApplicationSettings.DrawingAids.md
@@ -23,7 +23,7 @@ Determines whether drawing aids are currently active in Microsoft Visio. Read/wr
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ApplicationSettings.DrawingBackgroundColor.md b/api/Visio.ApplicationSettings.DrawingBackgroundColor.md
index e61820ec43c..e64cdce56b5 100644
--- a/api/Visio.ApplicationSettings.DrawingBackgroundColor.md
+++ b/api/Visio.ApplicationSettings.DrawingBackgroundColor.md
@@ -23,7 +23,7 @@ Determines the background color of the Microsoft Visio drawing window for the cu
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
OLE_COLOR
diff --git a/api/Visio.ApplicationSettings.DrawingBackgroundColorGradient.md b/api/Visio.ApplicationSettings.DrawingBackgroundColorGradient.md
index 07643d944db..4e3ed1cc8f8 100644
--- a/api/Visio.ApplicationSettings.DrawingBackgroundColorGradient.md
+++ b/api/Visio.ApplicationSettings.DrawingBackgroundColorGradient.md
@@ -23,7 +23,7 @@ Determines the background gradient color of the Microsoft Visio drawing window f
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
OLE_COLOR
diff --git a/api/Visio.ApplicationSettings.DrawingPageColor.md b/api/Visio.ApplicationSettings.DrawingPageColor.md
index 4cc326ac5b8..f0e6a1fec26 100644
--- a/api/Visio.ApplicationSettings.DrawingPageColor.md
+++ b/api/Visio.ApplicationSettings.DrawingPageColor.md
@@ -23,7 +23,7 @@ Determines the page color of the Microsoft Visio drawing window for the current
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
OLE_COLOR
diff --git a/api/Visio.ApplicationSettings.EnableAutoConnect.md b/api/Visio.ApplicationSettings.EnableAutoConnect.md
index fa8ac0b8116..3cab17fff5d 100644
--- a/api/Visio.ApplicationSettings.EnableAutoConnect.md
+++ b/api/Visio.ApplicationSettings.EnableAutoConnect.md
@@ -23,7 +23,7 @@ Determines whether the **AutoConnect** feature is enabled in the Microsoft Visi
_expression_ An expression that returns a [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ApplicationSettings.EnableFormulaAutoComplete.md b/api/Visio.ApplicationSettings.EnableFormulaAutoComplete.md
index d6229997655..0af284fda4d 100644
--- a/api/Visio.ApplicationSettings.EnableFormulaAutoComplete.md
+++ b/api/Visio.ApplicationSettings.EnableFormulaAutoComplete.md
@@ -23,7 +23,7 @@ Indicates whether ShapeSheet formula AutoComplete is enabled. Read/write.
_expression_ A variable that represents an '[ApplicationSettings](Visio.ApplicationSettings.md)' object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.ApplicationSettings.FreeformDrawingPrecision.md b/api/Visio.ApplicationSettings.FreeformDrawingPrecision.md
index 9db07be7647..5b4e766de6d 100644
--- a/api/Visio.ApplicationSettings.FreeformDrawingPrecision.md
+++ b/api/Visio.ApplicationSettings.FreeformDrawingPrecision.md
@@ -23,7 +23,7 @@ Determines the margin of error allowed when the **Freeform** tool is drawing a
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ApplicationSettings.FreeformDrawingSmoothing.md b/api/Visio.ApplicationSettings.FreeformDrawingSmoothing.md
index 3316f376a54..381661c77a7 100644
--- a/api/Visio.ApplicationSettings.FreeformDrawingSmoothing.md
+++ b/api/Visio.ApplicationSettings.FreeformDrawingSmoothing.md
@@ -23,7 +23,7 @@ Determines how precisely mouse movements are smoothed when drawing a spline. Rea
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ApplicationSettings.KanaFindAndReplace.md b/api/Visio.ApplicationSettings.KanaFindAndReplace.md
index f0ae19e3abb..ca22795b793 100644
--- a/api/Visio.ApplicationSettings.KanaFindAndReplace.md
+++ b/api/Visio.ApplicationSettings.KanaFindAndReplace.md
@@ -23,7 +23,7 @@ Gets whether additional options specific to Japanese in the **Find** and **Repl
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
VisRegionalUIOptions
diff --git a/api/Visio.ApplicationSettings.KashidaTextUI.md b/api/Visio.ApplicationSettings.KashidaTextUI.md
index 8c88b88709a..edb41a804be 100644
--- a/api/Visio.ApplicationSettings.KashidaTextUI.md
+++ b/api/Visio.ApplicationSettings.KashidaTextUI.md
@@ -23,7 +23,7 @@ Gets the current setting for display of Kashida text-justification in certain cu
_expression_ An expression that returns a [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
VisRegionalUIOptions
diff --git a/api/Visio.ApplicationSettings.ObjectType.md b/api/Visio.ApplicationSettings.ObjectType.md
index 60a15bfe496..1410fa872ff 100644
--- a/api/Visio.ApplicationSettings.ObjectType.md
+++ b/api/Visio.ApplicationSettings.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
VisObjectTypes
diff --git a/api/Visio.ApplicationSettings.RecentFilesListSize.md b/api/Visio.ApplicationSettings.RecentFilesListSize.md
index 6a88d05eeb3..10dff0aaa20 100644
--- a/api/Visio.ApplicationSettings.RecentFilesListSize.md
+++ b/api/Visio.ApplicationSettings.RecentFilesListSize.md
@@ -23,7 +23,7 @@ Determines the number of entries in the **Recent Documents** list in the Micros
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ApplicationSettings.RecentTemplatesListSize.md b/api/Visio.ApplicationSettings.RecentTemplatesListSize.md
index d67d9001d95..63e9bb024d5 100644
--- a/api/Visio.ApplicationSettings.RecentTemplatesListSize.md
+++ b/api/Visio.ApplicationSettings.RecentTemplatesListSize.md
@@ -23,7 +23,7 @@ Determines the number of entries in the **Recent Templates** list in the Micros
_expression_ A variable that represents an '[ApplicationSettings](Visio.ApplicationSettings.md)' object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ApplicationSettings.SATextUI.md b/api/Visio.ApplicationSettings.SATextUI.md
index 1bb6aa9af04..a933a789aa9 100644
--- a/api/Visio.ApplicationSettings.SATextUI.md
+++ b/api/Visio.ApplicationSettings.SATextUI.md
@@ -23,7 +23,7 @@ Gets the current setting for display of South Asian languages. Read-only.
_expression_ An expression that returns a [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
VisRegionalUIOptions
diff --git a/api/Visio.ApplicationSettings.ShowChooseDrawingTypePane.md b/api/Visio.ApplicationSettings.ShowChooseDrawingTypePane.md
index 8dd1c1de00f..70391ddd728 100644
--- a/api/Visio.ApplicationSettings.ShowChooseDrawingTypePane.md
+++ b/api/Visio.ApplicationSettings.ShowChooseDrawingTypePane.md
@@ -23,7 +23,7 @@ Determines if the **New** tab appears when the user opens Microsoft Visio. Read
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ApplicationSettings.ShowFileOpenWarnings.md b/api/Visio.ApplicationSettings.ShowFileOpenWarnings.md
index 0c96a96be29..14180b6b5b0 100644
--- a/api/Visio.ApplicationSettings.ShowFileOpenWarnings.md
+++ b/api/Visio.ApplicationSettings.ShowFileOpenWarnings.md
@@ -23,7 +23,7 @@ Determines if warning messages appear when the user attempts to open files in XM
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ApplicationSettings.ShowFileSaveWarnings.md b/api/Visio.ApplicationSettings.ShowFileSaveWarnings.md
index 8e93fd2fbba..20d18cfba37 100644
--- a/api/Visio.ApplicationSettings.ShowFileSaveWarnings.md
+++ b/api/Visio.ApplicationSettings.ShowFileSaveWarnings.md
@@ -23,7 +23,7 @@ Determines if warning messages appear when the user attempts to save in XML form
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ApplicationSettings.ShowMoreShapeHandlesOnHover.md b/api/Visio.ApplicationSettings.ShowMoreShapeHandlesOnHover.md
index d914eca929b..bf04fa1559c 100644
--- a/api/Visio.ApplicationSettings.ShowMoreShapeHandlesOnHover.md
+++ b/api/Visio.ApplicationSettings.ShowMoreShapeHandlesOnHover.md
@@ -23,7 +23,7 @@ Gets or sets whether to show additional shape handles when the mouse is paused o
_expression_ An expression that returns an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ApplicationSettings.ShowShapeSearchPane.md b/api/Visio.ApplicationSettings.ShowShapeSearchPane.md
index 29ce5e32b24..be7dcb3fa21 100644
--- a/api/Visio.ApplicationSettings.ShowShapeSearchPane.md
+++ b/api/Visio.ApplicationSettings.ShowShapeSearchPane.md
@@ -23,7 +23,7 @@ Gets or sets whether the **Shape Search** pane is visible in the Microsoft Visi
_expression_ An expression that returns an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ApplicationSettings.ShowSmartTags.md b/api/Visio.ApplicationSettings.ShowSmartTags.md
index cb3ca19570e..3907b91523f 100644
--- a/api/Visio.ApplicationSettings.ShowSmartTags.md
+++ b/api/Visio.ApplicationSettings.ShowSmartTags.md
@@ -23,7 +23,7 @@ Determines whether display of smart tags in Microsoft Visio is enabled. Read/wri
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ApplicationSettings.SnapStrengthExtensionsX.md b/api/Visio.ApplicationSettings.SnapStrengthExtensionsX.md
index ef12261c9ad..fbf0026d21a 100644
--- a/api/Visio.ApplicationSettings.SnapStrengthExtensionsX.md
+++ b/api/Visio.ApplicationSettings.SnapStrengthExtensionsX.md
@@ -23,7 +23,7 @@ Specifies the distance in pixels along the _x_ -axis that shape extension lines
_expression_ A variable that represents a [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ApplicationSettings.SnapStrengthExtensionsY.md b/api/Visio.ApplicationSettings.SnapStrengthExtensionsY.md
index 200abf64d84..a1c26c490da 100644
--- a/api/Visio.ApplicationSettings.SnapStrengthExtensionsY.md
+++ b/api/Visio.ApplicationSettings.SnapStrengthExtensionsY.md
@@ -23,7 +23,7 @@ Specifies the distance in pixels along the _y-_ axis that shape extension lines
_expression_ A variable that represents a [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ApplicationSettings.SnapStrengthGeometryX.md b/api/Visio.ApplicationSettings.SnapStrengthGeometryX.md
index 4d9ccceeecc..996b6e0c8b7 100644
--- a/api/Visio.ApplicationSettings.SnapStrengthGeometryX.md
+++ b/api/Visio.ApplicationSettings.SnapStrengthGeometryX.md
@@ -23,7 +23,7 @@ Specifies the distance in pixels along the _x_ -axis that shape geometry pulls
_expression_ A variable that represents a [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ApplicationSettings.SnapStrengthGeometryY.md b/api/Visio.ApplicationSettings.SnapStrengthGeometryY.md
index 064900bec1e..3415910fb2d 100644
--- a/api/Visio.ApplicationSettings.SnapStrengthGeometryY.md
+++ b/api/Visio.ApplicationSettings.SnapStrengthGeometryY.md
@@ -23,7 +23,7 @@ Specifies the distance in pixels along the _y_ -axis that shape geometry pulls
_expression_ A variable that represents a [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ApplicationSettings.SnapStrengthGridX.md b/api/Visio.ApplicationSettings.SnapStrengthGridX.md
index 1cb93747e2f..45138b1cbfb 100644
--- a/api/Visio.ApplicationSettings.SnapStrengthGridX.md
+++ b/api/Visio.ApplicationSettings.SnapStrengthGridX.md
@@ -23,7 +23,7 @@ Specifies the distance in pixels along the x-axis that gridlines pull when snapp
_expression_ A variable that represents a [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ApplicationSettings.SnapStrengthGridY.md b/api/Visio.ApplicationSettings.SnapStrengthGridY.md
index 0385e89c271..25810d3c3a6 100644
--- a/api/Visio.ApplicationSettings.SnapStrengthGridY.md
+++ b/api/Visio.ApplicationSettings.SnapStrengthGridY.md
@@ -23,7 +23,7 @@ Specifies the distance in pixels along the _y_-axis that gridlines pull when sn
_expression_ A variable that represents a [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ApplicationSettings.SnapStrengthGuidesX.md b/api/Visio.ApplicationSettings.SnapStrengthGuidesX.md
index 6e2fd95decd..914ce08170d 100644
--- a/api/Visio.ApplicationSettings.SnapStrengthGuidesX.md
+++ b/api/Visio.ApplicationSettings.SnapStrengthGuidesX.md
@@ -23,7 +23,7 @@ Specifies the distance in pixels along the x-axis that guides pull when snapping
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ApplicationSettings.SnapStrengthGuidesY.md b/api/Visio.ApplicationSettings.SnapStrengthGuidesY.md
index a9c2fa9132a..e8052f85515 100644
--- a/api/Visio.ApplicationSettings.SnapStrengthGuidesY.md
+++ b/api/Visio.ApplicationSettings.SnapStrengthGuidesY.md
@@ -23,7 +23,7 @@ Specifies the distance in pixels along the y-axis that guides pull when snapping
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ApplicationSettings.SnapStrengthPointsX.md b/api/Visio.ApplicationSettings.SnapStrengthPointsX.md
index 77f6ac45d1d..1abde728bfe 100644
--- a/api/Visio.ApplicationSettings.SnapStrengthPointsX.md
+++ b/api/Visio.ApplicationSettings.SnapStrengthPointsX.md
@@ -23,7 +23,7 @@ Specifies the distance in pixels along the x-axis that points pull when snapping
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ApplicationSettings.SnapStrengthPointsY.md b/api/Visio.ApplicationSettings.SnapStrengthPointsY.md
index 816b9187bbc..962016c5f75 100644
--- a/api/Visio.ApplicationSettings.SnapStrengthPointsY.md
+++ b/api/Visio.ApplicationSettings.SnapStrengthPointsY.md
@@ -23,7 +23,7 @@ Specifies the distance in pixels along the y-axis that points pull when snapping
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ApplicationSettings.SnapStrengthRulerX.md b/api/Visio.ApplicationSettings.SnapStrengthRulerX.md
index 70329c26bba..3ea49338f58 100644
--- a/api/Visio.ApplicationSettings.SnapStrengthRulerX.md
+++ b/api/Visio.ApplicationSettings.SnapStrengthRulerX.md
@@ -23,7 +23,7 @@ Specifies the distance in pixels along the x-axis that rulers pull when snapping
_expression_ A variable that represents a [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ApplicationSettings.SnapStrengthRulerY.md b/api/Visio.ApplicationSettings.SnapStrengthRulerY.md
index 8d8c7c25aca..7023d735248 100644
--- a/api/Visio.ApplicationSettings.SnapStrengthRulerY.md
+++ b/api/Visio.ApplicationSettings.SnapStrengthRulerY.md
@@ -23,7 +23,7 @@ Specifies the distance in pixels along the y-axis that rulers pull when snapping
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ApplicationSettings.Stat.md b/api/Visio.ApplicationSettings.Stat.md
index 434e6ce0227..08ad6e9cfba 100644
--- a/api/Visio.ApplicationSettings.Stat.md
+++ b/api/Visio.ApplicationSettings.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.ApplicationSettings.StencilBackgroundColor.md b/api/Visio.ApplicationSettings.StencilBackgroundColor.md
index 9d72913fdfb..26d3fdc6326 100644
--- a/api/Visio.ApplicationSettings.StencilBackgroundColor.md
+++ b/api/Visio.ApplicationSettings.StencilBackgroundColor.md
@@ -23,7 +23,7 @@ Determines the background color of the Microsoft Visio stencil window for the cu
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
OLE_COLOR
diff --git a/api/Visio.ApplicationSettings.StencilBackgroundColorGradient.md b/api/Visio.ApplicationSettings.StencilBackgroundColorGradient.md
index 83cd5daba71..328a0aa253d 100644
--- a/api/Visio.ApplicationSettings.StencilBackgroundColorGradient.md
+++ b/api/Visio.ApplicationSettings.StencilBackgroundColorGradient.md
@@ -23,7 +23,7 @@ Determines the background gradient color of the Microsoft Visio stencil window f
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
OLE_COLOR
diff --git a/api/Visio.ApplicationSettings.StencilCharactersPerLine.md b/api/Visio.ApplicationSettings.StencilCharactersPerLine.md
index ec4e83e85cc..933032233d6 100644
--- a/api/Visio.ApplicationSettings.StencilCharactersPerLine.md
+++ b/api/Visio.ApplicationSettings.StencilCharactersPerLine.md
@@ -23,7 +23,7 @@ For shapes on stencils, determines approximately how many characters of each sha
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ApplicationSettings.StencilLinesPerMaster.md b/api/Visio.ApplicationSettings.StencilLinesPerMaster.md
index aff602dd8a4..4be4bc563a9 100644
--- a/api/Visio.ApplicationSettings.StencilLinesPerMaster.md
+++ b/api/Visio.ApplicationSettings.StencilLinesPerMaster.md
@@ -23,7 +23,7 @@ For shapes on stencils in Microsoft Visio, determines how many lines of text of
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ApplicationSettings.StencilTextColor.md b/api/Visio.ApplicationSettings.StencilTextColor.md
index eb88f5fd3c8..8d26ce8d785 100644
--- a/api/Visio.ApplicationSettings.StencilTextColor.md
+++ b/api/Visio.ApplicationSettings.StencilTextColor.md
@@ -23,7 +23,7 @@ Determines the color of text in stencil windows in Microsoft Visio for the curre
_expression_ A variable that represents a [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
OLE_COLOR
diff --git a/api/Visio.ApplicationSettings.TransitionsEnabled.md b/api/Visio.ApplicationSettings.TransitionsEnabled.md
index 96faedcc618..051621782d8 100644
--- a/api/Visio.ApplicationSettings.TransitionsEnabled.md
+++ b/api/Visio.ApplicationSettings.TransitionsEnabled.md
@@ -23,7 +23,7 @@ Determines whether Microsoft Visio uses an animated transition to show certain s
_expression_ A variable that represents an '[ApplicationSettings](Visio.ApplicationSettings.md)' object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.ApplicationSettings.UndoLevels.md b/api/Visio.ApplicationSettings.UndoLevels.md
index 393008fe78b..3767cf54363 100644
--- a/api/Visio.ApplicationSettings.UndoLevels.md
+++ b/api/Visio.ApplicationSettings.UndoLevels.md
@@ -23,7 +23,7 @@ Determines the number of consecutive actions the user can undo in Microsoft Visi
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ApplicationSettings.UserInitials.md b/api/Visio.ApplicationSettings.UserInitials.md
index 0754ca7cf35..dfff0484cd7 100644
--- a/api/Visio.ApplicationSettings.UserInitials.md
+++ b/api/Visio.ApplicationSettings.UserInitials.md
@@ -23,7 +23,7 @@ Determines the user initials associated with the Microsoft Visio file. Read/writ
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.ApplicationSettings.UserName.md b/api/Visio.ApplicationSettings.UserName.md
index ef48763de2c..19416b26a33 100644
--- a/api/Visio.ApplicationSettings.UserName.md
+++ b/api/Visio.ApplicationSettings.UserName.md
@@ -23,7 +23,7 @@ Gets or sets the user name of an **Application** object. Read/write.
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.ApplicationSettings.ZoomOnRoll.md b/api/Visio.ApplicationSettings.ZoomOnRoll.md
index bc879bae015..3de36fc7d15 100644
--- a/api/Visio.ApplicationSettings.ZoomOnRoll.md
+++ b/api/Visio.ApplicationSettings.ZoomOnRoll.md
@@ -23,7 +23,7 @@ Determines whether zooming in to and out from a Microsoft Visio drawing by rolli
_expression_ A variable that represents an [ApplicationSettings](./Visio.ApplicationSettings.md) object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.AttachToVisioDoc.md b/api/Visio.AttachToVisioDoc.md
index 62a664c7c89..6648f15e09c 100644
--- a/api/Visio.AttachToVisioDoc.md
+++ b/api/Visio.AttachToVisioDoc.md
@@ -24,11 +24,11 @@ Indicates which document to save as a Web page.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|docObj |Required| **Document**|An Automation object that supports the **IVDocument** interface.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.AutoSizeDrawing.md b/api/Visio.AutoSizeDrawing.md
index 88e6813033f..374efe98de4 100644
--- a/api/Visio.AutoSizeDrawing.md
+++ b/api/Visio.AutoSizeDrawing.md
@@ -23,7 +23,7 @@ Automatically resizes the drawing page by adding as many printer-paper-sized til
_expression_ An expression that returns a '[Page](Visio.Page.md)' object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.BuildNumber.md b/api/Visio.BuildNumber.md
index 1bd872ff3a7..5677b62c6ca 100644
--- a/api/Visio.BuildNumber.md
+++ b/api/Visio.BuildNumber.md
@@ -20,7 +20,7 @@ Gets the build number of Microsoft Visio Viewer. Read-only.
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.Cell.Application.md b/api/Visio.Cell.Application.md
index 638f0b53af6..e99c108fd2c 100644
--- a/api/Visio.Cell.Application.md
+++ b/api/Visio.Cell.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Cell.CellChanged.md b/api/Visio.Cell.CellChanged.md
index abd61741894..abc9f20a64f 100644
--- a/api/Visio.Cell.CellChanged.md
+++ b/api/Visio.Cell.CellChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'CellChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose value has changed.|
diff --git a/api/Visio.Cell.Column.md b/api/Visio.Cell.Column.md
index 9f4a952c254..9638acf9618 100644
--- a/api/Visio.Cell.Column.md
+++ b/api/Visio.Cell.Column.md
@@ -23,7 +23,7 @@ Returns the column index of a cell. Read-only.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Cell.ContainingMasterID.md b/api/Visio.Cell.ContainingMasterID.md
index 6a2cd2e3c8a..9cc1d3e2202 100644
--- a/api/Visio.Cell.ContainingMasterID.md
+++ b/api/Visio.Cell.ContainingMasterID.md
@@ -23,7 +23,7 @@ Returns the ID of the **Master** object that contains an object. Read-only.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Cell.ContainingPageID.md b/api/Visio.Cell.ContainingPageID.md
index e285d78bb49..960c8485bbc 100644
--- a/api/Visio.Cell.ContainingPageID.md
+++ b/api/Visio.Cell.ContainingPageID.md
@@ -23,7 +23,7 @@ Returns the ID of the page that contains an object. Read-only.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Cell.ContainingRow.md b/api/Visio.Cell.ContainingRow.md
index 9cd3ac7f395..7c4dd927942 100644
--- a/api/Visio.Cell.ContainingRow.md
+++ b/api/Visio.Cell.ContainingRow.md
@@ -23,7 +23,7 @@ Returns the row that contains a cell. Read-only.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Row
diff --git a/api/Visio.Cell.Dependents.md b/api/Visio.Cell.Dependents.md
index 9ed2af3f9ce..656df003672 100644
--- a/api/Visio.Cell.Dependents.md
+++ b/api/Visio.Cell.Dependents.md
@@ -23,7 +23,7 @@ Returns an array of ShapeSheet cells that are dependent on a particular cell of
_expression_ An expression that returns a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Cell()
diff --git a/api/Visio.Cell.Document.md b/api/Visio.Cell.Document.md
index 3c94c47fff5..07a993179c9 100644
--- a/api/Visio.Cell.Document.md
+++ b/api/Visio.Cell.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Cell.Error.md b/api/Visio.Cell.Error.md
index e7b74eb2791..b5880930222 100644
--- a/api/Visio.Cell.Error.md
+++ b/api/Visio.Cell.Error.md
@@ -23,7 +23,7 @@ Gets the error code generated by the last evaluation of a cell's formula. Read-o
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Cell.EventList.md b/api/Visio.Cell.EventList.md
index 01a26de5dd0..573b3002af7 100644
--- a/api/Visio.Cell.EventList.md
+++ b/api/Visio.Cell.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Cell.Formula.md b/api/Visio.Cell.Formula.md
index 959610c6091..648d12e3bc5 100644
--- a/api/Visio.Cell.Formula.md
+++ b/api/Visio.Cell.Formula.md
@@ -23,7 +23,7 @@ Gets or sets the formula for a **Cell** object. Read/write.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Cell.FormulaChanged.md b/api/Visio.Cell.FormulaChanged.md
index 4704bc21227..03ed9fb0268 100644
--- a/api/Visio.Cell.FormulaChanged.md
+++ b/api/Visio.Cell.FormulaChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'FormulaChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose formula changed.|
diff --git a/api/Visio.Cell.FormulaForce.md b/api/Visio.Cell.FormulaForce.md
index cc5154a01cd..4523574d1d6 100644
--- a/api/Visio.Cell.FormulaForce.md
+++ b/api/Visio.Cell.FormulaForce.md
@@ -23,7 +23,7 @@ Sets the formula in a **Cell** object, even if the formula is protected with a
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Cell.FormulaForceU.md b/api/Visio.Cell.FormulaForceU.md
index 26f73bf9aa4..6dd5dbc9df2 100644
--- a/api/Visio.Cell.FormulaForceU.md
+++ b/api/Visio.Cell.FormulaForceU.md
@@ -23,7 +23,7 @@ Sets the universal syntax formula in a **Cell** object, even if the formula is
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Cell.FormulaU.md b/api/Visio.Cell.FormulaU.md
index 33d13f88411..e544fd10514 100644
--- a/api/Visio.Cell.FormulaU.md
+++ b/api/Visio.Cell.FormulaU.md
@@ -23,7 +23,7 @@ Gets or sets the universal syntax formula for a **Cell** object. Read/write.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object. _expression_ The new formula for the cell.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Cell.GlueTo.md b/api/Visio.Cell.GlueTo.md
index 2ef674779c7..c876dcdcaef 100644
--- a/api/Visio.Cell.GlueTo.md
+++ b/api/Visio.Cell.GlueTo.md
@@ -27,11 +27,11 @@ Glues one shape to another, from a cell in the first shape to a cell in the seco
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CellObject_|Required| **[IVCELL]**|An expression that returns a **Cell** object that represents the part of the shape to glue to.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Cell.GlueToPos.md b/api/Visio.Cell.GlueToPos.md
index bb69716e927..bb98e48deda 100644
--- a/api/Visio.Cell.GlueToPos.md
+++ b/api/Visio.Cell.GlueToPos.md
@@ -27,13 +27,13 @@ Glues one shape to another from a cell in the first shape to an _x_, _y_ positi
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SheetObject_|Required| **[IVSHAPE]**|An expression that returns the **Shape** object to be glued to.|
| _xPercent_|Required| **Double**|The x-coordinate of the position to glue to.|
| _yPercent_|Required| **Double**|The y-coordinate of the position to glue to.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Cell.InheritedFormulaSource.md b/api/Visio.Cell.InheritedFormulaSource.md
index e196d7fcd77..1e4edcd8d7f 100644
--- a/api/Visio.Cell.InheritedFormulaSource.md
+++ b/api/Visio.Cell.InheritedFormulaSource.md
@@ -23,7 +23,7 @@ Returns the cell from which this cell inherited its formula. Read-only.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Cell
diff --git a/api/Visio.Cell.InheritedValueSource.md b/api/Visio.Cell.InheritedValueSource.md
index a412a2da966..8a927e7a8d9 100644
--- a/api/Visio.Cell.InheritedValueSource.md
+++ b/api/Visio.Cell.InheritedValueSource.md
@@ -23,7 +23,7 @@ Returns the cell from which this cell inherited its value. Read-only.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Cell
diff --git a/api/Visio.Cell.IsConstant.md b/api/Visio.Cell.IsConstant.md
index 6ff06d6f20b..d01492f5bf2 100644
--- a/api/Visio.Cell.IsConstant.md
+++ b/api/Visio.Cell.IsConstant.md
@@ -23,7 +23,7 @@ Determines whether a formula of the cell is a constant expression. Read-only.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Cell.IsInherited.md b/api/Visio.Cell.IsInherited.md
index 31461d81b56..2a8e214fb47 100644
--- a/api/Visio.Cell.IsInherited.md
+++ b/api/Visio.Cell.IsInherited.md
@@ -23,7 +23,7 @@ Determines whether a formula of the cell is inherited from a master or a style.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Cell.LocalName.md b/api/Visio.Cell.LocalName.md
index 98f226400ca..902debdf533 100644
--- a/api/Visio.Cell.LocalName.md
+++ b/api/Visio.Cell.LocalName.md
@@ -23,7 +23,7 @@ Returns the local name of a cell. Read-only.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Cell.Name.md b/api/Visio.Cell.Name.md
index a833623c31a..734808c4622 100644
--- a/api/Visio.Cell.Name.md
+++ b/api/Visio.Cell.Name.md
@@ -23,7 +23,7 @@ Specifies the name of an object. Read-only.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Cell.ObjectType.md b/api/Visio.Cell.ObjectType.md
index b08479a4f47..8e7834b6207 100644
--- a/api/Visio.Cell.ObjectType.md
+++ b/api/Visio.Cell.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Cell.PersistsEvents.md b/api/Visio.Cell.PersistsEvents.md
index 6b2a7ac910e..a635aa30057 100644
--- a/api/Visio.Cell.PersistsEvents.md
+++ b/api/Visio.Cell.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Cell.Precedents.md b/api/Visio.Cell.Precedents.md
index 6ca72a2009e..f7b3224dedb 100644
--- a/api/Visio.Cell.Precedents.md
+++ b/api/Visio.Cell.Precedents.md
@@ -23,7 +23,7 @@ Returns an array of ShapeSheet cells upon which the formula of another cell depe
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Cell()
diff --git a/api/Visio.Cell.Result.md b/api/Visio.Cell.Result.md
index 3f7eaf16163..74ca8825447 100644
--- a/api/Visio.Cell.Result.md
+++ b/api/Visio.Cell.Result.md
@@ -27,11 +27,11 @@ Gets or sets a cell's value. Read/write.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UnitsNameOrCode_|Required| **Variant**|The units to use when retrieving or setting the cell's value.|
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Cell.ResultForce.md b/api/Visio.Cell.ResultForce.md
index 5963de7a558..245688daeec 100644
--- a/api/Visio.Cell.ResultForce.md
+++ b/api/Visio.Cell.ResultForce.md
@@ -27,11 +27,11 @@ Sets a cell's value, even if the cell's formula is protected with the GUARD func
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UnitsNameOrCode_|Required| **Variant**|The units to use when setting the cell's value.|
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Cell.ResultFromInt.md b/api/Visio.Cell.ResultFromInt.md
index b454e3ac058..098830d815e 100644
--- a/api/Visio.Cell.ResultFromInt.md
+++ b/api/Visio.Cell.ResultFromInt.md
@@ -27,11 +27,11 @@ Sets the value of a cell to an integer value. Read/write.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UnitsNameOrCode_|Required| **Variant**|The units to use when setting the cell's value.|
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Cell.ResultFromIntForce.md b/api/Visio.Cell.ResultFromIntForce.md
index 2b77c8a13e2..5fe029c6d85 100644
--- a/api/Visio.Cell.ResultFromIntForce.md
+++ b/api/Visio.Cell.ResultFromIntForce.md
@@ -27,11 +27,11 @@ Sets the value of a cell to an integer value, even if the cell's formula is prot
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UnitsNameOrCode_|Required| **Variant**|The units to use when setting the cell's value.|
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Cell.ResultIU.md b/api/Visio.Cell.ResultIU.md
index 08f0003285a..fc449d5a2ff 100644
--- a/api/Visio.Cell.ResultIU.md
+++ b/api/Visio.Cell.ResultIU.md
@@ -23,7 +23,7 @@ Gets or sets a cell's value in internal units. Read/write.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Cell.ResultIUForce.md b/api/Visio.Cell.ResultIUForce.md
index b4ef33bb713..aa2b05b54d9 100644
--- a/api/Visio.Cell.ResultIUForce.md
+++ b/api/Visio.Cell.ResultIUForce.md
@@ -23,7 +23,7 @@ Sets a cell's value in internal units, even if the cell's formula is protected w
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Cell.ResultInt.md b/api/Visio.Cell.ResultInt.md
index 134844afad2..adb73850493 100644
--- a/api/Visio.Cell.ResultInt.md
+++ b/api/Visio.Cell.ResultInt.md
@@ -27,12 +27,12 @@ Gets the value of a cell expressed as an integer. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UnitsNameOrCode_|Required| **Variant**|The units to use when retrieving the cell's value.|
| _fRound_|Required| **Integer**|Zero (0) to truncate the value; non-zero to round it.|
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Cell.ResultStr.md b/api/Visio.Cell.ResultStr.md
index cfcbf21ed1d..27b29dbcfd1 100644
--- a/api/Visio.Cell.ResultStr.md
+++ b/api/Visio.Cell.ResultStr.md
@@ -27,11 +27,11 @@ Gets the value of a ShapeSheet cell expressed as a string. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UnitsNameOrCode_|Required| **Variant**|The units to use when retrieving the value.|
-### Return Value
+### Return value
String
diff --git a/api/Visio.Cell.ResultStrU.md b/api/Visio.Cell.ResultStrU.md
index 1f4b7e73818..0ba66ae31f5 100644
--- a/api/Visio.Cell.ResultStrU.md
+++ b/api/Visio.Cell.ResultStrU.md
@@ -27,11 +27,11 @@ Gets the value of a ShapeSheet cell expressed as a universal string. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UnitsNameOrCode_|Required| **Variant**|The units to use when retrieving the value.|
-### Return Value
+### Return value
String
diff --git a/api/Visio.Cell.Row.md b/api/Visio.Cell.Row.md
index 44fbdf12b11..7c7e0404934 100644
--- a/api/Visio.Cell.Row.md
+++ b/api/Visio.Cell.Row.md
@@ -23,7 +23,7 @@ Returns the row index of a cell. Read-only.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Cell.RowName.md b/api/Visio.Cell.RowName.md
index 17575846ac3..0adc6947c1c 100644
--- a/api/Visio.Cell.RowName.md
+++ b/api/Visio.Cell.RowName.md
@@ -23,7 +23,7 @@ Gets or sets the name of the row that contains the **Cell** object. Read/write.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Cell.RowNameU.md b/api/Visio.Cell.RowNameU.md
index 5f70caa200d..c8f1040cad0 100644
--- a/api/Visio.Cell.RowNameU.md
+++ b/api/Visio.Cell.RowNameU.md
@@ -23,7 +23,7 @@ Gets or sets the universal name of the row that contains the **Cell** object. R
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Cell.Section.md b/api/Visio.Cell.Section.md
index 21701a294f5..6f4395c53b7 100644
--- a/api/Visio.Cell.Section.md
+++ b/api/Visio.Cell.Section.md
@@ -23,7 +23,7 @@ Returns the index of the cell's section. Read-only.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Cell.Shape.md b/api/Visio.Cell.Shape.md
index c0b37289305..a35fd06f4fd 100644
--- a/api/Visio.Cell.Shape.md
+++ b/api/Visio.Cell.Shape.md
@@ -23,7 +23,7 @@ Returns the **Shape** object that owns a **Cell** , **Characters** , **Row** ,
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Cell.Stat.md b/api/Visio.Cell.Stat.md
index 08d4ccfdb31..2d91b724a71 100644
--- a/api/Visio.Cell.Stat.md
+++ b/api/Visio.Cell.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Cell.Style.md b/api/Visio.Cell.Style.md
index 4a92ce7670c..ab4c96525bb 100644
--- a/api/Visio.Cell.Style.md
+++ b/api/Visio.Cell.Style.md
@@ -23,7 +23,7 @@ Gets the style that contains a **Cell** object. Read-only.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Style
diff --git a/api/Visio.Cell.Trigger.md b/api/Visio.Cell.Trigger.md
index 3b57a91fb79..cbdd49758a2 100644
--- a/api/Visio.Cell.Trigger.md
+++ b/api/Visio.Cell.Trigger.md
@@ -23,7 +23,7 @@ Evaluates the formula of a cell.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Cell.Units.md b/api/Visio.Cell.Units.md
index 453a92d3e76..39367028bc7 100644
--- a/api/Visio.Cell.Units.md
+++ b/api/Visio.Cell.Units.md
@@ -23,7 +23,7 @@ Indicates the unit of measure associated with a **Cell** object. Read-only.
_expression_ A variable that represents a [Cell](./Visio.Cell.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Characters.AddCustomField.md b/api/Visio.Characters.AddCustomField.md
index 8f308a5d337..5b9c3661237 100644
--- a/api/Visio.Characters.AddCustomField.md
+++ b/api/Visio.Characters.AddCustomField.md
@@ -27,12 +27,12 @@ Replaces the text represented by a **Characters** object with a custom formula
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Formula_|Required| **String**|The formula of the new field.|
| _Format_|Required| **Integer**|The format of the new field.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Characters.AddCustomFieldU.md b/api/Visio.Characters.AddCustomFieldU.md
index 8cf19c17cae..012396fb4dd 100644
--- a/api/Visio.Characters.AddCustomFieldU.md
+++ b/api/Visio.Characters.AddCustomFieldU.md
@@ -27,12 +27,12 @@ Replaces the text represented by a **Characters** object with a custom formula
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Formula_|Required| **String**|The formula of the new field.|
| _Format_|Required| **Integer**|The format of the new field.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Characters.AddField.md b/api/Visio.Characters.AddField.md
index aa4084f8ac6..98e1b7c8e13 100644
--- a/api/Visio.Characters.AddField.md
+++ b/api/Visio.Characters.AddField.md
@@ -27,13 +27,13 @@ Replaces the text represented by a **Characters** object with a new field of th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Category_|Required| **Integer**| **VisFieldCategories** . The category for the new field.|
| _Code_|Required| **Integer**| **VisFieldCodes** . The code for the new field.|
| _Format_|Required| **Integer**| **VisFieldFormats** . The format for the new field.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Characters.AddFieldEx.md b/api/Visio.Characters.AddFieldEx.md
index 3f917868380..20aa5320205 100644
--- a/api/Visio.Characters.AddFieldEx.md
+++ b/api/Visio.Characters.AddFieldEx.md
@@ -27,7 +27,7 @@ Replaces the text represented by a **Characters** object with a new field of th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Category_|Required| **VisFieldCategories**| The category for the new field.|
| _Code_|Required| **VisFieldCodes**|The code for the new field.|
@@ -35,7 +35,7 @@ Replaces the text represented by a **Characters** object with a new field of th
| _LangID_|Optional| **Long**|The language to use for the new field. |
| _CalendarID_|Optional| **Long**|The calendar to use for the new field.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Characters.Application.md b/api/Visio.Characters.Application.md
index 741ad145207..1042f8ce035 100644
--- a/api/Visio.Characters.Application.md
+++ b/api/Visio.Characters.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Characters.Begin.md b/api/Visio.Characters.Begin.md
index 3495d9b6030..a5503b6d40d 100644
--- a/api/Visio.Characters.Begin.md
+++ b/api/Visio.Characters.Begin.md
@@ -23,7 +23,7 @@ Gets or sets the beginning index of a **Characters** object, which represents a
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Characters.CharCount.md b/api/Visio.Characters.CharCount.md
index e6e03eba60a..963ba47d045 100644
--- a/api/Visio.Characters.CharCount.md
+++ b/api/Visio.Characters.CharCount.md
@@ -23,7 +23,7 @@ Returns the number of characters in an object. Read-only.
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Characters.CharProps.md b/api/Visio.Characters.CharProps.md
index ddddb5698e9..7c631a9eb8d 100644
--- a/api/Visio.Characters.CharProps.md
+++ b/api/Visio.Characters.CharProps.md
@@ -27,11 +27,11 @@ Sets a character property of a **Characters** object to a new value. Write-only
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CellIndex_|Required| **Integer**|The index of the cell in the Character section to set. See Remarks for possible values.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Characters.CharPropsRow.md b/api/Visio.Characters.CharPropsRow.md
index 10d3cf130f1..316e8829fab 100644
--- a/api/Visio.Characters.CharPropsRow.md
+++ b/api/Visio.Characters.CharPropsRow.md
@@ -27,11 +27,11 @@ Returns the index of the row in the Character section of a ShapeSheet window tha
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _BiasLorR_|Required| **Integer**|The direction of the search.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Characters.ContainingMasterID.md b/api/Visio.Characters.ContainingMasterID.md
index beb7d78f9c4..4033c9fe6fd 100644
--- a/api/Visio.Characters.ContainingMasterID.md
+++ b/api/Visio.Characters.ContainingMasterID.md
@@ -23,7 +23,7 @@ Returns the ID of the **Master** object that contains an object. Read-only.
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Characters.ContainingPageID.md b/api/Visio.Characters.ContainingPageID.md
index 6a268db3f3d..ac66f03cb6a 100644
--- a/api/Visio.Characters.ContainingPageID.md
+++ b/api/Visio.Characters.ContainingPageID.md
@@ -23,7 +23,7 @@ Returns the ID of the page that contains an object. Read-only.
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Characters.Copy.md b/api/Visio.Characters.Copy.md
index 613e5f69055..d53f94c3243 100644
--- a/api/Visio.Characters.Copy.md
+++ b/api/Visio.Characters.Copy.md
@@ -23,7 +23,7 @@ Copies a text range to the Clipboard.
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Characters.Cut.md b/api/Visio.Characters.Cut.md
index 5aeda6c2f03..96ee2f1905e 100644
--- a/api/Visio.Characters.Cut.md
+++ b/api/Visio.Characters.Cut.md
@@ -23,7 +23,7 @@ Deletes a text range and places it on the Clipboard.
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Characters.Delete.md b/api/Visio.Characters.Delete.md
index 36aa0a9eb87..eca97a302c9 100644
--- a/api/Visio.Characters.Delete.md
+++ b/api/Visio.Characters.Delete.md
@@ -23,7 +23,7 @@ Deletes an object or selection.
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Characters.Document.md b/api/Visio.Characters.Document.md
index 871237a1159..677f42bf9ef 100644
--- a/api/Visio.Characters.Document.md
+++ b/api/Visio.Characters.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Characters.End.md b/api/Visio.Characters.End.md
index 0e802b3d9ad..2c607596428 100644
--- a/api/Visio.Characters.End.md
+++ b/api/Visio.Characters.End.md
@@ -23,7 +23,7 @@ Returns or sets the ending index of the indicated **Characters** object represe
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Characters.EventList.md b/api/Visio.Characters.EventList.md
index 27556340e38..bedb08d7084 100644
--- a/api/Visio.Characters.EventList.md
+++ b/api/Visio.Characters.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Characters.FieldCategory.md b/api/Visio.Characters.FieldCategory.md
index 6c2d4f9b9f1..98adff0453b 100644
--- a/api/Visio.Characters.FieldCategory.md
+++ b/api/Visio.Characters.FieldCategory.md
@@ -23,7 +23,7 @@ Returns the field category for a field represented by an object. Read-only.
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Characters.FieldCode.md b/api/Visio.Characters.FieldCode.md
index 4e54e45a036..559eceb1cb0 100644
--- a/api/Visio.Characters.FieldCode.md
+++ b/api/Visio.Characters.FieldCode.md
@@ -23,7 +23,7 @@ Returns the field code for a field represented by an object. Read-only.
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Characters.FieldFormat.md b/api/Visio.Characters.FieldFormat.md
index cd7131c84a4..ac781cab023 100644
--- a/api/Visio.Characters.FieldFormat.md
+++ b/api/Visio.Characters.FieldFormat.md
@@ -23,7 +23,7 @@ Returns the field format for a field represented by an object. Read-only.
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Characters.FieldFormula.md b/api/Visio.Characters.FieldFormula.md
index 982a0befeba..d72783c233e 100644
--- a/api/Visio.Characters.FieldFormula.md
+++ b/api/Visio.Characters.FieldFormula.md
@@ -23,7 +23,7 @@ Returns the formula of the custom field represented by an object. Read-only.
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Characters.FieldFormulaU.md b/api/Visio.Characters.FieldFormulaU.md
index 3ab433723cd..6d5531207f2 100644
--- a/api/Visio.Characters.FieldFormulaU.md
+++ b/api/Visio.Characters.FieldFormulaU.md
@@ -23,7 +23,7 @@ Returns the universal-syntax formula of the custom field represented by an objec
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Characters.IsField.md b/api/Visio.Characters.IsField.md
index 22c8408f7bb..2c35088ab88 100644
--- a/api/Visio.Characters.IsField.md
+++ b/api/Visio.Characters.IsField.md
@@ -23,7 +23,7 @@ Determines whether a **Characters** object represents the expanded text of a si
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Characters.ObjectType.md b/api/Visio.Characters.ObjectType.md
index df47b025e0b..caea97128da 100644
--- a/api/Visio.Characters.ObjectType.md
+++ b/api/Visio.Characters.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Characters.ParaProps.md b/api/Visio.Characters.ParaProps.md
index 2f704a4b09d..cb547328faa 100644
--- a/api/Visio.Characters.ParaProps.md
+++ b/api/Visio.Characters.ParaProps.md
@@ -27,11 +27,11 @@ Sets the paragraph property of a **Characters** object to a new value. Read/wri
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CellIndex_|Required| **Integer**|The cell value to set.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Characters.ParaPropsRow.md b/api/Visio.Characters.ParaPropsRow.md
index f1a509a8047..e1ae40b4934 100644
--- a/api/Visio.Characters.ParaPropsRow.md
+++ b/api/Visio.Characters.ParaPropsRow.md
@@ -27,11 +27,11 @@ Returns the index of the row in the Paragraph section of a ShapeSheet window tha
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _BiasLorR_|Required| **Integer**|The direction of the search.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Characters.Paste.md b/api/Visio.Characters.Paste.md
index 4a98bdf5de0..2d1f890b1b8 100644
--- a/api/Visio.Characters.Paste.md
+++ b/api/Visio.Characters.Paste.md
@@ -23,7 +23,7 @@ Pastes the text range on the Clipboard into an object.
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Characters.PersistsEvents.md b/api/Visio.Characters.PersistsEvents.md
index e92b714580d..7ea253db214 100644
--- a/api/Visio.Characters.PersistsEvents.md
+++ b/api/Visio.Characters.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Characters.RunBegin.md b/api/Visio.Characters.RunBegin.md
index 0da562f18cc..79797fb7b5a 100644
--- a/api/Visio.Characters.RunBegin.md
+++ b/api/Visio.Characters.RunBegin.md
@@ -27,11 +27,11 @@ Returns the beginning index of a type of run?a sequence of characters that share
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RunType_|Required| **Integer**|The type of run to get.|
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Characters.RunEnd.md b/api/Visio.Characters.RunEnd.md
index 28f51df1a26..44329c2c15e 100644
--- a/api/Visio.Characters.RunEnd.md
+++ b/api/Visio.Characters.RunEnd.md
@@ -27,11 +27,11 @@ Returns the ending index of a type of run?a sequence of characters that share a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RunType_|Required| **Integer**|The type of run to get.|
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Characters.Shape.md b/api/Visio.Characters.Shape.md
index fa75c5b8dea..4516e33d508 100644
--- a/api/Visio.Characters.Shape.md
+++ b/api/Visio.Characters.Shape.md
@@ -23,7 +23,7 @@ Returns the **Shape** object that owns a **Cell** , **Characters** , **Row** ,
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Characters.Stat.md b/api/Visio.Characters.Stat.md
index 1fdee7c1048..a14628fcbdc 100644
--- a/api/Visio.Characters.Stat.md
+++ b/api/Visio.Characters.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Characters.TabPropsRow.md b/api/Visio.Characters.TabPropsRow.md
index 57ee5f4d736..7f82cdf423c 100644
--- a/api/Visio.Characters.TabPropsRow.md
+++ b/api/Visio.Characters.TabPropsRow.md
@@ -27,11 +27,11 @@ Returns the index of the row in the Tabs section of the ShapeSheet that contains
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _BiasLorR_|Required| **Integer**|The direction of the search.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Characters.Text.md b/api/Visio.Characters.Text.md
index c1bbbb3f687..c39d28e8d78 100644
--- a/api/Visio.Characters.Text.md
+++ b/api/Visio.Characters.Text.md
@@ -23,7 +23,7 @@ Returns the range of text represented by a **Characters** object, which may be
_expression_ A variable that represents a [Characters](./Visio.Characters.md) object.
-### Return Value
+### Return value
Variant
diff --git a/api/Visio.Characters.TextChanged.md b/api/Visio.Characters.TextChanged.md
index 032d681de43..6e72313f1b5 100644
--- a/api/Visio.Characters.TextChanged.md
+++ b/api/Visio.Characters.TextChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'TextChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose text changed.|
diff --git a/api/Visio.Color.Application.md b/api/Visio.Color.Application.md
index 18f4f6ef931..f7a01b8eeb1 100644
--- a/api/Visio.Color.Application.md
+++ b/api/Visio.Color.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Color](./Visio.Color.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Color.Blue.md b/api/Visio.Color.Blue.md
index fba51762342..dd531e1cc81 100644
--- a/api/Visio.Color.Blue.md
+++ b/api/Visio.Color.Blue.md
@@ -23,7 +23,7 @@ Gets or sets the intensity of the blue component of a **Color** object. Read/wr
_expression_ A variable that represents a [Color](./Visio.Color.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Color.Document.md b/api/Visio.Color.Document.md
index 1a267f9a396..97d733c20e6 100644
--- a/api/Visio.Color.Document.md
+++ b/api/Visio.Color.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Color](./Visio.Color.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Color.Flags.md b/api/Visio.Color.Flags.md
index 936a0c5fcb7..e9ab52d4b1d 100644
--- a/api/Visio.Color.Flags.md
+++ b/api/Visio.Color.Flags.md
@@ -23,7 +23,7 @@ Gets or sets the flags that specify how you use a **Color** object. Read/write.
_expression_ A variable that represents a [Color](./Visio.Color.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Color.Green.md b/api/Visio.Color.Green.md
index 43bc19db8c8..8ec02ad166d 100644
--- a/api/Visio.Color.Green.md
+++ b/api/Visio.Color.Green.md
@@ -23,7 +23,7 @@ Gets or sets the intensity of the green component of a **Color** object. Read/w
_expression_ A variable that represents a [Color](./Visio.Color.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Color.Index.md b/api/Visio.Color.Index.md
index 5c0f803777f..2452197d3a6 100644
--- a/api/Visio.Color.Index.md
+++ b/api/Visio.Color.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of a **Color** object in the **Colors** collection. R
_expression_ A variable that represents a [Color](./Visio.Color.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Color.ObjectType.md b/api/Visio.Color.ObjectType.md
index 287872d8894..64b4757c15e 100644
--- a/api/Visio.Color.ObjectType.md
+++ b/api/Visio.Color.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Color](./Visio.Color.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Color.PaletteEntry.md b/api/Visio.Color.PaletteEntry.md
index 839970671e1..67e87410d3d 100644
--- a/api/Visio.Color.PaletteEntry.md
+++ b/api/Visio.Color.PaletteEntry.md
@@ -23,7 +23,7 @@ Gets or sets the red, green, blue, and flags components of a color. Read/write.
_expression_ A variable that represents a [Color](./Visio.Color.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Color.Red.md b/api/Visio.Color.Red.md
index 437d4b4d8e9..2338a0feb9d 100644
--- a/api/Visio.Color.Red.md
+++ b/api/Visio.Color.Red.md
@@ -23,7 +23,7 @@ Gets or sets the intensity of the red component of a **Color** object. Read/wri
_expression_ A variable that represents a [Color](./Visio.Color.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Color.Stat.md b/api/Visio.Color.Stat.md
index 254990243a7..7c6c8d025b0 100644
--- a/api/Visio.Color.Stat.md
+++ b/api/Visio.Color.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Color](./Visio.Color.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Colors.Application.md b/api/Visio.Colors.Application.md
index 6fbfc0c1f9c..d8855e0df19 100644
--- a/api/Visio.Colors.Application.md
+++ b/api/Visio.Colors.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Colors](./Visio.Colors.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Colors.Count.md b/api/Visio.Colors.Count.md
index c8102cacc17..ed7e1bf6e92 100644
--- a/api/Visio.Colors.Count.md
+++ b/api/Visio.Colors.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Colors](./Visio.Colors.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Colors.Document.md b/api/Visio.Colors.Document.md
index 40b5f2c2996..7bd2d56c929 100644
--- a/api/Visio.Colors.Document.md
+++ b/api/Visio.Colors.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Colors](./Visio.Colors.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Colors.Item.md b/api/Visio.Colors.Item.md
index 4ada1ddaf87..c07a0756db6 100644
--- a/api/Visio.Colors.Item.md
+++ b/api/Visio.Colors.Item.md
@@ -27,11 +27,11 @@ Returns an object from a collection. The **Item** property is the default prope
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Contains the index of the object to retrieve.|
-### Return Value
+### Return value
Color
diff --git a/api/Visio.Colors.ObjectType.md b/api/Visio.Colors.ObjectType.md
index d9900174c69..cc8e253aeb7 100644
--- a/api/Visio.Colors.ObjectType.md
+++ b/api/Visio.Colors.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Colors](./Visio.Colors.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Colors.Stat.md b/api/Visio.Colors.Stat.md
index f969fa24dc7..813846d8172 100644
--- a/api/Visio.Colors.Stat.md
+++ b/api/Visio.Colors.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Colors](./Visio.Colors.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Connect.Application.md b/api/Visio.Connect.Application.md
index 3a90838ea6f..461f59bcfd3 100644
--- a/api/Visio.Connect.Application.md
+++ b/api/Visio.Connect.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Connect](./Visio.Connect.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Connect.ContainingMasterID.md b/api/Visio.Connect.ContainingMasterID.md
index 58c98a69fa0..0ba712f9888 100644
--- a/api/Visio.Connect.ContainingMasterID.md
+++ b/api/Visio.Connect.ContainingMasterID.md
@@ -23,7 +23,7 @@ Returns the ID of the **Master** object that contains an object. Read-only.
_expression_ A variable that represents a [Connect](./Visio.Connect.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Connect.ContainingPageID.md b/api/Visio.Connect.ContainingPageID.md
index cf6b63d733f..adcc80143cf 100644
--- a/api/Visio.Connect.ContainingPageID.md
+++ b/api/Visio.Connect.ContainingPageID.md
@@ -23,7 +23,7 @@ Returns the ID of the page that contains an object. Read-only.
_expression_ A variable that represents a [Connect](./Visio.Connect.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Connect.Document.md b/api/Visio.Connect.Document.md
index 58c911979de..7fff7188ca6 100644
--- a/api/Visio.Connect.Document.md
+++ b/api/Visio.Connect.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Connect](./Visio.Connect.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Connect.FromCell.md b/api/Visio.Connect.FromCell.md
index eaadde7f1cb..b3df9b6b23f 100644
--- a/api/Visio.Connect.FromCell.md
+++ b/api/Visio.Connect.FromCell.md
@@ -23,7 +23,7 @@ Returns the cell from which a connection originates. Read-only.
_expression_ A variable that represents a [Connect](./Visio.Connect.md) object.
-### Return Value
+### Return value
Cell
diff --git a/api/Visio.Connect.FromPart.md b/api/Visio.Connect.FromPart.md
index a002b09cade..7884b276416 100644
--- a/api/Visio.Connect.FromPart.md
+++ b/api/Visio.Connect.FromPart.md
@@ -23,7 +23,7 @@ Returns the part of a shape from which a connection originates. Read-only.
_expression_ A variable that represents a [Connect](./Visio.Connect.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Connect.FromSheet.md b/api/Visio.Connect.FromSheet.md
index 9e2bc2616e5..8bc5c9cc0f3 100644
--- a/api/Visio.Connect.FromSheet.md
+++ b/api/Visio.Connect.FromSheet.md
@@ -23,7 +23,7 @@ Returns the shape from which a connection or connections originate. Read-only.
_expression_ A variable that represents a [Connect](./Visio.Connect.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Connect.Index.md b/api/Visio.Connect.Index.md
index 06bbb93eadb..a73496f935f 100644
--- a/api/Visio.Connect.Index.md
+++ b/api/Visio.Connect.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of a **Connect** object in the **Connects** collectio
_expression_ A variable that represents a [Connect](./Visio.Connect.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Connect.ObjectType.md b/api/Visio.Connect.ObjectType.md
index 0919b7cbe59..5f6ce72e8bc 100644
--- a/api/Visio.Connect.ObjectType.md
+++ b/api/Visio.Connect.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Connect](./Visio.Connect.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Connect.Stat.md b/api/Visio.Connect.Stat.md
index fa3707890cc..a10c7f118e9 100644
--- a/api/Visio.Connect.Stat.md
+++ b/api/Visio.Connect.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Connect](./Visio.Connect.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Connect.ToCell.md b/api/Visio.Connect.ToCell.md
index 8edcb9db913..49469c101db 100644
--- a/api/Visio.Connect.ToCell.md
+++ b/api/Visio.Connect.ToCell.md
@@ -23,7 +23,7 @@ Gets the cell to which a connection is made. Read-only.
_expression_ A variable that represents a [Connect](./Visio.Connect.md) object.
-### Return Value
+### Return value
Cell
diff --git a/api/Visio.Connect.ToPart.md b/api/Visio.Connect.ToPart.md
index 43801b89cc9..8e002a65a90 100644
--- a/api/Visio.Connect.ToPart.md
+++ b/api/Visio.Connect.ToPart.md
@@ -23,7 +23,7 @@ Returns the part of a shape to which a connection is made. Read-only.
_expression_ A variable that represents a [Connect](./Visio.Connect.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Connect.ToSheet.md b/api/Visio.Connect.ToSheet.md
index 73891474bc4..8a115ab5a82 100644
--- a/api/Visio.Connect.ToSheet.md
+++ b/api/Visio.Connect.ToSheet.md
@@ -23,7 +23,7 @@ Returns the shape to which one or more connections are made. Read-only.
_expression_ A variable that represents a [Connect](./Visio.Connect.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Connects.Application.md b/api/Visio.Connects.Application.md
index 7a4f073e3a4..ddbc026a22a 100644
--- a/api/Visio.Connects.Application.md
+++ b/api/Visio.Connects.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Connects](./Visio.Connects.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Connects.Count.md b/api/Visio.Connects.Count.md
index 47f8e454c33..d324af8ca47 100644
--- a/api/Visio.Connects.Count.md
+++ b/api/Visio.Connects.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Connects](./Visio.Connects.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Connects.Document.md b/api/Visio.Connects.Document.md
index 5ed634a6479..edb01efc179 100644
--- a/api/Visio.Connects.Document.md
+++ b/api/Visio.Connects.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Connects](./Visio.Connects.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Connects.FromSheet.md b/api/Visio.Connects.FromSheet.md
index 7c50b5a7c21..723cea9b33c 100644
--- a/api/Visio.Connects.FromSheet.md
+++ b/api/Visio.Connects.FromSheet.md
@@ -23,7 +23,7 @@ Returns the shape from which a connection or connections originate. Read-only.
_expression_ A variable that represents a [Connects](./Visio.Connects.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Connects.Item.md b/api/Visio.Connects.Item.md
index 1683567d681..da0ea0e4577 100644
--- a/api/Visio.Connects.Item.md
+++ b/api/Visio.Connects.Item.md
@@ -27,11 +27,11 @@ Returns an object from a collection. The **Item** property is the default prope
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Contains the index of the object to retrieve.|
-### Return Value
+### Return value
Connect
diff --git a/api/Visio.Connects.ObjectType.md b/api/Visio.Connects.ObjectType.md
index ba8efb0d7a6..007ced89b51 100644
--- a/api/Visio.Connects.ObjectType.md
+++ b/api/Visio.Connects.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Connects](./Visio.Connects.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Connects.Stat.md b/api/Visio.Connects.Stat.md
index e849a15cc3d..056b9df56d4 100644
--- a/api/Visio.Connects.Stat.md
+++ b/api/Visio.Connects.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Connects](./Visio.Connects.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Connects.ToSheet.md b/api/Visio.Connects.ToSheet.md
index 075de5ca7a7..26bf3f897ed 100644
--- a/api/Visio.Connects.ToSheet.md
+++ b/api/Visio.Connects.ToSheet.md
@@ -23,7 +23,7 @@ Returns the shape to which one or more connections are made. Read-only.
_expression_ A variable that represents a [Connects](./Visio.Connects.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Container.md b/api/Visio.Container.md
index 41d54969394..ed4ec36e84f 100644
--- a/api/Visio.Container.md
+++ b/api/Visio.Container.md
@@ -23,7 +23,7 @@ Returns an **IDispatch** interface on the ActiveX container in which the docume
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.ContainerProperties.AddMember.md b/api/Visio.ContainerProperties.AddMember.md
index d50aefaf0d5..0610af59659 100644
--- a/api/Visio.ContainerProperties.AddMember.md
+++ b/api/Visio.ContainerProperties.AddMember.md
@@ -27,12 +27,12 @@ Adds a shape or a set of shapes to the container.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pObjectToAdd_|Required| **[UNKNOWN]**|The shape or shapes to add to the container. Can be of type **[Shape](Visio.Shape.md)** or **[Selection](Visio.Selection.md)** .|
| _addOptions_|Required| **[VisMemberAddOptions](Visio.VisMemberAddOptions.md)**|Determines whether the container should expand to fully contain the added shapes.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ContainerProperties.Application.md b/api/Visio.ContainerProperties.Application.md
index ba208530ab6..827d267cb2a 100644
--- a/api/Visio.ContainerProperties.Application.md
+++ b/api/Visio.ContainerProperties.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a '[ContainerProperties](Visio.ContainerProperties.md)' object.
-### Return Value
+### Return value
**[Application](Visio.Application.md)**
diff --git a/api/Visio.ContainerProperties.ContainerStyle.md b/api/Visio.ContainerProperties.ContainerStyle.md
index d448806dbe7..50c74e1af84 100644
--- a/api/Visio.ContainerProperties.ContainerStyle.md
+++ b/api/Visio.ContainerProperties.ContainerStyle.md
@@ -23,7 +23,7 @@ Determines the visual appearance of the container. Read/write.
_expression_ An expression that returns a '[ContainerProperties](Visio.ContainerProperties.md)' object.
-### Return Value
+### Return value
**Integer**
diff --git a/api/Visio.ContainerProperties.ContainerType.md b/api/Visio.ContainerProperties.ContainerType.md
index bcd8d7112fc..a56129c0f4c 100644
--- a/api/Visio.ContainerProperties.ContainerType.md
+++ b/api/Visio.ContainerProperties.ContainerType.md
@@ -23,7 +23,7 @@ Determines whether the container is a normal container or a list container. Read
_expression_ An expression that returns a '[ContainerProperties](Visio.ContainerProperties.md)' object.
-### Return Value
+### Return value
**[VisContainerTypes](Visio.VisContainerTypes.md)**
diff --git a/api/Visio.ContainerProperties.Disband.md b/api/Visio.ContainerProperties.Disband.md
index 815769b296e..b0ac1fe69d5 100644
--- a/api/Visio.ContainerProperties.Disband.md
+++ b/api/Visio.ContainerProperties.Disband.md
@@ -23,7 +23,7 @@ Removes all member shapes from the container and deletes the container shape.
_expression_ A variable that represents a '[ContainerProperties](Visio.ContainerProperties.md)' object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ContainerProperties.FitToContents.md b/api/Visio.ContainerProperties.FitToContents.md
index 4a4734ca26a..259af8ef2c6 100644
--- a/api/Visio.ContainerProperties.FitToContents.md
+++ b/api/Visio.ContainerProperties.FitToContents.md
@@ -23,7 +23,7 @@ Forces the container to resize so as to tightly include all member shapes, inclu
_expression_ A variable that represents a '[ContainerProperties](Visio.ContainerProperties.md)' object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ContainerProperties.GetListMemberPosition.md b/api/Visio.ContainerProperties.GetListMemberPosition.md
index 9c07c69d7f9..343366c6293 100644
--- a/api/Visio.ContainerProperties.GetListMemberPosition.md
+++ b/api/Visio.ContainerProperties.GetListMemberPosition.md
@@ -27,11 +27,11 @@ Returns the ordinal position of the specified shape in the list.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapeMember_|Required| **[Shape](Visio.Shape.md)**|The list member shape for which you want to get the position in the container list.|
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ContainerProperties.GetListMembers.md b/api/Visio.ContainerProperties.GetListMembers.md
index e8840057caf..459e4b575a7 100644
--- a/api/Visio.ContainerProperties.GetListMembers.md
+++ b/api/Visio.ContainerProperties.GetListMembers.md
@@ -23,7 +23,7 @@ Returns an array of shape identifiers (IDs) of member shapes in the list.
_expression_ A variable that represents a '[ContainerProperties](Visio.ContainerProperties.md)' object.
-### Return Value
+### Return value
**Long()**
diff --git a/api/Visio.ContainerProperties.GetListSpacing.md b/api/Visio.ContainerProperties.GetListSpacing.md
index fb24404ade0..fbc929c5a9d 100644
--- a/api/Visio.ContainerProperties.GetListSpacing.md
+++ b/api/Visio.ContainerProperties.GetListSpacing.md
@@ -27,11 +27,11 @@ Returns the gap between adjacent member shapes in the list.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SpacingUnits_|Required| **[VisUnitCodes](Visio.visunitcodes.md)**|The units in which to measure the gap.|
-### Return Value
+### Return value
**Double**
diff --git a/api/Visio.ContainerProperties.GetMargin.md b/api/Visio.ContainerProperties.GetMargin.md
index 5df652c2013..bed10ae74b4 100644
--- a/api/Visio.ContainerProperties.GetMargin.md
+++ b/api/Visio.ContainerProperties.GetMargin.md
@@ -27,11 +27,11 @@ Returns the minimal distance, in the specified units, between the edges of the c
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MarginUnits_|Required| **[VisUnitCodes](Visio.visunitcodes.md)**|The units in which to measure the margin.|
-### Return Value
+### Return value
**Double**
diff --git a/api/Visio.ContainerProperties.GetMemberShapes.md b/api/Visio.ContainerProperties.GetMemberShapes.md
index f6ead7d7095..f409125b123 100644
--- a/api/Visio.ContainerProperties.GetMemberShapes.md
+++ b/api/Visio.ContainerProperties.GetMemberShapes.md
@@ -27,11 +27,11 @@ Returns the shape identifiers (IDs) of all members of the container, as specifie
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ContainerFlags_|Required| **Long**|Specifies which container member shape IDs to return.|
-### Return Value
+### Return value
**Long()**
diff --git a/api/Visio.ContainerProperties.GetMemberState.md b/api/Visio.ContainerProperties.GetMemberState.md
index d6b2d6533a0..1e2bce20b4e 100644
--- a/api/Visio.ContainerProperties.GetMemberState.md
+++ b/api/Visio.ContainerProperties.GetMemberState.md
@@ -27,11 +27,11 @@ Returns the membership state of the specified shape with respect to the containe
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[Shape](Visio.Shape.md)**|The shape for which to get the membership state.|
-### Return Value
+### Return value
[VisContainerMemberState](Visio.VisContainerMemberState.md)
diff --git a/api/Visio.ContainerProperties.HeadingStyle.md b/api/Visio.ContainerProperties.HeadingStyle.md
index 04e53606a1e..f255e43db10 100644
--- a/api/Visio.ContainerProperties.HeadingStyle.md
+++ b/api/Visio.ContainerProperties.HeadingStyle.md
@@ -23,7 +23,7 @@ Determines the appearance and position of the heading of the container. Read/wri
_expression_ An expression that returns a '[ContainerProperties](Visio.ContainerProperties.md)' object.
-### Return Value
+### Return value
**Integer**
diff --git a/api/Visio.ContainerProperties.InsertListMember.md b/api/Visio.ContainerProperties.InsertListMember.md
index 56304cf498d..91064aea557 100644
--- a/api/Visio.ContainerProperties.InsertListMember.md
+++ b/api/Visio.ContainerProperties.InsertListMember.md
@@ -27,12 +27,12 @@ Adds a shape or set of shapes to the list in the container.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectToInsert_|Required| **[UNKNOWN]**|The object or selection to insert in the list. Can be a **[Shape](Visio.Shape.md)** or **[Selection](Visio.Selection.md)** object.|
| _Position_|Required| **Long**|The insertion point in the list, which is one-based.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ContainerProperties.ListAlignment.md b/api/Visio.ContainerProperties.ListAlignment.md
index ae3b2e5867c..16dda4064f8 100644
--- a/api/Visio.ContainerProperties.ListAlignment.md
+++ b/api/Visio.ContainerProperties.ListAlignment.md
@@ -23,7 +23,7 @@ Specifies how to align and arrange a list shape that you want positioned perpend
_expression_ An expression that returns a '[ContainerProperties](Visio.ContainerProperties.md)' object.
-### Return Value
+### Return value
**[VisListAlignment](Visio.VisListAlignment.md)**
diff --git a/api/Visio.ContainerProperties.ListDirection.md b/api/Visio.ContainerProperties.ListDirection.md
index 1110f45c3f4..5bf746a621d 100644
--- a/api/Visio.ContainerProperties.ListDirection.md
+++ b/api/Visio.ContainerProperties.ListDirection.md
@@ -23,7 +23,7 @@ Determines the primary list direction of the container shapes. Read/write.
_expression_ An expression that returns a '[ContainerProperties](Visio.ContainerProperties.md)' object.
-### Return Value
+### Return value
**[VisListDirection](Visio.VisListDirection.md)**
diff --git a/api/Visio.ContainerProperties.LockMembership.md b/api/Visio.ContainerProperties.LockMembership.md
index dadbffd1865..a7e2c9a7ea7 100644
--- a/api/Visio.ContainerProperties.LockMembership.md
+++ b/api/Visio.ContainerProperties.LockMembership.md
@@ -23,7 +23,7 @@ Gets or sets a value that determines whether container members can be added, rem
_expression_ An expression that returns a '[ContainerProperties](Visio.ContainerProperties.md)' object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.ContainerProperties.ObjectType.md b/api/Visio.ContainerProperties.ObjectType.md
index fef24c8645f..12444df14e4 100644
--- a/api/Visio.ContainerProperties.ObjectType.md
+++ b/api/Visio.ContainerProperties.ObjectType.md
@@ -23,7 +23,7 @@ Returns **visObjTypeContainerProperties** , the type of this object. Read-only.
_expression_ An expression that returns a '[ContainerProperties](Visio.ContainerProperties.md)' object.
-### Return Value
+### Return value
**visObjTypeContainerProperties**
diff --git a/api/Visio.ContainerProperties.OverlappedList.md b/api/Visio.ContainerProperties.OverlappedList.md
index 3eae2d05a7b..2d81959ed26 100644
--- a/api/Visio.ContainerProperties.OverlappedList.md
+++ b/api/Visio.ContainerProperties.OverlappedList.md
@@ -23,7 +23,7 @@ Creates or removes an overlapped list relationship with another list shape, or r
_expression_ An expression that returns a '[ContainerProperties](Visio.ContainerProperties.md)' object.
-### Return Value
+### Return value
**[Shape](Visio.Shape.md)**
diff --git a/api/Visio.ContainerProperties.RemoveMember.md b/api/Visio.ContainerProperties.RemoveMember.md
index 11e2b5a595b..218b6a722ab 100644
--- a/api/Visio.ContainerProperties.RemoveMember.md
+++ b/api/Visio.ContainerProperties.RemoveMember.md
@@ -27,11 +27,11 @@ Removes a shape or set of shapes from the container.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectToRemove_|Required| **[UNKNOWN]**|The shape or shapes to remove from the container. Can be a **[Shape](Visio.Shape.md)** or **[Selection](Visio.Selection.md)** selection.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ContainerProperties.ReorderListMember.md b/api/Visio.ContainerProperties.ReorderListMember.md
index 8d29c73a429..b8eee1e4cfd 100644
--- a/api/Visio.ContainerProperties.ReorderListMember.md
+++ b/api/Visio.ContainerProperties.ReorderListMember.md
@@ -27,12 +27,12 @@ Moves a shape or a set of shapes up or down in the list.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectToReorder_|Required| **[UNKNOWN]**|The shape or shapes to reorder in the container. Can be either **[Shape](Visio.Shape.md)** or **[Selection](Visio.Selection.md)** objects.|
| _Position_|Required| **Long**|The insertion position in the list, which is one-based.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ContainerProperties.ResizeAsNeeded.md b/api/Visio.ContainerProperties.ResizeAsNeeded.md
index 7f1cc3a3f51..8e41da93fd7 100644
--- a/api/Visio.ContainerProperties.ResizeAsNeeded.md
+++ b/api/Visio.ContainerProperties.ResizeAsNeeded.md
@@ -23,7 +23,7 @@ Determines whether the container boundary resizes automatically to fit its conte
_expression_ An expression that returns a '[ContainerProperties](Visio.ContainerProperties.md)' object.
-### Return Value
+### Return value
**[VisContainerAutoResize](Visio.VisContainerAutoResize.md)**
diff --git a/api/Visio.ContainerProperties.RotateFlipList.md b/api/Visio.ContainerProperties.RotateFlipList.md
index b93bf6c1442..44856236e02 100644
--- a/api/Visio.ContainerProperties.RotateFlipList.md
+++ b/api/Visio.ContainerProperties.RotateFlipList.md
@@ -27,11 +27,11 @@ Rotates or flips the list direction for a list of shapes.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Direction_|Required| **[VisLayoutDirection](Visio.VisLayoutDirection.md)**|The layout action to take.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ContainerProperties.SetListSpacing.md b/api/Visio.ContainerProperties.SetListSpacing.md
index edf41fa02ac..47ed52d94e9 100644
--- a/api/Visio.ContainerProperties.SetListSpacing.md
+++ b/api/Visio.ContainerProperties.SetListSpacing.md
@@ -27,12 +27,12 @@ Sets the gap between adjacent member shapes in the list.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SpacingUnits_|Required| **[VisUnitCodes](Visio.visunitcodes.md)**|The units in which to measure the gap.|
| _SpacingSize_|Required| **Double**|The size of the gap.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ContainerProperties.SetMargin.md b/api/Visio.ContainerProperties.SetMargin.md
index 08e0ac848ae..547acda9a96 100644
--- a/api/Visio.ContainerProperties.SetMargin.md
+++ b/api/Visio.ContainerProperties.SetMargin.md
@@ -27,12 +27,12 @@ Sets the gap between the container and member shapes to the specified size, in t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MarginUnits_|Required| **[VisUnitCodes](Visio.visunitcodes.md)**|The units in which to measure the margin.|
| _MarginSize_|Required| **Double**|The size of the margin.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ContainerProperties.Shape.md b/api/Visio.ContainerProperties.Shape.md
index 18909b9d2a6..75663d1d22d 100644
--- a/api/Visio.ContainerProperties.Shape.md
+++ b/api/Visio.ContainerProperties.Shape.md
@@ -23,7 +23,7 @@ Returns the Microsoft Visio **[Shape](Visio.Shape.md)** object that is associat
_expression_ An expression that returns a '[ContainerProperties](Visio.ContainerProperties.md)' object.
-### Return Value
+### Return value
**Shape**
diff --git a/api/Visio.ContainerProperties.Stat.md b/api/Visio.ContainerProperties.Stat.md
index 36c1ddc00fd..5874fa073d6 100644
--- a/api/Visio.ContainerProperties.Stat.md
+++ b/api/Visio.ContainerProperties.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ An expression that represents a '[ContainerProperties](Visio.ContainerProperties.md)' object.
-### Return Value
+### Return value
[VisStatCodes](Visio.visstatcodes.md)
diff --git a/api/Visio.ContextMenuEnabled.md b/api/Visio.ContextMenuEnabled.md
index c706b5ddd15..dceb876ad8b 100644
--- a/api/Visio.ContextMenuEnabled.md
+++ b/api/Visio.ContextMenuEnabled.md
@@ -20,7 +20,7 @@ Gets or sets a value that indicates whether the shortcut (right-click) menu is e
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.CreatePages.md b/api/Visio.CreatePages.md
index 74d30dc65da..a0c1f2213bf 100644
--- a/api/Visio.CreatePages.md
+++ b/api/Visio.CreatePages.md
@@ -20,7 +20,7 @@ Initiates Web page creation.
_expression_An expression that returns a ** [VisSaveAsWeb](./overview/Visio.md)** object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.CurrentPageIndex.md b/api/Visio.CurrentPageIndex.md
index bf5ed8594ff..92593cc1c51 100644
--- a/api/Visio.CurrentPageIndex.md
+++ b/api/Visio.CurrentPageIndex.md
@@ -20,7 +20,7 @@ Gets or sets the index of the page displayed when a drawing opens in Microsoft V
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.Curve.Application.md b/api/Visio.Curve.Application.md
index 335c83d9ac3..9a01f82b848 100644
--- a/api/Visio.Curve.Application.md
+++ b/api/Visio.Curve.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Curve](./Visio.Curve.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Curve.Closed.md b/api/Visio.Curve.Closed.md
index 5a7b936bb20..c31a10978f6 100644
--- a/api/Visio.Curve.Closed.md
+++ b/api/Visio.Curve.Closed.md
@@ -23,7 +23,7 @@ Determines if an object is closed (that is, if its begin point coincides with it
_expression_ A variable that represents a [Curve](./Visio.Curve.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Curve.End.md b/api/Visio.Curve.End.md
index 4f7e1874ede..9ec291e6c21 100644
--- a/api/Visio.Curve.End.md
+++ b/api/Visio.Curve.End.md
@@ -23,7 +23,7 @@ Returns the endpoint of a **Curve** object. Read-only.
_expression_ A variable that represents a [Curve](./Visio.Curve.md) object.
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Curve.ObjectType.md b/api/Visio.Curve.ObjectType.md
index d104b132064..dc87b506b92 100644
--- a/api/Visio.Curve.ObjectType.md
+++ b/api/Visio.Curve.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Curve](./Visio.Curve.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Curve.Point.md b/api/Visio.Curve.Point.md
index cd640a52858..c3947dfde62 100644
--- a/api/Visio.Curve.Point.md
+++ b/api/Visio.Curve.Point.md
@@ -27,13 +27,13 @@ Returns a point at a position along a curve.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _t_|Required| **Double**|The value in the curve's parameter domain to evaluate.|
| _x_|Required| **Double**|Returns _x_ value of curve at _t_.|
| _y_|Required| **Double**|Returns _y_ value of curve at _t_.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Curve.PointAndDerivatives.md b/api/Visio.Curve.PointAndDerivatives.md
index ff07f4c653c..c243859e7c7 100644
--- a/api/Visio.Curve.PointAndDerivatives.md
+++ b/api/Visio.Curve.PointAndDerivatives.md
@@ -27,7 +27,7 @@ Returns a point and its derivatives at a position along a curve's path.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _t_|Required| **Double**|The value in the curve's parameter domain to evaluate.|
| _n_|Required| **Integer**|0: get point; 1: point and 1st derivative; 2: point plus first and second derivative.|
@@ -38,7 +38,7 @@ Returns a point and its derivatives at a position along a curve's path.
| _ddxdt_|Required| **Double**|Returns second derivative ( _ddx/dt_) at _t_ if _n_> 1.|
| _ddydt_|Required| **Double**|Returns second derivative ( _ddy/dt_) at _t_ if _n_> 1.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Curve.Points.md b/api/Visio.Curve.Points.md
index cea3af7d3bc..81c8826b871 100644
--- a/api/Visio.Curve.Points.md
+++ b/api/Visio.Curve.Points.md
@@ -27,12 +27,12 @@ Returns an array of points that defines a polyline that approximates a **Path**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Tolerance_|Required| **Double**|Specifies how close the returned array of points must approximate the true path.|
| _xyArray()_|Required| **Double**|Returns an array of alternating _x_ and _y_ values specifying points along a path's or curve's stroke.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Curve.Start.md b/api/Visio.Curve.Start.md
index c0e47204a69..d011e8944e7 100644
--- a/api/Visio.Curve.Start.md
+++ b/api/Visio.Curve.Start.md
@@ -23,7 +23,7 @@ Returns the start of a **Curve** object's parameter domain. Read-only.
_expression_ A variable that represents a [Curve](./Visio.Curve.md) object.
-### Return Value
+### Return value
Double
diff --git a/api/Visio.CustomPropertyCount.md b/api/Visio.CustomPropertyCount.md
index 345ecf26b02..c0ed8d89a01 100644
--- a/api/Visio.CustomPropertyCount.md
+++ b/api/Visio.CustomPropertyCount.md
@@ -24,11 +24,11 @@ Gets the count of shape data items (custom properties) assigned to the specified
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ShapeIndex|Required| **Long**|The index of the shape that contains the shape data (custom properties).|
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.CustomPropertyName.md b/api/Visio.CustomPropertyName.md
index b34cbeda345..2e41f91fe9f 100644
--- a/api/Visio.CustomPropertyName.md
+++ b/api/Visio.CustomPropertyName.md
@@ -24,12 +24,12 @@ Gets the name of the shape data item (custom property) at the specified index po
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ShapeIndex|Required| **Long**|The index of the shape that contains the specified shape data item (custom property).|
|PropertyIndex|Required| **Long**|The index of the shape data item (custom property).|
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.CustomPropertyValue.md b/api/Visio.CustomPropertyValue.md
index 2f93cc53d5b..3c5786e5cc0 100644
--- a/api/Visio.CustomPropertyValue.md
+++ b/api/Visio.CustomPropertyValue.md
@@ -24,12 +24,12 @@ Gets the value of the shape data item (custom property) at the specified index p
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ShapeIndex|Required| **Long**|The index of the shape that contains the specified shape data item (custom property).|
|PropertyIndex|Required| **Long**|The index of the shape data item (custom property).|
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.DataColumn.Application.md b/api/Visio.DataColumn.Application.md
index a88cf0c6a03..ca46c4e56eb 100644
--- a/api/Visio.DataColumn.Application.md
+++ b/api/Visio.DataColumn.Application.md
@@ -26,7 +26,7 @@ Returns the instance of Microsoft Visio that is associated with a **DataColumn*
_expression_ An expression that returns a [DataColumn](./Visio.DataColumn.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.DataColumn.DataRecordset.md b/api/Visio.DataColumn.DataRecordset.md
index 93986705b97..0a739f58d56 100644
--- a/api/Visio.DataColumn.DataRecordset.md
+++ b/api/Visio.DataColumn.DataRecordset.md
@@ -26,7 +26,7 @@ Returns the **[DataRecordset](Visio.DataColumn.DataRecordset.md)** object that
_expression_ An expression that returns a [DataColumn](./Visio.DataColumn.md) object.
-### Return Value
+### Return value
DataRecordset
diff --git a/api/Visio.DataColumn.DisplayName.md b/api/Visio.DataColumn.DisplayName.md
index 835e5aa7e8f..8d1c5d2650d 100644
--- a/api/Visio.DataColumn.DisplayName.md
+++ b/api/Visio.DataColumn.DisplayName.md
@@ -26,7 +26,7 @@ Specifies the name that appears for the data column on the tab of the parent dat
_expression_ An expression that returns a [DataColumn](./Visio.DataColumn.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.DataColumn.Document.md b/api/Visio.DataColumn.Document.md
index 8e50a7dc88c..de978da8f24 100644
--- a/api/Visio.DataColumn.Document.md
+++ b/api/Visio.DataColumn.Document.md
@@ -26,7 +26,7 @@ Gets the **Document** object that contains the **DataColumn** object. Read-only
_expression_ An expression that returns a [DataColumn](./Visio.DataColumn.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.DataColumn.GetProperty.md b/api/Visio.DataColumn.GetProperty.md
index 3bdc0a6ff76..f0adb0107da 100644
--- a/api/Visio.DataColumn.GetProperty.md
+++ b/api/Visio.DataColumn.GetProperty.md
@@ -30,11 +30,11 @@ Gets the value of the specified data-column property.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Property_|Required| **VisDataColumnProperties**|The data column property to get. See Remarks for possible values.|
-### Return Value
+### Return value
Variant
diff --git a/api/Visio.DataColumn.Hyperlink.md b/api/Visio.DataColumn.Hyperlink.md
index 4902433cfcd..92bcfac28da 100644
--- a/api/Visio.DataColumn.Hyperlink.md
+++ b/api/Visio.DataColumn.Hyperlink.md
@@ -26,7 +26,7 @@ Gets or sets whether the data column creates a hyperlink in a shape when the sha
_expression_ An expression that returns a [DataColumn](./Visio.DataColumn.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.DataColumn.Name.md b/api/Visio.DataColumn.Name.md
index 94289c6d3c6..2820ecf148f 100644
--- a/api/Visio.DataColumn.Name.md
+++ b/api/Visio.DataColumn.Name.md
@@ -26,7 +26,7 @@ Gets the unique name of the data column in its parent data recordset. Read-only.
_expression_ A variable that represents a [DataColumn](./Visio.DataColumn.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.DataColumn.ObjectType.md b/api/Visio.DataColumn.ObjectType.md
index ac240d968c5..d4533980b4e 100644
--- a/api/Visio.DataColumn.ObjectType.md
+++ b/api/Visio.DataColumn.ObjectType.md
@@ -26,7 +26,7 @@ Returns **visObjTypeDataColumn** , the type of a **DataColumn** object. Read-on
_expression_ An expression that returns a [DataColumn](./Visio.DataColumn.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.DataColumn.SetProperty.md b/api/Visio.DataColumn.SetProperty.md
index 53dca25bcf9..4c4ad710fed 100644
--- a/api/Visio.DataColumn.SetProperty.md
+++ b/api/Visio.DataColumn.SetProperty.md
@@ -30,12 +30,12 @@ Sets the value of the specified data-column property.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Property_|Required| **VisDataColumnProperties**|The data-column property whose value you want set. See Remarks for possible values.|
| _Value_|Required| **Variant**|The value to assign the data-column property. See Remarks for possible values.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.DataColumn.Stat.md b/api/Visio.DataColumn.Stat.md
index 65691887c0c..f947d1a5f42 100644
--- a/api/Visio.DataColumn.Stat.md
+++ b/api/Visio.DataColumn.Stat.md
@@ -26,7 +26,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [DataColumn](./Visio.DataColumn.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.DataColumn.Visible.md b/api/Visio.DataColumn.Visible.md
index edb41828db4..e07ad41b808 100644
--- a/api/Visio.DataColumn.Visible.md
+++ b/api/Visio.DataColumn.Visible.md
@@ -26,7 +26,7 @@ Specifies whether the data column appears on the tab for its parent data records
_expression_ A variable that represents a [DataColumn](./Visio.DataColumn.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.DataColumns.Application.md b/api/Visio.DataColumns.Application.md
index d7567abadda..5d63b9ee67f 100644
--- a/api/Visio.DataColumns.Application.md
+++ b/api/Visio.DataColumns.Application.md
@@ -26,7 +26,7 @@ Returns the instance of Microsoft Visio associated with the **DataColumns** col
_expression_ An expression that returns a [DataColumns](./Visio.DataColumns.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.DataColumns.Count.md b/api/Visio.DataColumns.Count.md
index 2021c7d739c..a9954b20de6 100644
--- a/api/Visio.DataColumns.Count.md
+++ b/api/Visio.DataColumns.Count.md
@@ -26,7 +26,7 @@ Returns the number of **DataColumn** objects in the **DataColumns** collection.
_expression_ An expression that returns a [DataColumns](./Visio.DataColumns.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.DataColumns.DataRecordset.md b/api/Visio.DataColumns.DataRecordset.md
index a90297b1f04..d9270019567 100644
--- a/api/Visio.DataColumns.DataRecordset.md
+++ b/api/Visio.DataColumns.DataRecordset.md
@@ -26,7 +26,7 @@ Returns the **[DataRecordset](Visio.DataRecordset.md)** object that contains th
_expression_ An expression that returns a [DataColumns](./Visio.DataColumns.md) object.
-### Return Value
+### Return value
DataRecordset
diff --git a/api/Visio.DataColumns.Document.md b/api/Visio.DataColumns.Document.md
index 038ea8bf7ae..0a572ea01dd 100644
--- a/api/Visio.DataColumns.Document.md
+++ b/api/Visio.DataColumns.Document.md
@@ -26,7 +26,7 @@ Gets the **Document** object that contains the **DataColumns** collection. Read
_expression_ An expression that returns a [DataColumns](./Visio.DataColumns.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.DataColumns.Item.md b/api/Visio.DataColumns.Item.md
index 1d1211319d3..8d3dc0321fa 100644
--- a/api/Visio.DataColumns.Item.md
+++ b/api/Visio.DataColumns.Item.md
@@ -30,11 +30,11 @@ Returns the **DataColumn** object at the specified index position, or of the sp
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _IndexOrName_|Required| **Variant**|The index (as a **Long**) or the name (as a **String**) of the data column to retrieve.|
-### Return Value
+### Return value
DataColumn
diff --git a/api/Visio.DataColumns.ObjectType.md b/api/Visio.DataColumns.ObjectType.md
index e04da4d1137..e8859a727c4 100644
--- a/api/Visio.DataColumns.ObjectType.md
+++ b/api/Visio.DataColumns.ObjectType.md
@@ -26,7 +26,7 @@ Returns **visObjTypeDataColumns** , the type of a **DataColumns** object. Read-
_expression_ An expression that returns a [DataColumns](./Visio.DataColumns.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.DataColumns.SetColumnProperties.md b/api/Visio.DataColumns.SetColumnProperties.md
index 8085d1c3be9..c793f010d12 100644
--- a/api/Visio.DataColumns.SetColumnProperties.md
+++ b/api/Visio.DataColumns.SetColumnProperties.md
@@ -30,13 +30,13 @@ Sets one or more data-column properties for one or more data columns.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ColumnNames()_|Required| **String**|An array of strings that represent data column names.|
| _Properties()_|Required| **Long**|An array of data-column properties, as **VisDataColumnProperties** . See Remarks for possible values.|
| _Values()_|Required| **Variant**|An array of values to be assigned to the properties. See Remarks for possible values.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.DataColumns.Stat.md b/api/Visio.DataColumns.Stat.md
index f23486429b4..3d858fa28d4 100644
--- a/api/Visio.DataColumns.Stat.md
+++ b/api/Visio.DataColumns.Stat.md
@@ -26,7 +26,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [DataColumns](./Visio.DataColumns.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.DataConnection.Application.md b/api/Visio.DataConnection.Application.md
index 9ebae16a848..6dc43805ff9 100644
--- a/api/Visio.DataConnection.Application.md
+++ b/api/Visio.DataConnection.Application.md
@@ -26,7 +26,7 @@ Returns the instance of Microsoft Visio associated with a **DataConnection** ob
_expression_ An expression that returns a [DataConnection](./Visio.DataConnection.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.DataConnection.ConnectionString.md b/api/Visio.DataConnection.ConnectionString.md
index 1cc9e36b40c..29840e86c5b 100644
--- a/api/Visio.DataConnection.ConnectionString.md
+++ b/api/Visio.DataConnection.ConnectionString.md
@@ -26,7 +26,7 @@ Gets or sets the connection string that you can use to access an existing **[Da
_expression_ An expression that returns a [DataConnection](./Visio.DataConnection.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.DataConnection.Document.md b/api/Visio.DataConnection.Document.md
index 5abfdeb78d9..f96dd855093 100644
--- a/api/Visio.DataConnection.Document.md
+++ b/api/Visio.DataConnection.Document.md
@@ -26,7 +26,7 @@ Gets the **Document** object that contains the **DataConnection** object. Read-
_expression_ An expression that returns a [DataConnection](./Visio.DataConnection.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.DataConnection.FileName.md b/api/Visio.DataConnection.FileName.md
index 3c2706316a2..c18fb780ec0 100644
--- a/api/Visio.DataConnection.FileName.md
+++ b/api/Visio.DataConnection.FileName.md
@@ -26,7 +26,7 @@ Gets the name of the Office Data Connection (ODC) file that contains the connect
_expression_ An expression that returns a [DataConnection](./Visio.DataConnection.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.DataConnection.ID.md b/api/Visio.DataConnection.ID.md
index 266566fe9c7..c1f35baf006 100644
--- a/api/Visio.DataConnection.ID.md
+++ b/api/Visio.DataConnection.ID.md
@@ -26,7 +26,7 @@ Gets the unique identifier of the **DataConnection** object assigned by Visio.
_expression_ A variable that represents a [DataConnection](./Visio.DataConnection.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.DataConnection.ObjectType.md b/api/Visio.DataConnection.ObjectType.md
index 0f896234167..ea6936af78c 100644
--- a/api/Visio.DataConnection.ObjectType.md
+++ b/api/Visio.DataConnection.ObjectType.md
@@ -26,7 +26,7 @@ Returns **visObjTypeDataConnection** , the type of a **DataConnection** object.
_expression_ An expression that returns a [DataConnection](./Visio.DataConnection.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.DataConnection.Stat.md b/api/Visio.DataConnection.Stat.md
index 93b306cb1cf..5f19f414a65 100644
--- a/api/Visio.DataConnection.Stat.md
+++ b/api/Visio.DataConnection.Stat.md
@@ -26,7 +26,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [DataConnection](./Visio.DataConnection.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.DataConnection.Timeout.md b/api/Visio.DataConnection.Timeout.md
index 7c0904f5dfb..d3f42c47648 100644
--- a/api/Visio.DataConnection.Timeout.md
+++ b/api/Visio.DataConnection.Timeout.md
@@ -26,7 +26,7 @@ Gets or sets how long (in seconds) to attempt to establish a data connection bef
_expression_ An expression that returns a [DataConnection](./Visio.DataConnection.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.DataRecordset.Application.md b/api/Visio.DataRecordset.Application.md
index 463f27666e1..ee19b8611f9 100644
--- a/api/Visio.DataRecordset.Application.md
+++ b/api/Visio.DataRecordset.Application.md
@@ -26,7 +26,7 @@ Returns the instance of Microsoft Visio associated with a **DataRecordset** obj
_expression_ An expression that returns a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.DataRecordset.BeforeDataRecordsetDelete.md b/api/Visio.DataRecordset.BeforeDataRecordsetDelete.md
index 993d8106ed5..41ca7fb273c 100644
--- a/api/Visio.DataRecordset.BeforeDataRecordsetDelete.md
+++ b/api/Visio.DataRecordset.BeforeDataRecordsetDelete.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'BeforeDataRecordsetDelete'(**_ByVal DataRecordset As
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordset_|Required| **[IVDATARECORDSET]**|The data recordset that is going to be deleted.|
diff --git a/api/Visio.DataRecordset.CommandString.md b/api/Visio.DataRecordset.CommandString.md
index 64ebb1fa7d3..782bc5ac26d 100644
--- a/api/Visio.DataRecordset.CommandString.md
+++ b/api/Visio.DataRecordset.CommandString.md
@@ -26,7 +26,7 @@ Gets or sets the command string used to query the data source to create a data r
_expression_ An expression that returns a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.DataRecordset.DataAsXML.md b/api/Visio.DataRecordset.DataAsXML.md
index 52a597d6635..ec036db98df 100644
--- a/api/Visio.DataRecordset.DataAsXML.md
+++ b/api/Visio.DataRecordset.DataAsXML.md
@@ -26,7 +26,7 @@ Returns an XML string that fully describes a data recordset and conforms to the
_expression_ An expression that returns a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.DataRecordset.DataColumns.md b/api/Visio.DataRecordset.DataColumns.md
index 26e65cd687e..70331ec2bb3 100644
--- a/api/Visio.DataRecordset.DataColumns.md
+++ b/api/Visio.DataRecordset.DataColumns.md
@@ -26,7 +26,7 @@ Returns the **[DataColumns](Visio.DataColumns.md)** collection associated with
_expression_ An expression that returns a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
DataColumns
diff --git a/api/Visio.DataRecordset.DataConnection.md b/api/Visio.DataRecordset.DataConnection.md
index c5f37f5b7c6..1c937a74e33 100644
--- a/api/Visio.DataRecordset.DataConnection.md
+++ b/api/Visio.DataRecordset.DataConnection.md
@@ -26,7 +26,7 @@ Returns the **[DataConnection](Visio.DataConnection.md)** object associated wit
_expression_ An expression that returns a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
DataConnection
diff --git a/api/Visio.DataRecordset.DataRecordsetChanged.md b/api/Visio.DataRecordset.DataRecordsetChanged.md
index 14953f01f0c..f9fe329890c 100644
--- a/api/Visio.DataRecordset.DataRecordsetChanged.md
+++ b/api/Visio.DataRecordset.DataRecordsetChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DataRecordsetChanged'(**_ByVal DataRecordsetChanged
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetChanged_|Required| **[IVDATARECORDSETCHANGEDEVENT]**|The data recordset that changed.|
diff --git a/api/Visio.DataRecordset.Delete.md b/api/Visio.DataRecordset.Delete.md
index 42d0af52f03..a9feec7455e 100644
--- a/api/Visio.DataRecordset.Delete.md
+++ b/api/Visio.DataRecordset.Delete.md
@@ -26,7 +26,7 @@ Deletes the **[DataRecordset](Visio.DataRecordset.md)** object from the **[Data
_expression_ A variable that represents a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.DataRecordset.Document.md b/api/Visio.DataRecordset.Document.md
index 70c0373c932..f8fbca64af4 100644
--- a/api/Visio.DataRecordset.Document.md
+++ b/api/Visio.DataRecordset.Document.md
@@ -26,7 +26,7 @@ Gets the **Document** object that contains the **DataRecordset** object. Read-o
_expression_ An expression that returns a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.DataRecordset.EventList.md b/api/Visio.DataRecordset.EventList.md
index 174f135a7d1..333c5e91ddb 100644
--- a/api/Visio.DataRecordset.EventList.md
+++ b/api/Visio.DataRecordset.EventList.md
@@ -26,7 +26,7 @@ Returns the **[EventList](Visio.EventList.md)** collection of the **DataRecords
_expression_ An expression that returns a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.DataRecordset.GetAllRefreshConflicts.md b/api/Visio.DataRecordset.GetAllRefreshConflicts.md
index 71e5691f5a8..23875cc1824 100644
--- a/api/Visio.DataRecordset.GetAllRefreshConflicts.md
+++ b/api/Visio.DataRecordset.GetAllRefreshConflicts.md
@@ -26,7 +26,7 @@ Returns an array that contains shapes linked to data rows that have non-resolved
_expression_ An expression that returns a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
Shape()
diff --git a/api/Visio.DataRecordset.GetDataRowIDs.md b/api/Visio.DataRecordset.GetDataRowIDs.md
index 05bd7459e2b..abdd56f5a4d 100644
--- a/api/Visio.DataRecordset.GetDataRowIDs.md
+++ b/api/Visio.DataRecordset.GetDataRowIDs.md
@@ -30,11 +30,11 @@ Gets an array of the IDs of all the rows in the data recordset.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CriteriaString_|Required| **String**|A string that conforms to the guidelines specified in the Microsoft ActiveX Data Object (ADO) API for setting the **ADO.Filter** property|
-### Return Value
+### Return value
Long()
diff --git a/api/Visio.DataRecordset.GetMatchingRowsForRefreshConflict.md b/api/Visio.DataRecordset.GetMatchingRowsForRefreshConflict.md
index 66a68f31a5a..8aa23f60ef3 100644
--- a/api/Visio.DataRecordset.GetMatchingRowsForRefreshConflict.md
+++ b/api/Visio.DataRecordset.GetMatchingRowsForRefreshConflict.md
@@ -30,11 +30,11 @@ Returns an array of the row IDs of data-recordset rows linked to a shape that ar
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapeInConflict_|Required| **Shape**|A shape linked to data that has a conflict after the data recordset is refreshed.|
-### Return Value
+### Return value
Long()
diff --git a/api/Visio.DataRecordset.GetPrimaryKey.md b/api/Visio.DataRecordset.GetPrimaryKey.md
index 66e69e7090c..1b71b913830 100644
--- a/api/Visio.DataRecordset.GetPrimaryKey.md
+++ b/api/Visio.DataRecordset.GetPrimaryKey.md
@@ -30,12 +30,12 @@ Gets the primary key setting and the name of the primary key column or columns f
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PrimaryKeySettings_|Required| **VisPrimaryKeySettings**|Out parameter. The primary key setting for the data recordset. See Remarks for possible values.|
| _PrimaryKey()_|Required| **String**|Out parameter. An array of **String** variables.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.DataRecordset.GetRowData.md b/api/Visio.DataRecordset.GetRowData.md
index 5e2abd2df86..dda63175859 100644
--- a/api/Visio.DataRecordset.GetRowData.md
+++ b/api/Visio.DataRecordset.GetRowData.md
@@ -30,11 +30,11 @@ Gets the data in all columns in the specified row.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRowID_|Required| **Long**|The ID of the row in the data recordset from which you want to retrieve data.|
-### Return Value
+### Return value
Variant()
diff --git a/api/Visio.DataRecordset.ID.md b/api/Visio.DataRecordset.ID.md
index 7896c9a6bcb..dab6a7e069f 100644
--- a/api/Visio.DataRecordset.ID.md
+++ b/api/Visio.DataRecordset.ID.md
@@ -26,7 +26,7 @@ Gets the unique identifier of the **DataRecordset** object assigned by Visio. R
_expression_ A variable that represents a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.DataRecordset.LinkReplaceBehavior.md b/api/Visio.DataRecordset.LinkReplaceBehavior.md
index 7a36c2bd505..ad6c1228ba2 100644
--- a/api/Visio.DataRecordset.LinkReplaceBehavior.md
+++ b/api/Visio.DataRecordset.LinkReplaceBehavior.md
@@ -26,7 +26,7 @@ Gets or sets how existing links between shapes and data rows are handled when me
_expression_ An expression that returns a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
VisLinkReplaceBehavior
diff --git a/api/Visio.DataRecordset.Name.md b/api/Visio.DataRecordset.Name.md
index d8204ed060f..9c6a57d7bcc 100644
--- a/api/Visio.DataRecordset.Name.md
+++ b/api/Visio.DataRecordset.Name.md
@@ -26,7 +26,7 @@ Gets or sets the display name of the data recordset. Read/write.
_expression_ A variable that represents a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.DataRecordset.ObjectType.md b/api/Visio.DataRecordset.ObjectType.md
index 8b18af038a8..6c6d349fa87 100644
--- a/api/Visio.DataRecordset.ObjectType.md
+++ b/api/Visio.DataRecordset.ObjectType.md
@@ -26,7 +26,7 @@ Returns **visObjTypeDataRecordset** , the type of a **DataRecordset** object. R
_expression_ An expression that returns a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.DataRecordset.Refresh.md b/api/Visio.DataRecordset.Refresh.md
index 89461c423f1..69a39d7485f 100644
--- a/api/Visio.DataRecordset.Refresh.md
+++ b/api/Visio.DataRecordset.Refresh.md
@@ -26,7 +26,7 @@ Executes the query string associated with the connected (non-XML-based) **[Data
_expression_ An expression that returns a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.DataRecordset.RefreshInterval.md b/api/Visio.DataRecordset.RefreshInterval.md
index a4925c8ceb2..8d9a6f6ea2f 100644
--- a/api/Visio.DataRecordset.RefreshInterval.md
+++ b/api/Visio.DataRecordset.RefreshInterval.md
@@ -26,7 +26,7 @@ Gets or sets how often Microsoft Visio automatically refreshes the data recordse
_expression_ An expression that returns a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.DataRecordset.RefreshSettings.md b/api/Visio.DataRecordset.RefreshSettings.md
index aaf5bcdc64c..38f14ef5fcc 100644
--- a/api/Visio.DataRecordset.RefreshSettings.md
+++ b/api/Visio.DataRecordset.RefreshSettings.md
@@ -26,7 +26,7 @@ Gets and sets options that determine how the data recordset is refreshed. Read/w
_expression_ An expression that returns a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.DataRecordset.RefreshUsingXML.md b/api/Visio.DataRecordset.RefreshUsingXML.md
index 6f5da410771..c2edcff8b49 100644
--- a/api/Visio.DataRecordset.RefreshUsingXML.md
+++ b/api/Visio.DataRecordset.RefreshUsingXML.md
@@ -30,11 +30,11 @@ Updates linked shapes with data contained in the string that conforms to the ADO
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NewDataAsXML_|Required| **String**|An XML string that contains new data to refresh the data recordset and that conforms to the classic ADO schema.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.DataRecordset.RemoveRefreshConflict.md b/api/Visio.DataRecordset.RemoveRefreshConflict.md
index 1a12bfcfcd2..5fc44735470 100644
--- a/api/Visio.DataRecordset.RemoveRefreshConflict.md
+++ b/api/Visio.DataRecordset.RemoveRefreshConflict.md
@@ -30,11 +30,11 @@ Clears information about a conflict for a data-linked shape from the current doc
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapeInConflict_|Required| **[IVSHAPE]**|A shape linked to data that has a conflict after the data recordset is refreshed.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.DataRecordset.SetPrimaryKey.md b/api/Visio.DataRecordset.SetPrimaryKey.md
index f529caa1d70..bbd1b8e2c18 100644
--- a/api/Visio.DataRecordset.SetPrimaryKey.md
+++ b/api/Visio.DataRecordset.SetPrimaryKey.md
@@ -30,12 +30,12 @@ Sets the primary key setting value and the name of the primary key column or col
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PrimaryKeySettings_|Required| **VisPrimaryKeySettings**|The primary key setting for the data recordset. See Remarks for possible values.|
| _PrimaryKey()_|Required| **[SAFE-ARRAY]**|An array of **String** variables.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.DataRecordset.Stat.md b/api/Visio.DataRecordset.Stat.md
index bb1f4bacceb..000568796cb 100644
--- a/api/Visio.DataRecordset.Stat.md
+++ b/api/Visio.DataRecordset.Stat.md
@@ -26,7 +26,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.DataRecordset.TimeRefreshed.md b/api/Visio.DataRecordset.TimeRefreshed.md
index 2c0ad6e9892..73229d2925a 100644
--- a/api/Visio.DataRecordset.TimeRefreshed.md
+++ b/api/Visio.DataRecordset.TimeRefreshed.md
@@ -26,7 +26,7 @@ Returns the date and time the data recordset was last refreshed. Read-only.
_expression_ An expression that returns a [DataRecordset](./Visio.DataRecordset.md) object.
-### Return Value
+### Return value
Date
diff --git a/api/Visio.DataRecordsetChangedEvent.Application.md b/api/Visio.DataRecordsetChangedEvent.Application.md
index 103c27a0ee6..f3fa44228a5 100644
--- a/api/Visio.DataRecordsetChangedEvent.Application.md
+++ b/api/Visio.DataRecordsetChangedEvent.Application.md
@@ -26,7 +26,7 @@ Returns the instance of Microsoft Visio associated with a **DataRecordsetChange
_expression_ An expression that returns a [DataRecordsetChangedEvent](./Visio.DataRecordsetChangedEvent.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.DataRecordsetChangedEvent.DataColumnsAdded.md b/api/Visio.DataRecordsetChangedEvent.DataColumnsAdded.md
index b606e32c21f..353401992c8 100644
--- a/api/Visio.DataRecordsetChangedEvent.DataColumnsAdded.md
+++ b/api/Visio.DataRecordsetChangedEvent.DataColumnsAdded.md
@@ -26,7 +26,7 @@ After data in a data recordset are refreshed, returns an array of names of data
_expression_ An expression that returns a [DataRecordsetChangedEvent](./Visio.DataRecordsetChangedEvent.md) object.
-### Return Value
+### Return value
String()
diff --git a/api/Visio.DataRecordsetChangedEvent.DataColumnsChanged.md b/api/Visio.DataRecordsetChangedEvent.DataColumnsChanged.md
index 7e6397d6540..17179b4443e 100644
--- a/api/Visio.DataRecordsetChangedEvent.DataColumnsChanged.md
+++ b/api/Visio.DataRecordsetChangedEvent.DataColumnsChanged.md
@@ -26,7 +26,7 @@ Returns an array of names of data columns in a data recordset whose types have c
_expression_ An expression that returns a [DataRecordsetChangedEvent](./Visio.DataRecordsetChangedEvent.md) object.
-### Return Value
+### Return value
String()
diff --git a/api/Visio.DataRecordsetChangedEvent.DataColumnsDeleted.md b/api/Visio.DataRecordsetChangedEvent.DataColumnsDeleted.md
index 09b709a3070..ec74d78a7bc 100644
--- a/api/Visio.DataRecordsetChangedEvent.DataColumnsDeleted.md
+++ b/api/Visio.DataRecordsetChangedEvent.DataColumnsDeleted.md
@@ -26,7 +26,7 @@ After data in a data recordset are refreshed, returns an array of names of data
_expression_ An expression that returns a [DataRecordsetChangedEvent](./Visio.DataRecordsetChangedEvent.md) object.
-### Return Value
+### Return value
String()
diff --git a/api/Visio.DataRecordsetChangedEvent.DataRecordset.md b/api/Visio.DataRecordsetChangedEvent.DataRecordset.md
index 2e5489dc8de..9d345dc7f8e 100644
--- a/api/Visio.DataRecordsetChangedEvent.DataRecordset.md
+++ b/api/Visio.DataRecordsetChangedEvent.DataRecordset.md
@@ -26,7 +26,7 @@ Returns the **DataRecordset** object associated with the **DataRecordsetChanged
_expression_ An expression that returns a [DataRecordsetChangedEvent](./Visio.DataRecordsetChangedEvent.md) object.
-### Return Value
+### Return value
DataRecordset
diff --git a/api/Visio.DataRecordsetChangedEvent.DataRowsAdded.md b/api/Visio.DataRecordsetChangedEvent.DataRowsAdded.md
index 286ba7d8247..e98cea62a14 100644
--- a/api/Visio.DataRecordsetChangedEvent.DataRowsAdded.md
+++ b/api/Visio.DataRecordsetChangedEvent.DataRowsAdded.md
@@ -26,7 +26,7 @@ Returns an array of IDs of data rows newly added to the data recordset as a resu
_expression_ An expression that returns a [DataRecordsetChangedEvent](./Visio.DataRecordsetChangedEvent.md) object.
-### Return Value
+### Return value
Long()
diff --git a/api/Visio.DataRecordsetChangedEvent.DataRowsDeleted.md b/api/Visio.DataRecordsetChangedEvent.DataRowsDeleted.md
index 775c2b33bf0..1183f4bcdc0 100644
--- a/api/Visio.DataRecordsetChangedEvent.DataRowsDeleted.md
+++ b/api/Visio.DataRecordsetChangedEvent.DataRowsDeleted.md
@@ -26,7 +26,7 @@ Returns an array of IDs of data rows deleted from the data recordset as a result
_expression_ An expression that returns a [DataRecordsetChangedEvent](./Visio.DataRecordsetChangedEvent.md) object.
-### Return Value
+### Return value
Long()
diff --git a/api/Visio.DataRecordsetChangedEvent.ObjectType.md b/api/Visio.DataRecordsetChangedEvent.ObjectType.md
index 2b5546c4f04..416336db606 100644
--- a/api/Visio.DataRecordsetChangedEvent.ObjectType.md
+++ b/api/Visio.DataRecordsetChangedEvent.ObjectType.md
@@ -26,7 +26,7 @@ Returns **visObjTypeDataRecordsetChangedEvent** , the type of a **DataRecordset
_expression_ An expression that returns a [DataRecordsetChangedEvent](./Visio.DataRecordsetChangedEvent.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.DataRecordsetChangedEvent.Stat.md b/api/Visio.DataRecordsetChangedEvent.Stat.md
index df35b8afe17..4a417afbb2e 100644
--- a/api/Visio.DataRecordsetChangedEvent.Stat.md
+++ b/api/Visio.DataRecordsetChangedEvent.Stat.md
@@ -26,7 +26,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [DataRecordsetChangedEvent](./Visio.DataRecordsetChangedEvent.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.DataRecordsets.Add.md b/api/Visio.DataRecordsets.Add.md
index cc6178d7f86..c6c803ea9d7 100644
--- a/api/Visio.DataRecordsets.Add.md
+++ b/api/Visio.DataRecordsets.Add.md
@@ -30,14 +30,14 @@ Adds a **[DataRecordset](Visio.DataRecordset.md)** object to the **[DataRecords
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ConnectionIDOrString_|Required| **Variant**|The ID of an existing **[DataConnection](Visio.DataConnection.md)** object or the connection string to specify a new data-source connection.|
| _CommandString_|Required| **String**|Query string that specifies the database table or Excel worksheet and the fields (columns) within the table or worksheet that contain the data you want to query.|
| _AddOptions_|Required| **Long**|Options that determine properties of the data recordset to add. A combination of one or more enumerated value from **[VisDataRecordsetAddOptions](Visio.visdatarecordsetaddoptions.md)** . For more information, see Remarks.|
| _Name_|Optional| **String**|Assigns a display name to the **DataRecordset** object being added.|
-### Return Value
+### Return value
DataRecordset
diff --git a/api/Visio.DataRecordsets.AddFromConnectionFile.md b/api/Visio.DataRecordsets.AddFromConnectionFile.md
index 5ebe29fdcc4..e55e10ad3be 100644
--- a/api/Visio.DataRecordsets.AddFromConnectionFile.md
+++ b/api/Visio.DataRecordsets.AddFromConnectionFile.md
@@ -30,13 +30,13 @@ Adds a **[DataRecordset](Visio.DataRecordset.md)** object to the **[DataRecords
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the ODC connection file to use. |
| _AddOptions_|Required| **Long**|Options that determine properties of the data recordset to be added. A combination of one or more enumerated value from **[VisDataRecordsetAddOptions](Visio.visdatarecordsetaddoptions.md)** . For more information, see Remarks.|
| _Name_|Optional| **String**|Assigns a display name to the **DataRecordset** object being added.|
-### Return Value
+### Return value
DataRecordset
diff --git a/api/Visio.DataRecordsets.AddFromXML.md b/api/Visio.DataRecordsets.AddFromXML.md
index 1527a32016f..dccb1fb0ba1 100644
--- a/api/Visio.DataRecordsets.AddFromXML.md
+++ b/api/Visio.DataRecordsets.AddFromXML.md
@@ -30,13 +30,13 @@ Adds a **[DataRecordset](Visio.DataRecordset.md)** object to the **[DataRecords
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _XMLString_|Required| **String**|An XML string that conforms to the Microsoft ActiveX? Data Objects (ADO) classic XML schema and that describes the data you want to import.|
| _AddOptions_|Required| **Long**|Options that determine properties of the data recordset to add. A combination of one or more enumerated value from **[VisDataRecordsetAddOptions](Visio.visdatarecordsetaddoptions.md)** . For more information, see Remarks.|
| _Name_|Optional| **String**|Assigns a display name to the **DataRecordset** object being added.|
-### Return Value
+### Return value
DataRecordset
diff --git a/api/Visio.DataRecordsets.Application.md b/api/Visio.DataRecordsets.Application.md
index 39cf02ada46..fcb3124410e 100644
--- a/api/Visio.DataRecordsets.Application.md
+++ b/api/Visio.DataRecordsets.Application.md
@@ -26,7 +26,7 @@ Returns the instance of Microsoft Visio associated with the **DataRecordsets**
_expression_ An expression that returns a [DataRecordsets](./Visio.DataRecordsets.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.DataRecordsets.BeforeDataRecordsetDelete.md b/api/Visio.DataRecordsets.BeforeDataRecordsetDelete.md
index 87d3896bc36..45a1a721e29 100644
--- a/api/Visio.DataRecordsets.BeforeDataRecordsetDelete.md
+++ b/api/Visio.DataRecordsets.BeforeDataRecordsetDelete.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'BeforeDataRecordsetDelete'(**_ByVal DataRecordset As
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordset_|Required| **[IVDATARECORDSET]**|The data recordset that is going to be deleted.|
diff --git a/api/Visio.DataRecordsets.Count.md b/api/Visio.DataRecordsets.Count.md
index 51ee8bd4841..9c153a86edb 100644
--- a/api/Visio.DataRecordsets.Count.md
+++ b/api/Visio.DataRecordsets.Count.md
@@ -26,7 +26,7 @@ Returns the number of **DataRecordset** objects in the **DataRecordsets** colle
_expression_ An expression that returns a [DataRecordsets](./Visio.DataRecordsets.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.DataRecordsets.DataRecordsetAdded.md b/api/Visio.DataRecordsets.DataRecordsetAdded.md
index fb0c78e3aca..a77b4a2e561 100644
--- a/api/Visio.DataRecordsets.DataRecordsetAdded.md
+++ b/api/Visio.DataRecordsets.DataRecordsetAdded.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'DataRecordsetAdded'(**_ByVal DataRecordset As [IVDAT
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordset_|Required| **[IVDATARECORDSET]**|The data recordset that was added.|
diff --git a/api/Visio.DataRecordsets.DataRecordsetChanged.md b/api/Visio.DataRecordsets.DataRecordsetChanged.md
index 3a4aacc50ed..d1050757eba 100644
--- a/api/Visio.DataRecordsets.DataRecordsetChanged.md
+++ b/api/Visio.DataRecordsets.DataRecordsetChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DataRecordsetChanged'(**_ByVal DataRecordsetChanged
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetChanged_|Required| **[IVDATARECORDSETCHANGEDEVENT]**|The data recordset that changed.|
diff --git a/api/Visio.DataRecordsets.Document.md b/api/Visio.DataRecordsets.Document.md
index c67fe31ea82..9d23b85ccdf 100644
--- a/api/Visio.DataRecordsets.Document.md
+++ b/api/Visio.DataRecordsets.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that contains the **DataRecordsets** collection. R
_expression_ An expression that returns a [DataRecordsets](./Visio.DataRecordsets.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.DataRecordsets.EventList.md b/api/Visio.DataRecordsets.EventList.md
index 84b1b7ddbb3..35e6da1ac83 100644
--- a/api/Visio.DataRecordsets.EventList.md
+++ b/api/Visio.DataRecordsets.EventList.md
@@ -26,7 +26,7 @@ Returns the **[EventList](Visio.EventList.md)** collection of the **DataRecords
_expression_ An expression that returns a [DataRecordsets](./Visio.DataRecordsets.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.DataRecordsets.GetLastDataError.md b/api/Visio.DataRecordsets.GetLastDataError.md
index cc29df8b572..7aac6355e46 100644
--- a/api/Visio.DataRecordsets.GetLastDataError.md
+++ b/api/Visio.DataRecordsets.GetLastDataError.md
@@ -30,13 +30,13 @@ Gets the Active X Data Objects (ADO) error code, ADO description, and data recor
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataErrorCode_|Required| **Long**|Out parameter. The ADO error code of the last error.|
| _DataErrorDescription_|Required| **String**|Out parameter. The ADO description of the last error.|
| _RecordsetID_|Required| **Long**|Out parameter. The ID of the data recordset that generated or triggered the error.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.DataRecordsets.Item.md b/api/Visio.DataRecordsets.Item.md
index df77d778a84..a086f97b5ea 100644
--- a/api/Visio.DataRecordsets.Item.md
+++ b/api/Visio.DataRecordsets.Item.md
@@ -30,11 +30,11 @@ Returns the **DataRecordset** object at the specified index position in the **D
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The index of the object to retrieve.|
-### Return Value
+### Return value
DataRecordset
diff --git a/api/Visio.DataRecordsets.ItemFromID.md b/api/Visio.DataRecordsets.ItemFromID.md
index 2cbf49869b3..dc7d09479eb 100644
--- a/api/Visio.DataRecordsets.ItemFromID.md
+++ b/api/Visio.DataRecordsets.ItemFromID.md
@@ -30,11 +30,11 @@ Returns a **DataRecordset** object from the **DataRecordsets** collection by us
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ID_|Required| **Long**|The unique ID of the **DataRecordset** object to retrieve.|
-### Return Value
+### Return value
DataRecordset
diff --git a/api/Visio.DataRecordsets.ObjectType.md b/api/Visio.DataRecordsets.ObjectType.md
index 65602b71e7b..098eae295b8 100644
--- a/api/Visio.DataRecordsets.ObjectType.md
+++ b/api/Visio.DataRecordsets.ObjectType.md
@@ -23,7 +23,7 @@ Returns **visObjTypeDataRecordsets** , the type of a **DataRecordsets** object.
_expression_ An expression that returns a [DataRecordsets](./Visio.DataRecordsets.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.DataRecordsets.Stat.md b/api/Visio.DataRecordsets.Stat.md
index 37ed51139b8..f3799d02953 100644
--- a/api/Visio.DataRecordsets.Stat.md
+++ b/api/Visio.DataRecordsets.Stat.md
@@ -26,7 +26,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [DataRecordsets](./Visio.DataRecordsets.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.DiagramServicesEnabled.md b/api/Visio.DiagramServicesEnabled.md
index 5cea73d94fd..1ad7a1c576b 100644
--- a/api/Visio.DiagramServicesEnabled.md
+++ b/api/Visio.DiagramServicesEnabled.md
@@ -23,7 +23,7 @@ Determines which, if any, diagram services are enabled for the document. Read/wr
_expression_ An expression that returns a '[Document](Visio.Document.md)' object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.DispScreenRes.md b/api/Visio.DispScreenRes.md
index bad2cc24461..673b7302666 100644
--- a/api/Visio.DispScreenRes.md
+++ b/api/Visio.DispScreenRes.md
@@ -20,7 +20,7 @@ Specifies the screen resolution for your Web page. Read/write.
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
VISWEB_DISP_RES
diff --git a/api/Visio.DisplayAbout.md b/api/Visio.DisplayAbout.md
index 6d8cef68598..b122bd2c056 100644
--- a/api/Visio.DisplayAbout.md
+++ b/api/Visio.DisplayAbout.md
@@ -20,7 +20,7 @@ Displays the **About Microsoft Visio Viewer** dialog box in the Microsoft Visio
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.DisplayContextMenu.md b/api/Visio.DisplayContextMenu.md
index bc80a438525..a44e5398c71 100644
--- a/api/Visio.DisplayContextMenu.md
+++ b/api/Visio.DisplayContextMenu.md
@@ -24,12 +24,12 @@ Displays the shortcut menu for Microsoft Visio Viewer at the specified screen co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ScreenX|Required| **Long**|The x-coordinate, in pixels, of the point where the menu should appear, relative to the origin of the frame of the screen.|
|ScreenY|Required| **Long**|The y-coordinate, in pixels, of the point where the menu should appear, relative to the origin of the frame of the screen.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.DisplayHelp.md b/api/Visio.DisplayHelp.md
index acdd5c2ea58..11ec3236bef 100644
--- a/api/Visio.DisplayHelp.md
+++ b/api/Visio.DisplayHelp.md
@@ -24,11 +24,11 @@ Displays the Help topic that has the specified ID in Microsoft Visio Viewer.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|TopicID|Required| **Long**|The ID of the Help topic to display.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.DisplayPropertyDialog.md b/api/Visio.DisplayPropertyDialog.md
index e57753ff553..55bf7a421cf 100644
--- a/api/Visio.DisplayPropertyDialog.md
+++ b/api/Visio.DisplayPropertyDialog.md
@@ -24,12 +24,12 @@ Displays the **Properties and Settings** dialog box at the specified screen coo
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ScreenX|Optional| **Variant**|The x-coordinate, in pixels, of the point where the dialog box should appear, relative to the origin of the frame of the screen.|
|ScreenY|Optional| **Variant**|The y-coordinate, in pixels, of the point where the dialog box should appear, relative to the origin of the frame of the screen.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.AddUndoUnit.md b/api/Visio.Document.AddUndoUnit.md
index e0a3636ce71..d08cfc7a5fb 100644
--- a/api/Visio.Document.AddUndoUnit.md
+++ b/api/Visio.Document.AddUndoUnit.md
@@ -27,11 +27,11 @@ Adds an object that supports the **IOleUndoUnit** or **IVBUndoUnit** interface
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pUndoUnit_|Required| **[UNKNOWN]**|A reference to an object that supports the **IOleUndoUnit** or **IVBUndoUnit** interface.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.AfterRemoveHiddenInformation.md b/api/Visio.Document.AfterRemoveHiddenInformation.md
index 1386a7d84b6..125a32d1e06 100644
--- a/api/Visio.Document.AfterRemoveHiddenInformation.md
+++ b/api/Visio.Document.AfterRemoveHiddenInformation.md
@@ -27,7 +27,7 @@ Occurs when hidden information is removed from the document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document from which hidden information has been removed.|
diff --git a/api/Visio.Document.AlternateNames.md b/api/Visio.Document.AlternateNames.md
index 9b133ae0dcf..b5e3a9de3ad 100644
--- a/api/Visio.Document.AlternateNames.md
+++ b/api/Visio.Document.AlternateNames.md
@@ -23,7 +23,7 @@ Gets or sets the alternate names for a document. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.Application.md b/api/Visio.Document.Application.md
index 441e2e87894..dfa004dde38 100644
--- a/api/Visio.Document.Application.md
+++ b/api/Visio.Document.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Document.AutoRecover.md b/api/Visio.Document.AutoRecover.md
index 986ec57177b..26e37f3860d 100644
--- a/api/Visio.Document.AutoRecover.md
+++ b/api/Visio.Document.AutoRecover.md
@@ -23,7 +23,7 @@ Determines whether an open document that has unsaved changes is copied when auto
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Document.BeforeDataRecordsetDelete.md b/api/Visio.Document.BeforeDataRecordsetDelete.md
index d7ad85dac1a..f743c6fa4cd 100644
--- a/api/Visio.Document.BeforeDataRecordsetDelete.md
+++ b/api/Visio.Document.BeforeDataRecordsetDelete.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'BeforeDataRecordsetDelete'(**_ByVal DataRecordset As
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordset_|Required| **[IVDATARECORDSET]**|The data recordset that is going to be deleted.|
diff --git a/api/Visio.Document.BeforeDocumentClose.md b/api/Visio.Document.BeforeDocumentClose.md
index cfbadcee7c3..fa9b5a21d4b 100644
--- a/api/Visio.Document.BeforeDocumentClose.md
+++ b/api/Visio.Document.BeforeDocumentClose.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeDocumentClose'(**_ByVal doc As [IVDOCUMENT]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be closed.|
diff --git a/api/Visio.Document.BeforeDocumentSave.md b/api/Visio.Document.BeforeDocumentSave.md
index f12f43d41fe..4f22ca4e048 100644
--- a/api/Visio.Document.BeforeDocumentSave.md
+++ b/api/Visio.Document.BeforeDocumentSave.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeDocumentSave'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be saved.|
diff --git a/api/Visio.Document.BeforeDocumentSaveAs.md b/api/Visio.Document.BeforeDocumentSaveAs.md
index bf0c172c594..b321a3297be 100644
--- a/api/Visio.Document.BeforeDocumentSaveAs.md
+++ b/api/Visio.Document.BeforeDocumentSaveAs.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeDocumentSaveAs'(**_ByVal doc As [IVDOCUMENT]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be saved.|
diff --git a/api/Visio.Document.BeforeMasterDelete.md b/api/Visio.Document.BeforeMasterDelete.md
index fbce59f9d4d..75d5b1d33fa 100644
--- a/api/Visio.Document.BeforeMasterDelete.md
+++ b/api/Visio.Document.BeforeMasterDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeMasterDelete'(**_ByVal Master As [IVMASTER]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that is going to be deleted.|
diff --git a/api/Visio.Document.BeforePageDelete.md b/api/Visio.Document.BeforePageDelete.md
index 7a1918b2a65..e7b8102da7a 100644
--- a/api/Visio.Document.BeforePageDelete.md
+++ b/api/Visio.Document.BeforePageDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforePageDelete'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that is going to be deleted.|
diff --git a/api/Visio.Document.BeforeSelectionDelete.md b/api/Visio.Document.BeforeSelectionDelete.md
index 1bee5f2fc73..3f09619cbae 100644
--- a/api/Visio.Document.BeforeSelectionDelete.md
+++ b/api/Visio.Document.BeforeSelectionDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeSelectionDelete'(**_ByVal Selection As [IVSELE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selected objects that are going to be deleted.|
diff --git a/api/Visio.Document.BeforeShapeTextEdit.md b/api/Visio.Document.BeforeShapeTextEdit.md
index 41f765cb868..0e7a98c364f 100644
--- a/api/Visio.Document.BeforeShapeTextEdit.md
+++ b/api/Visio.Document.BeforeShapeTextEdit.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeShapeTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be opened for text editing.|
diff --git a/api/Visio.Document.BeforeStyleDelete.md b/api/Visio.Document.BeforeStyleDelete.md
index 3a9a8c021f8..c7e3595ce8f 100644
--- a/api/Visio.Document.BeforeStyleDelete.md
+++ b/api/Visio.Document.BeforeStyleDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeStyleDelete'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that is going to be deleted.|
diff --git a/api/Visio.Document.BeginUndoScope.md b/api/Visio.Document.BeginUndoScope.md
index 5787340dc43..12b4de92752 100644
--- a/api/Visio.Document.BeginUndoScope.md
+++ b/api/Visio.Document.BeginUndoScope.md
@@ -27,11 +27,11 @@ Starts a transaction with a unique scope ID for an instance of Microsoft Visio.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _bstrUndoScopeName_|Required| **String**|The name of the scope; could appear in the Visio user interface.|
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Document.BottomMargin.md b/api/Visio.Document.BottomMargin.md
index 6c81ec4e2dd..c407cced22f 100644
--- a/api/Visio.Document.BottomMargin.md
+++ b/api/Visio.Document.BottomMargin.md
@@ -27,11 +27,11 @@ Specifies the bottom margin when printing the pages in a document. Read/write.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UnitsNameOrCode_|Optional| **Variant**|he units to use when retrieving or setting the margin value. Defaults to internal drawing units.|
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Document.BuildNumberCreated.md b/api/Visio.Document.BuildNumberCreated.md
index 6f411d614c6..2412634708e 100644
--- a/api/Visio.Document.BuildNumberCreated.md
+++ b/api/Visio.Document.BuildNumberCreated.md
@@ -23,7 +23,7 @@ Returns the build number of the instance used to create the document. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Document.BuildNumberEdited.md b/api/Visio.Document.BuildNumberEdited.md
index 53d3ded8b08..cc360840090 100644
--- a/api/Visio.Document.BuildNumberEdited.md
+++ b/api/Visio.Document.BuildNumberEdited.md
@@ -23,7 +23,7 @@ Returns the build number of the instance last used to edit the document. Read-on
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Document.CanCheckIn.md b/api/Visio.Document.CanCheckIn.md
index 03fb4130bc4..5d6fea2e3ab 100644
--- a/api/Visio.Document.CanCheckIn.md
+++ b/api/Visio.Document.CanCheckIn.md
@@ -23,7 +23,7 @@ Specifies whether a document can be checked into a Microsoft SharePoint Server c
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Document.CanUndoCheckOut.md b/api/Visio.Document.CanUndoCheckOut.md
index f87b6ab6e20..7f3e3a18aa5 100644
--- a/api/Visio.Document.CanUndoCheckOut.md
+++ b/api/Visio.Document.CanUndoCheckOut.md
@@ -23,7 +23,7 @@ Determines whether a Microsoft Visio document is checked out from a Microsoft Sh
_expression_ An expression that returns a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Document.Category.md b/api/Visio.Document.Category.md
index 6aa01e9ec92..a4fd41d8212 100644
--- a/api/Visio.Document.Category.md
+++ b/api/Visio.Document.Category.md
@@ -23,7 +23,7 @@ Gets or sets the value of a document's category, one of the document properties.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.CheckIn.md b/api/Visio.Document.CheckIn.md
index 13cf79a61e9..c3cbb0f582a 100644
--- a/api/Visio.Document.CheckIn.md
+++ b/api/Visio.Document.CheckIn.md
@@ -27,13 +27,13 @@ Returns a document from a local computer to a Microsoft SharePoint Server comput
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SaveChanges_|Optional| **Boolean**| **True** (non-zero) to save document changes before check-in; **False** (0) to check the document in without saving changes. The default is **True** .|
| _Comments_|Optional| **Variant**|Any comments to be stored with this revision of the document (applies only if _SaveChanges_ equals **True**).|
| _MakePublic_|Optional| **Boolean**| **True** to publish the document after check-in. This submits the document for the approval process or, if there is no approval routing for the document, a public version is created that is available to readers of the folder (applies only if _SaveChanges_ equals **True**); **False** leaves the document available only for private viewing. The default is **False** .|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.ClassID.md b/api/Visio.Document.ClassID.md
index 18c7d71dbf8..e10250ae8c9 100644
--- a/api/Visio.Document.ClassID.md
+++ b/api/Visio.Document.ClassID.md
@@ -23,7 +23,7 @@ Returns the class ID string of the container application in which the document i
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.Clean.md b/api/Visio.Document.Clean.md
index c281813439f..5856ade1356 100644
--- a/api/Visio.Document.Clean.md
+++ b/api/Visio.Document.Clean.md
@@ -27,7 +27,7 @@ Examines, reports, and repairs selected conditions in a document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nTargets_|Optional| **Variant**|Indicates which parts of the document to examine. See Remarks for possible values.|
| _nActions_|Optional| **Variant**|Indicates which conditions to detect. See Remarks for possible values.|
@@ -37,7 +37,7 @@ Examines, reports, and repairs selected conditions in a document.
| _bLogFileName_|Optional| **Variant**|Reserved for future use.|
| _nReserved_|Optional| **Variant**|Reserved for future use.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.ClearCustomMenus.md b/api/Visio.Document.ClearCustomMenus.md
index 97eca2d8481..2a2949d830e 100644
--- a/api/Visio.Document.ClearCustomMenus.md
+++ b/api/Visio.Document.ClearCustomMenus.md
@@ -23,7 +23,7 @@ Restores the built-in Microsoft Visio user interface.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.ClearCustomToolbars.md b/api/Visio.Document.ClearCustomToolbars.md
index 9f1171970c7..bdaf8c40bda 100644
--- a/api/Visio.Document.ClearCustomToolbars.md
+++ b/api/Visio.Document.ClearCustomToolbars.md
@@ -23,7 +23,7 @@ Restores the built-in Microsoft Visio user interface.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.ClearGestureFormatSheet.md b/api/Visio.Document.ClearGestureFormatSheet.md
index bd4066251ea..f584305c60f 100644
--- a/api/Visio.Document.ClearGestureFormatSheet.md
+++ b/api/Visio.Document.ClearGestureFormatSheet.md
@@ -23,7 +23,7 @@ Clears local formatting in a document's Gesture Format sheet.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.Close.md b/api/Visio.Document.Close.md
index 05f6efb6dd3..794a74c0717 100644
--- a/api/Visio.Document.Close.md
+++ b/api/Visio.Document.Close.md
@@ -23,7 +23,7 @@ Closes a document.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.Colors.md b/api/Visio.Document.Colors.md
index e5c7813df9f..4906f90ee81 100644
--- a/api/Visio.Document.Colors.md
+++ b/api/Visio.Document.Colors.md
@@ -23,7 +23,7 @@ Returns the **Colors** collection of a **Document** object. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Colors
diff --git a/api/Visio.Document.Company.md b/api/Visio.Document.Company.md
index 4a41a333c9c..7e8954d009f 100644
--- a/api/Visio.Document.Company.md
+++ b/api/Visio.Document.Company.md
@@ -23,7 +23,7 @@ Gets or sets the name of the company the document belongs to, one of the documen
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.ContainsWorkspaceEx.md b/api/Visio.Document.ContainsWorkspaceEx.md
index ca461e32c3e..08dcd46c90e 100644
--- a/api/Visio.Document.ContainsWorkspaceEx.md
+++ b/api/Visio.Document.ContainsWorkspaceEx.md
@@ -23,7 +23,7 @@ Gets or sets whether workspace information is saved with the document. Read/writ
_expression_ An expression that returns a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Document.ConvertToGroupCanceled.md b/api/Visio.Document.ConvertToGroupCanceled.md
index 25a3337a9f3..837948948cb 100644
--- a/api/Visio.Document.ConvertToGroupCanceled.md
+++ b/api/Visio.Document.ConvertToGroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConvertToGroupCanceled'(**_ByVal Selection As [IVSEL
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.Document.CopyPreviewPicture.md b/api/Visio.Document.CopyPreviewPicture.md
index 6dba05b0f8b..d6691a2faaf 100644
--- a/api/Visio.Document.CopyPreviewPicture.md
+++ b/api/Visio.Document.CopyPreviewPicture.md
@@ -27,11 +27,11 @@ Copies the preview picture from another document into the current document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pSourceDoc_|Required| **[IVDOCUMENT]**|The **Document** object whose preview picture you want to copy into this document.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.Creator.md b/api/Visio.Document.Creator.md
index 05b2e5dc3de..c45d879762a 100644
--- a/api/Visio.Document.Creator.md
+++ b/api/Visio.Document.Creator.md
@@ -23,7 +23,7 @@ Gets or sets the value of a document's author—one of the document's properties
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.CustomMenus.md b/api/Visio.Document.CustomMenus.md
index 3516035ac12..800d438820a 100644
--- a/api/Visio.Document.CustomMenus.md
+++ b/api/Visio.Document.CustomMenus.md
@@ -23,7 +23,7 @@ Gets a **UIObject** object that represents the current custom menus and acceler
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
UIObject
diff --git a/api/Visio.Document.CustomMenusFile.md b/api/Visio.Document.CustomMenusFile.md
index 62fdadc3666..c324f431147 100644
--- a/api/Visio.Document.CustomMenusFile.md
+++ b/api/Visio.Document.CustomMenusFile.md
@@ -23,7 +23,7 @@ Gets or sets the name of the file that defines custom menus and accelerators for
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.CustomToolbars.md b/api/Visio.Document.CustomToolbars.md
index 19fe5c7f143..5b6aa867786 100644
--- a/api/Visio.Document.CustomToolbars.md
+++ b/api/Visio.Document.CustomToolbars.md
@@ -23,7 +23,7 @@ Gets a **UIObject** object that represents the current custom toolbars and stat
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
UIObject
diff --git a/api/Visio.Document.CustomToolbarsFile.md b/api/Visio.Document.CustomToolbarsFile.md
index f827bd81e76..6630052a272 100644
--- a/api/Visio.Document.CustomToolbarsFile.md
+++ b/api/Visio.Document.CustomToolbarsFile.md
@@ -23,7 +23,7 @@ Returns or sets the name of the file that defines custom toolbars and status bar
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.CustomUI.md b/api/Visio.Document.CustomUI.md
index 9121a507916..c781fa2c365 100644
--- a/api/Visio.Document.CustomUI.md
+++ b/api/Visio.Document.CustomUI.md
@@ -23,7 +23,7 @@ Gets or sets the Ribbon XML string that is passed to the document to customize t
_expression_ A variable that represents a '[Document](Visio.Document.md)' object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.Document.DataRecordsetAdded.md b/api/Visio.Document.DataRecordsetAdded.md
index b0661864b97..398148960c4 100644
--- a/api/Visio.Document.DataRecordsetAdded.md
+++ b/api/Visio.Document.DataRecordsetAdded.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'DataRecordsetAdded'(**_ByVal DataRecordset As [IVDAT
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordset_|Required| **[IVDATARECORDSET]**|The data recordset that was added.|
diff --git a/api/Visio.Document.DataRecordsets.md b/api/Visio.Document.DataRecordsets.md
index 18e267e2fe2..74a025796bd 100644
--- a/api/Visio.Document.DataRecordsets.md
+++ b/api/Visio.Document.DataRecordsets.md
@@ -26,7 +26,7 @@ Returns the **DataRecordsets** collection contained in the document. Read-only.
_expression_ An expression that returns a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
DataRecordsets
diff --git a/api/Visio.Document.DefaultFillStyle.md b/api/Visio.Document.DefaultFillStyle.md
index 560a7321ff9..14581cb72ea 100644
--- a/api/Visio.Document.DefaultFillStyle.md
+++ b/api/Visio.Document.DefaultFillStyle.md
@@ -23,7 +23,7 @@ Gets or sets the default fill style of a document. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.DefaultGuideStyle.md b/api/Visio.Document.DefaultGuideStyle.md
index 6f020a66fd6..66838ca6a5a 100644
--- a/api/Visio.Document.DefaultGuideStyle.md
+++ b/api/Visio.Document.DefaultGuideStyle.md
@@ -23,7 +23,7 @@ Gets or sets the default guide style of a document. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.DefaultLineStyle.md b/api/Visio.Document.DefaultLineStyle.md
index 4f7e7b78c8f..6f05d0313d3 100644
--- a/api/Visio.Document.DefaultLineStyle.md
+++ b/api/Visio.Document.DefaultLineStyle.md
@@ -23,7 +23,7 @@ Gets or sets the default line style of a document. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.DefaultSavePath.md b/api/Visio.Document.DefaultSavePath.md
index 72991e122fc..65382a5fb09 100644
--- a/api/Visio.Document.DefaultSavePath.md
+++ b/api/Visio.Document.DefaultSavePath.md
@@ -23,7 +23,7 @@ Gets or sets the path to the location where Microsoft Visio saves the current do
_expression_ An expression that returns a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.DefaultStyle.md b/api/Visio.Document.DefaultStyle.md
index aa4ebda3bca..790ee01e2f7 100644
--- a/api/Visio.Document.DefaultStyle.md
+++ b/api/Visio.Document.DefaultStyle.md
@@ -23,7 +23,7 @@ Gets the default fill style of a document or sets the default fill, line, and te
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.DefaultTextStyle.md b/api/Visio.Document.DefaultTextStyle.md
index 8bac59c8ca7..bd0ff989f2f 100644
--- a/api/Visio.Document.DefaultTextStyle.md
+++ b/api/Visio.Document.DefaultTextStyle.md
@@ -23,7 +23,7 @@ Gets or sets the default text style of a document. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.DeleteSolutionXMLElement.md b/api/Visio.Document.DeleteSolutionXMLElement.md
index 36f93762f3b..47eb075ed5e 100644
--- a/api/Visio.Document.DeleteSolutionXMLElement.md
+++ b/api/Visio.Document.DeleteSolutionXMLElement.md
@@ -27,11 +27,11 @@ Deletes the named SolutionXML element.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ElementName_|Required| **String**|The case-sensitive name of the SolutionXML data element.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.Description.md b/api/Visio.Document.Description.md
index 75b1bd27052..8e273a5b02c 100644
--- a/api/Visio.Document.Description.md
+++ b/api/Visio.Document.Description.md
@@ -23,7 +23,7 @@ Gets or sets the description of a document, one of a document's properties. Read
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.DesignModeEntered.md b/api/Visio.Document.DesignModeEntered.md
index 1a464d21665..52a16b3bd7d 100644
--- a/api/Visio.Document.DesignModeEntered.md
+++ b/api/Visio.Document.DesignModeEntered.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DesignModeEntered'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to enter design mode.|
diff --git a/api/Visio.Document.DocumentChanged.md b/api/Visio.Document.DocumentChanged.md
index e13d6fe06e2..0f2548580f9 100644
--- a/api/Visio.Document.DocumentChanged.md
+++ b/api/Visio.Document.DocumentChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DocumentChanged'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document whose properties were changed.|
diff --git a/api/Visio.Document.DocumentCloseCanceled.md b/api/Visio.Document.DocumentCloseCanceled.md
index fbee2478116..5d249bb298c 100644
--- a/api/Visio.Document.DocumentCloseCanceled.md
+++ b/api/Visio.Document.DocumentCloseCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DocumentCloseCanceled'(**_ByVal doc As [IVDOCUMENT]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was going to be closed.|
diff --git a/api/Visio.Document.DocumentCreated.md b/api/Visio.Document.DocumentCreated.md
index 878561117ad..7f75b939d52 100644
--- a/api/Visio.Document.DocumentCreated.md
+++ b/api/Visio.Document.DocumentCreated.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DocumentCreated'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was created.|
diff --git a/api/Visio.Document.DocumentOpened.md b/api/Visio.Document.DocumentOpened.md
index 766ca10ac16..dd63be3b1f7 100644
--- a/api/Visio.Document.DocumentOpened.md
+++ b/api/Visio.Document.DocumentOpened.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DocumentOpened'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was opened.|
diff --git a/api/Visio.Document.DocumentSaved.md b/api/Visio.Document.DocumentSaved.md
index 0e89ca8dd60..bfb94856bad 100644
--- a/api/Visio.Document.DocumentSaved.md
+++ b/api/Visio.Document.DocumentSaved.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DocumentSaved'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was saved.|
diff --git a/api/Visio.Document.DocumentSavedAs.md b/api/Visio.Document.DocumentSavedAs.md
index 0cb34a46f8b..c2b41d7231b 100644
--- a/api/Visio.Document.DocumentSavedAs.md
+++ b/api/Visio.Document.DocumentSavedAs.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DocumentSavedAs'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was saved.|
diff --git a/api/Visio.Document.DocumentSheet.md b/api/Visio.Document.DocumentSheet.md
index 012a0d9e46e..9c29ba848f0 100644
--- a/api/Visio.Document.DocumentSheet.md
+++ b/api/Visio.Document.DocumentSheet.md
@@ -23,7 +23,7 @@ Returns a **Shape** object whose cells represent properties of the document. Re
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Document.Drop.md b/api/Visio.Document.Drop.md
index 2442394cd44..fc3de6d3c17 100644
--- a/api/Visio.Document.Drop.md
+++ b/api/Visio.Document.Drop.md
@@ -27,13 +27,13 @@ Creates a new **Master** object by dropping an object onto a receiving object s
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectToDrop_|Required| **[UNKNOWN]**|The object to drop. While this is typically a Visio object such as a **Master** , **Shape** , or **Selection** object, it can be any OLE object that provides an **IDataObject** interface.|
| _xPos_|Required| **Integer**|The x-coordinate at which to place the center of the shape's width or PinX.|
| _yPos_|Required| **Integer**|The y-coordinate at which to place the center of the shape's height or PinY.|
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Document.DynamicGridEnabled.md b/api/Visio.Document.DynamicGridEnabled.md
index 8ed6bff2df5..cb3df81efad 100644
--- a/api/Visio.Document.DynamicGridEnabled.md
+++ b/api/Visio.Document.DynamicGridEnabled.md
@@ -23,7 +23,7 @@ Determines whether the dynamic grid is enabled. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Document.EmailRoutingData.md b/api/Visio.Document.EmailRoutingData.md
index 32a1d4f6fcb..1a185d22a17 100644
--- a/api/Visio.Document.EmailRoutingData.md
+++ b/api/Visio.Document.EmailRoutingData.md
@@ -23,7 +23,7 @@ Returns e-mail routing data for a document. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Variant()
diff --git a/api/Visio.Document.EndUndoScope.md b/api/Visio.Document.EndUndoScope.md
index 634f41c13b5..49ad0178eb8 100644
--- a/api/Visio.Document.EndUndoScope.md
+++ b/api/Visio.Document.EndUndoScope.md
@@ -27,12 +27,12 @@ Ends or cancels a transaction that has a unique scope.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nScopeID_|Required| **Long**|The ID of the scope to close.|
| _bCommit_|Required| **Boolean**| flag indicating that the changes made during the scope should be accepted (**True**) or canceled (**False**).|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.EventList.md b/api/Visio.Document.EventList.md
index e8b5aa8245b..382e3796e7e 100644
--- a/api/Visio.Document.EventList.md
+++ b/api/Visio.Document.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Document.ExecuteLine.md b/api/Visio.Document.ExecuteLine.md
index 53f64c700c2..b1d2f51a3ed 100644
--- a/api/Visio.Document.ExecuteLine.md
+++ b/api/Visio.Document.ExecuteLine.md
@@ -27,11 +27,11 @@ Executes a line of Microsoft Visual Basic code.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Line_|Required| **String**|A string that will be interpreted as Microsoft Visual Basic for Applications (VBA) code.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.ExportAsFixedFormat.md b/api/Visio.Document.ExportAsFixedFormat.md
index 1df8db8fdf2..11c4425eef3 100644
--- a/api/Visio.Document.ExportAsFixedFormat.md
+++ b/api/Visio.Document.ExportAsFixedFormat.md
@@ -27,7 +27,7 @@ Exports a Microsoft Visio document as a file in a fixed format, either PDF or XP
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FixedFormat_|Required| **VisFixedFormatTypes**|The format type in which to export the document. See Remarks for possible values.|
| _OutputFileName_|Optional| **String**|The name and path of the file to which to output, enclosed in quotation marks.|
@@ -42,7 +42,7 @@ Exports a Microsoft Visio document as a file in a fixed format, either PDF or XP
| _UseISO19005_1_|Optional| **Boolean**|Whether the resulting document is compliant with ISO 19005-1 (PDF/A). The default is **False** .|
| _FixedFormatExtClass_|Optional| **[UNKNOWN]**|A pointer to a class that implements the **IMsoDocExporter** interface for purposes of creating custom fixed output. The default is a null pointer.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.FollowHyperlink.md b/api/Visio.Document.FollowHyperlink.md
index 71ff67d0ce7..e85761560be 100644
--- a/api/Visio.Document.FollowHyperlink.md
+++ b/api/Visio.Document.FollowHyperlink.md
@@ -27,7 +27,7 @@ Navigates to an arbitrary hyperlink.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Address_|Required| **String**|The address to which you want to navigate. If you pass an incorrect or non-existent path or filename for _Address_, Visio displays an error message.|
| _SubAddress_|Required| **String**|The secondary address to which you want to navigate; if you don't need this information, pass an empty string. If _Address_ is the full path of a Visio document that contains multiple pages, for example, you can use _SubAddress_ to specify the page.|
@@ -38,7 +38,7 @@ Navigates to an arbitrary hyperlink.
| _res2_|Optional| **Variant**|Unused.|
| _res3_|Optional| **Variant**|Unused.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.Fonts.md b/api/Visio.Document.Fonts.md
index ea1b29748b8..b166477b3b4 100644
--- a/api/Visio.Document.Fonts.md
+++ b/api/Visio.Document.Fonts.md
@@ -23,7 +23,7 @@ Returns the **Fonts** collection of a **Document** object. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Fonts
diff --git a/api/Visio.Document.FooterCenter.md b/api/Visio.Document.FooterCenter.md
index a247d551860..0ccb64e8750 100644
--- a/api/Visio.Document.FooterCenter.md
+++ b/api/Visio.Document.FooterCenter.md
@@ -23,7 +23,7 @@ Gets or sets the text string that appears in the center portion of a document's
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.FooterLeft.md b/api/Visio.Document.FooterLeft.md
index 31170cd2a98..bea02d68cc6 100644
--- a/api/Visio.Document.FooterLeft.md
+++ b/api/Visio.Document.FooterLeft.md
@@ -23,7 +23,7 @@ Gets or sets the text string that appears on the left side of a document's foote
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.FooterMargin.md b/api/Visio.Document.FooterMargin.md
index 4e8e203d5d7..b87875f8c63 100644
--- a/api/Visio.Document.FooterMargin.md
+++ b/api/Visio.Document.FooterMargin.md
@@ -27,11 +27,11 @@ Gets or sets the margin of a document's footer. Read/write.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UnitsNameOrCode_|Optional| **Variant**|The units to use when retrieving or setting the cell's value. Defaults to internal drawing units (inches).|
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Document.FooterRight.md b/api/Visio.Document.FooterRight.md
index dce9576adb9..d986c442c32 100644
--- a/api/Visio.Document.FooterRight.md
+++ b/api/Visio.Document.FooterRight.md
@@ -23,7 +23,7 @@ Gets or sets the text string that appears in the right portion of a document's f
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.FullBuildNumberCreated.md b/api/Visio.Document.FullBuildNumberCreated.md
index 3f19b5fb0ad..5b4c25638cf 100644
--- a/api/Visio.Document.FullBuildNumberCreated.md
+++ b/api/Visio.Document.FullBuildNumberCreated.md
@@ -23,7 +23,7 @@ Returns the full build number of the instance used to create the document. Read-
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Document.FullBuildNumberEdited.md b/api/Visio.Document.FullBuildNumberEdited.md
index 8fe1a761675..463a95e0b1a 100644
--- a/api/Visio.Document.FullBuildNumberEdited.md
+++ b/api/Visio.Document.FullBuildNumberEdited.md
@@ -23,7 +23,7 @@ Returns the full build number of the instance last used to edit the document. Re
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Document.FullName.md b/api/Visio.Document.FullName.md
index 35c00ed21c7..78fe8880ab0 100644
--- a/api/Visio.Document.FullName.md
+++ b/api/Visio.Document.FullName.md
@@ -23,7 +23,7 @@ Returns the name of a document, including the drive and path. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.GestureFormatSheet.md b/api/Visio.Document.GestureFormatSheet.md
index 1c250095648..cec1a50752b 100644
--- a/api/Visio.Document.GestureFormatSheet.md
+++ b/api/Visio.Document.GestureFormatSheet.md
@@ -23,7 +23,7 @@ Returns a reference to a document's Gesture Format sheet, which contains the lin
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Document.GetThemeNames.md b/api/Visio.Document.GetThemeNames.md
index 79c9448dec8..7c45f507f45 100644
--- a/api/Visio.Document.GetThemeNames.md
+++ b/api/Visio.Document.GetThemeNames.md
@@ -27,12 +27,12 @@ Returns a locale-specific array of names of themes contained in the document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _eType_|Required| **VisThemeTypes**|The type of the theme, an enumerated value from the **VisThemeTypes** enumeration. See Remarks for possible values.|
| _NameArray()_|Required| **String**|Out parameter. An array of locale-specific theme names returned by the method.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.GetThemeNamesU.md b/api/Visio.Document.GetThemeNamesU.md
index b920399217b..ba01754eba4 100644
--- a/api/Visio.Document.GetThemeNamesU.md
+++ b/api/Visio.Document.GetThemeNamesU.md
@@ -27,12 +27,12 @@ Returns a locale-independent array of names of themes contained in the document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _eType_|Required| **VisThemeTypes**|The type of the theme, an enumerated value from the **VisThemeTypes** enumeration. See Remarks for possible values.|
| _NameArray()_|Required| **String**|Out parameter. An array of locale-independent theme names returned by the method.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.GlueEnabled.md b/api/Visio.Document.GlueEnabled.md
index 0b9791d0fcf..9d8c83ce18f 100644
--- a/api/Visio.Document.GlueEnabled.md
+++ b/api/Visio.Document.GlueEnabled.md
@@ -23,7 +23,7 @@ Determines whether glue is enabled in the document. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Document.GlueSettings.md b/api/Visio.Document.GlueSettings.md
index 75cd5fac6fd..651401001ba 100644
--- a/api/Visio.Document.GlueSettings.md
+++ b/api/Visio.Document.GlueSettings.md
@@ -23,7 +23,7 @@ Determines the objects that shapes glue to when glue is enabled in the document.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
VisGlueSettings
diff --git a/api/Visio.Document.GroupCanceled.md b/api/Visio.Document.GroupCanceled.md
index d15c9faa8ba..9984c1a0318 100644
--- a/api/Visio.Document.GroupCanceled.md
+++ b/api/Visio.Document.GroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'GroupCanceled'(**_ByVal Selection As [IVSELECTION]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.Document.HeaderCenter.md b/api/Visio.Document.HeaderCenter.md
index c0fc687cbaf..2d02588ef55 100644
--- a/api/Visio.Document.HeaderCenter.md
+++ b/api/Visio.Document.HeaderCenter.md
@@ -23,7 +23,7 @@ Contains the text string that appears in the center portion of a document's head
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.HeaderFooterColor.md b/api/Visio.Document.HeaderFooterColor.md
index f4c45d4a302..0fe25c5a591 100644
--- a/api/Visio.Document.HeaderFooterColor.md
+++ b/api/Visio.Document.HeaderFooterColor.md
@@ -23,7 +23,7 @@ Specifies the color of the header and footer text. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
OLE_COLOR
diff --git a/api/Visio.Document.HeaderFooterFont.md b/api/Visio.Document.HeaderFooterFont.md
index c99a4c2d469..74955e77270 100644
--- a/api/Visio.Document.HeaderFooterFont.md
+++ b/api/Visio.Document.HeaderFooterFont.md
@@ -23,7 +23,7 @@ Specifies the font used for the header and footer text. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
IFontDisp
diff --git a/api/Visio.Document.HeaderLeft.md b/api/Visio.Document.HeaderLeft.md
index 82d8f24bb6d..a3dab667178 100644
--- a/api/Visio.Document.HeaderLeft.md
+++ b/api/Visio.Document.HeaderLeft.md
@@ -23,7 +23,7 @@ Gets or sets the text string that appears in the left portion of a document's he
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.HeaderMargin.md b/api/Visio.Document.HeaderMargin.md
index f9fbd83f58c..34bc20b032c 100644
--- a/api/Visio.Document.HeaderMargin.md
+++ b/api/Visio.Document.HeaderMargin.md
@@ -27,11 +27,11 @@ Gets or sets the margin of a document's header. Read/write.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UnitsNameOrCode_|Optional| **Variant**|The units to use when retrieving or setting the cell's value. Defaults to internal drawing units (inches).|
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Document.HeaderRight.md b/api/Visio.Document.HeaderRight.md
index 8c061936c34..fe61d5f425b 100644
--- a/api/Visio.Document.HeaderRight.md
+++ b/api/Visio.Document.HeaderRight.md
@@ -23,7 +23,7 @@ Gets or sets the text string that appears in the right portion of a document's h
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.HyperlinkBase.md b/api/Visio.Document.HyperlinkBase.md
index 9b45f128f92..25cf739bdab 100644
--- a/api/Visio.Document.HyperlinkBase.md
+++ b/api/Visio.Document.HyperlinkBase.md
@@ -23,7 +23,7 @@ Gets or sets the value of the **Hyperlink base** box in a document's **Properti
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.ID.md b/api/Visio.Document.ID.md
index 2d2c605e8fd..1676ebea2f6 100644
--- a/api/Visio.Document.ID.md
+++ b/api/Visio.Document.ID.md
@@ -23,7 +23,7 @@ Gets the ID of an object. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Document.InPlace.md b/api/Visio.Document.InPlace.md
index 0ed0ffab80d..7e51f0805d1 100644
--- a/api/Visio.Document.InPlace.md
+++ b/api/Visio.Document.InPlace.md
@@ -23,7 +23,7 @@ Specifies whether a document is open in place, or whether a document is being vi
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Document.Index.md b/api/Visio.Document.Index.md
index 34873ee7aaa..245030f6d00 100644
--- a/api/Visio.Document.Index.md
+++ b/api/Visio.Document.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of a **Document** object in the **Documents** collect
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Document.Keywords.md b/api/Visio.Document.Keywords.md
index a700d0c3c08..d55312bb39a 100644
--- a/api/Visio.Document.Keywords.md
+++ b/api/Visio.Document.Keywords.md
@@ -23,7 +23,7 @@ Gets or sets the value of the **Keywords** box in a document's **Properties** d
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.Language.md b/api/Visio.Document.Language.md
index 0321015056f..795ab02ffcd 100644
--- a/api/Visio.Document.Language.md
+++ b/api/Visio.Document.Language.md
@@ -23,7 +23,7 @@ Represents the language ID of the version of the Microsoft Visio instance repres
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Document.LeftMargin.md b/api/Visio.Document.LeftMargin.md
index e92d4ecc651..91c44832337 100644
--- a/api/Visio.Document.LeftMargin.md
+++ b/api/Visio.Document.LeftMargin.md
@@ -27,11 +27,11 @@ Specifies the left margin, which is used when printing. Read/write.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UnitsNameOrCode_|Optional| **Variant**|The units to use when retrieving or setting the margin value. Defaults to internal drawing units.|
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Document.MacrosEnabled.md b/api/Visio.Document.MacrosEnabled.md
index c8060b4a068..9daece1411d 100644
--- a/api/Visio.Document.MacrosEnabled.md
+++ b/api/Visio.Document.MacrosEnabled.md
@@ -23,7 +23,7 @@ Specifies whether you can execute macros and process events in a document's Micr
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Document.Manager.md b/api/Visio.Document.Manager.md
index 056a73ed2b8..51ec7413e20 100644
--- a/api/Visio.Document.Manager.md
+++ b/api/Visio.Document.Manager.md
@@ -23,7 +23,7 @@ Gets or sets the value of the **Manager** box in a document's **Properties** di
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.MasterAdded.md b/api/Visio.Document.MasterAdded.md
index a899bd92773..b4b5fc88fbd 100644
--- a/api/Visio.Document.MasterAdded.md
+++ b/api/Visio.Document.MasterAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MasterAdded'(**_ByVal Master As [IVMASTER]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that was added to the document.|
diff --git a/api/Visio.Document.MasterChanged.md b/api/Visio.Document.MasterChanged.md
index 1a4a2065012..76b65e250aa 100644
--- a/api/Visio.Document.MasterChanged.md
+++ b/api/Visio.Document.MasterChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MasterChanged'(**_ByVal Master As [IVMASTER]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master whose properties changed.|
diff --git a/api/Visio.Document.MasterDeleteCanceled.md b/api/Visio.Document.MasterDeleteCanceled.md
index 73669d2ae2a..b24f13583e3 100644
--- a/api/Visio.Document.MasterDeleteCanceled.md
+++ b/api/Visio.Document.MasterDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MasterDeleteCanceled'(**_ByVal Master As [IVMASTER]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that was going to be deleted.|
diff --git a/api/Visio.Document.MasterShortcuts.md b/api/Visio.Document.MasterShortcuts.md
index a1c76e706be..07e11eca03f 100644
--- a/api/Visio.Document.MasterShortcuts.md
+++ b/api/Visio.Document.MasterShortcuts.md
@@ -23,7 +23,7 @@ Returns the **MasterShortcuts** collection for a document stencil. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
MasterShortcuts
diff --git a/api/Visio.Document.Masters.md b/api/Visio.Document.Masters.md
index 2c61b9b2167..ebba0b1371c 100644
--- a/api/Visio.Document.Masters.md
+++ b/api/Visio.Document.Masters.md
@@ -23,7 +23,7 @@ Returns the **Masters** collection for a document's stencil. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Masters
diff --git a/api/Visio.Document.Mode.md b/api/Visio.Document.Mode.md
index 28f46886b35..634abe45107 100644
--- a/api/Visio.Document.Mode.md
+++ b/api/Visio.Document.Mode.md
@@ -23,7 +23,7 @@ Determines whether a document is in run mode or design mode. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
VisDocModeArgs
diff --git a/api/Visio.Document.Name.md b/api/Visio.Document.Name.md
index 19489edc40e..9275902acf2 100644
--- a/api/Visio.Document.Name.md
+++ b/api/Visio.Document.Name.md
@@ -23,7 +23,7 @@ Specifies the name of an object. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.OLEObjects.md b/api/Visio.Document.OLEObjects.md
index 89970cd2c30..08cfd46a81b 100644
--- a/api/Visio.Document.OLEObjects.md
+++ b/api/Visio.Document.OLEObjects.md
@@ -23,7 +23,7 @@ Returns the **OLEObjects** collection of a document. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
OLEObjects
diff --git a/api/Visio.Document.ObjectType.md b/api/Visio.Document.ObjectType.md
index b0686dbca5c..454801e9d43 100644
--- a/api/Visio.Document.ObjectType.md
+++ b/api/Visio.Document.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Document.OpenStencilWindow.md b/api/Visio.Document.OpenStencilWindow.md
index 86447ad8563..8ae1570a2ec 100644
--- a/api/Visio.Document.OpenStencilWindow.md
+++ b/api/Visio.Document.OpenStencilWindow.md
@@ -23,7 +23,7 @@ Opens a stencil window that shows the masters in the document.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.Document.PageAdded.md b/api/Visio.Document.PageAdded.md
index e80c9e7951a..44d01caf425 100644
--- a/api/Visio.Document.PageAdded.md
+++ b/api/Visio.Document.PageAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'PageAdded'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that was added.|
diff --git a/api/Visio.Document.PageChanged.md b/api/Visio.Document.PageChanged.md
index 7add67856e8..fedad1f52c3 100644
--- a/api/Visio.Document.PageChanged.md
+++ b/api/Visio.Document.PageChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'PageChanged'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that changed.|
diff --git a/api/Visio.Document.PageDeleteCanceled.md b/api/Visio.Document.PageDeleteCanceled.md
index 3a9d7317b65..36b0aefa806 100644
--- a/api/Visio.Document.PageDeleteCanceled.md
+++ b/api/Visio.Document.PageDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'PageDeleteCanceled'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that was going to be deleted.|
diff --git a/api/Visio.Document.Pages.md b/api/Visio.Document.Pages.md
index 671f35858f7..620cce41672 100644
--- a/api/Visio.Document.Pages.md
+++ b/api/Visio.Document.Pages.md
@@ -23,7 +23,7 @@ Returns the **Pages** collection for a document. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Pages
diff --git a/api/Visio.Document.PaperHeight.md b/api/Visio.Document.PaperHeight.md
index 5421c561987..98cf2c2b4f3 100644
--- a/api/Visio.Document.PaperHeight.md
+++ b/api/Visio.Document.PaperHeight.md
@@ -27,11 +27,11 @@ Returns the height of a document's printed page. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UnitsNameOrCode_|Required| **Variant**|The units to use when retrieving the paper height.|
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Document.PaperSize.md b/api/Visio.Document.PaperSize.md
index 0e21fd64277..b778afd2adf 100644
--- a/api/Visio.Document.PaperSize.md
+++ b/api/Visio.Document.PaperSize.md
@@ -23,7 +23,7 @@ Gets or sets the paper size of a document. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
VisPaperSizes
diff --git a/api/Visio.Document.PaperWidth.md b/api/Visio.Document.PaperWidth.md
index 6b830b01e7b..d0bb56c7650 100644
--- a/api/Visio.Document.PaperWidth.md
+++ b/api/Visio.Document.PaperWidth.md
@@ -27,11 +27,11 @@ Returns the width of a document's printed page. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UnitsNameOrCode_|Required| **Variant**|The units to use when setting or retrieving the paper width.|
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Document.ParseLine.md b/api/Visio.Document.ParseLine.md
index 0a97dbef029..86834ee2a50 100644
--- a/api/Visio.Document.ParseLine.md
+++ b/api/Visio.Document.ParseLine.md
@@ -27,11 +27,11 @@ Parses a line of Microsoft Visual Basic code.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Line_|Required| **String**|A string interpreted as Visual Basic code.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.Path.md b/api/Visio.Document.Path.md
index 9d0a4db8a3c..0b602a662db 100644
--- a/api/Visio.Document.Path.md
+++ b/api/Visio.Document.Path.md
@@ -23,7 +23,7 @@ Returns the drive and folder path of the Microsoft Visio document. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.PersistsEvents.md b/api/Visio.Document.PersistsEvents.md
index b4ff59d1eaf..fd7612f6c9f 100644
--- a/api/Visio.Document.PersistsEvents.md
+++ b/api/Visio.Document.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Document.PreviewPicture.md b/api/Visio.Document.PreviewPicture.md
index 6b2aa42c40b..43b6fd8974c 100644
--- a/api/Visio.Document.PreviewPicture.md
+++ b/api/Visio.Document.PreviewPicture.md
@@ -23,7 +23,7 @@ Gets or sets the preview picture shown in the **Open** dialog box and when you
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
IPictureDisp
diff --git a/api/Visio.Document.Print.md b/api/Visio.Document.Print.md
index 40d5513b86d..196c62caad0 100644
--- a/api/Visio.Document.Print.md
+++ b/api/Visio.Document.Print.md
@@ -23,7 +23,7 @@ Prints the contents of an object to the default printer.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.PrintCenteredH.md b/api/Visio.Document.PrintCenteredH.md
index 6fef28e673f..768094360f0 100644
--- a/api/Visio.Document.PrintCenteredH.md
+++ b/api/Visio.Document.PrintCenteredH.md
@@ -23,7 +23,7 @@ Indicates whether drawings are centered between the left and right edges of the
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Document.PrintCenteredV.md b/api/Visio.Document.PrintCenteredV.md
index 0f333606b56..9f751cf4e55 100644
--- a/api/Visio.Document.PrintCenteredV.md
+++ b/api/Visio.Document.PrintCenteredV.md
@@ -23,7 +23,7 @@ Indicates whether drawings are centered between the top and bottom edges of the
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Document.PrintFitOnPages.md b/api/Visio.Document.PrintFitOnPages.md
index 3547c7629f3..44771a29d16 100644
--- a/api/Visio.Document.PrintFitOnPages.md
+++ b/api/Visio.Document.PrintFitOnPages.md
@@ -23,7 +23,7 @@ Indicates whether drawings in a document are printed on a specified number of sh
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Document.PrintLandscape.md b/api/Visio.Document.PrintLandscape.md
index 204d3818e5c..c0c6f11ceba 100644
--- a/api/Visio.Document.PrintLandscape.md
+++ b/api/Visio.Document.PrintLandscape.md
@@ -23,7 +23,7 @@ Indicates whether a document's drawings are printed in landscape or portrait ori
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Document.PrintOut.md b/api/Visio.Document.PrintOut.md
index 91b80fdc7fc..c2bbc7cc749 100644
--- a/api/Visio.Document.PrintOut.md
+++ b/api/Visio.Document.PrintOut.md
@@ -27,7 +27,7 @@ Prints the contents of the active document and provides various printing options
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PrintRange_|Required| **VisPrintOutRange**|The range of document pages to be printed. See Remarks for possible values.|
| _FromPage_|Optional| **Long**| If PrintRange is **visPrintFromTo** , the first page in the range to be printed. The default is 1, which indicates the first page of the drawing.|
@@ -40,7 +40,7 @@ Prints the contents of the active document and provides various printing options
| _Collate_|Optional| **Boolean**| **True** to collate copies. **False** to not collate. The default is **False** .|
| _ColorAsBlack_|Optional| **Boolean**| **True** to print all colors as black to ensure that all shapes are visible in the printed drawing. This is useful if a monochrome printer translates very light colors in a drawing to white rather than a shade of gray. **False** to print colors normally. The default is **False** .|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.PrintPagesAcross.md b/api/Visio.Document.PrintPagesAcross.md
index b634c394470..92fdef6186b 100644
--- a/api/Visio.Document.PrintPagesAcross.md
+++ b/api/Visio.Document.PrintPagesAcross.md
@@ -23,7 +23,7 @@ Indicates the number of sheets of paper on which a drawing is printed horizontal
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Document.PrintPagesDown.md b/api/Visio.Document.PrintPagesDown.md
index 612fabbba27..07b79beacac 100644
--- a/api/Visio.Document.PrintPagesDown.md
+++ b/api/Visio.Document.PrintPagesDown.md
@@ -23,7 +23,7 @@ Gets or sets the number of sheets of paper on which a drawing is printed vertica
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Document.PrintScale.md b/api/Visio.Document.PrintScale.md
index 7716598080a..bdea0af4db3 100644
--- a/api/Visio.Document.PrintScale.md
+++ b/api/Visio.Document.PrintScale.md
@@ -23,7 +23,7 @@ Gets or sets how much drawings are reduced or enlarged when printed. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Document.Printer.md b/api/Visio.Document.Printer.md
index 99e8da3d308..fb1da02cb91 100644
--- a/api/Visio.Document.Printer.md
+++ b/api/Visio.Document.Printer.md
@@ -23,7 +23,7 @@ Specifies the name of the printer to use when printing the document. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.ProgID.md b/api/Visio.Document.ProgID.md
index 9c525c9b460..bc5d57b3d6f 100644
--- a/api/Visio.Document.ProgID.md
+++ b/api/Visio.Document.ProgID.md
@@ -23,7 +23,7 @@ Returns the programmatic identifier of a shape that represents an ActiveX contro
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.Protection.md b/api/Visio.Document.Protection.md
index ece57a74403..beb30140e82 100644
--- a/api/Visio.Document.Protection.md
+++ b/api/Visio.Document.Protection.md
@@ -27,11 +27,11 @@ Determines how a document is protected from user customization. Read/write.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _bstrPassword_|Optional| **Variant**|Not used.|
-### Return Value
+### Return value
VisProtection
diff --git a/api/Visio.Document.PurgeUndo.md b/api/Visio.Document.PurgeUndo.md
index da69e3ed61c..9b8c14c300d 100644
--- a/api/Visio.Document.PurgeUndo.md
+++ b/api/Visio.Document.PurgeUndo.md
@@ -23,7 +23,7 @@ Empties the Microsoft Visio queue of undo actions.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.QueryCancelConvertToGroup.md b/api/Visio.Document.QueryCancelConvertToGroup.md
index 21e7dfcda08..88c7f1bc40d 100644
--- a/api/Visio.Document.QueryCancelConvertToGroup.md
+++ b/api/Visio.Document.QueryCancelConvertToGroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelConvertToGroup'(**_ByVal Selection As [IV
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be converted to a group.|
diff --git a/api/Visio.Document.QueryCancelDocumentClose.md b/api/Visio.Document.QueryCancelDocumentClose.md
index ccb3a4d5b94..5c5ad42db55 100644
--- a/api/Visio.Document.QueryCancelDocumentClose.md
+++ b/api/Visio.Document.QueryCancelDocumentClose.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelDocumentClose'(**_ByVal doc As [IVDOCUMEN
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be closed.|
diff --git a/api/Visio.Document.QueryCancelGroup.md b/api/Visio.Document.QueryCancelGroup.md
index 730648ebb51..9333b54e859 100644
--- a/api/Visio.Document.QueryCancelGroup.md
+++ b/api/Visio.Document.QueryCancelGroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelGroup'(**_ByVal Selection As [IVSELECTION
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be grouped.|
diff --git a/api/Visio.Document.QueryCancelMasterDelete.md b/api/Visio.Document.QueryCancelMasterDelete.md
index 4b1e680beb9..ba3ea8795b8 100644
--- a/api/Visio.Document.QueryCancelMasterDelete.md
+++ b/api/Visio.Document.QueryCancelMasterDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelMasterDelete'(**_ByVal Master As [IVMASTE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that is going to be deleted.|
diff --git a/api/Visio.Document.QueryCancelPageDelete.md b/api/Visio.Document.QueryCancelPageDelete.md
index 03fd4ea2100..e4c32095397 100644
--- a/api/Visio.Document.QueryCancelPageDelete.md
+++ b/api/Visio.Document.QueryCancelPageDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelPageDelete'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that is going to be deleted.|
diff --git a/api/Visio.Document.QueryCancelSelectionDelete.md b/api/Visio.Document.QueryCancelSelectionDelete.md
index 4a863b8e42e..07a719d4adb 100644
--- a/api/Visio.Document.QueryCancelSelectionDelete.md
+++ b/api/Visio.Document.QueryCancelSelectionDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelSelectionDelete'(**_ByVal Selection As [I
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be deleted.|
diff --git a/api/Visio.Document.QueryCancelStyleDelete.md b/api/Visio.Document.QueryCancelStyleDelete.md
index 594fa8a46dd..9c6b6638b54 100644
--- a/api/Visio.Document.QueryCancelStyleDelete.md
+++ b/api/Visio.Document.QueryCancelStyleDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelStyleDelete'(**_ByVal Style As [IVSTYLE]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _style_|Required| **[IVSTYLE]**|The style that is going to be deleted.|
diff --git a/api/Visio.Document.QueryCancelUngroup.md b/api/Visio.Document.QueryCancelUngroup.md
index 58b65e2a971..268d914e7ab 100644
--- a/api/Visio.Document.QueryCancelUngroup.md
+++ b/api/Visio.Document.QueryCancelUngroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelUngroup'(**_ByVal Selection As [IVSELECTI
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be ungrouped.|
diff --git a/api/Visio.Document.ReadOnly.md b/api/Visio.Document.ReadOnly.md
index 090eebbca42..5310a49c44c 100644
--- a/api/Visio.Document.ReadOnly.md
+++ b/api/Visio.Document.ReadOnly.md
@@ -23,7 +23,7 @@ Indicates whether a file is open as read-only. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Document.RemoveHiddenInformation.md b/api/Visio.Document.RemoveHiddenInformation.md
index 2655d153a88..afc11fc010e 100644
--- a/api/Visio.Document.RemoveHiddenInformation.md
+++ b/api/Visio.Document.RemoveHiddenInformation.md
@@ -27,11 +27,11 @@ Removes hidden information, such as personal information and external data, from
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _VisRemoveHiddenInfoItems_|Required| **Long**|The items to be removed. A combination of one or more enumerated values from the **VisRemoveHiddenInfoItems** enumeration. See Remarks for possible values.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.RemovePersonalInformation.md b/api/Visio.Document.RemovePersonalInformation.md
index 6e170989332..4ee136cc1a8 100644
--- a/api/Visio.Document.RemovePersonalInformation.md
+++ b/api/Visio.Document.RemovePersonalInformation.md
@@ -23,7 +23,7 @@ Determines if personal information about a file is saved when the user saves the
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Document.RenameCurrentScope.md b/api/Visio.Document.RenameCurrentScope.md
index 0bd7c7c1bea..031b247de33 100644
--- a/api/Visio.Document.RenameCurrentScope.md
+++ b/api/Visio.Document.RenameCurrentScope.md
@@ -27,11 +27,11 @@ Renames the top-level open undo scope.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _bstrScopeName_|Required| **String**|The new name of the undo scope.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.RightMargin.md b/api/Visio.Document.RightMargin.md
index e51d04b6ac3..4f6fe5bc0e6 100644
--- a/api/Visio.Document.RightMargin.md
+++ b/api/Visio.Document.RightMargin.md
@@ -27,11 +27,11 @@ Specifies the right margin, which is used when printing. Read/write.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UnitsNameOrCode_|Optional| **Variant**|The units to use when retrieving or setting the margin value.|
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Document.RuleSetValidated.md b/api/Visio.Document.RuleSetValidated.md
index 5ad5f8ebff4..1ded898424a 100644
--- a/api/Visio.Document.RuleSetValidated.md
+++ b/api/Visio.Document.RuleSetValidated.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'RuleSetValidated'(**_ByVal RuleSet As ValidationRule
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RuleSet_|Required| **[ValidationRuleSet](Visio.ValidationRuleSet.md)**|The rule set that was validated.|
diff --git a/api/Visio.Document.RunModeEntered.md b/api/Visio.Document.RunModeEntered.md
index f4372044b82..d61ee12cf13 100644
--- a/api/Visio.Document.RunModeEntered.md
+++ b/api/Visio.Document.RunModeEntered.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'RunModeEntered'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that entered run mode.|
diff --git a/api/Visio.Document.Save.md b/api/Visio.Document.Save.md
index 2318d7f286f..c69fd6c5eae 100644
--- a/api/Visio.Document.Save.md
+++ b/api/Visio.Document.Save.md
@@ -23,7 +23,7 @@ Saves a document.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Document.SaveAs.md b/api/Visio.Document.SaveAs.md
index 1772bac6aa6..c79ddd3ba80 100644
--- a/api/Visio.Document.SaveAs.md
+++ b/api/Visio.Document.SaveAs.md
@@ -27,11 +27,11 @@ Saves a document and gives it a file name.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The file name for the document.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Document.SaveAsEx.md b/api/Visio.Document.SaveAsEx.md
index 6f012ee2fbe..e463cfa4e21 100644
--- a/api/Visio.Document.SaveAsEx.md
+++ b/api/Visio.Document.SaveAsEx.md
@@ -27,12 +27,12 @@ Saves a document with a file name using extra information passed in an argument.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The file name for the document.|
| _SaveFlags_|Required| **Integer**|How to save the file.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.SavePreviewMode.md b/api/Visio.Document.SavePreviewMode.md
index 51f319ffc0e..be29b5e2dad 100644
--- a/api/Visio.Document.SavePreviewMode.md
+++ b/api/Visio.Document.SavePreviewMode.md
@@ -23,7 +23,7 @@ Determines whether and how a preview picture is saved in a file. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
VisSavePreviewMode
diff --git a/api/Visio.Document.Saved.md b/api/Visio.Document.Saved.md
index a25584441a5..00171ef3691 100644
--- a/api/Visio.Document.Saved.md
+++ b/api/Visio.Document.Saved.md
@@ -23,7 +23,7 @@ Indicates whether a document has any unsaved changes. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Document.SelectionDeleteCanceled.md b/api/Visio.Document.SelectionDeleteCanceled.md
index 9122191ef55..1ff90f1e38d 100644
--- a/api/Visio.Document.SelectionDeleteCanceled.md
+++ b/api/Visio.Document.SelectionDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'SelectionDeleteCanceled'(**_ByVal Selection As [IVSE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be deleted.|
diff --git a/api/Visio.Document.ServerPublishOptions.md b/api/Visio.Document.ServerPublishOptions.md
index 6323552f09a..33f3f63c85b 100644
--- a/api/Visio.Document.ServerPublishOptions.md
+++ b/api/Visio.Document.ServerPublishOptions.md
@@ -23,7 +23,7 @@ Returns a **[ServerPublishOptions](Visio.ServerPublishOptions.md)** object that
_expression_ A variable that represents a '[Document](Visio.Document.md)' object.
-### Return Value
+### Return value
**ServerPublishOptions**
diff --git a/api/Visio.Document.SetCustomMenus.md b/api/Visio.Document.SetCustomMenus.md
index 64e3d4e2c12..e373d8ca8ce 100644
--- a/api/Visio.Document.SetCustomMenus.md
+++ b/api/Visio.Document.SetCustomMenus.md
@@ -27,11 +27,11 @@ Replaces the current built-in or custom menus of an application or document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MenusObject_|Required| **[IVUIOBJECT]**|An expression that returns a **UIObject** object that represents the new custom menus.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.SetCustomToolbars.md b/api/Visio.Document.SetCustomToolbars.md
index 1b46a29f122..0815d383c5d 100644
--- a/api/Visio.Document.SetCustomToolbars.md
+++ b/api/Visio.Document.SetCustomToolbars.md
@@ -27,11 +27,11 @@ Replaces the current built-in or custom toolbars of an application or document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ToolbarsObject_|Required| **[IVUIOBJECT]**|An expression that returns a **UIObject** object that represents the new custom toolbars.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.ShapeAdded.md b/api/Visio.Document.ShapeAdded.md
index 018fcf34599..0521509b23b 100644
--- a/api/Visio.Document.ShapeAdded.md
+++ b/api/Visio.Document.ShapeAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeAdded'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape or group of shapes that was added to the document.|
diff --git a/api/Visio.Document.ShapeDataGraphicChanged.md b/api/Visio.Document.ShapeDataGraphicChanged.md
index 04ae968eec1..39e3fece818 100644
--- a/api/Visio.Document.ShapeDataGraphicChanged.md
+++ b/api/Visio.Document.ShapeDataGraphicChanged.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'ShapeDataGraphicChanged'(**_ByVal Shape As IVSHAPE_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape to which the data graphic was applied or from which it was deleted.|
diff --git a/api/Visio.Document.ShapeExitedTextEdit.md b/api/Visio.Document.ShapeExitedTextEdit.md
index dee7667e601..8ab910b4de6 100644
--- a/api/Visio.Document.ShapeExitedTextEdit.md
+++ b/api/Visio.Document.ShapeExitedTextEdit.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeExitedTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that was closed for text editing.|
diff --git a/api/Visio.Document.ShapeParentChanged.md b/api/Visio.Document.ShapeParentChanged.md
index 3a5c75b217a..5efcd81d638 100644
--- a/api/Visio.Document.ShapeParentChanged.md
+++ b/api/Visio.Document.ShapeParentChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeParentChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose parent changed.|
diff --git a/api/Visio.Document.SharedWorkspace.md b/api/Visio.Document.SharedWorkspace.md
index 317fc7f4f34..86733e9d82c 100644
--- a/api/Visio.Document.SharedWorkspace.md
+++ b/api/Visio.Document.SharedWorkspace.md
@@ -23,7 +23,7 @@ Returns a Microsoft Office **SharedWorkspace** object that provides access to t
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.Document.SnapAngles.md b/api/Visio.Document.SnapAngles.md
index 6ba05719bdd..c9bb371c4c3 100644
--- a/api/Visio.Document.SnapAngles.md
+++ b/api/Visio.Document.SnapAngles.md
@@ -23,7 +23,7 @@ Determines the degree of the angle that is drawn when isometric angle lines is c
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Double()
diff --git a/api/Visio.Document.SnapEnabled.md b/api/Visio.Document.SnapEnabled.md
index 070e97eea95..edc4c520a7d 100644
--- a/api/Visio.Document.SnapEnabled.md
+++ b/api/Visio.Document.SnapEnabled.md
@@ -23,7 +23,7 @@ Determines whether snap is active in the document. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Document.SnapExtensions.md b/api/Visio.Document.SnapExtensions.md
index a6874e3f512..cd1847c2d2a 100644
--- a/api/Visio.Document.SnapExtensions.md
+++ b/api/Visio.Document.SnapExtensions.md
@@ -23,7 +23,7 @@ Determines the shape extensions that are active in a document. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
VisSnapExtensions
diff --git a/api/Visio.Document.SnapSettings.md b/api/Visio.Document.SnapSettings.md
index 05c2e880aed..79b4a62e0f7 100644
--- a/api/Visio.Document.SnapSettings.md
+++ b/api/Visio.Document.SnapSettings.md
@@ -23,7 +23,7 @@ Determines the objects that shapes snap to when snap is active in the document.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
VisSnapSettings
diff --git a/api/Visio.Document.SolutionXMLElement.md b/api/Visio.Document.SolutionXMLElement.md
index 1a119d40358..dff432868ea 100644
--- a/api/Visio.Document.SolutionXMLElement.md
+++ b/api/Visio.Document.SolutionXMLElement.md
@@ -27,11 +27,11 @@ Contains solution-specific, well-formed XML data stored with a document. Read/wr
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ElementName_|Required| **String**|The case-sensitive name of the SolutionXML data element.|
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.SolutionXMLElementCount.md b/api/Visio.Document.SolutionXMLElementCount.md
index 73ed4458280..ac5b69a8872 100644
--- a/api/Visio.Document.SolutionXMLElementCount.md
+++ b/api/Visio.Document.SolutionXMLElementCount.md
@@ -23,7 +23,7 @@ Returns the number of SolutionXML elements in a document. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Document.SolutionXMLElementExists.md b/api/Visio.Document.SolutionXMLElementExists.md
index 81340f2880d..1eb9a8fdf48 100644
--- a/api/Visio.Document.SolutionXMLElementExists.md
+++ b/api/Visio.Document.SolutionXMLElementExists.md
@@ -27,11 +27,11 @@ Indicates whether a named SolutionXML element exists in the document. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ElementName_|Required| **String**|The case-sensitive name of the SolutionXML element.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Document.SolutionXMLElementName.md b/api/Visio.Document.SolutionXMLElementName.md
index d27a06c2b06..a8f4af46b98 100644
--- a/api/Visio.Document.SolutionXMLElementName.md
+++ b/api/Visio.Document.SolutionXMLElementName.md
@@ -27,11 +27,11 @@ Returns the name of the SolutionXML element. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The index of the SolutionXML element in the document.|
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.Stat.md b/api/Visio.Document.Stat.md
index af036edc35b..863fd074b85 100644
--- a/api/Visio.Document.Stat.md
+++ b/api/Visio.Document.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Document.StyleAdded.md b/api/Visio.Document.StyleAdded.md
index 4df3cf05c9e..e0838fa6d9d 100644
--- a/api/Visio.Document.StyleAdded.md
+++ b/api/Visio.Document.StyleAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'StyleAdded'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that was added to the document.|
diff --git a/api/Visio.Document.StyleChanged.md b/api/Visio.Document.StyleChanged.md
index d18ba72b8ff..2128bbbd939 100644
--- a/api/Visio.Document.StyleChanged.md
+++ b/api/Visio.Document.StyleChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'StyleChanged'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _style_|Required| **[IVSTYLE]**|The style that changed.|
diff --git a/api/Visio.Document.StyleDeleteCanceled.md b/api/Visio.Document.StyleDeleteCanceled.md
index 0abfc95c8d2..af94d7c1361 100644
--- a/api/Visio.Document.StyleDeleteCanceled.md
+++ b/api/Visio.Document.StyleDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'StyleDeleteCanceled'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that was going to be deleted.|
diff --git a/api/Visio.Document.Styles.md b/api/Visio.Document.Styles.md
index 0b619f00771..89d113cefe2 100644
--- a/api/Visio.Document.Styles.md
+++ b/api/Visio.Document.Styles.md
@@ -23,7 +23,7 @@ Returns the **Styles** collection for a document. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Styles
diff --git a/api/Visio.Document.Subject.md b/api/Visio.Document.Subject.md
index 7299a4688fe..25c16e8b24e 100644
--- a/api/Visio.Document.Subject.md
+++ b/api/Visio.Document.Subject.md
@@ -23,7 +23,7 @@ Gets or sets the value of the **Subject** field in a document's properties. Rea
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.Sync.md b/api/Visio.Document.Sync.md
index 984e19b1220..7b8b52886e8 100644
--- a/api/Visio.Document.Sync.md
+++ b/api/Visio.Document.Sync.md
@@ -23,7 +23,7 @@ Returns a Microsoft Office **Sync** object that provides information about the
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.Document.Template.md b/api/Visio.Document.Template.md
index f87f2dca9f9..af980592a93 100644
--- a/api/Visio.Document.Template.md
+++ b/api/Visio.Document.Template.md
@@ -23,7 +23,7 @@ Returns the name of the template from which the document was created. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Document.Time.md b/api/Visio.Document.Time.md
index f38c617af18..ab61ba01724 100644
--- a/api/Visio.Document.Time.md
+++ b/api/Visio.Document.Time.md
@@ -23,7 +23,7 @@ Returns the most recently recorded date and time. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Date
diff --git a/api/Visio.Document.TimeCreated.md b/api/Visio.Document.TimeCreated.md
index 2205bbd7321..62119abc9c0 100644
--- a/api/Visio.Document.TimeCreated.md
+++ b/api/Visio.Document.TimeCreated.md
@@ -23,7 +23,7 @@ Returns the date and time the document was created. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Date
diff --git a/api/Visio.Document.TimeEdited.md b/api/Visio.Document.TimeEdited.md
index 7a1ef1c0485..c3776cf4f57 100644
--- a/api/Visio.Document.TimeEdited.md
+++ b/api/Visio.Document.TimeEdited.md
@@ -23,7 +23,7 @@ Returns the date and time the document was last edited. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Date
diff --git a/api/Visio.Document.TimePrinted.md b/api/Visio.Document.TimePrinted.md
index 8173cae86b8..40eafc63d2e 100644
--- a/api/Visio.Document.TimePrinted.md
+++ b/api/Visio.Document.TimePrinted.md
@@ -23,7 +23,7 @@ Returns the date and time the document was last printed. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Date
diff --git a/api/Visio.Document.TimeSaved.md b/api/Visio.Document.TimeSaved.md
index 5e7a88521f3..14376f8659e 100644
--- a/api/Visio.Document.TimeSaved.md
+++ b/api/Visio.Document.TimeSaved.md
@@ -23,7 +23,7 @@ Returns the date and time the document was last saved. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Date
diff --git a/api/Visio.Document.Title.md b/api/Visio.Document.Title.md
index 542d711e938..6f4e72a3404 100644
--- a/api/Visio.Document.Title.md
+++ b/api/Visio.Document.Title.md
@@ -23,7 +23,7 @@ Gets or sets the value of the **Title** field in a document's properties. Read/
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.Document.TopMargin.md b/api/Visio.Document.TopMargin.md
index caed7d70dcf..0b71928bf4f 100644
--- a/api/Visio.Document.TopMargin.md
+++ b/api/Visio.Document.TopMargin.md
@@ -27,11 +27,11 @@ Specifies the top margin when printing a document. Read/write.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UnitsNameOrCode_|Optional| **Variant**|The units to use when retrieving or setting the margin value.|
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Document.Type.md b/api/Visio.Document.Type.md
index 2d01d0cb061..0bb27969d60 100644
--- a/api/Visio.Document.Type.md
+++ b/api/Visio.Document.Type.md
@@ -23,7 +23,7 @@ Returns the type of the **Document** object. Read-only.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
VisDocumentTypes
diff --git a/api/Visio.Document.UndoCheckOut.md b/api/Visio.Document.UndoCheckOut.md
index a73bbfa6d55..5f453197fa4 100644
--- a/api/Visio.Document.UndoCheckOut.md
+++ b/api/Visio.Document.UndoCheckOut.md
@@ -23,7 +23,7 @@ Closes a Microsoft Visio document checked out from a Microsoft SharePoint Server
_expression_ An expression that returns a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Document.UndoEnabled.md b/api/Visio.Document.UndoEnabled.md
index 94487d0d19f..b5f1d2f1ee4 100644
--- a/api/Visio.Document.UndoEnabled.md
+++ b/api/Visio.Document.UndoEnabled.md
@@ -23,7 +23,7 @@ Determines whether undo information is maintained in memory. Read/write.
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Document.UngroupCanceled.md b/api/Visio.Document.UngroupCanceled.md
index 18121aefc5b..de28bc10d5a 100644
--- a/api/Visio.Document.UngroupCanceled.md
+++ b/api/Visio.Document.UngroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'UngroupCanceled'(**_ByVal Selection As [IVSELECTION]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be ungrouped.|
diff --git a/api/Visio.Document.VBProject.md b/api/Visio.Document.VBProject.md
index f9d831179bf..207fdfb11ac 100644
--- a/api/Visio.Document.VBProject.md
+++ b/api/Visio.Document.VBProject.md
@@ -23,7 +23,7 @@ Returns an automation object that you can use to control the Microsoft Visual Ba
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.Document.VBProjectData.md b/api/Visio.Document.VBProjectData.md
index 2d42c5ebfbb..60ef6d7a01d 100644
--- a/api/Visio.Document.VBProjectData.md
+++ b/api/Visio.Document.VBProjectData.md
@@ -23,7 +23,7 @@ Returns the Microsoft Visual Basic project data stored with a document. Read-onl
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
Byte()
diff --git a/api/Visio.Document.Validation.md b/api/Visio.Document.Validation.md
index edb0a985fb0..99f23cd6c66 100644
--- a/api/Visio.Document.Validation.md
+++ b/api/Visio.Document.Validation.md
@@ -23,7 +23,7 @@ Returns the **[Validation](Visio.Validation.md)** object that is associated wit
_expression_ A variable that represents a '[Document](Visio.Document.md)' object.
-### Return Value
+### Return value
**Validation**
diff --git a/api/Visio.Document.Version.md b/api/Visio.Document.Version.md
index 64133156a32..358895d339d 100644
--- a/api/Visio.Document.Version.md
+++ b/api/Visio.Document.Version.md
@@ -23,7 +23,7 @@ Gets the version of a saved document or sets the version in which to save a docu
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
VisDocVersions
diff --git a/api/Visio.Document.ZoomBehavior.md b/api/Visio.Document.ZoomBehavior.md
index b52ba13535f..47a4109a5f9 100644
--- a/api/Visio.Document.ZoomBehavior.md
+++ b/api/Visio.Document.ZoomBehavior.md
@@ -23,7 +23,7 @@ Determines the zoom behavior for a Microsoft Visio document or window. Read/writ
_expression_ A variable that represents a [Document](./Visio.Document.md) object.
-### Return Value
+### Return value
VisZoomBehavior
diff --git a/api/Visio.DocumentLoaded.md b/api/Visio.DocumentLoaded.md
index b8e69be9641..f7798f47b4a 100644
--- a/api/Visio.DocumentLoaded.md
+++ b/api/Visio.DocumentLoaded.md
@@ -20,7 +20,7 @@ Gets a value that indicates whether a document is loaded in Microsoft Visio View
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.Documents.Add.md b/api/Visio.Documents.Add.md
index 55c43834a9b..55a1e72adb6 100644
--- a/api/Visio.Documents.Add.md
+++ b/api/Visio.Documents.Add.md
@@ -27,11 +27,11 @@ Adds a new **Document** object to the **Documents** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The type or file name of the document to add; if you do not include a path, Visio searches the folder or folders designated in the ** Application** object's **TemplatePaths** property and all published templates, including published third-party templates.|
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Documents.AddEx.md b/api/Visio.Documents.AddEx.md
index 128ea205838..3071c917105 100644
--- a/api/Visio.Documents.AddEx.md
+++ b/api/Visio.Documents.AddEx.md
@@ -27,14 +27,14 @@ Adds a new stencil or drawing to the **Documents** collection, while permitting
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The type or file name of the document to add; if you do not include a path, Microsoft Visio searches the folder or folders designated in the ** Application** object's **TemplatePaths** property and all published templates, including published third-party templates.|
| _MeasurementSystem_|Optional| **VisMeasurementSystem**|The measurement units to use in the new document. See Remarks for possible values.|
| _Flags_|Optional| **Long**|Flags that indicate how to open the new document. See Remarks for possible values.|
| _LangID_|Optional| **Long**|The language ID for the document. See Remarks.|
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Documents.AfterRemoveHiddenInformation.md b/api/Visio.Documents.AfterRemoveHiddenInformation.md
index ed284411890..6f46c89e952 100644
--- a/api/Visio.Documents.AfterRemoveHiddenInformation.md
+++ b/api/Visio.Documents.AfterRemoveHiddenInformation.md
@@ -27,7 +27,7 @@ Occurs when hidden information is removed from the document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document from which hidden information has been removed.|
diff --git a/api/Visio.Documents.Application.md b/api/Visio.Documents.Application.md
index cbc762e6ae9..27cba64c451 100644
--- a/api/Visio.Documents.Application.md
+++ b/api/Visio.Documents.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Documents](./Visio.Documents.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Documents.BeforeDataRecordsetDelete.md b/api/Visio.Documents.BeforeDataRecordsetDelete.md
index bfebf1fca39..b7c95011707 100644
--- a/api/Visio.Documents.BeforeDataRecordsetDelete.md
+++ b/api/Visio.Documents.BeforeDataRecordsetDelete.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'BeforeDataRecordsetDelete'(**_ByVal DataRecordset As
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordset_|Required| **[IVDATARECORDSET]**|The data recordset that is going to be deleted.|
diff --git a/api/Visio.Documents.BeforeDocumentClose.md b/api/Visio.Documents.BeforeDocumentClose.md
index 54cb6c79ce2..1d606f93feb 100644
--- a/api/Visio.Documents.BeforeDocumentClose.md
+++ b/api/Visio.Documents.BeforeDocumentClose.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeDocumentClose'(**_ByVal doc As [IVDOCUMENT]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be closed.|
diff --git a/api/Visio.Documents.BeforeDocumentSave.md b/api/Visio.Documents.BeforeDocumentSave.md
index 6fcfb7f65f2..897b21a8de4 100644
--- a/api/Visio.Documents.BeforeDocumentSave.md
+++ b/api/Visio.Documents.BeforeDocumentSave.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeDocumentSave'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be saved.|
diff --git a/api/Visio.Documents.BeforeDocumentSaveAs.md b/api/Visio.Documents.BeforeDocumentSaveAs.md
index e42902ed1e9..dd37c68a322 100644
--- a/api/Visio.Documents.BeforeDocumentSaveAs.md
+++ b/api/Visio.Documents.BeforeDocumentSaveAs.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeDocumentSaveAs'(**_ByVal doc As [IVDOCUMENT]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be saved.|
diff --git a/api/Visio.Documents.BeforeMasterDelete.md b/api/Visio.Documents.BeforeMasterDelete.md
index 0f5acbdebf5..7b5250a05a5 100644
--- a/api/Visio.Documents.BeforeMasterDelete.md
+++ b/api/Visio.Documents.BeforeMasterDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeMasterDelete'(**_ByVal Master As [IVMASTER]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that is going to be deleted.|
diff --git a/api/Visio.Documents.BeforePageDelete.md b/api/Visio.Documents.BeforePageDelete.md
index 327d5e40f1d..810bcae3378 100644
--- a/api/Visio.Documents.BeforePageDelete.md
+++ b/api/Visio.Documents.BeforePageDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforePageDelete'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that is going to be deleted.|
diff --git a/api/Visio.Documents.BeforeSelectionDelete.md b/api/Visio.Documents.BeforeSelectionDelete.md
index 737640ce9be..bc0de6077e8 100644
--- a/api/Visio.Documents.BeforeSelectionDelete.md
+++ b/api/Visio.Documents.BeforeSelectionDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeSelectionDelete'(**_ByVal Selection As [IVSELE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selected objects that are going to be deleted.|
diff --git a/api/Visio.Documents.BeforeShapeDelete.md b/api/Visio.Documents.BeforeShapeDelete.md
index d147cbadf47..bdf813c485d 100644
--- a/api/Visio.Documents.BeforeShapeDelete.md
+++ b/api/Visio.Documents.BeforeShapeDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeShapeDelete'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be deleted.|
diff --git a/api/Visio.Documents.BeforeShapeTextEdit.md b/api/Visio.Documents.BeforeShapeTextEdit.md
index b38d8144810..9ebb0339538 100644
--- a/api/Visio.Documents.BeforeShapeTextEdit.md
+++ b/api/Visio.Documents.BeforeShapeTextEdit.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeShapeTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be opened for text editing.|
diff --git a/api/Visio.Documents.BeforeStyleDelete.md b/api/Visio.Documents.BeforeStyleDelete.md
index b76496e3962..9a92fa922a5 100644
--- a/api/Visio.Documents.BeforeStyleDelete.md
+++ b/api/Visio.Documents.BeforeStyleDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeStyleDelete'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that is going to be deleted.|
diff --git a/api/Visio.Documents.CalloutRelationshipAdded.md b/api/Visio.Documents.CalloutRelationshipAdded.md
index b9de4655764..09b9fb416d2 100644
--- a/api/Visio.Documents.CalloutRelationshipAdded.md
+++ b/api/Visio.Documents.CalloutRelationshipAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'CalloutRelationshipAdded'(**_By Val ShapePair As Rel
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the new callout shape-pair relationship.|
diff --git a/api/Visio.Documents.CalloutRelationshipDeleted.md b/api/Visio.Documents.CalloutRelationshipDeleted.md
index 88e14a9c068..bb349eeb224 100644
--- a/api/Visio.Documents.CalloutRelationshipDeleted.md
+++ b/api/Visio.Documents.CalloutRelationshipDeleted.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'CalloutRelationshipDeleted'(**_By Val ShapePair As R
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the callout shape pair relationship.|
diff --git a/api/Visio.Documents.CanCheckOut.md b/api/Visio.Documents.CanCheckOut.md
index 54eb3b8080c..52cf5e83e99 100644
--- a/api/Visio.Documents.CanCheckOut.md
+++ b/api/Visio.Documents.CanCheckOut.md
@@ -27,11 +27,11 @@ Specifies whether a document can be checked out from a Microsoft SharePoint Serv
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The server path and name of the file.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Documents.CellChanged.md b/api/Visio.Documents.CellChanged.md
index 6c850547248..4243a381e01 100644
--- a/api/Visio.Documents.CellChanged.md
+++ b/api/Visio.Documents.CellChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'CellChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose value has changed.|
diff --git a/api/Visio.Documents.CheckOut.md b/api/Visio.Documents.CheckOut.md
index f556e40841b..493f0142629 100644
--- a/api/Visio.Documents.CheckOut.md
+++ b/api/Visio.Documents.CheckOut.md
@@ -27,11 +27,11 @@ Marks a specified document as checked out and assigns edit privileges to the cur
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The server path and name of the file.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Documents.ConnectionsAdded.md b/api/Visio.Documents.ConnectionsAdded.md
index e9064c9a03d..9961a05844f 100644
--- a/api/Visio.Documents.ConnectionsAdded.md
+++ b/api/Visio.Documents.ConnectionsAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConnectionsAdded'(**_ByVal Connects As [IVCONNECTS]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Connects_|Required| **[IVCONNECTS]**|The connections that were established.|
diff --git a/api/Visio.Documents.ConnectionsDeleted.md b/api/Visio.Documents.ConnectionsDeleted.md
index fd17428fc4f..bfcbba5c1dd 100644
--- a/api/Visio.Documents.ConnectionsDeleted.md
+++ b/api/Visio.Documents.ConnectionsDeleted.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConnectionsDeleted'(**_ByVal Connects As [IVCONNECTS
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Connects_|Required| **[IVCONNECTS]**|The connections that have been removed.|
diff --git a/api/Visio.Documents.ContainerRelationshipAdded.md b/api/Visio.Documents.ContainerRelationshipAdded.md
index 67db3a45bbf..4451dec7d97 100644
--- a/api/Visio.Documents.ContainerRelationshipAdded.md
+++ b/api/Visio.Documents.ContainerRelationshipAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ContainerRelationshipAdded'(**_By Val ShapePair As R
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the new container shape-pair relationship.|
diff --git a/api/Visio.Documents.ContainerRelationshipDeleted.md b/api/Visio.Documents.ContainerRelationshipDeleted.md
index 4ece7c10413..6bf4ac6b6e4 100644
--- a/api/Visio.Documents.ContainerRelationshipDeleted.md
+++ b/api/Visio.Documents.ContainerRelationshipDeleted.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ContainerRelationshipDeleted'(**_By Val ShapePair As
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the container shape-pair relationship.|
diff --git a/api/Visio.Documents.ConvertToGroupCanceled.md b/api/Visio.Documents.ConvertToGroupCanceled.md
index 4232a6caf37..e9051279692 100644
--- a/api/Visio.Documents.ConvertToGroupCanceled.md
+++ b/api/Visio.Documents.ConvertToGroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConvertToGroupCanceled'(**_ByVal Selection As [IVSEL
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.Documents.Count.md b/api/Visio.Documents.Count.md
index 6aebdca20a7..c28b3d827e8 100644
--- a/api/Visio.Documents.Count.md
+++ b/api/Visio.Documents.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Documents](./Visio.Documents.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Documents.DataRecordsetAdded.md b/api/Visio.Documents.DataRecordsetAdded.md
index 3391d26cbc2..9680c828d9e 100644
--- a/api/Visio.Documents.DataRecordsetAdded.md
+++ b/api/Visio.Documents.DataRecordsetAdded.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'DataRecordsetAdded'(**_ByVal DataRecordset As [IVDAT
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordset_|Required| **[IVDATARECORDSET]**|The data recordset that was added.|
diff --git a/api/Visio.Documents.DataRecordsetChanged.md b/api/Visio.Documents.DataRecordsetChanged.md
index 48064ade0b5..c73da0f7424 100644
--- a/api/Visio.Documents.DataRecordsetChanged.md
+++ b/api/Visio.Documents.DataRecordsetChanged.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'DataRecordsetChanged'(**_ByVal DataRecordsetChanged
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetChanged_|Required| **[IVDATARECORDSETCHANGEDEVENT]**|The data recordset that changed.|
diff --git a/api/Visio.Documents.DesignModeEntered.md b/api/Visio.Documents.DesignModeEntered.md
index 1f22b1b7931..707f6a75e80 100644
--- a/api/Visio.Documents.DesignModeEntered.md
+++ b/api/Visio.Documents.DesignModeEntered.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DesignModeEntered'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to enter design mode.|
diff --git a/api/Visio.Documents.DocumentChanged.md b/api/Visio.Documents.DocumentChanged.md
index fca851059e2..66c21012182 100644
--- a/api/Visio.Documents.DocumentChanged.md
+++ b/api/Visio.Documents.DocumentChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DocumentChanged'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document whose properties were changed.|
diff --git a/api/Visio.Documents.DocumentCloseCanceled.md b/api/Visio.Documents.DocumentCloseCanceled.md
index a67b684d11e..2c97b5156f7 100644
--- a/api/Visio.Documents.DocumentCloseCanceled.md
+++ b/api/Visio.Documents.DocumentCloseCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DocumentCloseCanceled'(**_ByVal doc As [IVDOCUMENT]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was going to be closed.|
diff --git a/api/Visio.Documents.DocumentCreated.md b/api/Visio.Documents.DocumentCreated.md
index 47e217bd530..cb62634007e 100644
--- a/api/Visio.Documents.DocumentCreated.md
+++ b/api/Visio.Documents.DocumentCreated.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DocumentCreated'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was created.|
diff --git a/api/Visio.Documents.DocumentOpened.md b/api/Visio.Documents.DocumentOpened.md
index 25881d4d0cb..2dfe3975c83 100644
--- a/api/Visio.Documents.DocumentOpened.md
+++ b/api/Visio.Documents.DocumentOpened.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DocumentOpened'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was opened.|
diff --git a/api/Visio.Documents.DocumentSaved.md b/api/Visio.Documents.DocumentSaved.md
index 6cbe2c604bf..ee6b855bbfc 100644
--- a/api/Visio.Documents.DocumentSaved.md
+++ b/api/Visio.Documents.DocumentSaved.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DocumentSaved'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was saved.|
diff --git a/api/Visio.Documents.DocumentSavedAs.md b/api/Visio.Documents.DocumentSavedAs.md
index 29f8f37b687..85c6cb10e28 100644
--- a/api/Visio.Documents.DocumentSavedAs.md
+++ b/api/Visio.Documents.DocumentSavedAs.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DocumentSavedAs'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was saved.|
diff --git a/api/Visio.Documents.EventList.md b/api/Visio.Documents.EventList.md
index 33e26c764f5..11f6e5e8ff7 100644
--- a/api/Visio.Documents.EventList.md
+++ b/api/Visio.Documents.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Documents](./Visio.Documents.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Documents.FormulaChanged.md b/api/Visio.Documents.FormulaChanged.md
index 4c836b7daaa..1a2fbc9f581 100644
--- a/api/Visio.Documents.FormulaChanged.md
+++ b/api/Visio.Documents.FormulaChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'FormulaChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose formula changed.|
diff --git a/api/Visio.Documents.GetNames.md b/api/Visio.Documents.GetNames.md
index 1e7f82d3199..d145d93691a 100644
--- a/api/Visio.Documents.GetNames.md
+++ b/api/Visio.Documents.GetNames.md
@@ -27,11 +27,11 @@ Returns the names of all items in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameArray()_|Required| **String**|Out paramter. An array that receives the names of members of the indicated object.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Documents.GroupCanceled.md b/api/Visio.Documents.GroupCanceled.md
index 16409b5a55c..2aea07af0f1 100644
--- a/api/Visio.Documents.GroupCanceled.md
+++ b/api/Visio.Documents.GroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'GroupCanceled'(**_ByVal Selection As [IVSELECTION]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.Documents.Item.md b/api/Visio.Documents.Item.md
index 9400ffc355f..bed38b70d77 100644
--- a/api/Visio.Documents.Item.md
+++ b/api/Visio.Documents.Item.md
@@ -27,11 +27,11 @@ Returns an item from a collection. The **Item** property is the default propert
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|Contains the name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Documents.ItemFromID.md b/api/Visio.Documents.ItemFromID.md
index eef956e62c9..305ee01d7e6 100644
--- a/api/Visio.Documents.ItemFromID.md
+++ b/api/Visio.Documents.ItemFromID.md
@@ -27,11 +27,11 @@ Returns an item of a collection using the ID of the item. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nID_|Required| **Long**|The ID of the object to retrieve.|
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Documents.MasterAdded.md b/api/Visio.Documents.MasterAdded.md
index a6225f29825..446fa4c82c1 100644
--- a/api/Visio.Documents.MasterAdded.md
+++ b/api/Visio.Documents.MasterAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MasterAdded'(**_ByVal Master As [IVMASTER]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that was added to the document.|
diff --git a/api/Visio.Documents.MasterChanged.md b/api/Visio.Documents.MasterChanged.md
index b5729e413ac..c7769067522 100644
--- a/api/Visio.Documents.MasterChanged.md
+++ b/api/Visio.Documents.MasterChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MasterChanged'(**_ByVal Master As [IVMASTER]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master whose properties changed.|
diff --git a/api/Visio.Documents.MasterDeleteCanceled.md b/api/Visio.Documents.MasterDeleteCanceled.md
index a8b51485810..8350bb98c8d 100644
--- a/api/Visio.Documents.MasterDeleteCanceled.md
+++ b/api/Visio.Documents.MasterDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MasterDeleteCanceled'(**_ByVal Master As [IVMASTER]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that was going to be deleted.|
diff --git a/api/Visio.Documents.ObjectType.md b/api/Visio.Documents.ObjectType.md
index 9f3047176a9..9e2013fbc99 100644
--- a/api/Visio.Documents.ObjectType.md
+++ b/api/Visio.Documents.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Documents](./Visio.Documents.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Documents.Open.md b/api/Visio.Documents.Open.md
index bce334a1178..5fa863a4a5a 100644
--- a/api/Visio.Documents.Open.md
+++ b/api/Visio.Documents.Open.md
@@ -27,11 +27,11 @@ Opens an existing file so that it can be edited.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of a file to open.|
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Documents.OpenEx.md b/api/Visio.Documents.OpenEx.md
index 750023831e8..9a5bed12f02 100644
--- a/api/Visio.Documents.OpenEx.md
+++ b/api/Visio.Documents.OpenEx.md
@@ -27,12 +27,12 @@ Opens an existing Microsoft Visio file, using extra information passed in as an
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the file to open.|
| _Flags_|Required| **Integer**|Flags that indicate how to open the file.|
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Documents.PageAdded.md b/api/Visio.Documents.PageAdded.md
index 4c12add9663..cf9389a2d3b 100644
--- a/api/Visio.Documents.PageAdded.md
+++ b/api/Visio.Documents.PageAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'PageAdded'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that was added.|
diff --git a/api/Visio.Documents.PageChanged.md b/api/Visio.Documents.PageChanged.md
index c4b9bd0d9ab..65940770fe5 100644
--- a/api/Visio.Documents.PageChanged.md
+++ b/api/Visio.Documents.PageChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'PageChanged'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that changed.|
diff --git a/api/Visio.Documents.PageDeleteCanceled.md b/api/Visio.Documents.PageDeleteCanceled.md
index 74fca5e517a..ecdeb308864 100644
--- a/api/Visio.Documents.PageDeleteCanceled.md
+++ b/api/Visio.Documents.PageDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'PageDeleteCanceled'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that was going to be deleted.|
diff --git a/api/Visio.Documents.PersistsEvents.md b/api/Visio.Documents.PersistsEvents.md
index a2709e5e707..6a127c87e04 100644
--- a/api/Visio.Documents.PersistsEvents.md
+++ b/api/Visio.Documents.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Documents](./Visio.Documents.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Documents.QueryCancelConvertToGroup.md b/api/Visio.Documents.QueryCancelConvertToGroup.md
index aa0811f8062..b63ae7d4575 100644
--- a/api/Visio.Documents.QueryCancelConvertToGroup.md
+++ b/api/Visio.Documents.QueryCancelConvertToGroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelConvertToGroup'(**_ByVal Selection As [IV
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be converted to a group.|
diff --git a/api/Visio.Documents.QueryCancelDocumentClose.md b/api/Visio.Documents.QueryCancelDocumentClose.md
index ce0486e2287..671addb5a28 100644
--- a/api/Visio.Documents.QueryCancelDocumentClose.md
+++ b/api/Visio.Documents.QueryCancelDocumentClose.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelDocumentClose'(**_ByVal doc As [IVDOCUMEN
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be closed.|
diff --git a/api/Visio.Documents.QueryCancelGroup.md b/api/Visio.Documents.QueryCancelGroup.md
index acbf941d0fe..ec29550d3a7 100644
--- a/api/Visio.Documents.QueryCancelGroup.md
+++ b/api/Visio.Documents.QueryCancelGroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelGroup'(**_ByVal Selection As [IVSELECTION
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be grouped.|
diff --git a/api/Visio.Documents.QueryCancelMasterDelete.md b/api/Visio.Documents.QueryCancelMasterDelete.md
index f8c562e6c70..7a5b1793926 100644
--- a/api/Visio.Documents.QueryCancelMasterDelete.md
+++ b/api/Visio.Documents.QueryCancelMasterDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelMasterDelete'(**_ByVal Master As [IVMASTE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that is going to be deleted.|
diff --git a/api/Visio.Documents.QueryCancelPageDelete.md b/api/Visio.Documents.QueryCancelPageDelete.md
index aed9a114d1d..3f7c24bfe35 100644
--- a/api/Visio.Documents.QueryCancelPageDelete.md
+++ b/api/Visio.Documents.QueryCancelPageDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelPageDelete'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that is going to be deleted.|
diff --git a/api/Visio.Documents.QueryCancelSelectionDelete.md b/api/Visio.Documents.QueryCancelSelectionDelete.md
index 8ff8f78c1bf..8314f0a2058 100644
--- a/api/Visio.Documents.QueryCancelSelectionDelete.md
+++ b/api/Visio.Documents.QueryCancelSelectionDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelSelectionDelete'(**_ByVal Selection As [I
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be deleted.|
diff --git a/api/Visio.Documents.QueryCancelStyleDelete.md b/api/Visio.Documents.QueryCancelStyleDelete.md
index c439d07556f..c1d32515240 100644
--- a/api/Visio.Documents.QueryCancelStyleDelete.md
+++ b/api/Visio.Documents.QueryCancelStyleDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelStyleDelete'(**_ByVal Style As [IVSTYLE]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _style_|Required| **[IVSTYLE]**|The style that is going to be deleted.|
diff --git a/api/Visio.Documents.QueryCancelUngroup.md b/api/Visio.Documents.QueryCancelUngroup.md
index 918bc0844ae..7f7bbdeb9f6 100644
--- a/api/Visio.Documents.QueryCancelUngroup.md
+++ b/api/Visio.Documents.QueryCancelUngroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelUngroup'(**_ByVal Selection As [IVSELECTI
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be ungrouped.|
diff --git a/api/Visio.Documents.RuleSetValidated.md b/api/Visio.Documents.RuleSetValidated.md
index 7b97de6d065..93f12446d31 100644
--- a/api/Visio.Documents.RuleSetValidated.md
+++ b/api/Visio.Documents.RuleSetValidated.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'RuleSetValidated'(**_ByVal RuleSet As ValidationRule
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RuleSet_|Required| **[ValidationRuleSet](Visio.ValidationRuleSet.md)**|The rule set that was validated.|
diff --git a/api/Visio.Documents.RunModeEntered.md b/api/Visio.Documents.RunModeEntered.md
index 6235e165f37..4df9364dfaf 100644
--- a/api/Visio.Documents.RunModeEntered.md
+++ b/api/Visio.Documents.RunModeEntered.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'RunModeEntered'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that entered run mode.|
diff --git a/api/Visio.Documents.SelectionAdded.md b/api/Visio.Documents.SelectionAdded.md
index 208712dd4f4..588f284f2f3 100644
--- a/api/Visio.Documents.SelectionAdded.md
+++ b/api/Visio.Documents.SelectionAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'SelectionAdded'(**_ByVal Selection As [IVSELECTION]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was added to the document.|
diff --git a/api/Visio.Documents.SelectionDeleteCanceled.md b/api/Visio.Documents.SelectionDeleteCanceled.md
index cbc460359d1..99880760f99 100644
--- a/api/Visio.Documents.SelectionDeleteCanceled.md
+++ b/api/Visio.Documents.SelectionDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'SelectionDeleteCanceled'(**_ByVal Selection As [IVSE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be deleted.|
diff --git a/api/Visio.Documents.ShapeAdded.md b/api/Visio.Documents.ShapeAdded.md
index 2cd2e56e231..2cb367e0ee7 100644
--- a/api/Visio.Documents.ShapeAdded.md
+++ b/api/Visio.Documents.ShapeAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeAdded'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape or group of shapes that was added to the document.|
diff --git a/api/Visio.Documents.ShapeChanged.md b/api/Visio.Documents.ShapeChanged.md
index 662b7b30eea..87137b55f36 100644
--- a/api/Visio.Documents.ShapeChanged.md
+++ b/api/Visio.Documents.ShapeChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose property changed.|
diff --git a/api/Visio.Documents.ShapeDataGraphicChanged.md b/api/Visio.Documents.ShapeDataGraphicChanged.md
index 1e95d835589..b06fa60bb13 100644
--- a/api/Visio.Documents.ShapeDataGraphicChanged.md
+++ b/api/Visio.Documents.ShapeDataGraphicChanged.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'ShapeDataGraphicChanged'(**_ByVal Shape As IVSHAPE_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape to which the data graphic was applied or from which it was deleted.|
diff --git a/api/Visio.Documents.ShapeExitedTextEdit.md b/api/Visio.Documents.ShapeExitedTextEdit.md
index 16f57861f0d..00ee0d71e4f 100644
--- a/api/Visio.Documents.ShapeExitedTextEdit.md
+++ b/api/Visio.Documents.ShapeExitedTextEdit.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeExitedTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that was closed for text editing.|
diff --git a/api/Visio.Documents.ShapeLinkAdded.md b/api/Visio.Documents.ShapeLinkAdded.md
index 652bedb1985..7145b6d99c7 100644
--- a/api/Visio.Documents.ShapeLinkAdded.md
+++ b/api/Visio.Documents.ShapeLinkAdded.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'ShapeLinkAdded'(**_ByVal Shape As [IVSHAPE]_** , **_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is linked to data.|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset containing the data row linked to the shape.|
diff --git a/api/Visio.Documents.ShapeLinkDeleted.md b/api/Visio.Documents.ShapeLinkDeleted.md
index 0c3aaeb1f5f..fc3db738e61 100644
--- a/api/Visio.Documents.ShapeLinkDeleted.md
+++ b/api/Visio.Documents.ShapeLinkDeleted.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'ShapeLinkDeleted'(**_ByVal Shape As [IVSHAPE]_** , *
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose link to a data row was broken.|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset containing the data row that was linked to the shape.|
diff --git a/api/Visio.Documents.ShapeParentChanged.md b/api/Visio.Documents.ShapeParentChanged.md
index e51a7d5ee92..c0d736940d2 100644
--- a/api/Visio.Documents.ShapeParentChanged.md
+++ b/api/Visio.Documents.ShapeParentChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeParentChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose parent changed.|
diff --git a/api/Visio.Documents.StyleAdded.md b/api/Visio.Documents.StyleAdded.md
index 4f02da56474..bf6c4a36467 100644
--- a/api/Visio.Documents.StyleAdded.md
+++ b/api/Visio.Documents.StyleAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'StyleAdded'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that was added to the document.|
diff --git a/api/Visio.Documents.StyleChanged.md b/api/Visio.Documents.StyleChanged.md
index 6e0f0a7c04a..76da0fb20b8 100644
--- a/api/Visio.Documents.StyleChanged.md
+++ b/api/Visio.Documents.StyleChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'StyleChanged'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _style_|Required| **[IVSTYLE]**|The style that changed.|
diff --git a/api/Visio.Documents.StyleDeleteCanceled.md b/api/Visio.Documents.StyleDeleteCanceled.md
index f04df3a6816..dac354458f3 100644
--- a/api/Visio.Documents.StyleDeleteCanceled.md
+++ b/api/Visio.Documents.StyleDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'StyleDeleteCanceled'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that was going to be deleted.|
diff --git a/api/Visio.Documents.TextChanged.md b/api/Visio.Documents.TextChanged.md
index 9577a8fe3d3..734e920224a 100644
--- a/api/Visio.Documents.TextChanged.md
+++ b/api/Visio.Documents.TextChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'TextChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose text changed.|
diff --git a/api/Visio.Documents.UngroupCanceled.md b/api/Visio.Documents.UngroupCanceled.md
index 0695a0903e0..7e085ff3644 100644
--- a/api/Visio.Documents.UngroupCanceled.md
+++ b/api/Visio.Documents.UngroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'UngroupCanceled'(**_ByVal Selection As [IVSELECTION]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be ungrouped.|
diff --git a/api/Visio.DrawingControl.AfterRemoveHiddenInformation.md b/api/Visio.DrawingControl.AfterRemoveHiddenInformation.md
index bddafbec662..546d6d51758 100644
--- a/api/Visio.DrawingControl.AfterRemoveHiddenInformation.md
+++ b/api/Visio.DrawingControl.AfterRemoveHiddenInformation.md
@@ -24,7 +24,7 @@ Occurs when hidden information is removed from the document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document from which hidden information has been removed.|
diff --git a/api/Visio.DrawingControl.BeforeDataRecordsetDelete.md b/api/Visio.DrawingControl.BeforeDataRecordsetDelete.md
index 9074de77a97..a585b982d81 100644
--- a/api/Visio.DrawingControl.BeforeDataRecordsetDelete.md
+++ b/api/Visio.DrawingControl.BeforeDataRecordsetDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeDataRecordsetDelete'(**_ByVal DataRecordset As
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordset_|Required| **[IVDATARECORDSET]**|The data recordset that is going to be deleted.|
diff --git a/api/Visio.DrawingControl.BeforeDocumentClose.md b/api/Visio.DrawingControl.BeforeDocumentClose.md
index 3903bb70131..6f41ccee652 100644
--- a/api/Visio.DrawingControl.BeforeDocumentClose.md
+++ b/api/Visio.DrawingControl.BeforeDocumentClose.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeDocumentClose'(**_ByVal doc As [IVDOCUMENT]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be closed.|
diff --git a/api/Visio.DrawingControl.BeforeDocumentSave.md b/api/Visio.DrawingControl.BeforeDocumentSave.md
index 06b0cb4ac18..35bb5cb54f6 100644
--- a/api/Visio.DrawingControl.BeforeDocumentSave.md
+++ b/api/Visio.DrawingControl.BeforeDocumentSave.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeDocumentSave'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be saved.|
diff --git a/api/Visio.DrawingControl.BeforeDocumentSaveAs.md b/api/Visio.DrawingControl.BeforeDocumentSaveAs.md
index cff74655100..da661ff91cc 100644
--- a/api/Visio.DrawingControl.BeforeDocumentSaveAs.md
+++ b/api/Visio.DrawingControl.BeforeDocumentSaveAs.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeDocumentSaveAs'(**_ByVal doc As [IVDOCUMENT]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be saved.|
diff --git a/api/Visio.DrawingControl.BeforeMasterDelete.md b/api/Visio.DrawingControl.BeforeMasterDelete.md
index f8b0781a0aa..ce777a0f245 100644
--- a/api/Visio.DrawingControl.BeforeMasterDelete.md
+++ b/api/Visio.DrawingControl.BeforeMasterDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeMasterDelete'(**_ByVal master As [IVMASTER]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that is going to be deleted.|
diff --git a/api/Visio.DrawingControl.BeforePageDelete.md b/api/Visio.DrawingControl.BeforePageDelete.md
index 231d37e2039..7fd0f0015ea 100644
--- a/api/Visio.DrawingControl.BeforePageDelete.md
+++ b/api/Visio.DrawingControl.BeforePageDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforePageDelete'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that is going to be deleted.|
diff --git a/api/Visio.DrawingControl.BeforeSelectionDelete.md b/api/Visio.DrawingControl.BeforeSelectionDelete.md
index bddaab09396..b180ff504ed 100644
--- a/api/Visio.DrawingControl.BeforeSelectionDelete.md
+++ b/api/Visio.DrawingControl.BeforeSelectionDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeSelectionDelete'(**_ByVal Selection As [IVSELE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selected objects that are going to be deleted.|
diff --git a/api/Visio.DrawingControl.BeforeShapeTextEdit.md b/api/Visio.DrawingControl.BeforeShapeTextEdit.md
index f3f5b9053dd..98c59826fef 100644
--- a/api/Visio.DrawingControl.BeforeShapeTextEdit.md
+++ b/api/Visio.DrawingControl.BeforeShapeTextEdit.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeShapeTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be opened for text editing.|
diff --git a/api/Visio.DrawingControl.BeforeStyleDelete.md b/api/Visio.DrawingControl.BeforeStyleDelete.md
index 9708fbc5be3..e1ead8e2b75 100644
--- a/api/Visio.DrawingControl.BeforeStyleDelete.md
+++ b/api/Visio.DrawingControl.BeforeStyleDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeStyleDelete'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that is going to be deleted.|
diff --git a/api/Visio.DrawingControl.BeforeWindowClosed.md b/api/Visio.DrawingControl.BeforeWindowClosed.md
index e37ba59e613..7789a581d68 100644
--- a/api/Visio.DrawingControl.BeforeWindowClosed.md
+++ b/api/Visio.DrawingControl.BeforeWindowClosed.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeWindowClosed'(**_ByVal Window As [IVWINDOW]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that is going to be closed.|
diff --git a/api/Visio.DrawingControl.BeforeWindowPageTurn.md b/api/Visio.DrawingControl.BeforeWindowPageTurn.md
index c3aa054deb9..a92aa82d612 100644
--- a/api/Visio.DrawingControl.BeforeWindowPageTurn.md
+++ b/api/Visio.DrawingControl.BeforeWindowPageTurn.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeWindowPageTurn'(**_ByVal Window As [IVWINDOW]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that is going to show a different page.|
diff --git a/api/Visio.DrawingControl.BeforeWindowSelDelete.md b/api/Visio.DrawingControl.BeforeWindowSelDelete.md
index 2662a49abef..e07645738c4 100644
--- a/api/Visio.DrawingControl.BeforeWindowSelDelete.md
+++ b/api/Visio.DrawingControl.BeforeWindowSelDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeWindowSelDelete'(**_ByVal Window As [IVWINDOW]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that contains the selection that is going to be deleted.|
diff --git a/api/Visio.DrawingControl.ConvertToGroupCanceled.md b/api/Visio.DrawingControl.ConvertToGroupCanceled.md
index 322c7af5b77..2821fc78a5b 100644
--- a/api/Visio.DrawingControl.ConvertToGroupCanceled.md
+++ b/api/Visio.DrawingControl.ConvertToGroupCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ConvertToGroupCanceled'(**_ByVal selection As [IVSEL
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.DrawingControl.DataRecordsetAdded.md b/api/Visio.DrawingControl.DataRecordsetAdded.md
index 7571d08f234..93ec6d2c83f 100644
--- a/api/Visio.DrawingControl.DataRecordsetAdded.md
+++ b/api/Visio.DrawingControl.DataRecordsetAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DataRecordsetAdded'(**_ByVal DataRecordset As [IVDAT
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordset_|Required| **[IVDATARECORDSET]**|The data recordset that was added.|
diff --git a/api/Visio.DrawingControl.DesignModeEntered.md b/api/Visio.DrawingControl.DesignModeEntered.md
index efa51d68ba3..67903f695e4 100644
--- a/api/Visio.DrawingControl.DesignModeEntered.md
+++ b/api/Visio.DrawingControl.DesignModeEntered.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DesignModeEntered'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to enter design mode.|
diff --git a/api/Visio.DrawingControl.Document.md b/api/Visio.DrawingControl.Document.md
index 007384ac20f..d6d58d3a595 100644
--- a/api/Visio.DrawingControl.Document.md
+++ b/api/Visio.DrawingControl.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [DrawingControl](./Visio.DrawingControl.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.DrawingControl.DocumentChanged.md b/api/Visio.DrawingControl.DocumentChanged.md
index e790ee935bb..19b45ec14b4 100644
--- a/api/Visio.DrawingControl.DocumentChanged.md
+++ b/api/Visio.DrawingControl.DocumentChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentChanged'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document whose properties were changed.|
diff --git a/api/Visio.DrawingControl.DocumentCloseCanceled.md b/api/Visio.DrawingControl.DocumentCloseCanceled.md
index 64a2a971f75..6ae2e806b08 100644
--- a/api/Visio.DrawingControl.DocumentCloseCanceled.md
+++ b/api/Visio.DrawingControl.DocumentCloseCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentCloseCanceled'(**_ByVal doc As [IVDOCUMENT]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was going to be closed.|
diff --git a/api/Visio.DrawingControl.DocumentCreated.md b/api/Visio.DrawingControl.DocumentCreated.md
index 9f94a5a06b5..3526bccb462 100644
--- a/api/Visio.DrawingControl.DocumentCreated.md
+++ b/api/Visio.DrawingControl.DocumentCreated.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentCreated'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was created.|
diff --git a/api/Visio.DrawingControl.DocumentOpened.md b/api/Visio.DrawingControl.DocumentOpened.md
index 26bdda3e250..3c12ef3632c 100644
--- a/api/Visio.DrawingControl.DocumentOpened.md
+++ b/api/Visio.DrawingControl.DocumentOpened.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentOpened'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was opened.|
diff --git a/api/Visio.DrawingControl.DocumentSaved.md b/api/Visio.DrawingControl.DocumentSaved.md
index afca171c0ec..381c33f6df3 100644
--- a/api/Visio.DrawingControl.DocumentSaved.md
+++ b/api/Visio.DrawingControl.DocumentSaved.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentSaved'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was saved.|
diff --git a/api/Visio.DrawingControl.DocumentSavedAs.md b/api/Visio.DrawingControl.DocumentSavedAs.md
index 67ceab347e0..ad3cf6f19d3 100644
--- a/api/Visio.DrawingControl.DocumentSavedAs.md
+++ b/api/Visio.DrawingControl.DocumentSavedAs.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentSavedAs'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was saved.|
diff --git a/api/Visio.DrawingControl.GroupCanceled.md b/api/Visio.DrawingControl.GroupCanceled.md
index 249c179496a..64276249a83 100644
--- a/api/Visio.DrawingControl.GroupCanceled.md
+++ b/api/Visio.DrawingControl.GroupCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'GroupCanceled'(**_ByVal Selection As [IVSELECTION]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.DrawingControl.KeyDown.md b/api/Visio.DrawingControl.KeyDown.md
index 5efb86febd9..0a5d182f15b 100644
--- a/api/Visio.DrawingControl.KeyDown.md
+++ b/api/Visio.DrawingControl.KeyDown.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'KeyDown'(**_ByVal KeyCode As Long_** , **_ByVal KeyB
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCode_|Required| **Long**|The key that was pressed. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.DrawingControl.KeyPress.md b/api/Visio.DrawingControl.KeyPress.md
index 30e054d62a1..ee58b6048f4 100644
--- a/api/Visio.DrawingControl.KeyPress.md
+++ b/api/Visio.DrawingControl.KeyPress.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'KeyPress'(**_ByVal KeyAscii As Long_** , **_ByVal Ca
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyAscii_|Required| **Long**|The ASCII value of the key that was pressed. See Remarks for possible values.|
| _CancelDefault_|Required| **Boolean**| **False** if Microsoft Visio should process the message it receives from this event; otherwise, **True** .|
diff --git a/api/Visio.DrawingControl.KeyUp.md b/api/Visio.DrawingControl.KeyUp.md
index c8aadd85643..c62bbead8df 100644
--- a/api/Visio.DrawingControl.KeyUp.md
+++ b/api/Visio.DrawingControl.KeyUp.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'KeyUp'(**_ByVal KeyCode As Long_** , **_ByVal KeyBut
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCode_|Required| **Long**|The key that was released. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.DrawingControl.MasterAdded.md b/api/Visio.DrawingControl.MasterAdded.md
index daaa7962e04..ae65e04f752 100644
--- a/api/Visio.DrawingControl.MasterAdded.md
+++ b/api/Visio.DrawingControl.MasterAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MasterAdded'(**_ByVal master As [IVMASTER]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that was added to the document.|
diff --git a/api/Visio.DrawingControl.MasterChanged.md b/api/Visio.DrawingControl.MasterChanged.md
index 72bcba5a8f3..14f8a2abedc 100644
--- a/api/Visio.DrawingControl.MasterChanged.md
+++ b/api/Visio.DrawingControl.MasterChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MasterChanged'(**_ByVal master As [IVMASTER]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master whose properties changed.|
diff --git a/api/Visio.DrawingControl.MasterDeleteCanceled.md b/api/Visio.DrawingControl.MasterDeleteCanceled.md
index 6faecbe176b..5344a3046a2 100644
--- a/api/Visio.DrawingControl.MasterDeleteCanceled.md
+++ b/api/Visio.DrawingControl.MasterDeleteCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MasterDeleteCanceled'(**_ByVal master As [IVMASTER]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that was going to be deleted.|
diff --git a/api/Visio.DrawingControl.MouseDown.md b/api/Visio.DrawingControl.MouseDown.md
index ea4e6b5fc41..63e686f4d81 100644
--- a/api/Visio.DrawingControl.MouseDown.md
+++ b/api/Visio.DrawingControl.MouseDown.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MouseDown'(**_ByVal Button As Long_** , **_ByVal Key
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Button_|Required| **Long**|The mouse button that was pressed. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the mouse buttons and the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.DrawingControl.MouseMove.md b/api/Visio.DrawingControl.MouseMove.md
index 4aa6253fa74..1639ae3f62e 100644
--- a/api/Visio.DrawingControl.MouseMove.md
+++ b/api/Visio.DrawingControl.MouseMove.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MouseMove'(**_ByVal Button As Long_** , **_ByVal Key
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Button_|Required| **Long**|The mouse button that was clicked. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the mouse buttons and the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.DrawingControl.MouseUp.md b/api/Visio.DrawingControl.MouseUp.md
index 5dfc6198f16..2aea2993867 100644
--- a/api/Visio.DrawingControl.MouseUp.md
+++ b/api/Visio.DrawingControl.MouseUp.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MouseUp'(**_ByVal Button As Long_** , **_ByVal KeyBu
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Button_|Required| **Long**|The mouse button that was released. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the mouse buttons and the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.DrawingControl.OnKeystrokeMessageForAddon.md b/api/Visio.DrawingControl.OnKeystrokeMessageForAddon.md
index 5b9a42311a7..94a4c356644 100644
--- a/api/Visio.DrawingControl.OnKeystrokeMessageForAddon.md
+++ b/api/Visio.DrawingControl.OnKeystrokeMessageForAddon.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'OnKeystrokeMessageForAddon'(**_ByVal MSG As [IVMSGWR
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MSG_|Required| **[IVMSGWRAP]**|The message that Visio receives.|
diff --git a/api/Visio.DrawingControl.PageAdded.md b/api/Visio.DrawingControl.PageAdded.md
index 22d83e2e762..a2ebf5675af 100644
--- a/api/Visio.DrawingControl.PageAdded.md
+++ b/api/Visio.DrawingControl.PageAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'PageAdded'(**_ByVal page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that was added.|
diff --git a/api/Visio.DrawingControl.PageChanged.md b/api/Visio.DrawingControl.PageChanged.md
index af86d426fd1..e913d6fb62a 100644
--- a/api/Visio.DrawingControl.PageChanged.md
+++ b/api/Visio.DrawingControl.PageChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'PageChanged'(**_ByVal page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that changed.|
diff --git a/api/Visio.DrawingControl.PageDeleteCanceled.md b/api/Visio.DrawingControl.PageDeleteCanceled.md
index 23f013304b2..e0824705453 100644
--- a/api/Visio.DrawingControl.PageDeleteCanceled.md
+++ b/api/Visio.DrawingControl.PageDeleteCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'PageDeleteCanceled'(**_ByVal page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that was going to be deleted.|
diff --git a/api/Visio.DrawingControl.QueryCancelConvertToGroup.md b/api/Visio.DrawingControl.QueryCancelConvertToGroup.md
index 3ca8e77b520..9394fb09f5a 100644
--- a/api/Visio.DrawingControl.QueryCancelConvertToGroup.md
+++ b/api/Visio.DrawingControl.QueryCancelConvertToGroup.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelConvertToGroup'(**_ByVal selection As [IV
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be converted to a group.|
diff --git a/api/Visio.DrawingControl.QueryCancelDocumentClose.md b/api/Visio.DrawingControl.QueryCancelDocumentClose.md
index 3a707f35e05..4b7a66dc14b 100644
--- a/api/Visio.DrawingControl.QueryCancelDocumentClose.md
+++ b/api/Visio.DrawingControl.QueryCancelDocumentClose.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelDocumentClose'(**_ByVal doc As [IVDOCUMEN
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be closed.|
diff --git a/api/Visio.DrawingControl.QueryCancelGroup.md b/api/Visio.DrawingControl.QueryCancelGroup.md
index 2776fbedcc6..61742137476 100644
--- a/api/Visio.DrawingControl.QueryCancelGroup.md
+++ b/api/Visio.DrawingControl.QueryCancelGroup.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelGroup'(**_ByVal Selection As [IVSELECTION
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be grouped.|
diff --git a/api/Visio.DrawingControl.QueryCancelMasterDelete.md b/api/Visio.DrawingControl.QueryCancelMasterDelete.md
index 82da7b4b07b..bdf7a241efc 100644
--- a/api/Visio.DrawingControl.QueryCancelMasterDelete.md
+++ b/api/Visio.DrawingControl.QueryCancelMasterDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelMasterDelete'(**_ByVal master As [IVMASTE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that is going to be deleted.|
diff --git a/api/Visio.DrawingControl.QueryCancelPageDelete.md b/api/Visio.DrawingControl.QueryCancelPageDelete.md
index 1c7d9a1c6db..5af3884aa80 100644
--- a/api/Visio.DrawingControl.QueryCancelPageDelete.md
+++ b/api/Visio.DrawingControl.QueryCancelPageDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelPageDelete'(**_ByVal page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that is going to be deleted.|
diff --git a/api/Visio.DrawingControl.QueryCancelSelectionDelete.md b/api/Visio.DrawingControl.QueryCancelSelectionDelete.md
index b79663134ec..44c5afe93da 100644
--- a/api/Visio.DrawingControl.QueryCancelSelectionDelete.md
+++ b/api/Visio.DrawingControl.QueryCancelSelectionDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelSelectionDelete'(**_ByVal selection As [I
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be deleted.|
diff --git a/api/Visio.DrawingControl.QueryCancelStyleDelete.md b/api/Visio.DrawingControl.QueryCancelStyleDelete.md
index 7cb87035ab9..981a5184673 100644
--- a/api/Visio.DrawingControl.QueryCancelStyleDelete.md
+++ b/api/Visio.DrawingControl.QueryCancelStyleDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelStyleDelete'(**_ByVal style As [IVSTYLE]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _style_|Required| **[IVSTYLE]**|The style that is going to be deleted.|
diff --git a/api/Visio.DrawingControl.QueryCancelUngroup.md b/api/Visio.DrawingControl.QueryCancelUngroup.md
index d9e559af15a..a6ab8f8f840 100644
--- a/api/Visio.DrawingControl.QueryCancelUngroup.md
+++ b/api/Visio.DrawingControl.QueryCancelUngroup.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelUngroup'(**_ByVal selection As [IVSELECTI
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be ungrouped.|
diff --git a/api/Visio.DrawingControl.QueryCancelWindowClose.md b/api/Visio.DrawingControl.QueryCancelWindowClose.md
index acdc1e9871c..009340c04b4 100644
--- a/api/Visio.DrawingControl.QueryCancelWindowClose.md
+++ b/api/Visio.DrawingControl.QueryCancelWindowClose.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelWindowClose'(**_ByVal Window As [IVWINDOW
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that is going to be closed.|
diff --git a/api/Visio.DrawingControl.RunModeEntered.md b/api/Visio.DrawingControl.RunModeEntered.md
index 2c0e551c89b..d7ab991d176 100644
--- a/api/Visio.DrawingControl.RunModeEntered.md
+++ b/api/Visio.DrawingControl.RunModeEntered.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'RunModeEntered'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that entered run mode.|
diff --git a/api/Visio.DrawingControl.SelectionChanged.md b/api/Visio.DrawingControl.SelectionChanged.md
index a95ac6cb2c9..c7f75a2ec3c 100644
--- a/api/Visio.DrawingControl.SelectionChanged.md
+++ b/api/Visio.DrawingControl.SelectionChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'SelectionChanged'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window in which the selection changed.|
diff --git a/api/Visio.DrawingControl.SelectionDeleteCanceled.md b/api/Visio.DrawingControl.SelectionDeleteCanceled.md
index 67bff432373..80a9f24d8c7 100644
--- a/api/Visio.DrawingControl.SelectionDeleteCanceled.md
+++ b/api/Visio.DrawingControl.SelectionDeleteCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'SelectionDeleteCanceled'(**_ByVal selection As [IVSE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be deleted.|
diff --git a/api/Visio.DrawingControl.ShapeAdded.md b/api/Visio.DrawingControl.ShapeAdded.md
index 52c67c1549e..0987d9a8770 100644
--- a/api/Visio.DrawingControl.ShapeAdded.md
+++ b/api/Visio.DrawingControl.ShapeAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ShapeAdded'(**_ByVal shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape or group of shapes that was added to the document.|
diff --git a/api/Visio.DrawingControl.ShapeDataGraphicChanged.md b/api/Visio.DrawingControl.ShapeDataGraphicChanged.md
index e50cfabe69d..2d5b30cb6c6 100644
--- a/api/Visio.DrawingControl.ShapeDataGraphicChanged.md
+++ b/api/Visio.DrawingControl.ShapeDataGraphicChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeDataGraphicChanged'(**_ByVal Shape As IVSHAPE_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape to which the data graphic was applied or from which it was deleted.|
diff --git a/api/Visio.DrawingControl.ShapeExitedTextEdit.md b/api/Visio.DrawingControl.ShapeExitedTextEdit.md
index 076a4a05857..c754df420fc 100644
--- a/api/Visio.DrawingControl.ShapeExitedTextEdit.md
+++ b/api/Visio.DrawingControl.ShapeExitedTextEdit.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ShapeExitedTextEdit'(**_ByVal shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that was closed for text editing.|
diff --git a/api/Visio.DrawingControl.ShapeParentChanged.md b/api/Visio.DrawingControl.ShapeParentChanged.md
index ed602b64345..888b963bcb1 100644
--- a/api/Visio.DrawingControl.ShapeParentChanged.md
+++ b/api/Visio.DrawingControl.ShapeParentChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ShapeParentChanged'(**_ByVal shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose parent changed.|
diff --git a/api/Visio.DrawingControl.StyleAdded.md b/api/Visio.DrawingControl.StyleAdded.md
index 956fee22e17..7eeebf86bee 100644
--- a/api/Visio.DrawingControl.StyleAdded.md
+++ b/api/Visio.DrawingControl.StyleAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'StyleAdded'(**_ByVal style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that was added to the document.|
diff --git a/api/Visio.DrawingControl.StyleChanged.md b/api/Visio.DrawingControl.StyleChanged.md
index c551e974e1f..5db1bea80a6 100644
--- a/api/Visio.DrawingControl.StyleChanged.md
+++ b/api/Visio.DrawingControl.StyleChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'StyleChanged'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _style_|Required| **[IVSTYLE]**|The style that changed.|
diff --git a/api/Visio.DrawingControl.StyleDeleteCanceled.md b/api/Visio.DrawingControl.StyleDeleteCanceled.md
index b724836f1fa..afb186465db 100644
--- a/api/Visio.DrawingControl.StyleDeleteCanceled.md
+++ b/api/Visio.DrawingControl.StyleDeleteCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'StyleDeleteCanceled'(**_ByVal style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that was going to be deleted.|
diff --git a/api/Visio.DrawingControl.UngroupCanceled.md b/api/Visio.DrawingControl.UngroupCanceled.md
index 1496893ab29..93277c63739 100644
--- a/api/Visio.DrawingControl.UngroupCanceled.md
+++ b/api/Visio.DrawingControl.UngroupCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'UngroupCanceled'(**_ByVal selection As [IVSELECTION]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be ungrouped.|
diff --git a/api/Visio.DrawingControl.ViewChanged.md b/api/Visio.DrawingControl.ViewChanged.md
index a75143edc6c..b7f1a741e11 100644
--- a/api/Visio.DrawingControl.ViewChanged.md
+++ b/api/Visio.DrawingControl.ViewChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ViewChanged'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window whose zoom level or scroll position changed.|
diff --git a/api/Visio.DrawingControl.Window.md b/api/Visio.DrawingControl.Window.md
index aad1caa5bd6..c1cef6f1115 100644
--- a/api/Visio.DrawingControl.Window.md
+++ b/api/Visio.DrawingControl.Window.md
@@ -23,7 +23,7 @@ Returns the window associated with an instance of the Microsoft Visio Drawing Co
_expression_ A variable that represents a [DrawingControl](./Visio.DrawingControl.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.DrawingControl.WindowActivated.md b/api/Visio.DrawingControl.WindowActivated.md
index 8d4875f7a42..4cf0687139f 100644
--- a/api/Visio.DrawingControl.WindowActivated.md
+++ b/api/Visio.DrawingControl.WindowActivated.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'WindowActivated'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that was activated.|
diff --git a/api/Visio.DrawingControl.WindowChanged.md b/api/Visio.DrawingControl.WindowChanged.md
index d8b0ad00f82..51c8add8b53 100644
--- a/api/Visio.DrawingControl.WindowChanged.md
+++ b/api/Visio.DrawingControl.WindowChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'WindowChanged'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window whose size or position has changed.|
diff --git a/api/Visio.DrawingControl.WindowCloseCanceled.md b/api/Visio.DrawingControl.WindowCloseCanceled.md
index d785f98ea82..8646a90842b 100644
--- a/api/Visio.DrawingControl.WindowCloseCanceled.md
+++ b/api/Visio.DrawingControl.WindowCloseCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'WindowCloseCanceled'(**_ByVal Window As [IVWINDOW]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that was going to be closed.|
diff --git a/api/Visio.DrawingControl.WindowTurnedToPage.md b/api/Visio.DrawingControl.WindowTurnedToPage.md
index e674041206c..35894c044ac 100644
--- a/api/Visio.DrawingControl.WindowTurnedToPage.md
+++ b/api/Visio.DrawingControl.WindowTurnedToPage.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'WindowTurnedToPage'(**_ByVal Window As [IVWINDOW]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that shows a different page.|
diff --git a/api/Visio.EndPage.md b/api/Visio.EndPage.md
index 386e6d7a255..f71a06fc35a 100644
--- a/api/Visio.EndPage.md
+++ b/api/Visio.EndPage.md
@@ -20,7 +20,7 @@ Specifies the page number of the last page in the range when you save a range of
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.Event.Action.md b/api/Visio.Event.Action.md
index dc4164159a6..bef6e7dd1ce 100644
--- a/api/Visio.Event.Action.md
+++ b/api/Visio.Event.Action.md
@@ -23,7 +23,7 @@ Gets or sets the action code of an **Event** object. Read/write.
_expression_ A variable that represents a [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Event.Application.md b/api/Visio.Event.Application.md
index 527eeaa2cf3..856bba10588 100644
--- a/api/Visio.Event.Application.md
+++ b/api/Visio.Event.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents an [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Event.Delete.md b/api/Visio.Event.Delete.md
index d8c3e03194e..e7ef5c89bcd 100644
--- a/api/Visio.Event.Delete.md
+++ b/api/Visio.Event.Delete.md
@@ -23,7 +23,7 @@ Deletes an object.
_expression_ A variable that represents an [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Event.Enabled.md b/api/Visio.Event.Enabled.md
index 6d4aba6970c..391365dd819 100644
--- a/api/Visio.Event.Enabled.md
+++ b/api/Visio.Event.Enabled.md
@@ -23,7 +23,7 @@ Determines whether or not an **Event** object is currently enabled. Read/write.
_expression_ A variable that represents an [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Event.Event.md b/api/Visio.Event.Event.md
index f71bebe674f..0a865d0e5f4 100644
--- a/api/Visio.Event.Event.md
+++ b/api/Visio.Event.Event.md
@@ -23,7 +23,7 @@ Gets or sets the event code of an **Event** object—an event-action pair. When
_expression_ A variable that represents a [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Event.EventList.md b/api/Visio.Event.EventList.md
index 72e5019c359..13363960bd0 100644
--- a/api/Visio.Event.EventList.md
+++ b/api/Visio.Event.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents an [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Event.GetFilterActions.md b/api/Visio.Event.GetFilterActions.md
index 0a05776beea..a27268cf972 100644
--- a/api/Visio.Event.GetFilterActions.md
+++ b/api/Visio.Event.GetFilterActions.md
@@ -23,7 +23,7 @@ Returns an array of the filter actions set for the **Event** object.
_expression_ An expression that returns a [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
Long()
diff --git a/api/Visio.Event.GetFilterCommands.md b/api/Visio.Event.GetFilterCommands.md
index 08301aa28a5..99e36906a2e 100644
--- a/api/Visio.Event.GetFilterCommands.md
+++ b/api/Visio.Event.GetFilterCommands.md
@@ -23,7 +23,7 @@ Returns an array of command ranges and a **True** or **False** value indicating
_expression_ A variable that represents an [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
Long()
diff --git a/api/Visio.Event.GetFilterObjects.md b/api/Visio.Event.GetFilterObjects.md
index 247f1403fd5..51e5775c377 100644
--- a/api/Visio.Event.GetFilterObjects.md
+++ b/api/Visio.Event.GetFilterObjects.md
@@ -23,7 +23,7 @@ Returns an array of object types and a **True** or **False** value indicating h
_expression_ A variable that represents an [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
Long()
diff --git a/api/Visio.Event.GetFilterSRC.md b/api/Visio.Event.GetFilterSRC.md
index 6cbc69a8a0f..ce38370631f 100644
--- a/api/Visio.Event.GetFilterSRC.md
+++ b/api/Visio.Event.GetFilterSRC.md
@@ -23,7 +23,7 @@ Returns an array of cell ranges and a **True** or **False** value indicating wh
_expression_ A variable that represents an [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
Integer()
diff --git a/api/Visio.Event.ID.md b/api/Visio.Event.ID.md
index b79b58a52da..7373cfb312e 100644
--- a/api/Visio.Event.ID.md
+++ b/api/Visio.Event.ID.md
@@ -23,7 +23,7 @@ Gets the ID of an object. Read-only.
_expression_ A variable that represents an [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Event.Index.md b/api/Visio.Event.Index.md
index 30b68ba7251..bf13a3334e3 100644
--- a/api/Visio.Event.Index.md
+++ b/api/Visio.Event.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of an **Event** object in the **EventList** collectio
_expression_ A variable that represents a [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Event.ObjectType.md b/api/Visio.Event.ObjectType.md
index 6dd7a395fac..29f449fdbf6 100644
--- a/api/Visio.Event.ObjectType.md
+++ b/api/Visio.Event.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents an [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Event.Persistable.md b/api/Visio.Event.Persistable.md
index 66384e96a4d..7569b2dad68 100644
--- a/api/Visio.Event.Persistable.md
+++ b/api/Visio.Event.Persistable.md
@@ -23,7 +23,7 @@ Determines whether an event can potentially persist within its document. Read-on
_expression_ A variable that represents a [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Event.Persistent.md b/api/Visio.Event.Persistent.md
index 9fb3ff929fc..de399466d59 100644
--- a/api/Visio.Event.Persistent.md
+++ b/api/Visio.Event.Persistent.md
@@ -23,7 +23,7 @@ Determines whether an event persists with its document. Read/write.
_expression_ A variable that represents a [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Event.SetFilterActions.md b/api/Visio.Event.SetFilterActions.md
index edffad7f256..29c11ee346a 100644
--- a/api/Visio.Event.SetFilterActions.md
+++ b/api/Visio.Event.SetFilterActions.md
@@ -27,11 +27,11 @@ Specifies the extensions to the **MouseMove** event that Visio reports.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _filterActionStream()_|Required| **Long**|An array of action/value pairs. For more information, see Remarks.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Event.SetFilterCommands.md b/api/Visio.Event.SetFilterCommands.md
index f3f04a493aa..2f75fad8f96 100644
--- a/api/Visio.Event.SetFilterCommands.md
+++ b/api/Visio.Event.SetFilterCommands.md
@@ -27,11 +27,11 @@ Specifies an array of command ranges and a **True** or **False** value indicati
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Commands()_|Required| **Long**|An array of command ranges and a **True** or **False** value specifying how to filter events for each command range.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Event.SetFilterObjects.md b/api/Visio.Event.SetFilterObjects.md
index 67406f4d2ce..ac5f77a531b 100644
--- a/api/Visio.Event.SetFilterObjects.md
+++ b/api/Visio.Event.SetFilterObjects.md
@@ -27,11 +27,11 @@ Specifies an array of object types and a **True** or **False** value indicating
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Objects()_|Required| **Long**|An array of objects types and a **True** or **False** value specifying how to filter events for each object type.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Event.SetFilterSRC.md b/api/Visio.Event.SetFilterSRC.md
index d5e1e293dc5..62de806767f 100644
--- a/api/Visio.Event.SetFilterSRC.md
+++ b/api/Visio.Event.SetFilterSRC.md
@@ -27,11 +27,11 @@ Specifies an array of cell ranges and a **True** or **False** value indicating
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SRCStream()_|Required| **Integer**|An array of cell ranges and a **True** or **False** value specifying how to filter events for each range.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Event.Target.md b/api/Visio.Event.Target.md
index 4d40dc3390d..49c855c9e7f 100644
--- a/api/Visio.Event.Target.md
+++ b/api/Visio.Event.Target.md
@@ -23,7 +23,7 @@ Gets or sets the target of an event. Read/write.
_expression_ A variable that represents a [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Event.TargetArgs.md b/api/Visio.Event.TargetArgs.md
index edf4b1135ab..6f8f06dccbf 100644
--- a/api/Visio.Event.TargetArgs.md
+++ b/api/Visio.Event.TargetArgs.md
@@ -23,7 +23,7 @@ Gets or sets the arguments to be sent to the target of an event. Read/write.
_expression_ A variable that represents a [Event](./Visio.Event.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Event.Trigger.md b/api/Visio.Event.Trigger.md
index 06331da1b2f..4f7edcc03b1 100644
--- a/api/Visio.Event.Trigger.md
+++ b/api/Visio.Event.Trigger.md
@@ -27,11 +27,11 @@ Causes an event's action to be performed.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ContextString_|Required| **String**| The string to send to the target of the event.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.EventList.Add.md b/api/Visio.EventList.Add.md
index 78e3d63c4c5..31bca644c17 100644
--- a/api/Visio.EventList.Add.md
+++ b/api/Visio.EventList.Add.md
@@ -27,14 +27,14 @@ Adds an **Event** object that runs an add-on when an event occurs. The **Event*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _EventCode_|Required| **Integer**|The event(s) to capture.|
| _Action_|Required| **Integer**|The action to perform. Must be **visActCodeRunAddon** , a member of **[VisEventCodes](Visio.viseventcodes.md)** in the Visio type Library.|
| _Target_|Required| **String**|The name of your add-on.|
| _TargetArgs_|Required| **String**|The string that is passed to your **Event** object to set its **TargetArgs** property.|
-### Return Value
+### Return value
Event
diff --git a/api/Visio.EventList.AddAdvise.md b/api/Visio.EventList.AddAdvise.md
index 6f9a9a43ea6..91c8868259b 100644
--- a/api/Visio.EventList.AddAdvise.md
+++ b/api/Visio.EventList.AddAdvise.md
@@ -27,14 +27,14 @@ Adds an **Event** object to the **EventList** collection of the source object w
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _EventCode_|Required| **Integer**|The event(s) that generate notifications.|
| _SinkIUnkOrIDisp_|Required| **Variant**|A reference to a COM interface on the object that is to receive event notifications.|
| _IIDSink_|Required| **String**| Reserved for future use. Must be "".|
| _TargetArgs_|Required| **String**|The string that is passed to your **Event** object to set its **TargetArgs** property.|
-### Return Value
+### Return value
Event
diff --git a/api/Visio.EventList.Application.md b/api/Visio.EventList.Application.md
index 6946994d8dc..18497255b85 100644
--- a/api/Visio.EventList.Application.md
+++ b/api/Visio.EventList.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents an [EventList](./Visio.EventList.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.EventList.Count.md b/api/Visio.EventList.Count.md
index 308f3a14cc4..db23766a6d6 100644
--- a/api/Visio.EventList.Count.md
+++ b/api/Visio.EventList.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents an [EventList](./Visio.EventList.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.EventList.Item.md b/api/Visio.EventList.Item.md
index 9c7fa3a7cfd..e28906c0223 100644
--- a/api/Visio.EventList.Item.md
+++ b/api/Visio.EventList.Item.md
@@ -27,11 +27,11 @@ Returns an item from a collection. The **Item** property is the default propert
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Integer**|The index number of the object in its collection.|
-### Return Value
+### Return value
Event
diff --git a/api/Visio.EventList.ItemFromID.md b/api/Visio.EventList.ItemFromID.md
index c94bbb35d71..9fbeef8b1d6 100644
--- a/api/Visio.EventList.ItemFromID.md
+++ b/api/Visio.EventList.ItemFromID.md
@@ -27,11 +27,11 @@ Returns an item of a collection using the ID of the item. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nID_|Required| **Long**|The ID of the object to retrieve.|
-### Return Value
+### Return value
Event
diff --git a/api/Visio.EventList.ObjectType.md b/api/Visio.EventList.ObjectType.md
index 29761d0469c..d490918c040 100644
--- a/api/Visio.EventList.ObjectType.md
+++ b/api/Visio.EventList.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents an [EventList](./Visio.EventList.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.FollowHyperlink.md b/api/Visio.FollowHyperlink.md
index 2af57d85817..e89aff613d9 100644
--- a/api/Visio.FollowHyperlink.md
+++ b/api/Visio.FollowHyperlink.md
@@ -24,12 +24,12 @@ Follows the hyperlink at the specified index in the specified shape in Microsoft
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ShapeIndex|Required| **Long**|The index of the shape that contains the hyperlink.|
|HyperlinkIndex|Required| **Long**|The index of the hyperlink in the collection of hyperlinks in the specified shape.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Font.Application.md b/api/Visio.Font.Application.md
index b278423e8c5..ed0d5ac5edd 100644
--- a/api/Visio.Font.Application.md
+++ b/api/Visio.Font.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Font](./Visio.Font.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Font.Attributes.md b/api/Visio.Font.Attributes.md
index f6bcc1c28b8..8b9bef5fd4a 100644
--- a/api/Visio.Font.Attributes.md
+++ b/api/Visio.Font.Attributes.md
@@ -23,7 +23,7 @@ Returns the attributes of the a **Font** object. Read-only.
_expression_ A variable that represents a [Font](./Visio.Font.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Font.CharSet.md b/api/Visio.Font.CharSet.md
index 79344363f0b..1ff88d12a6c 100644
--- a/api/Visio.Font.CharSet.md
+++ b/api/Visio.Font.CharSet.md
@@ -23,7 +23,7 @@ Returns the Microsoft Windows character set for a **Font** object. Read-only.
_expression_ A variable that represents a [Font](./Visio.Font.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Font.Document.md b/api/Visio.Font.Document.md
index 76b9b6435b9..7b277742c01 100644
--- a/api/Visio.Font.Document.md
+++ b/api/Visio.Font.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Font](./Visio.Font.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Font.ID.md b/api/Visio.Font.ID.md
index 59065c1e430..78f0ff60259 100644
--- a/api/Visio.Font.ID.md
+++ b/api/Visio.Font.ID.md
@@ -23,7 +23,7 @@ Gets the ID of an object. Read-only.
_expression_ A variable that represents a [Font](./Visio.Font.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Font.Index.md b/api/Visio.Font.Index.md
index d327f97e1f2..63636fd43c3 100644
--- a/api/Visio.Font.Index.md
+++ b/api/Visio.Font.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of a **Font** object in the **Fonts** collection. Rea
_expression_ A variable that represents a [Font](./Visio.Font.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Font.Name.md b/api/Visio.Font.Name.md
index 0a0a69a2c0a..0747368aaac 100644
--- a/api/Visio.Font.Name.md
+++ b/api/Visio.Font.Name.md
@@ -23,7 +23,7 @@ Specifies the name of an object. Read-only.
_expression_ A variable that represents a [Font](./Visio.Font.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Font.ObjectType.md b/api/Visio.Font.ObjectType.md
index 20fb5a35fc7..335e06d4ef0 100644
--- a/api/Visio.Font.ObjectType.md
+++ b/api/Visio.Font.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Font](./Visio.Font.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Font.PitchAndFamily.md b/api/Visio.Font.PitchAndFamily.md
index 4785ac1b7b3..0b3c46b3bcb 100644
--- a/api/Visio.Font.PitchAndFamily.md
+++ b/api/Visio.Font.PitchAndFamily.md
@@ -23,7 +23,7 @@ Returns the pitch and family code for a **Font** object. Read-only.
_expression_ A variable that represents a [Font](./Visio.Font.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Font.Stat.md b/api/Visio.Font.Stat.md
index 1451fcf456a..b8475ca7c82 100644
--- a/api/Visio.Font.Stat.md
+++ b/api/Visio.Font.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Font](./Visio.Font.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Fonts.Application.md b/api/Visio.Fonts.Application.md
index 3c01ce5fd8f..bc0af4fbb61 100644
--- a/api/Visio.Fonts.Application.md
+++ b/api/Visio.Fonts.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Fonts](./Visio.Fonts.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Fonts.Count.md b/api/Visio.Fonts.Count.md
index dd63d8da0b3..2d7c5fee2b4 100644
--- a/api/Visio.Fonts.Count.md
+++ b/api/Visio.Fonts.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Fonts](./Visio.Fonts.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Fonts.Document.md b/api/Visio.Fonts.Document.md
index 1289d9546a2..d0b68caf7b0 100644
--- a/api/Visio.Fonts.Document.md
+++ b/api/Visio.Fonts.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Fonts](./Visio.Fonts.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Fonts.Item.md b/api/Visio.Fonts.Item.md
index 960e1bf53e8..e904cc96248 100644
--- a/api/Visio.Fonts.Item.md
+++ b/api/Visio.Fonts.Item.md
@@ -27,11 +27,11 @@ Returns an item from a collection. The **Item** property is the default propert
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|Contains the name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
Font
diff --git a/api/Visio.Fonts.ItemFromID.md b/api/Visio.Fonts.ItemFromID.md
index 4d3b8433ba3..cd8035d605b 100644
--- a/api/Visio.Fonts.ItemFromID.md
+++ b/api/Visio.Fonts.ItemFromID.md
@@ -27,11 +27,11 @@ Returns an item of a collection using the ID of the item. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nID_|Required| **Long**|The ID of the object to retrieve.|
-### Return Value
+### Return value
Font
diff --git a/api/Visio.Fonts.ObjectType.md b/api/Visio.Fonts.ObjectType.md
index 06502c09f07..c7317f704d6 100644
--- a/api/Visio.Fonts.ObjectType.md
+++ b/api/Visio.Fonts.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Fonts](./Visio.Fonts.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Fonts.Stat.md b/api/Visio.Fonts.Stat.md
index 7d702912cae..293611a196f 100644
--- a/api/Visio.Fonts.Stat.md
+++ b/api/Visio.Fonts.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Fonts](./Visio.Fonts.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.FormatCount.md b/api/Visio.FormatCount.md
index 498cc3955bd..3e3b7232c14 100644
--- a/api/Visio.FormatCount.md
+++ b/api/Visio.FormatCount.md
@@ -20,7 +20,7 @@ Indicates the number of output formats that are installed on the user's computer
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.GetErrorMessage.md b/api/Visio.GetErrorMessage.md
index d47ab51d7d7..d3ee7eeace3 100644
--- a/api/Visio.GetErrorMessage.md
+++ b/api/Visio.GetErrorMessage.md
@@ -24,11 +24,11 @@ Returns a string that describes the specified error message code in Microsoft Vi
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ErrorCode|Required| **Long**|The error message code for which you want to get a description.|
-### Return Value
+### Return value
String
diff --git a/api/Visio.GetFormatName.md b/api/Visio.GetFormatName.md
index 557296ed936..4468f8b5e56 100644
--- a/api/Visio.GetFormatName.md
+++ b/api/Visio.GetFormatName.md
@@ -24,12 +24,12 @@ Places the friendly name of the output format specified by the index passed to t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|nIndex |Required| **Long**|The zero-based index of the output format within the list of output formats on the user's computer.|
|pVal |Required| **String**|Variable that will hold the display name of the output format. The **GetFormatName** method places the name in this variable.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.GetPageView.md b/api/Visio.GetPageView.md
index 58e94375a82..5d94aa54034 100644
--- a/api/Visio.GetPageView.md
+++ b/api/Visio.GetPageView.md
@@ -24,13 +24,13 @@ Gets the position and zoom factor (size) of the drawing page in Microsoft Visio
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PageXAtViewCenter|Required| **Double**|The x-coordinate of the center of the page, in drawing-page units, measured from the lower left corner of the page.|
|PageYAtViewCenter|Required| **Double**|The y-coordinate of the center of the page, in drawing-page units, measured from the lower left corner of the page.|
|ZoomFactor|Required| **Double**|The factor by which the zoom (page size) is multiplied.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.GetPhysicalDimensions.md b/api/Visio.GetPhysicalDimensions.md
index 515ea1fb115..0c52bdc4ff1 100644
--- a/api/Visio.GetPhysicalDimensions.md
+++ b/api/Visio.GetPhysicalDimensions.md
@@ -24,13 +24,13 @@ Based on the enumerated screen-resolution value passed to the method in the eRes
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|eRes|Required| ** [VISWEB_DISP_RES](Visio.visweb_disp_res.enumeration.visio.save.md)**|A screen-resolution value.|
|pnWidth |Required| **Long**|The number of horizontal screen pixels.|
|pnHeight |Required| **Long**|The number of vertical screen pixels.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Global.ActiveDocument.md b/api/Visio.Global.ActiveDocument.md
index d9fb05ec153..93ac9b5351d 100644
--- a/api/Visio.Global.ActiveDocument.md
+++ b/api/Visio.Global.ActiveDocument.md
@@ -23,7 +23,7 @@ Returns the active **Document** object, which is the document shown in the acti
_expression_ A variable that represents a [Global](./Visio.Global.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Global.ActivePage.md b/api/Visio.Global.ActivePage.md
index 82b4b5654ad..97bffbe6f8a 100644
--- a/api/Visio.Global.ActivePage.md
+++ b/api/Visio.Global.ActivePage.md
@@ -23,7 +23,7 @@ Returns the active **Page** object. Read-only.
_expression_ A variable that represents a [Global](./Visio.Global.md) object.
-### Return Value
+### Return value
Page
diff --git a/api/Visio.Global.ActiveWindow.md b/api/Visio.Global.ActiveWindow.md
index 0f88119b25b..0b42379cb65 100644
--- a/api/Visio.Global.ActiveWindow.md
+++ b/api/Visio.Global.ActiveWindow.md
@@ -23,7 +23,7 @@ Returns the active **Window** object. Read-only.
_expression_ A variable that represents a [Global](./Visio.Global.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.Global.Addons.md b/api/Visio.Global.Addons.md
index a7b5ab8b85a..1a8019a1ed7 100644
--- a/api/Visio.Global.Addons.md
+++ b/api/Visio.Global.Addons.md
@@ -23,7 +23,7 @@ Returns the **Addons** collection of an **Application** or **InvisibleApp** obj
_expression_ A variable that represents a [Global](./Visio.Global.md) object.
-### Return Value
+### Return value
Addons
diff --git a/api/Visio.Global.Application.md b/api/Visio.Global.Application.md
index a4ad10f7fa5..deee9dc3f2c 100644
--- a/api/Visio.Global.Application.md
+++ b/api/Visio.Global.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Global](./Visio.Global.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Global.Documents.md b/api/Visio.Global.Documents.md
index dce687dcc21..024a95b8fad 100644
--- a/api/Visio.Global.Documents.md
+++ b/api/Visio.Global.Documents.md
@@ -23,7 +23,7 @@ Returns the **Documents** collection for a Microsoft Visio instance. Read-only.
_expression_ A variable that represents a [Global](./Visio.Global.md) object.
-### Return Value
+### Return value
Documents
diff --git a/api/Visio.Global.Vbe.md b/api/Visio.Global.Vbe.md
index 5f1baca3c62..1b610022353 100644
--- a/api/Visio.Global.Vbe.md
+++ b/api/Visio.Global.Vbe.md
@@ -23,7 +23,7 @@ Gets the root object of the object model exposed by Microsoft Visual Basic for A
_expression_ A variable that represents a [Global](./Visio.Global.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.Global.Windows.md b/api/Visio.Global.Windows.md
index 031026efd20..a21500966f3 100644
--- a/api/Visio.Global.Windows.md
+++ b/api/Visio.Global.Windows.md
@@ -23,7 +23,7 @@ Returns the **Windows** collection for a Microsoft Visio instance or window. Re
_expression_ A variable that represents a [Global](./Visio.Global.md) object.
-### Return Value
+### Return value
Windows
diff --git a/api/Visio.GraphicItem.Application.md b/api/Visio.GraphicItem.Application.md
index f2c0210143a..63f3364f12f 100644
--- a/api/Visio.GraphicItem.Application.md
+++ b/api/Visio.GraphicItem.Application.md
@@ -26,7 +26,7 @@ Returns the instance of Microsoft Visio associated with a **GraphicItem** objec
_expression_ An expression that returns a [GraphicItem](./Visio.GraphicItem.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.GraphicItem.DataGraphic.md b/api/Visio.GraphicItem.DataGraphic.md
index c1637e145ae..a2a33dcfd47 100644
--- a/api/Visio.GraphicItem.DataGraphic.md
+++ b/api/Visio.GraphicItem.DataGraphic.md
@@ -26,7 +26,7 @@ Returns the **Master** object of type **visTypeDataGraphic** that contains the
_expression_ An expression that returns a [GraphicItem](./Visio.GraphicItem.md) object.
-### Return Value
+### Return value
Master
diff --git a/api/Visio.GraphicItem.Delete.md b/api/Visio.GraphicItem.Delete.md
index 9aa1947e164..0948b295414 100644
--- a/api/Visio.GraphicItem.Delete.md
+++ b/api/Visio.GraphicItem.Delete.md
@@ -26,7 +26,7 @@ Deletes a **GraphicItem** object from the **GraphicItems** collection of a **Ma
_expression_ A variable that represents a [GraphicItem](./Visio.GraphicItem.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.GraphicItem.Description.md b/api/Visio.GraphicItem.Description.md
index 24f9e48a23c..2c9b4547d79 100644
--- a/api/Visio.GraphicItem.Description.md
+++ b/api/Visio.GraphicItem.Description.md
@@ -26,7 +26,7 @@ Returns a string that describes the type of the graphic item. Read-only.
_expression_ A variable that represents a [GraphicItem](./Visio.GraphicItem.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.GraphicItem.Document.md b/api/Visio.GraphicItem.Document.md
index 2d34f400d56..6526f2e4d32 100644
--- a/api/Visio.GraphicItem.Document.md
+++ b/api/Visio.GraphicItem.Document.md
@@ -26,7 +26,7 @@ Gets the **Document** object that contains the **Master** object of type **visT
_expression_ An expression that returns a [GraphicItem](./Visio.GraphicItem.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.GraphicItem.GetExpression.md b/api/Visio.GraphicItem.GetExpression.md
index 9dee2be3b9b..522f890b8c8 100644
--- a/api/Visio.GraphicItem.GetExpression.md
+++ b/api/Visio.GraphicItem.GetExpression.md
@@ -30,12 +30,12 @@ Gets the label of the shape data item (custom property) that the **GraphicItem*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Field_|Required| **VisGraphicField**|Out parameter. A constant value from the **VisGraphicField** enumeration specifying whether Expression is a shape-data-item label or the formula in the ShapeSheet spreadsheet of the primary data field (column) assigned to the **GraphicItem** . See Remarks for possible values.|
| _Expression_|Required| **String**|Out parameter. The ShapeSheet expression associated with the Field parameter.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.GraphicItem.HorizontalPosition.md b/api/Visio.GraphicItem.HorizontalPosition.md
index 75e1df9e353..cefbd4029f1 100644
--- a/api/Visio.GraphicItem.HorizontalPosition.md
+++ b/api/Visio.GraphicItem.HorizontalPosition.md
@@ -26,7 +26,7 @@ Gets or sets the horizontal position of the **GraphicItem** object relative to
_expression_ An expression that returns a [GraphicItem](./Visio.GraphicItem.md) object.
-### Return Value
+### Return value
**VisGraphicPositionHorizontal**
diff --git a/api/Visio.GraphicItem.ID.md b/api/Visio.GraphicItem.ID.md
index a207100796a..3ad2c8200ac 100644
--- a/api/Visio.GraphicItem.ID.md
+++ b/api/Visio.GraphicItem.ID.md
@@ -26,7 +26,7 @@ Gets the unique identifier of the **GraphicItem** object. Read-only.
_expression_ A variable that represents a [GraphicItem](./Visio.GraphicItem.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.GraphicItem.Index.md b/api/Visio.GraphicItem.Index.md
index 0441e3275a1..ebd57ef07b2 100644
--- a/api/Visio.GraphicItem.Index.md
+++ b/api/Visio.GraphicItem.Index.md
@@ -26,7 +26,7 @@ Gets or sets the ordinal position of a **GraphicItem** object in the **GraphicI
_expression_ A variable that represents a [GraphicItem](./Visio.GraphicItem.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.GraphicItem.ObjectType.md b/api/Visio.GraphicItem.ObjectType.md
index 80f8912703d..c9d085dc74a 100644
--- a/api/Visio.GraphicItem.ObjectType.md
+++ b/api/Visio.GraphicItem.ObjectType.md
@@ -26,7 +26,7 @@ Returns **visObjTypeGraphicItem** , the type of a **GraphicItem** object. Read-
_expression_ An expression that returns a [GraphicItem](./Visio.GraphicItem.md) object.
-### Return Value
+### Return value
VisObjectTypes
diff --git a/api/Visio.GraphicItem.SetExpression.md b/api/Visio.GraphicItem.SetExpression.md
index dc93f23a016..e976712d21c 100644
--- a/api/Visio.GraphicItem.SetExpression.md
+++ b/api/Visio.GraphicItem.SetExpression.md
@@ -30,12 +30,12 @@ Sets the value of the expression string that is part of a **GraphicItem** objec
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Field_|Required| **VisGraphicField**|The label or formula of the primary data field (column) assigned to the **GraphicItem** . See Remarks for possible values.|
| _Expression_|Required| **String**|The ShapeSheet expression associated with the Field parameter.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.GraphicItem.Stat.md b/api/Visio.GraphicItem.Stat.md
index f6efb0a6787..76d6d9f074e 100644
--- a/api/Visio.GraphicItem.Stat.md
+++ b/api/Visio.GraphicItem.Stat.md
@@ -26,7 +26,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [GraphicItem](./Visio.GraphicItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.GraphicItem.Tag.md b/api/Visio.GraphicItem.Tag.md
index 5f08ea34758..67c6f67a34b 100644
--- a/api/Visio.GraphicItem.Tag.md
+++ b/api/Visio.GraphicItem.Tag.md
@@ -26,7 +26,7 @@ Gets or sets a user-defined string expression that can store extra data related
_expression_ An expression that returns a [GraphicItem](./Visio.GraphicItem.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.GraphicItem.Type.md b/api/Visio.GraphicItem.Type.md
index 0ddfd527332..8c816c3b154 100644
--- a/api/Visio.GraphicItem.Type.md
+++ b/api/Visio.GraphicItem.Type.md
@@ -26,7 +26,7 @@ Returns the type of the graphic item. Read-only.
_expression_ A variable that represents a [GraphicItem](./Visio.GraphicItem.md) object.
-### Return Value
+### Return value
VisGraphicItemTypes
diff --git a/api/Visio.GraphicItem.UseDataGraphicPosition.md b/api/Visio.GraphicItem.UseDataGraphicPosition.md
index 31ae26af0c0..f7e3609ddbf 100644
--- a/api/Visio.GraphicItem.UseDataGraphicPosition.md
+++ b/api/Visio.GraphicItem.UseDataGraphicPosition.md
@@ -26,7 +26,7 @@ Gets or sets whether to use the current default callout position for graphic ite
_expression_ An expression that returns a [GraphicItem](./Visio.GraphicItem.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.GraphicItem.VerticalPosition.md b/api/Visio.GraphicItem.VerticalPosition.md
index 8bee37b9f49..52ba201d83f 100644
--- a/api/Visio.GraphicItem.VerticalPosition.md
+++ b/api/Visio.GraphicItem.VerticalPosition.md
@@ -26,7 +26,7 @@ Gets or sets the vertical position of the **GraphicItem** object relative to th
_expression_ An expression that returns a [GraphicItem](./Visio.GraphicItem.md) object.
-### Return Value
+### Return value
VisGraphicPositionVertical
diff --git a/api/Visio.GraphicItems.AddCopy.md b/api/Visio.GraphicItems.AddCopy.md
index bb83f15c40c..06cfc061860 100644
--- a/api/Visio.GraphicItems.AddCopy.md
+++ b/api/Visio.GraphicItems.AddCopy.md
@@ -30,11 +30,11 @@ Adds a copy of a **GraphicItem** object to the **GraphicItems** collection of a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _GraphicItem_|Required| **[IVGRAPHICITEM]**|The **GraphicItem** object to copy.|
-### Return Value
+### Return value
GraphicItem
diff --git a/api/Visio.GraphicItems.Application.md b/api/Visio.GraphicItems.Application.md
index b0ec853c52f..5ac3fc096b9 100644
--- a/api/Visio.GraphicItems.Application.md
+++ b/api/Visio.GraphicItems.Application.md
@@ -26,7 +26,7 @@ Returns the instance of Microsoft Visio associated with the **GraphicItems** co
_expression_ An expression that returns a [GraphicItems](./Visio.GraphicItems.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.GraphicItems.Count.md b/api/Visio.GraphicItems.Count.md
index d0240b8c7c5..79a2fd3b4e7 100644
--- a/api/Visio.GraphicItems.Count.md
+++ b/api/Visio.GraphicItems.Count.md
@@ -26,7 +26,7 @@ Returns the number of **GraphicItem** objects in the **GraphicItems** collectio
_expression_ An expression that returns a [GraphicItems](./Visio.GraphicItems.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.GraphicItems.DataGraphic.md b/api/Visio.GraphicItems.DataGraphic.md
index 4202f2db321..6582b98fd84 100644
--- a/api/Visio.GraphicItems.DataGraphic.md
+++ b/api/Visio.GraphicItems.DataGraphic.md
@@ -26,7 +26,7 @@ Returns the **Master** object of type **visTypeDataGraphic** that contains the
_expression_ An expression that returns a [GraphicItems](./Visio.GraphicItems.md) object.
-### Return Value
+### Return value
Master
diff --git a/api/Visio.GraphicItems.Document.md b/api/Visio.GraphicItems.Document.md
index bd7bbec9a20..b3825cbc6e8 100644
--- a/api/Visio.GraphicItems.Document.md
+++ b/api/Visio.GraphicItems.Document.md
@@ -26,7 +26,7 @@ Gets the **Document** object that contains the **Master** object of type **visT
_expression_ An expression that returns a [GraphicItems](./Visio.GraphicItems.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.GraphicItems.Item.md b/api/Visio.GraphicItems.Item.md
index 8f6ab1121c1..7277e5d6009 100644
--- a/api/Visio.GraphicItems.Item.md
+++ b/api/Visio.GraphicItems.Item.md
@@ -30,11 +30,11 @@ Returns the **GraphicItem** object at the specified index position in the **Gra
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The index of the object to retrieve.|
-### Return Value
+### Return value
GraphicItem
diff --git a/api/Visio.GraphicItems.ItemFromID.md b/api/Visio.GraphicItems.ItemFromID.md
index 1ad24999315..7216a6d3604 100644
--- a/api/Visio.GraphicItems.ItemFromID.md
+++ b/api/Visio.GraphicItems.ItemFromID.md
@@ -30,11 +30,11 @@ Returns a **GraphicItem** object from the **GraphicItems** collection by using
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectID_|Required| **Long**|The unique ID of the **GraphicItem** object to retrieve.|
-### Return Value
+### Return value
GraphicItem
diff --git a/api/Visio.GraphicItems.ObjectType.md b/api/Visio.GraphicItems.ObjectType.md
index b412c7d823a..d4463b8c0d7 100644
--- a/api/Visio.GraphicItems.ObjectType.md
+++ b/api/Visio.GraphicItems.ObjectType.md
@@ -26,7 +26,7 @@ Returns **visObjTypeGraphicItems** , the type of a **GraphicItems** object. Rea
_expression_ An expression that returns a [GraphicItems](./Visio.GraphicItems.md) object.
-### Return Value
+### Return value
VisObjectTypes
diff --git a/api/Visio.GraphicItems.Stat.md b/api/Visio.GraphicItems.Stat.md
index 31726297da7..9febd380976 100644
--- a/api/Visio.GraphicItems.Stat.md
+++ b/api/Visio.GraphicItems.Stat.md
@@ -26,7 +26,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [GraphicItems](./Visio.GraphicItems.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.GridVisible.md b/api/Visio.GridVisible.md
index 94f574c96b8..ea5a063e41c 100644
--- a/api/Visio.GridVisible.md
+++ b/api/Visio.GridVisible.md
@@ -20,7 +20,7 @@ Gets or sets a value that indicates whether the page grid is visible in Microsof
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.HighQualityRender.md b/api/Visio.HighQualityRender.md
index e79d7d9497e..0b49aaa839e 100644
--- a/api/Visio.HighQualityRender.md
+++ b/api/Visio.HighQualityRender.md
@@ -20,7 +20,7 @@ Gets or sets a value that indicates whether high-quality rendering is enabled in
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.HostID.md b/api/Visio.HostID.md
index 108acc03a57..aff87e9dd90 100644
--- a/api/Visio.HostID.md
+++ b/api/Visio.HostID.md
@@ -23,7 +23,7 @@ String representation of the GUID of the host application of the Microsoft Visio
_expression_ A variable that represents a [DrawingControl](./Visio.DrawingControl.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Hyperlink.AddToFavorites.md b/api/Visio.Hyperlink.AddToFavorites.md
index ff7998c6658..bba3160f04c 100644
--- a/api/Visio.Hyperlink.AddToFavorites.md
+++ b/api/Visio.Hyperlink.AddToFavorites.md
@@ -27,11 +27,11 @@ Adds a shortcut for a hyperlink address in the presently registered Favorites fo
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FavoritesTitle_|Optional| **Variant**|The title to assign to the new shortcut.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Hyperlink.Address.md b/api/Visio.Hyperlink.Address.md
index fd46bc4c464..91fee08d057 100644
--- a/api/Visio.Hyperlink.Address.md
+++ b/api/Visio.Hyperlink.Address.md
@@ -23,7 +23,7 @@ Gets or sets the address for a shape's **Hyperlink** object, the address to whi
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Hyperlink.Application.md b/api/Visio.Hyperlink.Application.md
index e8607a9841d..7f5a6149e48 100644
--- a/api/Visio.Hyperlink.Application.md
+++ b/api/Visio.Hyperlink.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Hyperlink.Copy.md b/api/Visio.Hyperlink.Copy.md
index a4089adbdab..da644015e66 100644
--- a/api/Visio.Hyperlink.Copy.md
+++ b/api/Visio.Hyperlink.Copy.md
@@ -23,7 +23,7 @@ Copies a hyperlink to the Clipboard.
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Hyperlink.CreateURL.md b/api/Visio.Hyperlink.CreateURL.md
index 4cea5ebdb16..85a4754c3bc 100644
--- a/api/Visio.Hyperlink.CreateURL.md
+++ b/api/Visio.Hyperlink.CreateURL.md
@@ -27,11 +27,11 @@ Returns a fully qualified and optionally canonicalized representation of the hyp
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CanonicalForm_|Required| **Integer**| **True** (non-zero) if canonical form; otherwise, **False** (0).|
-### Return Value
+### Return value
String
diff --git a/api/Visio.Hyperlink.Delete.md b/api/Visio.Hyperlink.Delete.md
index 655b3167240..46355072f1b 100644
--- a/api/Visio.Hyperlink.Delete.md
+++ b/api/Visio.Hyperlink.Delete.md
@@ -23,7 +23,7 @@ Deletes an object or selection.
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Hyperlink.Description.md b/api/Visio.Hyperlink.Description.md
index 12a4efb8e31..8c575476c85 100644
--- a/api/Visio.Hyperlink.Description.md
+++ b/api/Visio.Hyperlink.Description.md
@@ -23,7 +23,7 @@ Gets or sets the description of a hyperlink. Read/write.
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Hyperlink.ExtraInfo.md b/api/Visio.Hyperlink.ExtraInfo.md
index 131cd3ae423..dfb080e3f8e 100644
--- a/api/Visio.Hyperlink.ExtraInfo.md
+++ b/api/Visio.Hyperlink.ExtraInfo.md
@@ -23,7 +23,7 @@ Returns or sets extra URL request information used to resolve the hyperlink's UR
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Hyperlink.Follow.md b/api/Visio.Hyperlink.Follow.md
index 1e88f0a67f3..098ccd6d26f 100644
--- a/api/Visio.Hyperlink.Follow.md
+++ b/api/Visio.Hyperlink.Follow.md
@@ -23,7 +23,7 @@ Causes Microsoft Visio to navigate to a hyperlink.
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Hyperlink.Frame.md b/api/Visio.Hyperlink.Frame.md
index a928e27e005..f6fc3a0d3d0 100644
--- a/api/Visio.Hyperlink.Frame.md
+++ b/api/Visio.Hyperlink.Frame.md
@@ -23,7 +23,7 @@ Gets or sets the name of an HTML frame in the shape's **Hyperlink** object. Rea
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Hyperlink.IsDefaultLink.md b/api/Visio.Hyperlink.IsDefaultLink.md
index 555fb013c37..2227a53476c 100644
--- a/api/Visio.Hyperlink.IsDefaultLink.md
+++ b/api/Visio.Hyperlink.IsDefaultLink.md
@@ -23,7 +23,7 @@ Determines the default **Hyperlink** object for a shape. Read/write.
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Hyperlink.Name.md b/api/Visio.Hyperlink.Name.md
index cc712ed2400..148b0d7dae8 100644
--- a/api/Visio.Hyperlink.Name.md
+++ b/api/Visio.Hyperlink.Name.md
@@ -23,7 +23,7 @@ Specifies the name of an object. Read-only.
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Hyperlink.NameU.md b/api/Visio.Hyperlink.NameU.md
index 7c8149c769c..883cf9a421d 100644
--- a/api/Visio.Hyperlink.NameU.md
+++ b/api/Visio.Hyperlink.NameU.md
@@ -23,7 +23,7 @@ Specifies the universal name of a **Hyperlink** object. Read/write.
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Hyperlink.NewWindow.md b/api/Visio.Hyperlink.NewWindow.md
index 5edcee4aa18..59a32d1d37c 100644
--- a/api/Visio.Hyperlink.NewWindow.md
+++ b/api/Visio.Hyperlink.NewWindow.md
@@ -23,7 +23,7 @@ Determines whether Microsoft Visio opens a window in a new location when it foll
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Hyperlink.ObjectType.md b/api/Visio.Hyperlink.ObjectType.md
index 437fd9c27ea..7f1ea2552f1 100644
--- a/api/Visio.Hyperlink.ObjectType.md
+++ b/api/Visio.Hyperlink.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Hyperlink.Row.md b/api/Visio.Hyperlink.Row.md
index 4475fe43c39..2dbc2282ea1 100644
--- a/api/Visio.Hyperlink.Row.md
+++ b/api/Visio.Hyperlink.Row.md
@@ -23,7 +23,7 @@ Returns the row index of a hyperlink. Read-only.
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Hyperlink.Shape.md b/api/Visio.Hyperlink.Shape.md
index 425b2c6d79a..2ba24c5f540 100644
--- a/api/Visio.Hyperlink.Shape.md
+++ b/api/Visio.Hyperlink.Shape.md
@@ -23,7 +23,7 @@ Returns the **Shape** object that owns a **Cell** , **Characters** , **Row** ,
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Hyperlink.Stat.md b/api/Visio.Hyperlink.Stat.md
index 8eeb7a06465..2a987810799 100644
--- a/api/Visio.Hyperlink.Stat.md
+++ b/api/Visio.Hyperlink.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Hyperlink.SubAddress.md b/api/Visio.Hyperlink.SubAddress.md
index 84237441e9b..1926d15e1d7 100644
--- a/api/Visio.Hyperlink.SubAddress.md
+++ b/api/Visio.Hyperlink.SubAddress.md
@@ -23,7 +23,7 @@ Gets or sets the subaddress in a shape's **Hyperlink** object. Read/write.
_expression_ A variable that represents a [Hyperlink](./Visio.Hyperlink.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.HyperlinkAddress.md b/api/Visio.HyperlinkAddress.md
index 408a9d2b115..59455530393 100644
--- a/api/Visio.HyperlinkAddress.md
+++ b/api/Visio.HyperlinkAddress.md
@@ -24,12 +24,12 @@ Gets the address of the specified hyperlink associated with the specified shape
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ShapeIndex|Required| **Long**|The index of the specified shape in the collection of shapes in the drawing that is open in Visio Viewer.|
|HyperlinkIndex|Required| **Long**|The index of the specified hyperlink in the collection of hyperlinks in the specified shape in the drawing that is open in Visio Viewer.|
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.HyperlinkCount.md b/api/Visio.HyperlinkCount.md
index bc74e445312..0fbf8ac99d9 100644
--- a/api/Visio.HyperlinkCount.md
+++ b/api/Visio.HyperlinkCount.md
@@ -24,11 +24,11 @@ Gets the count of hyperlinks associated with the shape at the specified index in
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ShapeIndex|Required| **Long**|The index of the specified shape in the collection of shapes in the drawing open in Visio Viewer.|
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.Hyperlinks.Add.md b/api/Visio.Hyperlinks.Add.md
index c93b492508d..0efca529aa3 100644
--- a/api/Visio.Hyperlinks.Add.md
+++ b/api/Visio.Hyperlinks.Add.md
@@ -23,7 +23,7 @@ Adds a new object to a collection.
_expression_ A variable that represents a [Hyperlinks](./Visio.Hyperlinks.md) object.
-### Return Value
+### Return value
Hyperlink
diff --git a/api/Visio.Hyperlinks.Application.md b/api/Visio.Hyperlinks.Application.md
index 4c183391d31..b34f1574cfe 100644
--- a/api/Visio.Hyperlinks.Application.md
+++ b/api/Visio.Hyperlinks.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Hyperlinks](./Visio.Hyperlinks.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Hyperlinks.Count.md b/api/Visio.Hyperlinks.Count.md
index d9b5119235b..73aa11cbc12 100644
--- a/api/Visio.Hyperlinks.Count.md
+++ b/api/Visio.Hyperlinks.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Hyperlinks](./Visio.Hyperlinks.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Hyperlinks.Item.md b/api/Visio.Hyperlinks.Item.md
index c5cd19313b1..c9c128e28a4 100644
--- a/api/Visio.Hyperlinks.Item.md
+++ b/api/Visio.Hyperlinks.Item.md
@@ -27,11 +27,11 @@ Returns an item from a collection. The **Item** property is the default propert
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|Contains the name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
Hyperlink
diff --git a/api/Visio.Hyperlinks.ItemU.md b/api/Visio.Hyperlinks.ItemU.md
index 06a91ff7fd0..b5df53bfba3 100644
--- a/api/Visio.Hyperlinks.ItemU.md
+++ b/api/Visio.Hyperlinks.ItemU.md
@@ -27,11 +27,11 @@ Returns an object from a collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|Contains the universal name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
Hyperlink
diff --git a/api/Visio.Hyperlinks.ObjectType.md b/api/Visio.Hyperlinks.ObjectType.md
index 4f8d8627c98..8f2d8e627bb 100644
--- a/api/Visio.Hyperlinks.ObjectType.md
+++ b/api/Visio.Hyperlinks.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Hyperlinks](./Visio.Hyperlinks.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Hyperlinks.Shape.md b/api/Visio.Hyperlinks.Shape.md
index e87a7dc486c..c97aaad002a 100644
--- a/api/Visio.Hyperlinks.Shape.md
+++ b/api/Visio.Hyperlinks.Shape.md
@@ -23,7 +23,7 @@ Returns the **Shape** object that owns a **Cell** , **Characters** , **Row** ,
_expression_ A variable that represents a [Hyperlinks](./Visio.Hyperlinks.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Hyperlinks.Stat.md b/api/Visio.Hyperlinks.Stat.md
index db6ecadc968..02a2ee83e24 100644
--- a/api/Visio.Hyperlinks.Stat.md
+++ b/api/Visio.Hyperlinks.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Hyperlinks](./Visio.Hyperlinks.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.IVBUndoUnit.Description.md b/api/Visio.IVBUndoUnit.Description.md
index 0a3c0491bc9..9b5a2a9a984 100644
--- a/api/Visio.IVBUndoUnit.Description.md
+++ b/api/Visio.IVBUndoUnit.Description.md
@@ -23,7 +23,7 @@ Gets the description of an **IVBUndoUnit** interface. Read-only.
_expression_ A variable that represents an 'IVBUndoUnit' object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.IVBUndoUnit.Do.md b/api/Visio.IVBUndoUnit.Do.md
index 1d99a425aa8..8157d0a085d 100644
--- a/api/Visio.IVBUndoUnit.Do.md
+++ b/api/Visio.IVBUndoUnit.Do.md
@@ -27,11 +27,11 @@ Called by the Undo Manager to tell an undo unit to perform its action.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pMgr_|Required| **[IVBUNDOMANAGER]**|A pointer to an **IVBUndoManager** interface.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.IVBUndoUnit.OnNextAdd.md b/api/Visio.IVBUndoUnit.OnNextAdd.md
index 62d75c42b7a..f3b52593fa9 100644
--- a/api/Visio.IVBUndoUnit.OnNextAdd.md
+++ b/api/Visio.IVBUndoUnit.OnNextAdd.md
@@ -23,7 +23,7 @@ Notifies an undo unit that another undo unit has been added to the undo stack. R
_expression_ A variable that represents an 'IVBUndoUnit' object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.IVBUndoUnit.UnitSize.md b/api/Visio.IVBUndoUnit.UnitSize.md
index 9a26a0bafc8..f50de57db34 100644
--- a/api/Visio.IVBUndoUnit.UnitSize.md
+++ b/api/Visio.IVBUndoUnit.UnitSize.md
@@ -23,7 +23,7 @@ Returns the size of the undo unit in memory, in bytes. Read-only.
_expression_ A variable that represents a 'IVBUndoUnit' object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.IVBUndoUnit.UnitTypeCLSID.md b/api/Visio.IVBUndoUnit.UnitTypeCLSID.md
index ec9821e0fb9..69b24945d7e 100644
--- a/api/Visio.IVBUndoUnit.UnitTypeCLSID.md
+++ b/api/Visio.IVBUndoUnit.UnitTypeCLSID.md
@@ -23,7 +23,7 @@ Identifies an undo unit by its class ID (CLSID). Read-only.
_expression_ A variable that represents a 'IVBUndoUnit' object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.IVBUndoUnit.UnitTypeLong.md b/api/Visio.IVBUndoUnit.UnitTypeLong.md
index e2ff09f41df..93447eea4da 100644
--- a/api/Visio.IVBUndoUnit.UnitTypeLong.md
+++ b/api/Visio.IVBUndoUnit.UnitTypeLong.md
@@ -23,7 +23,7 @@ Identifies an undo unit by a **Long** . Read-only.
_expression_ A variable that represents a 'IVBUndoUnit' object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.IVisEventProc.VisEventProc.md b/api/Visio.IVisEventProc.VisEventProc.md
index f34a9c2a031..c97e5040ca8 100644
--- a/api/Visio.IVisEventProc.VisEventProc.md
+++ b/api/Visio.IVisEventProc.VisEventProc.md
@@ -27,7 +27,7 @@ Private member function of **IVisEventProc** that handles event notifications p
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nEventCode_|Required| **Integer**|The event or events that occurred. |
| _pSourceObj_|Required| **Object**|The object whose **EventList** collection contains the **Event** object that sent the notification.|
@@ -36,7 +36,7 @@ Private member function of **IVisEventProc** that handles event notifications p
| _pSubjectObj_|Required| **Object**|The subject of the event, which is the object to which the event occurred. See Remarks for examples.|
| _vMoreInfo_|Required| **Variant**|Additional information about the subject of the event. See Remarks for more information.|
-### Return Value
+### Return value
Variant
diff --git a/api/Visio.InitSettings.md b/api/Visio.InitSettings.md
index 4d72b55571a..45491d9c956 100644
--- a/api/Visio.InitSettings.md
+++ b/api/Visio.InitSettings.md
@@ -20,7 +20,7 @@ Loads the Web page settings that were saved in the registry in an earlier instan
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.InvisibleApp.Active.md b/api/Visio.InvisibleApp.Active.md
index 2e5b3771300..2093964ae61 100644
--- a/api/Visio.InvisibleApp.Active.md
+++ b/api/Visio.InvisibleApp.Active.md
@@ -23,7 +23,7 @@ Indicates whether the instance of Microsoft Visio represented by the **Applicat
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.InvisibleApp.ActiveDocument.md b/api/Visio.InvisibleApp.ActiveDocument.md
index 07a9b647576..87380cadbc9 100644
--- a/api/Visio.InvisibleApp.ActiveDocument.md
+++ b/api/Visio.InvisibleApp.ActiveDocument.md
@@ -23,7 +23,7 @@ Returns the active **Document** object, which is the document shown in the acti
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.InvisibleApp.ActivePage.md b/api/Visio.InvisibleApp.ActivePage.md
index 3d0723e6550..58bc07f0012 100644
--- a/api/Visio.InvisibleApp.ActivePage.md
+++ b/api/Visio.InvisibleApp.ActivePage.md
@@ -23,7 +23,7 @@ Returns the active **Page** object. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Page
diff --git a/api/Visio.InvisibleApp.ActivePrinter.md b/api/Visio.InvisibleApp.ActivePrinter.md
index 908b56b8631..eb2ce482b40 100644
--- a/api/Visio.InvisibleApp.ActivePrinter.md
+++ b/api/Visio.InvisibleApp.ActivePrinter.md
@@ -23,7 +23,7 @@ Specifies the printer that all Microsoft Visio documents print to. Read/write.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.InvisibleApp.ActiveWindow.md b/api/Visio.InvisibleApp.ActiveWindow.md
index 1d99c9fdafb..4bbf6e84ce8 100644
--- a/api/Visio.InvisibleApp.ActiveWindow.md
+++ b/api/Visio.InvisibleApp.ActiveWindow.md
@@ -23,7 +23,7 @@ Returns the active **Window** object. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.InvisibleApp.AddUndoUnit.md b/api/Visio.InvisibleApp.AddUndoUnit.md
index 8acec1c9cc9..b08c998c1e8 100644
--- a/api/Visio.InvisibleApp.AddUndoUnit.md
+++ b/api/Visio.InvisibleApp.AddUndoUnit.md
@@ -27,11 +27,11 @@ Adds an object that supports the **IOleUndoUnit** or **IVBUndoUnit** interface
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pUndoUnit_|Required| **[UNKNOWN]**|A reference to an object that supports the **IOleUndoUnit** or **IVBUndoUnit** interface.|
-### Return Value
+### Return value
clsVBUndoUnits
diff --git a/api/Visio.InvisibleApp.AddonPaths.md b/api/Visio.InvisibleApp.AddonPaths.md
index 1d017288f4e..3579626e6a4 100644
--- a/api/Visio.InvisibleApp.AddonPaths.md
+++ b/api/Visio.InvisibleApp.AddonPaths.md
@@ -23,7 +23,7 @@ Gets or sets the paths where Microsoft Visio looks for third-party or user add-o
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.InvisibleApp.Addons.md b/api/Visio.InvisibleApp.Addons.md
index 9bdcd71001f..008c58cc7ea 100644
--- a/api/Visio.InvisibleApp.Addons.md
+++ b/api/Visio.InvisibleApp.Addons.md
@@ -23,7 +23,7 @@ Returns the **Addons** collection of an **Application** or **InvisibleApp** obj
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Addons
diff --git a/api/Visio.InvisibleApp.AfterModal.md b/api/Visio.InvisibleApp.AfterModal.md
index e44c0b3ab12..5e4bad2f392 100644
--- a/api/Visio.InvisibleApp.AfterModal.md
+++ b/api/Visio.InvisibleApp.AfterModal.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'AfterModal'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance that is no longer modal.|
diff --git a/api/Visio.InvisibleApp.AfterRemoveHiddenInformation.md b/api/Visio.InvisibleApp.AfterRemoveHiddenInformation.md
index fe431ed3746..afb02c84eca 100644
--- a/api/Visio.InvisibleApp.AfterRemoveHiddenInformation.md
+++ b/api/Visio.InvisibleApp.AfterRemoveHiddenInformation.md
@@ -24,7 +24,7 @@ Occurs when hidden information is removed from the document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document from which hidden information has been removed.|
diff --git a/api/Visio.InvisibleApp.AfterResume.md b/api/Visio.InvisibleApp.AfterResume.md
index 4593e2b663c..56afba6d036 100644
--- a/api/Visio.InvisibleApp.AfterResume.md
+++ b/api/Visio.InvisibleApp.AfterResume.md
@@ -24,7 +24,7 @@ Occurs when the operating system resumes normal operation after having been susp
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that resumes after the operating system resumes normal operation.|
diff --git a/api/Visio.InvisibleApp.AfterResumeEvents.md b/api/Visio.InvisibleApp.AfterResumeEvents.md
index c7acab61d01..659f0036a08 100644
--- a/api/Visio.InvisibleApp.AfterResumeEvents.md
+++ b/api/Visio.InvisibleApp.AfterResumeEvents.md
@@ -24,11 +24,11 @@ Occurs after firing of events is resumed.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio in which firing of events resumed.|
-### Return Value
+### Return value
nothing
diff --git a/api/Visio.InvisibleApp.AlertResponse.md b/api/Visio.InvisibleApp.AlertResponse.md
index 89f486a42b0..8c8b3eb7ed8 100644
--- a/api/Visio.InvisibleApp.AlertResponse.md
+++ b/api/Visio.InvisibleApp.AlertResponse.md
@@ -23,7 +23,7 @@ Determines whether Microsoft Visio shows alerts and modal dialog boxes to the us
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.InvisibleApp.AppActivated.md b/api/Visio.InvisibleApp.AppActivated.md
index dce9d3b7dec..b155a5960af 100644
--- a/api/Visio.InvisibleApp.AppActivated.md
+++ b/api/Visio.InvisibleApp.AppActivated.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'AppActivated'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that becomes the active application.|
diff --git a/api/Visio.InvisibleApp.AppDeactivated.md b/api/Visio.InvisibleApp.AppDeactivated.md
index 52ed39122ea..9c4f890c2e3 100644
--- a/api/Visio.InvisibleApp.AppDeactivated.md
+++ b/api/Visio.InvisibleApp.AppDeactivated.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'AppDeactivated'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that is no longer the active application.|
diff --git a/api/Visio.InvisibleApp.AppObjActivated.md b/api/Visio.InvisibleApp.AppObjActivated.md
index 4de02b9eb62..73c4dd04052 100644
--- a/api/Visio.InvisibleApp.AppObjActivated.md
+++ b/api/Visio.InvisibleApp.AppObjActivated.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'AppObjActivated'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that has become the active instance.|
diff --git a/api/Visio.InvisibleApp.AppObjDeactivated.md b/api/Visio.InvisibleApp.AppObjDeactivated.md
index 0ace97ae206..eed8f1be7a2 100644
--- a/api/Visio.InvisibleApp.AppObjDeactivated.md
+++ b/api/Visio.InvisibleApp.AppObjDeactivated.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'AppObjDeactivated'(**_ByVal app As [IVAPPLICATION]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that is no longer the active instance.|
diff --git a/api/Visio.InvisibleApp.Application.md b/api/Visio.InvisibleApp.Application.md
index 469a50c7a49..8cce3d196a5 100644
--- a/api/Visio.InvisibleApp.Application.md
+++ b/api/Visio.InvisibleApp.Application.md
@@ -20,7 +20,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.InvisibleApp.Assistance.md b/api/Visio.InvisibleApp.Assistance.md
index 50b8c53e610..f95d407562b 100644
--- a/api/Visio.InvisibleApp.Assistance.md
+++ b/api/Visio.InvisibleApp.Assistance.md
@@ -23,7 +23,7 @@ Gets a reference to the Microsoft Office (MSO) **IAssistance** object, which pr
_expression_ An expression that returns a [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.InvisibleApp.AutoLayout.md b/api/Visio.InvisibleApp.AutoLayout.md
index ae312f5806d..56c41a36b63 100644
--- a/api/Visio.InvisibleApp.AutoLayout.md
+++ b/api/Visio.InvisibleApp.AutoLayout.md
@@ -23,7 +23,7 @@ Allows you to temporarily disable automatic layout functionality in Microsoft Vi
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.InvisibleApp.AutoRecoverInterval.md b/api/Visio.InvisibleApp.AutoRecoverInterval.md
index 7b9401bb2ce..951e20ba93a 100644
--- a/api/Visio.InvisibleApp.AutoRecoverInterval.md
+++ b/api/Visio.InvisibleApp.AutoRecoverInterval.md
@@ -30,7 +30,7 @@ Version Added: Visio 2000 SR-1
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.InvisibleApp.AvailablePrinters.md b/api/Visio.InvisibleApp.AvailablePrinters.md
index 452b2a11033..08d996acb27 100644
--- a/api/Visio.InvisibleApp.AvailablePrinters.md
+++ b/api/Visio.InvisibleApp.AvailablePrinters.md
@@ -23,7 +23,7 @@ Returns a list of installed printers. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
String()
diff --git a/api/Visio.InvisibleApp.BeforeDataRecordsetDelete.md b/api/Visio.InvisibleApp.BeforeDataRecordsetDelete.md
index 0911108ff55..525d03f2954 100644
--- a/api/Visio.InvisibleApp.BeforeDataRecordsetDelete.md
+++ b/api/Visio.InvisibleApp.BeforeDataRecordsetDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeDataRecordsetDelete'(**_ByVal DataRecordset As
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordset_|Required| **[IVDATARECORDSET]**|The data recordset that is going to be deleted.|
diff --git a/api/Visio.InvisibleApp.BeforeDocumentClose.md b/api/Visio.InvisibleApp.BeforeDocumentClose.md
index afdc202734d..0ab1ccbc337 100644
--- a/api/Visio.InvisibleApp.BeforeDocumentClose.md
+++ b/api/Visio.InvisibleApp.BeforeDocumentClose.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeDocumentClose'(**_ByVal doc As [IVDOCUMENT]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be closed.|
diff --git a/api/Visio.InvisibleApp.BeforeDocumentSave.md b/api/Visio.InvisibleApp.BeforeDocumentSave.md
index f3596cbb857..993805d717d 100644
--- a/api/Visio.InvisibleApp.BeforeDocumentSave.md
+++ b/api/Visio.InvisibleApp.BeforeDocumentSave.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeDocumentSave'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be saved.|
diff --git a/api/Visio.InvisibleApp.BeforeDocumentSaveAs.md b/api/Visio.InvisibleApp.BeforeDocumentSaveAs.md
index 91687fdfe98..1a62e4ce418 100644
--- a/api/Visio.InvisibleApp.BeforeDocumentSaveAs.md
+++ b/api/Visio.InvisibleApp.BeforeDocumentSaveAs.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeDocumentSaveAs'(**_ByVal doc As [IVDOCUMENT]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be saved.|
diff --git a/api/Visio.InvisibleApp.BeforeMasterDelete.md b/api/Visio.InvisibleApp.BeforeMasterDelete.md
index 8c78a249648..cccf9efd80e 100644
--- a/api/Visio.InvisibleApp.BeforeMasterDelete.md
+++ b/api/Visio.InvisibleApp.BeforeMasterDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeMasterDelete'(**_ByVal Master As [IVMASTER]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that is going to be deleted.|
diff --git a/api/Visio.InvisibleApp.BeforeModal.md b/api/Visio.InvisibleApp.BeforeModal.md
index ae50e023682..55c88f8fbd1 100644
--- a/api/Visio.InvisibleApp.BeforeModal.md
+++ b/api/Visio.InvisibleApp.BeforeModal.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeModal'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that is going to enter a modal state.|
diff --git a/api/Visio.InvisibleApp.BeforePageDelete.md b/api/Visio.InvisibleApp.BeforePageDelete.md
index 18ed5f35900..ea05e73e7a0 100644
--- a/api/Visio.InvisibleApp.BeforePageDelete.md
+++ b/api/Visio.InvisibleApp.BeforePageDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforePageDelete'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that is going to be deleted.|
diff --git a/api/Visio.InvisibleApp.BeforeQuit.md b/api/Visio.InvisibleApp.BeforeQuit.md
index f8de3fddc42..ecaf9d4317e 100644
--- a/api/Visio.InvisibleApp.BeforeQuit.md
+++ b/api/Visio.InvisibleApp.BeforeQuit.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeQuit'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that is going to terminate.|
diff --git a/api/Visio.InvisibleApp.BeforeSelectionDelete.md b/api/Visio.InvisibleApp.BeforeSelectionDelete.md
index b5259ec5563..d8585118bfd 100644
--- a/api/Visio.InvisibleApp.BeforeSelectionDelete.md
+++ b/api/Visio.InvisibleApp.BeforeSelectionDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeSelectionDelete'(**_ByVal Selection As [IVSELE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selected objects that are going to be deleted.|
diff --git a/api/Visio.InvisibleApp.BeforeShapeDelete.md b/api/Visio.InvisibleApp.BeforeShapeDelete.md
index 43952234adc..7a2285ccc35 100644
--- a/api/Visio.InvisibleApp.BeforeShapeDelete.md
+++ b/api/Visio.InvisibleApp.BeforeShapeDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeShapeDelete'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be deleted.|
diff --git a/api/Visio.InvisibleApp.BeforeShapeTextEdit.md b/api/Visio.InvisibleApp.BeforeShapeTextEdit.md
index 824431deafd..e7d2302eba6 100644
--- a/api/Visio.InvisibleApp.BeforeShapeTextEdit.md
+++ b/api/Visio.InvisibleApp.BeforeShapeTextEdit.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeShapeTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be opened for text editing.|
diff --git a/api/Visio.InvisibleApp.BeforeStyleDelete.md b/api/Visio.InvisibleApp.BeforeStyleDelete.md
index 161a2b674a3..781e69418de 100644
--- a/api/Visio.InvisibleApp.BeforeStyleDelete.md
+++ b/api/Visio.InvisibleApp.BeforeStyleDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeStyleDelete'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that is going to be deleted.|
diff --git a/api/Visio.InvisibleApp.BeforeSuspend.md b/api/Visio.InvisibleApp.BeforeSuspend.md
index cc531e05b8f..2938f000b0e 100644
--- a/api/Visio.InvisibleApp.BeforeSuspend.md
+++ b/api/Visio.InvisibleApp.BeforeSuspend.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeSuspend'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that is going to be suspended.|
diff --git a/api/Visio.InvisibleApp.BeforeSuspendEvents.md b/api/Visio.InvisibleApp.BeforeSuspendEvents.md
index 37fd7fe592a..317ca2e0641 100644
--- a/api/Visio.InvisibleApp.BeforeSuspendEvents.md
+++ b/api/Visio.InvisibleApp.BeforeSuspendEvents.md
@@ -24,11 +24,11 @@ Private Sub _expression_ _'BeforeSuspendEvents'(**_ByVal app As [IVAPPLICATION]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio in which firing of events is going to be suspended.|
-### Return Value
+### Return value
nothing
diff --git a/api/Visio.InvisibleApp.BeforeWindowClosed.md b/api/Visio.InvisibleApp.BeforeWindowClosed.md
index b0ce4ecd8f7..7745dd9b81d 100644
--- a/api/Visio.InvisibleApp.BeforeWindowClosed.md
+++ b/api/Visio.InvisibleApp.BeforeWindowClosed.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeWindowClosed'(**_ByVal Window As [IVWINDOW]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that is going to be closed.|
diff --git a/api/Visio.InvisibleApp.BeforeWindowPageTurn.md b/api/Visio.InvisibleApp.BeforeWindowPageTurn.md
index 70be3e6075c..c2b782ce8d3 100644
--- a/api/Visio.InvisibleApp.BeforeWindowPageTurn.md
+++ b/api/Visio.InvisibleApp.BeforeWindowPageTurn.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeWindowPageTurn'(**_ByVal Window As [IVWINDOW]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that is going to show a different page.|
diff --git a/api/Visio.InvisibleApp.BeforeWindowSelDelete.md b/api/Visio.InvisibleApp.BeforeWindowSelDelete.md
index 95dcd51c3f1..314a35e3fc5 100644
--- a/api/Visio.InvisibleApp.BeforeWindowSelDelete.md
+++ b/api/Visio.InvisibleApp.BeforeWindowSelDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'BeforeWindowSelDelete'(**_ByVal Window As [IVWINDOW]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that contains the selection that is going to be deleted.|
diff --git a/api/Visio.InvisibleApp.BeginUndoScope.md b/api/Visio.InvisibleApp.BeginUndoScope.md
index 89616b2ef47..38be4aba6fd 100644
--- a/api/Visio.InvisibleApp.BeginUndoScope.md
+++ b/api/Visio.InvisibleApp.BeginUndoScope.md
@@ -27,11 +27,11 @@ Starts a transaction with a unique scope ID for an instance of Microsoft Visio.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _bstrUndoScopeName_|Required| **String**|The name of the scope; could appear in the Visio user interface.|
-### Return Value
+### Return value
Long
diff --git a/api/Visio.InvisibleApp.Build.md b/api/Visio.InvisibleApp.Build.md
index a67acf22170..dc5c88763cb 100644
--- a/api/Visio.InvisibleApp.Build.md
+++ b/api/Visio.InvisibleApp.Build.md
@@ -23,7 +23,7 @@ Returns the build number of the running instance. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.InvisibleApp.BuiltInMenus.md b/api/Visio.InvisibleApp.BuiltInMenus.md
index 91ea24d4f66..8654e6a0753 100644
--- a/api/Visio.InvisibleApp.BuiltInMenus.md
+++ b/api/Visio.InvisibleApp.BuiltInMenus.md
@@ -23,7 +23,7 @@ Returns a **UIObject** object that represents a copy of the built-in Microsoft
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
UIObject
diff --git a/api/Visio.InvisibleApp.BuiltInToolbars.md b/api/Visio.InvisibleApp.BuiltInToolbars.md
index 756ddbe8067..57beb6a63e9 100644
--- a/api/Visio.InvisibleApp.BuiltInToolbars.md
+++ b/api/Visio.InvisibleApp.BuiltInToolbars.md
@@ -27,11 +27,11 @@ Returns a **UIObject** object that represents a copy of the built-in Microsoft
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _fIgnored_|Required| **Integer**|Required for backward compatibility, but ignored. It is suggested that you pass zero (0).|
-### Return Value
+### Return value
UIObject
diff --git a/api/Visio.InvisibleApp.COMAddIns.md b/api/Visio.InvisibleApp.COMAddIns.md
index 5a26a6dae5f..dfa6b58c910 100644
--- a/api/Visio.InvisibleApp.COMAddIns.md
+++ b/api/Visio.InvisibleApp.COMAddIns.md
@@ -23,7 +23,7 @@ Returns a reference to the **COMAddIns** collection that represents all the Com
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
COMAddIns
diff --git a/api/Visio.InvisibleApp.CalloutRelationshipAdded.md b/api/Visio.InvisibleApp.CalloutRelationshipAdded.md
index 53099746e9e..54fe28c0bda 100644
--- a/api/Visio.InvisibleApp.CalloutRelationshipAdded.md
+++ b/api/Visio.InvisibleApp.CalloutRelationshipAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'CalloutRelationshipAdded'(**_By Val ShapePair As Rel
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the new callout shape-pair relationship.|
diff --git a/api/Visio.InvisibleApp.CalloutRelationshipDeleted.md b/api/Visio.InvisibleApp.CalloutRelationshipDeleted.md
index 6e177b38d23..6e0dcba132d 100644
--- a/api/Visio.InvisibleApp.CalloutRelationshipDeleted.md
+++ b/api/Visio.InvisibleApp.CalloutRelationshipDeleted.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'CalloutRelationshipDeleted'(**_By Val ShapePair As R
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the callout shape-pair relationship.|
diff --git a/api/Visio.InvisibleApp.CellChanged.md b/api/Visio.InvisibleApp.CellChanged.md
index 8c3b8b53cc3..1cb15292616 100644
--- a/api/Visio.InvisibleApp.CellChanged.md
+++ b/api/Visio.InvisibleApp.CellChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'CellChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose value has changed.|
diff --git a/api/Visio.InvisibleApp.ClearCustomMenus.md b/api/Visio.InvisibleApp.ClearCustomMenus.md
index 9d947d78ca8..06a18e83f44 100644
--- a/api/Visio.InvisibleApp.ClearCustomMenus.md
+++ b/api/Visio.InvisibleApp.ClearCustomMenus.md
@@ -23,7 +23,7 @@ Restores the built-in Microsoft Visio user interface.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.InvisibleApp.ClearCustomToolbars.md b/api/Visio.InvisibleApp.ClearCustomToolbars.md
index 2add18ca7f5..81f96a8ce8c 100644
--- a/api/Visio.InvisibleApp.ClearCustomToolbars.md
+++ b/api/Visio.InvisibleApp.ClearCustomToolbars.md
@@ -23,7 +23,7 @@ Restores the built-in Microsoft Visio user interface.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.InvisibleApp.CommandBars.md b/api/Visio.InvisibleApp.CommandBars.md
index 835e8fe3d43..dce8e2c6422 100644
--- a/api/Visio.InvisibleApp.CommandBars.md
+++ b/api/Visio.InvisibleApp.CommandBars.md
@@ -23,7 +23,7 @@ Returns a reference to the **CommandBars** collection that represents the comma
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
CommandBars
diff --git a/api/Visio.InvisibleApp.CommandLine.md b/api/Visio.InvisibleApp.CommandLine.md
index 5cc902d7eef..a2aa8dfefe0 100644
--- a/api/Visio.InvisibleApp.CommandLine.md
+++ b/api/Visio.InvisibleApp.CommandLine.md
@@ -23,7 +23,7 @@ Determines how Microsoft Visio was started. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.InvisibleApp.ConnectionsAdded.md b/api/Visio.InvisibleApp.ConnectionsAdded.md
index d80c84b2269..a17c6486262 100644
--- a/api/Visio.InvisibleApp.ConnectionsAdded.md
+++ b/api/Visio.InvisibleApp.ConnectionsAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ConnectionsAdded'(**_ByVal Connects As [IVCONNECTS]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Connects_|Required| **[IVCONNECTS]**|The connections that were established.|
diff --git a/api/Visio.InvisibleApp.ConnectionsDeleted.md b/api/Visio.InvisibleApp.ConnectionsDeleted.md
index ed9acbb9d85..6a66e3c410d 100644
--- a/api/Visio.InvisibleApp.ConnectionsDeleted.md
+++ b/api/Visio.InvisibleApp.ConnectionsDeleted.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ConnectionsDeleted'(**_ByVal Connects As [IVCONNECTS
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Connects_|Required| **[IVCONNECTS]**|The connections that have been removed.|
diff --git a/api/Visio.InvisibleApp.ConnectorToolDataObject.md b/api/Visio.InvisibleApp.ConnectorToolDataObject.md
index b688cdb3cbb..ab34fd0281d 100644
--- a/api/Visio.InvisibleApp.ConnectorToolDataObject.md
+++ b/api/Visio.InvisibleApp.ConnectorToolDataObject.md
@@ -23,7 +23,7 @@ Returns an **IDataObject** interface representing the active **Connector** tool
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
IDataObject
diff --git a/api/Visio.InvisibleApp.ContainerRelationshipAdded.md b/api/Visio.InvisibleApp.ContainerRelationshipAdded.md
index 183e383a8a2..b8b5be031d4 100644
--- a/api/Visio.InvisibleApp.ContainerRelationshipAdded.md
+++ b/api/Visio.InvisibleApp.ContainerRelationshipAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ContainerRelationshipAdded'(**_By Val ShapePair As R
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the new container shape-pair relationship.|
diff --git a/api/Visio.InvisibleApp.ContainerRelationshipDeleted.md b/api/Visio.InvisibleApp.ContainerRelationshipDeleted.md
index 196ea22e41e..b475ab2afa2 100644
--- a/api/Visio.InvisibleApp.ContainerRelationshipDeleted.md
+++ b/api/Visio.InvisibleApp.ContainerRelationshipDeleted.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ContainerRelationshipDeleted'(**_By Val ShapePair As
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the container shape-pair relationship.|
diff --git a/api/Visio.InvisibleApp.ConvertResult.md b/api/Visio.InvisibleApp.ConvertResult.md
index ca053f678f9..878574279da 100644
--- a/api/Visio.InvisibleApp.ConvertResult.md
+++ b/api/Visio.InvisibleApp.ConvertResult.md
@@ -27,13 +27,13 @@ Converts a string or number into an equivalent number in different measurement u
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StringOrNumber_|Required| **Variant**|String or number to be converted; can be a string, floating point number, or integer.|
| _UnitsIn_|Required| **Variant**|Measurement units to attribute to _StringOrNumber_.|
| _UnitsOut_|Required| **Variant**|Measurement units to express the result in.|
-### Return Value
+### Return value
Double
diff --git a/api/Visio.InvisibleApp.ConvertToGroupCanceled.md b/api/Visio.InvisibleApp.ConvertToGroupCanceled.md
index f91bc973556..84b5496da9c 100644
--- a/api/Visio.InvisibleApp.ConvertToGroupCanceled.md
+++ b/api/Visio.InvisibleApp.ConvertToGroupCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ConvertToGroupCanceled'(**_ByVal Selection As [IVSEL
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.InvisibleApp.CurrentEdition.md b/api/Visio.InvisibleApp.CurrentEdition.md
index 90521fb3465..de85a256e27 100644
--- a/api/Visio.InvisibleApp.CurrentEdition.md
+++ b/api/Visio.InvisibleApp.CurrentEdition.md
@@ -23,7 +23,7 @@ Returns an enumerated value that represents the edition of the current instance
_expression_ An expression that returns an '[InvisibleApp](Visio.InvisibleApp.md)' object.
-### Return Value
+### Return value
**[VisEdition](Visio.VisEdition.md)**
diff --git a/api/Visio.InvisibleApp.CurrentScope.md b/api/Visio.InvisibleApp.CurrentScope.md
index 264429c9f26..b7651361f44 100644
--- a/api/Visio.InvisibleApp.CurrentScope.md
+++ b/api/Visio.InvisibleApp.CurrentScope.md
@@ -23,7 +23,7 @@ Determines the ID of the scope that causes an event to fire. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.InvisibleApp.CustomMenus.md b/api/Visio.InvisibleApp.CustomMenus.md
index 7505fe78d2c..14bc6f0b8f5 100644
--- a/api/Visio.InvisibleApp.CustomMenus.md
+++ b/api/Visio.InvisibleApp.CustomMenus.md
@@ -23,7 +23,7 @@ Gets a **UIObject** object that represents the current custom menus and acceler
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
UIObject
diff --git a/api/Visio.InvisibleApp.CustomMenusFile.md b/api/Visio.InvisibleApp.CustomMenusFile.md
index a8593defed4..f427bc4b6fb 100644
--- a/api/Visio.InvisibleApp.CustomMenusFile.md
+++ b/api/Visio.InvisibleApp.CustomMenusFile.md
@@ -23,7 +23,7 @@ Gets or sets the name of the file that defines custom menus and accelerators for
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.InvisibleApp.CustomToolbars.md b/api/Visio.InvisibleApp.CustomToolbars.md
index 39db2ea6e8a..f2c482f55ac 100644
--- a/api/Visio.InvisibleApp.CustomToolbars.md
+++ b/api/Visio.InvisibleApp.CustomToolbars.md
@@ -23,7 +23,7 @@ Gets a **UIObject** object that represents the current custom toolbars and stat
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
UIObject
diff --git a/api/Visio.InvisibleApp.CustomToolbarsFile.md b/api/Visio.InvisibleApp.CustomToolbarsFile.md
index 8f4a65c4855..e575d611a81 100644
--- a/api/Visio.InvisibleApp.CustomToolbarsFile.md
+++ b/api/Visio.InvisibleApp.CustomToolbarsFile.md
@@ -23,7 +23,7 @@ Returns or sets the name of the file that defines custom toolbars and status bar
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.InvisibleApp.DataFeaturesEnabled.md b/api/Visio.InvisibleApp.DataFeaturesEnabled.md
index 0ecb3dc8def..ed0b5152ea4 100644
--- a/api/Visio.InvisibleApp.DataFeaturesEnabled.md
+++ b/api/Visio.InvisibleApp.DataFeaturesEnabled.md
@@ -23,7 +23,7 @@ Gets whether the data features in Microsoft Visio are enabled for the current in
_expression_ An expression that returns a [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.InvisibleApp.DataRecordsetAdded.md b/api/Visio.InvisibleApp.DataRecordsetAdded.md
index deb983db1c7..9e475f67103 100644
--- a/api/Visio.InvisibleApp.DataRecordsetAdded.md
+++ b/api/Visio.InvisibleApp.DataRecordsetAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DataRecordsetAdded'(**_ByVal DataRecordset As [IVDAT
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordset_|Required| **[IVDATARECORDSET]**|The data recordset that was added.|
diff --git a/api/Visio.InvisibleApp.DataRecordsetChanged.md b/api/Visio.InvisibleApp.DataRecordsetChanged.md
index 084d25f0ad8..37041c7e494 100644
--- a/api/Visio.InvisibleApp.DataRecordsetChanged.md
+++ b/api/Visio.InvisibleApp.DataRecordsetChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DataRecordsetChanged'(**_ByVal DataRecordsetChanged
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetChanged_|Required| **[IVDATARECORDSETCHANGEDEVENT]**|The data recordset that changed.|
diff --git a/api/Visio.InvisibleApp.DefaultAngleUnits.md b/api/Visio.InvisibleApp.DefaultAngleUnits.md
index 2926875a886..169ddb90d64 100644
--- a/api/Visio.InvisibleApp.DefaultAngleUnits.md
+++ b/api/Visio.InvisibleApp.DefaultAngleUnits.md
@@ -23,7 +23,7 @@ Determines the default unit of measure for quantities that represent angles. Rea
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Variant
diff --git a/api/Visio.InvisibleApp.DefaultDurationUnits.md b/api/Visio.InvisibleApp.DefaultDurationUnits.md
index 2104044d0dd..8e704720a0f 100644
--- a/api/Visio.InvisibleApp.DefaultDurationUnits.md
+++ b/api/Visio.InvisibleApp.DefaultDurationUnits.md
@@ -23,7 +23,7 @@ Determines the default unit of measure for quantities that represent durations.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Variant
diff --git a/api/Visio.InvisibleApp.DefaultRectangleDataObject.md b/api/Visio.InvisibleApp.DefaultRectangleDataObject.md
index 7308fae8775..13fde3bbf79 100644
--- a/api/Visio.InvisibleApp.DefaultRectangleDataObject.md
+++ b/api/Visio.InvisibleApp.DefaultRectangleDataObject.md
@@ -23,7 +23,7 @@ Returns an **IDataObject** interface that represents the **Rectangle** tool use
_expression_ An expression that returns a [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
IDataObject
diff --git a/api/Visio.InvisibleApp.DefaultTextUnits.md b/api/Visio.InvisibleApp.DefaultTextUnits.md
index 1859741162a..359f042991c 100644
--- a/api/Visio.InvisibleApp.DefaultTextUnits.md
+++ b/api/Visio.InvisibleApp.DefaultTextUnits.md
@@ -23,7 +23,7 @@ Determines the default unit of measure for quantities that represent text metric
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Variant
diff --git a/api/Visio.InvisibleApp.DefaultZoomBehavior.md b/api/Visio.InvisibleApp.DefaultZoomBehavior.md
index 495bd92e92a..10bb5662e01 100644
--- a/api/Visio.InvisibleApp.DefaultZoomBehavior.md
+++ b/api/Visio.InvisibleApp.DefaultZoomBehavior.md
@@ -23,7 +23,7 @@ Determines the zoom behavior for all new Microsoft Visio documents and drawing w
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
VisZoomBehavior
diff --git a/api/Visio.InvisibleApp.DeferRecalc.md b/api/Visio.InvisibleApp.DeferRecalc.md
index 12a7bcbe7ed..cc44586bd58 100644
--- a/api/Visio.InvisibleApp.DeferRecalc.md
+++ b/api/Visio.InvisibleApp.DeferRecalc.md
@@ -23,7 +23,7 @@ Determines whether the application recalculates cell formulas during a series of
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.InvisibleApp.DeferRelationshipRecalc.md b/api/Visio.InvisibleApp.DeferRelationshipRecalc.md
index 0f3772319f8..3e8e8ccac15 100644
--- a/api/Visio.InvisibleApp.DeferRelationshipRecalc.md
+++ b/api/Visio.InvisibleApp.DeferRelationshipRecalc.md
@@ -23,7 +23,7 @@ Determines whether Microsoft Visio defers recalculating shape sizes and relation
_expression_ A variable that represents an '[InvisibleApp](Visio.InvisibleApp.md)' object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.InvisibleApp.DesignModeEntered.md b/api/Visio.InvisibleApp.DesignModeEntered.md
index 8bcaab06c74..98f877eb277 100644
--- a/api/Visio.InvisibleApp.DesignModeEntered.md
+++ b/api/Visio.InvisibleApp.DesignModeEntered.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DesignModeEntered'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to enter design mode.|
diff --git a/api/Visio.InvisibleApp.DialogFont.md b/api/Visio.InvisibleApp.DialogFont.md
index 469ff9ac1e5..50869f5d6b5 100644
--- a/api/Visio.InvisibleApp.DialogFont.md
+++ b/api/Visio.InvisibleApp.DialogFont.md
@@ -23,7 +23,7 @@ Returns information about the fonts that Microsoft Visio uses in its dialog boxe
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
IFontDisp
diff --git a/api/Visio.InvisibleApp.DoCmd.md b/api/Visio.InvisibleApp.DoCmd.md
index ee7ebbb1224..323aa9a5afb 100644
--- a/api/Visio.InvisibleApp.DoCmd.md
+++ b/api/Visio.InvisibleApp.DoCmd.md
@@ -27,11 +27,11 @@ Performs the command that has the indicated command ID.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CommandID_|Required| **Integer**|The command to perform.|
-### Return Value
+### Return value
nothing
diff --git a/api/Visio.InvisibleApp.DocumentChanged.md b/api/Visio.InvisibleApp.DocumentChanged.md
index 2f2541bbea8..0da23b26647 100644
--- a/api/Visio.InvisibleApp.DocumentChanged.md
+++ b/api/Visio.InvisibleApp.DocumentChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentChanged'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document whose properties were changed.|
diff --git a/api/Visio.InvisibleApp.DocumentCloseCanceled.md b/api/Visio.InvisibleApp.DocumentCloseCanceled.md
index aa46fa15fd7..d114553de7c 100644
--- a/api/Visio.InvisibleApp.DocumentCloseCanceled.md
+++ b/api/Visio.InvisibleApp.DocumentCloseCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentCloseCanceled'(**_ByVal doc As [IVDOCUMENT]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was going to be closed.|
diff --git a/api/Visio.InvisibleApp.DocumentCreated.md b/api/Visio.InvisibleApp.DocumentCreated.md
index 61a8d942da6..e476ddfd2d8 100644
--- a/api/Visio.InvisibleApp.DocumentCreated.md
+++ b/api/Visio.InvisibleApp.DocumentCreated.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentCreated'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was created.|
diff --git a/api/Visio.InvisibleApp.DocumentOpened.md b/api/Visio.InvisibleApp.DocumentOpened.md
index 25ef6b92602..32e9f2f6975 100644
--- a/api/Visio.InvisibleApp.DocumentOpened.md
+++ b/api/Visio.InvisibleApp.DocumentOpened.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentOpened'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was opened.|
diff --git a/api/Visio.InvisibleApp.DocumentSaved.md b/api/Visio.InvisibleApp.DocumentSaved.md
index ab046a46afd..78b0d0dc2f0 100644
--- a/api/Visio.InvisibleApp.DocumentSaved.md
+++ b/api/Visio.InvisibleApp.DocumentSaved.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentSaved'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was saved.|
diff --git a/api/Visio.InvisibleApp.DocumentSavedAs.md b/api/Visio.InvisibleApp.DocumentSavedAs.md
index ddea092b7dc..419ee82dece 100644
--- a/api/Visio.InvisibleApp.DocumentSavedAs.md
+++ b/api/Visio.InvisibleApp.DocumentSavedAs.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'DocumentSavedAs'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that was saved.|
diff --git a/api/Visio.InvisibleApp.Documents.md b/api/Visio.InvisibleApp.Documents.md
index fab1d1d5fa9..107616260a0 100644
--- a/api/Visio.InvisibleApp.Documents.md
+++ b/api/Visio.InvisibleApp.Documents.md
@@ -23,7 +23,7 @@ Returns the **Documents** collection for a Microsoft Visio instance. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Documents
diff --git a/api/Visio.InvisibleApp.DrawingPaths.md b/api/Visio.InvisibleApp.DrawingPaths.md
index 15bf3bfb542..8eac7907f43 100644
--- a/api/Visio.InvisibleApp.DrawingPaths.md
+++ b/api/Visio.InvisibleApp.DrawingPaths.md
@@ -23,7 +23,7 @@ Gets or sets the paths where Microsoft Visio looks for drawings. Read/write.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.InvisibleApp.EndUndoScope.md b/api/Visio.InvisibleApp.EndUndoScope.md
index 7c76d2930b3..2e4e59162ed 100644
--- a/api/Visio.InvisibleApp.EndUndoScope.md
+++ b/api/Visio.InvisibleApp.EndUndoScope.md
@@ -27,12 +27,12 @@ Ends or cancels a transaction that has a unique scope.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nScopeID_|Required| **Long**|The ID of the scope to close.|
| _bCommit_|Required| **Boolean**| flag indicating that the changes made during the scope should be accepted (**True**) or canceled (**False**).|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.InvisibleApp.EnterScope.md b/api/Visio.InvisibleApp.EnterScope.md
index 020ba17d74b..e788e7d21bb 100644
--- a/api/Visio.InvisibleApp.EnterScope.md
+++ b/api/Visio.InvisibleApp.EnterScope.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'EnterScope'(**_ByVal app As [IVAPPLICATION]_** , **_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio that contains the scope.|
| _nScopeID_|Required| **Long**|A language-independent number that describes the operation that just ended, or the scope ID returned by the **BeginUndoScope** method.|
diff --git a/api/Visio.InvisibleApp.EnumDirectories.md b/api/Visio.InvisibleApp.EnumDirectories.md
index 2a4054d64ca..6eecaf20e9d 100644
--- a/api/Visio.InvisibleApp.EnumDirectories.md
+++ b/api/Visio.InvisibleApp.EnumDirectories.md
@@ -27,12 +27,12 @@ Returns an array naming the folders Microsoft Visio would search, given a list o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PathsString_|Required| **String**|A string of full or partial paths separated by semicolons.|
| _NameArray()_|Required| **String**|Out parameter. An array that receives the enumerated folder names.|
-### Return Value
+### Return value
String()
diff --git a/api/Visio.InvisibleApp.EventInfo.md b/api/Visio.InvisibleApp.EventInfo.md
index 0cd2f41acc1..b661a0aedc8 100644
--- a/api/Visio.InvisibleApp.EventInfo.md
+++ b/api/Visio.InvisibleApp.EventInfo.md
@@ -27,11 +27,11 @@ Gets additional information associated with an event, if any exists. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _eventSeqNum_|Required| **Long**| **visEvtIDMostRecent** (0) for information about the most recently fired event, or the sequence number of the event to examine.|
-### Return Value
+### Return value
String
diff --git a/api/Visio.InvisibleApp.EventList.md b/api/Visio.InvisibleApp.EventList.md
index ad0bcca712e..34bd8eb84ff 100644
--- a/api/Visio.InvisibleApp.EventList.md
+++ b/api/Visio.InvisibleApp.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.InvisibleApp.EventsEnabled.md b/api/Visio.InvisibleApp.EventsEnabled.md
index 156bbd28ae1..44d47ea330a 100644
--- a/api/Visio.InvisibleApp.EventsEnabled.md
+++ b/api/Visio.InvisibleApp.EventsEnabled.md
@@ -23,7 +23,7 @@ Determines whether a Microsoft Visio instance fires events. Read/write.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.InvisibleApp.ExitScope.md b/api/Visio.InvisibleApp.ExitScope.md
index 0a7071f2f0e..87208f42800 100644
--- a/api/Visio.InvisibleApp.ExitScope.md
+++ b/api/Visio.InvisibleApp.ExitScope.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ExitScope'(**_ByVal app As [IVAPPLICATION]_** , **_B
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio that contains the scope.|
| _nScopeID_|Required| **Long**|A language-independent number that describes the operation that just ended or the scope ID returned by the **BeginUndoScope** method.|
diff --git a/api/Visio.InvisibleApp.FormatResult.md b/api/Visio.InvisibleApp.FormatResult.md
index b329cfd48ea..d0be1745733 100644
--- a/api/Visio.InvisibleApp.FormatResult.md
+++ b/api/Visio.InvisibleApp.FormatResult.md
@@ -25,7 +25,7 @@ _expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.m
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StringOrNumber_|Required| **Variant**|String or number to be formatted; can be passed as a string, floating point number, or integer.|
| _UnitsIn_|Required| **Variant**|Measurement units to attribute to _StringOrNumber_.|
diff --git a/api/Visio.InvisibleApp.FormatResultEx.md b/api/Visio.InvisibleApp.FormatResultEx.md
index 37c22a69081..67601d984ee 100644
--- a/api/Visio.InvisibleApp.FormatResultEx.md
+++ b/api/Visio.InvisibleApp.FormatResultEx.md
@@ -24,7 +24,7 @@ _expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.m
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StringOrNumber_|Required| **Variant**|String or number to be formatted; can be passed as a string, floating point number, or integer.|
| _UnitsIn_|Required| **Variant**|Measurement units to attribute to _StringOrNumber_.|
diff --git a/api/Visio.InvisibleApp.FormulaChanged.md b/api/Visio.InvisibleApp.FormulaChanged.md
index 209c680eb40..c18c158318c 100644
--- a/api/Visio.InvisibleApp.FormulaChanged.md
+++ b/api/Visio.InvisibleApp.FormulaChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'FormulaChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose formula changed.|
diff --git a/api/Visio.InvisibleApp.FullBuild.md b/api/Visio.InvisibleApp.FullBuild.md
index 83fe986782f..ed835c73c89 100644
--- a/api/Visio.InvisibleApp.FullBuild.md
+++ b/api/Visio.InvisibleApp.FullBuild.md
@@ -23,7 +23,7 @@ Returns the full build number of the running instance. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.InvisibleApp.GetBuiltInStencilFile.md b/api/Visio.InvisibleApp.GetBuiltInStencilFile.md
index a97856ec510..a459c654ed4 100644
--- a/api/Visio.InvisibleApp.GetBuiltInStencilFile.md
+++ b/api/Visio.InvisibleApp.GetBuiltInStencilFile.md
@@ -27,12 +27,12 @@ Returns the file path to the specified built-in, hidden stencil used to populate
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StencilType_|Required| **[VisBuiltInStencilTypes](Visio.VisBuiltInStencilTypes.md)**|The stencil to retrieve. See Remarks for possible values.|
| _MeasurementSystem_|Required| **[VisMeasurementSystem](Visio.vismeasurementsystem.md)**|The measurement system for the stencil.|
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.InvisibleApp.GetCustomStencilFile.md b/api/Visio.InvisibleApp.GetCustomStencilFile.md
index 4256a307bf6..d0d4fe88ec0 100644
--- a/api/Visio.InvisibleApp.GetCustomStencilFile.md
+++ b/api/Visio.InvisibleApp.GetCustomStencilFile.md
@@ -27,11 +27,11 @@ Returns the path to the specified custom stencil used to populate certain galler
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StencilType_|Required| **[VisBuiltInStencilTypes](Visio.VisBuiltInStencilTypes.md)**|The stencil to retrieve. See Remarks for possible values.|
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.InvisibleApp.GetPreviewEnabled.md b/api/Visio.InvisibleApp.GetPreviewEnabled.md
index 1c8cfa8a3dd..0bed9602585 100644
--- a/api/Visio.InvisibleApp.GetPreviewEnabled.md
+++ b/api/Visio.InvisibleApp.GetPreviewEnabled.md
@@ -27,11 +27,11 @@ Returns a value that indicates whether preview is enabled for the specified gall
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _GalleryName_|Required| **String**|The name of the gallery for which you want to check the preview status. See Remarks.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.InvisibleApp.GroupCanceled.md b/api/Visio.InvisibleApp.GroupCanceled.md
index d81dda82f9d..2e62ed91a15 100644
--- a/api/Visio.InvisibleApp.GroupCanceled.md
+++ b/api/Visio.InvisibleApp.GroupCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'GroupCanceled'(**_ByVal Selection As [IVSELECTION]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.InvisibleApp.HelpPaths.md b/api/Visio.InvisibleApp.HelpPaths.md
index d782d03d502..42b9997f810 100644
--- a/api/Visio.InvisibleApp.HelpPaths.md
+++ b/api/Visio.InvisibleApp.HelpPaths.md
@@ -23,7 +23,7 @@ Gets or sets the paths where Microsoft Visio looks for Help files. Read/write.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.InvisibleApp.InhibitSelectChange.md b/api/Visio.InvisibleApp.InhibitSelectChange.md
index 1a7392438fd..b6a8f88585b 100644
--- a/api/Visio.InvisibleApp.InhibitSelectChange.md
+++ b/api/Visio.InvisibleApp.InhibitSelectChange.md
@@ -23,7 +23,7 @@ Determines whether shapes added to the drawing page by Automation are selected.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.InvisibleApp.InstanceHandle32.md b/api/Visio.InvisibleApp.InstanceHandle32.md
index 87e96873109..d7bc8af7cc9 100644
--- a/api/Visio.InvisibleApp.InstanceHandle32.md
+++ b/api/Visio.InvisibleApp.InstanceHandle32.md
@@ -23,7 +23,7 @@ Gets the instance handle of the **Application** object for a 32-bit version of
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.InvisibleApp.InstanceHandle64.md b/api/Visio.InvisibleApp.InstanceHandle64.md
index a84f7391c64..cf50938b7f5 100644
--- a/api/Visio.InvisibleApp.InstanceHandle64.md
+++ b/api/Visio.InvisibleApp.InstanceHandle64.md
@@ -23,7 +23,7 @@ Gets the instance handle of the **[InvisibleApp](Visio.InvisibleApp.md)** objec
_expression_ An expression that returns an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
**Int64**
diff --git a/api/Visio.InvisibleApp.InvokeHelp.md b/api/Visio.InvisibleApp.InvokeHelp.md
index c83a59f3cdf..3b3a68f4bfc 100644
--- a/api/Visio.InvisibleApp.InvokeHelp.md
+++ b/api/Visio.InvisibleApp.InvokeHelp.md
@@ -27,13 +27,13 @@ Performs operations that involve the Microsoft Visio Help system.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _bstrHelpFileName_|Required| **String**|Specifies an HTML file, a URL, a compiled HTML file, or an optional window definition (preceded with a ">" character). If the command being used does not require a file or URL, this value may be "".|
| _Command_|Required| **Long**|The action to perform.|
| _Data_|Required| **Long**|Any data that is required based on the value of the command argument.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.InvisibleApp.IsInScope.md b/api/Visio.InvisibleApp.IsInScope.md
index 4cb518f8179..f3b8f80451d 100644
--- a/api/Visio.InvisibleApp.IsInScope.md
+++ b/api/Visio.InvisibleApp.IsInScope.md
@@ -27,11 +27,11 @@ Determines whether a call to an event handler is between an **EnterScope** even
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nCmdID_|Required| **Long**|The scope ID.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.InvisibleApp.IsUndoingOrRedoing.md b/api/Visio.InvisibleApp.IsUndoingOrRedoing.md
index 7d1d30f8021..587540b66a3 100644
--- a/api/Visio.InvisibleApp.IsUndoingOrRedoing.md
+++ b/api/Visio.InvisibleApp.IsUndoingOrRedoing.md
@@ -23,7 +23,7 @@ Determines whether the current event handler is being called as a result of an
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.InvisibleApp.KeyDown.md b/api/Visio.InvisibleApp.KeyDown.md
index 94400ac33e2..678ae1d1ab1 100644
--- a/api/Visio.InvisibleApp.KeyDown.md
+++ b/api/Visio.InvisibleApp.KeyDown.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'KeyDown'(**_ByVal KeyCode As Long_** , **_ByVal KeyB
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCode_|Required| **Long**|The key that was pressed. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.InvisibleApp.KeyPress.md b/api/Visio.InvisibleApp.KeyPress.md
index 384d456642b..d4e93d0ffec 100644
--- a/api/Visio.InvisibleApp.KeyPress.md
+++ b/api/Visio.InvisibleApp.KeyPress.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'KeyPress'(**_ByVal KeyAscii As Long_** , **_ByVal Ca
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyAscii_|Required| **Long**|The ASCII value of the key that was pressed. See Remarks for possible values.|
| _CancelDefault_|Required| **Boolean**| **False** if Microsoft Visio should process the message it receives from this event; otherwise, **True** .|
diff --git a/api/Visio.InvisibleApp.KeyUp.md b/api/Visio.InvisibleApp.KeyUp.md
index 554ac6d4fe5..f0a8a3f3c1c 100644
--- a/api/Visio.InvisibleApp.KeyUp.md
+++ b/api/Visio.InvisibleApp.KeyUp.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'KeyUp'(**_ByVal KeyCode As Long_** , **_ByVal KeyBut
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCode_|Required| **Long**|The key that was released. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.InvisibleApp.Language.md b/api/Visio.InvisibleApp.Language.md
index 91c56b003d9..0320367f0c4 100644
--- a/api/Visio.InvisibleApp.Language.md
+++ b/api/Visio.InvisibleApp.Language.md
@@ -23,7 +23,7 @@ Represents the language ID of the version of the Microsoft Visio instance repres
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.InvisibleApp.LanguageHelp.md b/api/Visio.InvisibleApp.LanguageHelp.md
index cc7eefd8a52..358881dacf2 100644
--- a/api/Visio.InvisibleApp.LanguageHelp.md
+++ b/api/Visio.InvisibleApp.LanguageHelp.md
@@ -23,7 +23,7 @@ Represents the language ID of the Help in the version of the Microsoft Visio ins
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.InvisibleApp.LanguageSettings.md b/api/Visio.InvisibleApp.LanguageSettings.md
index dec7148daac..5139d2fb232 100644
--- a/api/Visio.InvisibleApp.LanguageSettings.md
+++ b/api/Visio.InvisibleApp.LanguageSettings.md
@@ -23,7 +23,7 @@ Returns a reference to the Microsoft Office (MSO) **LanguageSettings** interfac
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.InvisibleApp.LiveDynamics.md b/api/Visio.InvisibleApp.LiveDynamics.md
index dde43a9abd0..21399279dc2 100644
--- a/api/Visio.InvisibleApp.LiveDynamics.md
+++ b/api/Visio.InvisibleApp.LiveDynamics.md
@@ -23,7 +23,7 @@ Controls whether Microsoft Visio recalculates shape properties during drag opera
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.InvisibleApp.MarkerEvent.md b/api/Visio.InvisibleApp.MarkerEvent.md
index e1852f7e489..18ed5ae605a 100644
--- a/api/Visio.InvisibleApp.MarkerEvent.md
+++ b/api/Visio.InvisibleApp.MarkerEvent.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MarkerEvent'(**_ByVal app As [IVAPPLICATION]_** , **
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The active instance of Microsoft Visio.|
| _SequenceNum_|Required| **Long**|The ordinal position of this event with respect to past events.|
diff --git a/api/Visio.InvisibleApp.MasterAdded.md b/api/Visio.InvisibleApp.MasterAdded.md
index 19ab6c63c4f..a8eeb005665 100644
--- a/api/Visio.InvisibleApp.MasterAdded.md
+++ b/api/Visio.InvisibleApp.MasterAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MasterAdded'(**_ByVal Master As [IVMASTER]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that was added to the document.|
diff --git a/api/Visio.InvisibleApp.MasterChanged.md b/api/Visio.InvisibleApp.MasterChanged.md
index 2ecf2d9064d..4fea9a047a4 100644
--- a/api/Visio.InvisibleApp.MasterChanged.md
+++ b/api/Visio.InvisibleApp.MasterChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MasterChanged'(**_ByVal Master As [IVMASTER]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master whose properties changed.|
diff --git a/api/Visio.InvisibleApp.MasterDeleteCanceled.md b/api/Visio.InvisibleApp.MasterDeleteCanceled.md
index 5d144b907c9..3fc4a116ca3 100644
--- a/api/Visio.InvisibleApp.MasterDeleteCanceled.md
+++ b/api/Visio.InvisibleApp.MasterDeleteCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MasterDeleteCanceled'(**_ByVal Master As [IVMASTER]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that was going to be deleted.|
diff --git a/api/Visio.InvisibleApp.MouseDown.md b/api/Visio.InvisibleApp.MouseDown.md
index ce4425f974e..a96d6cd0035 100644
--- a/api/Visio.InvisibleApp.MouseDown.md
+++ b/api/Visio.InvisibleApp.MouseDown.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MouseDown'(**_ByVal Button As Long_** , **_ByVal Key
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Button_|Required| **Long**|The mouse button that was pressed. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the mouse buttons and the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.InvisibleApp.MouseMove.md b/api/Visio.InvisibleApp.MouseMove.md
index e288b0249ad..1fa33d8a34c 100644
--- a/api/Visio.InvisibleApp.MouseMove.md
+++ b/api/Visio.InvisibleApp.MouseMove.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MouseMove'(**_ByVal Button As Long_** , **_ByVal Key
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Button_|Required| **Long**|The mouse button that was clicked. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the mouse buttons and the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.InvisibleApp.MouseUp.md b/api/Visio.InvisibleApp.MouseUp.md
index 5e84a35315a..ab7cef42342 100644
--- a/api/Visio.InvisibleApp.MouseUp.md
+++ b/api/Visio.InvisibleApp.MouseUp.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MouseUp'(**_ByVal Button As Long_** , **_ByVal KeyBu
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Button_|Required| **Long**|The mouse button that was released. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the mouse buttons and the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.InvisibleApp.MustFlushScopeBeginning.md b/api/Visio.InvisibleApp.MustFlushScopeBeginning.md
index 90492f0241c..3f0ec01ed58 100644
--- a/api/Visio.InvisibleApp.MustFlushScopeBeginning.md
+++ b/api/Visio.InvisibleApp.MustFlushScopeBeginning.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MustFlushScopeBeginning'(**_ByVal app As [IVAPPLICAT
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that is forced to flush its event queue.|
diff --git a/api/Visio.InvisibleApp.MustFlushScopeEnded.md b/api/Visio.InvisibleApp.MustFlushScopeEnded.md
index 4568edcc9db..72a7705fc48 100644
--- a/api/Visio.InvisibleApp.MustFlushScopeEnded.md
+++ b/api/Visio.InvisibleApp.MustFlushScopeEnded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'MustFlushScopeEnded'(**_ByVal app As [IVAPPLICATION]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that is forced to flush its event queue.|
diff --git a/api/Visio.InvisibleApp.MyShapesPath.md b/api/Visio.InvisibleApp.MyShapesPath.md
index c89329804e7..51b2a3cf35e 100644
--- a/api/Visio.InvisibleApp.MyShapesPath.md
+++ b/api/Visio.InvisibleApp.MyShapesPath.md
@@ -23,7 +23,7 @@ Gets or sets where Microsoft Visio looks for the **My Shapes** folder on the us
_expression_ An expression that returns an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.InvisibleApp.Name.md b/api/Visio.InvisibleApp.Name.md
index c02fca5eabe..b31dcca2191 100644
--- a/api/Visio.InvisibleApp.Name.md
+++ b/api/Visio.InvisibleApp.Name.md
@@ -23,7 +23,7 @@ Specifies the name of an object. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.InvisibleApp.NoEventsPending.md b/api/Visio.InvisibleApp.NoEventsPending.md
index 54527e64bf1..38cdd213fb3 100644
--- a/api/Visio.InvisibleApp.NoEventsPending.md
+++ b/api/Visio.InvisibleApp.NoEventsPending.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'NoEventsPending'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that flushed its event queue.|
diff --git a/api/Visio.InvisibleApp.ObjectType.md b/api/Visio.InvisibleApp.ObjectType.md
index 583d47ae706..dc27e85dea4 100644
--- a/api/Visio.InvisibleApp.ObjectType.md
+++ b/api/Visio.InvisibleApp.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.InvisibleApp.OnComponentEnterState.md b/api/Visio.InvisibleApp.OnComponentEnterState.md
index 523c24a78ce..669e561d993 100644
--- a/api/Visio.InvisibleApp.OnComponentEnterState.md
+++ b/api/Visio.InvisibleApp.OnComponentEnterState.md
@@ -27,12 +27,12 @@ Informs a Microsoft Visio instance that client code is causing the instance to e
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _uStateID_|Required| **VisOnComponentEnterCodes**|Describes the state being entered or exited along with flags that influence behavior while in the indicated state.|
| _bEnter_|Required| **Boolean**| **True** to indicate that a state is being entered; **False** to indicate that a state is being exited.|
-### Return Value
+### Return value
nothing
diff --git a/api/Visio.InvisibleApp.OnDataChangeDelay.md b/api/Visio.InvisibleApp.OnDataChangeDelay.md
index d2871a3443a..c196b9b01a8 100644
--- a/api/Visio.InvisibleApp.OnDataChangeDelay.md
+++ b/api/Visio.InvisibleApp.OnDataChangeDelay.md
@@ -23,7 +23,7 @@ Gets or sets how long the Microsoft Visio instance waits before advising a conta
_expression_ An expression that returns a [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.InvisibleApp.OnKeystrokeMessageForAddon.md b/api/Visio.InvisibleApp.OnKeystrokeMessageForAddon.md
index 357a08bb462..7b310a5d2fa 100644
--- a/api/Visio.InvisibleApp.OnKeystrokeMessageForAddon.md
+++ b/api/Visio.InvisibleApp.OnKeystrokeMessageForAddon.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'OnKeystrokeMessageForAddon'(**_ByVal MSG As [IVMSGWR
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MSG_|Required| **[IVMSGWRAP]**|The message that Visio receives.|
diff --git a/api/Visio.InvisibleApp.PageAdded.md b/api/Visio.InvisibleApp.PageAdded.md
index 327a688a7a3..d81d5b881e8 100644
--- a/api/Visio.InvisibleApp.PageAdded.md
+++ b/api/Visio.InvisibleApp.PageAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'PageAdded'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that was added.|
diff --git a/api/Visio.InvisibleApp.PageChanged.md b/api/Visio.InvisibleApp.PageChanged.md
index 4cff623658c..0b5ae4d9c22 100644
--- a/api/Visio.InvisibleApp.PageChanged.md
+++ b/api/Visio.InvisibleApp.PageChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'PageChanged'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that changed.|
diff --git a/api/Visio.InvisibleApp.PageDeleteCanceled.md b/api/Visio.InvisibleApp.PageDeleteCanceled.md
index 3aaacf1d3e3..6dba4622cc3 100644
--- a/api/Visio.InvisibleApp.PageDeleteCanceled.md
+++ b/api/Visio.InvisibleApp.PageDeleteCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'PageDeleteCanceled'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that was going to be deleted.|
diff --git a/api/Visio.InvisibleApp.Path.md b/api/Visio.InvisibleApp.Path.md
index ae828648741..df5650707aa 100644
--- a/api/Visio.InvisibleApp.Path.md
+++ b/api/Visio.InvisibleApp.Path.md
@@ -23,7 +23,7 @@ Returns the drive and folder path of the Microsoft Visio application. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.InvisibleApp.PersistsEvents.md b/api/Visio.InvisibleApp.PersistsEvents.md
index 98990064627..bd97fee3093 100644
--- a/api/Visio.InvisibleApp.PersistsEvents.md
+++ b/api/Visio.InvisibleApp.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.InvisibleApp.ProcessID.md b/api/Visio.InvisibleApp.ProcessID.md
index 32b482076bc..3254c8f2934 100644
--- a/api/Visio.InvisibleApp.ProcessID.md
+++ b/api/Visio.InvisibleApp.ProcessID.md
@@ -23,7 +23,7 @@ Returns the unique identity of the current Microsoft Visio process. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.InvisibleApp.PromptForSummary.md b/api/Visio.InvisibleApp.PromptForSummary.md
index 183b538cdbb..ca0f46d234f 100644
--- a/api/Visio.InvisibleApp.PromptForSummary.md
+++ b/api/Visio.InvisibleApp.PromptForSummary.md
@@ -23,7 +23,7 @@ Determines whether Microsoft Visio prompts for document properties when it saves
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.InvisibleApp.PurgeUndo.md b/api/Visio.InvisibleApp.PurgeUndo.md
index 7b5dcb89d04..2808e48d34a 100644
--- a/api/Visio.InvisibleApp.PurgeUndo.md
+++ b/api/Visio.InvisibleApp.PurgeUndo.md
@@ -23,7 +23,7 @@ Empties the Microsoft Visio queue of undo actions.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.InvisibleApp.QueryCancelConvertToGroup.md b/api/Visio.InvisibleApp.QueryCancelConvertToGroup.md
index 96c0e3d59da..dd11fc672ab 100644
--- a/api/Visio.InvisibleApp.QueryCancelConvertToGroup.md
+++ b/api/Visio.InvisibleApp.QueryCancelConvertToGroup.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelConvertToGroup'(**_ByVal Selection As [IV
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be converted to a group.|
diff --git a/api/Visio.InvisibleApp.QueryCancelDocumentClose.md b/api/Visio.InvisibleApp.QueryCancelDocumentClose.md
index 0ba621ab18f..b4ff0cd577f 100644
--- a/api/Visio.InvisibleApp.QueryCancelDocumentClose.md
+++ b/api/Visio.InvisibleApp.QueryCancelDocumentClose.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelDocumentClose'(**_ByVal doc As [IVDOCUMEN
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that is going to be closed.|
diff --git a/api/Visio.InvisibleApp.QueryCancelGroup.md b/api/Visio.InvisibleApp.QueryCancelGroup.md
index fca125008fb..27ac42145db 100644
--- a/api/Visio.InvisibleApp.QueryCancelGroup.md
+++ b/api/Visio.InvisibleApp.QueryCancelGroup.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelGroup'(**_ByVal Selection As [IVSELECTION
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be grouped.|
diff --git a/api/Visio.InvisibleApp.QueryCancelMasterDelete.md b/api/Visio.InvisibleApp.QueryCancelMasterDelete.md
index b0b2d52b5ac..d2c07ed2c2e 100644
--- a/api/Visio.InvisibleApp.QueryCancelMasterDelete.md
+++ b/api/Visio.InvisibleApp.QueryCancelMasterDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelMasterDelete'(**_ByVal Master As [IVMASTE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that is going to be deleted.|
diff --git a/api/Visio.InvisibleApp.QueryCancelPageDelete.md b/api/Visio.InvisibleApp.QueryCancelPageDelete.md
index 075f3755359..28ee244d088 100644
--- a/api/Visio.InvisibleApp.QueryCancelPageDelete.md
+++ b/api/Visio.InvisibleApp.QueryCancelPageDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelPageDelete'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that is going to be deleted.|
diff --git a/api/Visio.InvisibleApp.QueryCancelQuit.md b/api/Visio.InvisibleApp.QueryCancelQuit.md
index 7a7d2d0696e..41ffc9ecc39 100644
--- a/api/Visio.InvisibleApp.QueryCancelQuit.md
+++ b/api/Visio.InvisibleApp.QueryCancelQuit.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelQuit'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio that is going to terminate.|
diff --git a/api/Visio.InvisibleApp.QueryCancelSelectionDelete.md b/api/Visio.InvisibleApp.QueryCancelSelectionDelete.md
index 99a72cfe1f9..1aba2845828 100644
--- a/api/Visio.InvisibleApp.QueryCancelSelectionDelete.md
+++ b/api/Visio.InvisibleApp.QueryCancelSelectionDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelSelectionDelete'(**_ByVal Selection As [I
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be deleted.|
diff --git a/api/Visio.InvisibleApp.QueryCancelStyleDelete.md b/api/Visio.InvisibleApp.QueryCancelStyleDelete.md
index fd2cd4237f0..a855bc543ee 100644
--- a/api/Visio.InvisibleApp.QueryCancelStyleDelete.md
+++ b/api/Visio.InvisibleApp.QueryCancelStyleDelete.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelStyleDelete'(**_ByVal Style As [IVSTYLE]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _style_|Required| **[IVSTYLE]**|The style that is going to be deleted.|
diff --git a/api/Visio.InvisibleApp.QueryCancelSuspend.md b/api/Visio.InvisibleApp.QueryCancelSuspend.md
index e1be6c99a5e..01406e51ebb 100644
--- a/api/Visio.InvisibleApp.QueryCancelSuspend.md
+++ b/api/Visio.InvisibleApp.QueryCancelSuspend.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelSuspend'(**_ByVal app As [IVAPPLICATION]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Visio that responds to the operating system request.|
diff --git a/api/Visio.InvisibleApp.QueryCancelSuspendEvents.md b/api/Visio.InvisibleApp.QueryCancelSuspendEvents.md
index b328f5c0386..712b8f1d7b5 100644
--- a/api/Visio.InvisibleApp.QueryCancelSuspendEvents.md
+++ b/api/Visio.InvisibleApp.QueryCancelSuspendEvents.md
@@ -24,11 +24,11 @@ Private Sub _expression_ _'QueryCancelSuspendEvents'(**_ByVal app As [IVAPPLICA
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio in which firing of events is going to be suspended.|
-### Return Value
+### Return value
nothing
diff --git a/api/Visio.InvisibleApp.QueryCancelUngroup.md b/api/Visio.InvisibleApp.QueryCancelUngroup.md
index 1bde777a9f8..4f466979bd6 100644
--- a/api/Visio.InvisibleApp.QueryCancelUngroup.md
+++ b/api/Visio.InvisibleApp.QueryCancelUngroup.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelUngroup'(**_ByVal Selection As [IVSELECTI
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be ungrouped.|
diff --git a/api/Visio.InvisibleApp.QueryCancelWindowClose.md b/api/Visio.InvisibleApp.QueryCancelWindowClose.md
index 481e6619359..7cd6c0e9506 100644
--- a/api/Visio.InvisibleApp.QueryCancelWindowClose.md
+++ b/api/Visio.InvisibleApp.QueryCancelWindowClose.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QueryCancelWindowClose'(**_ByVal Window As [IVWINDOW
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that is going to be closed.|
diff --git a/api/Visio.InvisibleApp.QueueMarkerEvent.md b/api/Visio.InvisibleApp.QueueMarkerEvent.md
index cb7ac1adad0..186ac4c0cfc 100644
--- a/api/Visio.InvisibleApp.QueueMarkerEvent.md
+++ b/api/Visio.InvisibleApp.QueueMarkerEvent.md
@@ -27,11 +27,11 @@ Queues a **MarkerEvent** event that fires after all other queued events.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ContextString_|Required| **String**|An arbitrary string that is passed with the event that fires.|
-### Return Value
+### Return value
Long
diff --git a/api/Visio.InvisibleApp.Quit.md b/api/Visio.InvisibleApp.Quit.md
index 89efb3ce881..8263aa99a72 100644
--- a/api/Visio.InvisibleApp.Quit.md
+++ b/api/Visio.InvisibleApp.Quit.md
@@ -23,7 +23,7 @@ Closes the indicated instance of Microsoft Visio.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
nothing
diff --git a/api/Visio.InvisibleApp.QuitCanceled.md b/api/Visio.InvisibleApp.QuitCanceled.md
index 25b7bffff99..422a0ac53f1 100644
--- a/api/Visio.InvisibleApp.QuitCanceled.md
+++ b/api/Visio.InvisibleApp.QuitCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'QuitCanceled'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio that was going to be terminated.|
diff --git a/api/Visio.InvisibleApp.Redo.md b/api/Visio.InvisibleApp.Redo.md
index 34d7a214541..b09ce3f6a57 100644
--- a/api/Visio.InvisibleApp.Redo.md
+++ b/api/Visio.InvisibleApp.Redo.md
@@ -23,7 +23,7 @@ Reverses the most recent undo unit.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
nothing
diff --git a/api/Visio.InvisibleApp.RegisterRibbonX.md b/api/Visio.InvisibleApp.RegisterRibbonX.md
index b0452d8e17f..a4aff6fb9c4 100644
--- a/api/Visio.InvisibleApp.RegisterRibbonX.md
+++ b/api/Visio.InvisibleApp.RegisterRibbonX.md
@@ -27,14 +27,14 @@ Registers the **[IRibbonExtensibility](./Office.IRibbonExtensibility.md)** inte
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SourceAddOn_|Required| **IRibbonExtensibility**|The add-on to register.|
| _TargetDocument_|Required| **[Document](Visio.Document.md)**|The document that uses the custom UI.|
| _TargetModes_|Required| **[VisRibbonXModes](Visio.VisRibbonXModes.md)**|The modes in which the custom UI should be visible. See Remarks for possible values.|
| _FriendlyName_|Required| **String**|The name to associate with the UI items and errors that originate in the add-on.|
-### Return Value
+### Return value
**HRESULT**
diff --git a/api/Visio.InvisibleApp.RenameCurrentScope.md b/api/Visio.InvisibleApp.RenameCurrentScope.md
index d9d164ee5a6..e5568161613 100644
--- a/api/Visio.InvisibleApp.RenameCurrentScope.md
+++ b/api/Visio.InvisibleApp.RenameCurrentScope.md
@@ -27,11 +27,11 @@ Renames the top-level open undo scope.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _bstrScopeName_|Required| **String**|The new name of the undo scope.|
-### Return Value
+### Return value
nothing
diff --git a/api/Visio.InvisibleApp.RuleSetValidated.md b/api/Visio.InvisibleApp.RuleSetValidated.md
index 21cd6cf45b0..c35f72477fd 100644
--- a/api/Visio.InvisibleApp.RuleSetValidated.md
+++ b/api/Visio.InvisibleApp.RuleSetValidated.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'RuleSetValidated'(**_ByVal RuleSet As ValidationRule
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RuleSet_|Required| **[ValidationRuleSet](Visio.ValidationRuleSet.md)**|The rule set that was validated.|
diff --git a/api/Visio.InvisibleApp.RunModeEntered.md b/api/Visio.InvisibleApp.RunModeEntered.md
index 094aa95b509..507f785ff8b 100644
--- a/api/Visio.InvisibleApp.RunModeEntered.md
+++ b/api/Visio.InvisibleApp.RunModeEntered.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'RunModeEntered'(**_ByVal doc As [IVDOCUMENT]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _doc_|Required| **[IVDOCUMENT]**|The document that entered run mode.|
diff --git a/api/Visio.InvisibleApp.SaveAsWebObject.md b/api/Visio.InvisibleApp.SaveAsWebObject.md
index 00ddf42f627..89d0c889cf6 100644
--- a/api/Visio.InvisibleApp.SaveAsWebObject.md
+++ b/api/Visio.InvisibleApp.SaveAsWebObject.md
@@ -23,7 +23,7 @@ Returns a reference to the **IDispatch** interface of a **VisSaveAsWeb** object
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.InvisibleApp.ScreenUpdating.md b/api/Visio.InvisibleApp.ScreenUpdating.md
index 809ee9a7254..c248a9c56d2 100644
--- a/api/Visio.InvisibleApp.ScreenUpdating.md
+++ b/api/Visio.InvisibleApp.ScreenUpdating.md
@@ -23,7 +23,7 @@ Determines whether the screen is updated (redrawn) during a series of actions. R
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.InvisibleApp.SelectionAdded.md b/api/Visio.InvisibleApp.SelectionAdded.md
index a22a922b33b..a1bc0d44fb2 100644
--- a/api/Visio.InvisibleApp.SelectionAdded.md
+++ b/api/Visio.InvisibleApp.SelectionAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'SelectionAdded'(**_ByVal Selection As [IVSELECTION]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was added to the document.|
diff --git a/api/Visio.InvisibleApp.SelectionChanged.md b/api/Visio.InvisibleApp.SelectionChanged.md
index f9313c3f418..1ec29b20828 100644
--- a/api/Visio.InvisibleApp.SelectionChanged.md
+++ b/api/Visio.InvisibleApp.SelectionChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'SelectionChanged'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window in which the selection changed.|
diff --git a/api/Visio.InvisibleApp.SelectionDeleteCanceled.md b/api/Visio.InvisibleApp.SelectionDeleteCanceled.md
index 5e6cf47e78d..af342efecea 100644
--- a/api/Visio.InvisibleApp.SelectionDeleteCanceled.md
+++ b/api/Visio.InvisibleApp.SelectionDeleteCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'SelectionDeleteCanceled'(**_ByVal Selection As [IVSE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be deleted.|
diff --git a/api/Visio.InvisibleApp.SetCustomMenus.md b/api/Visio.InvisibleApp.SetCustomMenus.md
index 05b14b6c29e..3a868ca0110 100644
--- a/api/Visio.InvisibleApp.SetCustomMenus.md
+++ b/api/Visio.InvisibleApp.SetCustomMenus.md
@@ -27,11 +27,11 @@ Replaces the current built-in or custom menus of an application or document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MenusObject_|Required| **[IVUIOBJECT]**|An expression that returns a **UIObject** object that represents the new custom menus.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.InvisibleApp.SetCustomToolbars.md b/api/Visio.InvisibleApp.SetCustomToolbars.md
index 926cd34e729..b8f6ca85ae4 100644
--- a/api/Visio.InvisibleApp.SetCustomToolbars.md
+++ b/api/Visio.InvisibleApp.SetCustomToolbars.md
@@ -27,11 +27,11 @@ Replaces the current built-in or custom toolbars of an application or document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ToolbarsObject_|Required| **[IVUIOBJECT]**|An expression that returns a **UIObject** object that represents the new custom toolbars.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.InvisibleApp.SetPreviewEnabled.md b/api/Visio.InvisibleApp.SetPreviewEnabled.md
index 1af64971fb9..98f54c1a23a 100644
--- a/api/Visio.InvisibleApp.SetPreviewEnabled.md
+++ b/api/Visio.InvisibleApp.SetPreviewEnabled.md
@@ -27,12 +27,12 @@ Turns preview on or off for a gallery in the Microsoft Visio user interface.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _GalleryName_|Required| **String**|The name of the gallery for which to set the preview status.|
| _OnOrOff_|Required| **Boolean**| **True** to turn preview on for the specified gallery; **False** to turn preview off.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.InvisibleApp.Settings.md b/api/Visio.InvisibleApp.Settings.md
index c9d9ddaa17f..94b150a3414 100644
--- a/api/Visio.InvisibleApp.Settings.md
+++ b/api/Visio.InvisibleApp.Settings.md
@@ -23,7 +23,7 @@ Returns an **ApplicationSettings** object, which you can use to set Microsoft V
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
ApplicationSettings
diff --git a/api/Visio.InvisibleApp.ShapeAdded.md b/api/Visio.InvisibleApp.ShapeAdded.md
index 7819ab18987..95fb520283a 100644
--- a/api/Visio.InvisibleApp.ShapeAdded.md
+++ b/api/Visio.InvisibleApp.ShapeAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ShapeAdded'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape or group of shapes that was added to the document.|
diff --git a/api/Visio.InvisibleApp.ShapeChanged.md b/api/Visio.InvisibleApp.ShapeChanged.md
index 46fd374494c..ce886174eab 100644
--- a/api/Visio.InvisibleApp.ShapeChanged.md
+++ b/api/Visio.InvisibleApp.ShapeChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ShapeChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose property changed.|
diff --git a/api/Visio.InvisibleApp.ShapeDataGraphicChanged.md b/api/Visio.InvisibleApp.ShapeDataGraphicChanged.md
index 7c049e77b17..6aa51cd3b5f 100644
--- a/api/Visio.InvisibleApp.ShapeDataGraphicChanged.md
+++ b/api/Visio.InvisibleApp.ShapeDataGraphicChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeDataGraphicChanged'(**_ByVal Shape As IVSHAPE_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape to which the data graphic was applied or from which it was deleted.|
diff --git a/api/Visio.InvisibleApp.ShapeExitedTextEdit.md b/api/Visio.InvisibleApp.ShapeExitedTextEdit.md
index 7a681bb013a..e63e00403fc 100644
--- a/api/Visio.InvisibleApp.ShapeExitedTextEdit.md
+++ b/api/Visio.InvisibleApp.ShapeExitedTextEdit.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ShapeExitedTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that was closed for text editing.|
diff --git a/api/Visio.InvisibleApp.ShapeLinkAdded.md b/api/Visio.InvisibleApp.ShapeLinkAdded.md
index 8d5702aa87f..bb3ec819a9c 100644
--- a/api/Visio.InvisibleApp.ShapeLinkAdded.md
+++ b/api/Visio.InvisibleApp.ShapeLinkAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeLinkAdded'(**_ByVal Shape As [IVSHAPE]_** , **_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is linked to data.|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset containing the data row linked to the shape.|
diff --git a/api/Visio.InvisibleApp.ShapeLinkDeleted.md b/api/Visio.InvisibleApp.ShapeLinkDeleted.md
index fb21f893190..92993508921 100644
--- a/api/Visio.InvisibleApp.ShapeLinkDeleted.md
+++ b/api/Visio.InvisibleApp.ShapeLinkDeleted.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeLinkDeleted'(**_ByVal Shape As [IVSHAPE]_** , *
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose link to a data row was broken.|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset containing the data row that was linked to the shape.|
diff --git a/api/Visio.InvisibleApp.ShapeParentChanged.md b/api/Visio.InvisibleApp.ShapeParentChanged.md
index 182e682ca15..4ded647afba 100644
--- a/api/Visio.InvisibleApp.ShapeParentChanged.md
+++ b/api/Visio.InvisibleApp.ShapeParentChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ShapeParentChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose parent changed.|
diff --git a/api/Visio.InvisibleApp.ShowChanges.md b/api/Visio.InvisibleApp.ShowChanges.md
index d04d10191e2..172f55ada8d 100644
--- a/api/Visio.InvisibleApp.ShowChanges.md
+++ b/api/Visio.InvisibleApp.ShowChanges.md
@@ -23,7 +23,7 @@ Determines whether the screen is updated (redrawn) during a series of actions. R
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.InvisibleApp.ShowProgress.md b/api/Visio.InvisibleApp.ShowProgress.md
index 1a27dcbcbc2..6f5ee3c63f7 100644
--- a/api/Visio.InvisibleApp.ShowProgress.md
+++ b/api/Visio.InvisibleApp.ShowProgress.md
@@ -23,7 +23,7 @@ Determines whether a progress indicator is shown while performing certain operat
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.InvisibleApp.ShowStatusBar.md b/api/Visio.InvisibleApp.ShowStatusBar.md
index b5e62ccf276..c988942a40c 100644
--- a/api/Visio.InvisibleApp.ShowStatusBar.md
+++ b/api/Visio.InvisibleApp.ShowStatusBar.md
@@ -23,7 +23,7 @@ Determines whether the status bar is shown. Read/write.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.InvisibleApp.ShowToolbar.md b/api/Visio.InvisibleApp.ShowToolbar.md
index f293120752e..e79a6970933 100644
--- a/api/Visio.InvisibleApp.ShowToolbar.md
+++ b/api/Visio.InvisibleApp.ShowToolbar.md
@@ -23,7 +23,7 @@ Determines whether toolbars and menu bars are visible. Read/write.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.InvisibleApp.StartupPaths.md b/api/Visio.InvisibleApp.StartupPaths.md
index 979b0e5f336..b5ffe6a0d8b 100644
--- a/api/Visio.InvisibleApp.StartupPaths.md
+++ b/api/Visio.InvisibleApp.StartupPaths.md
@@ -23,7 +23,7 @@ Gets or sets the paths where Microsoft Visio looks for third-party and user add-
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.InvisibleApp.Stat.md b/api/Visio.InvisibleApp.Stat.md
index 7e2a98b3314..a548c265e11 100644
--- a/api/Visio.InvisibleApp.Stat.md
+++ b/api/Visio.InvisibleApp.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.InvisibleApp.StencilPaths.md b/api/Visio.InvisibleApp.StencilPaths.md
index d23facd4d26..e87ddb8d276 100644
--- a/api/Visio.InvisibleApp.StencilPaths.md
+++ b/api/Visio.InvisibleApp.StencilPaths.md
@@ -23,7 +23,7 @@ Gets or sets the paths where Microsoft Visio looks for stencils. Read/write.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.InvisibleApp.StyleAdded.md b/api/Visio.InvisibleApp.StyleAdded.md
index 80c7f66488e..4e115676d14 100644
--- a/api/Visio.InvisibleApp.StyleAdded.md
+++ b/api/Visio.InvisibleApp.StyleAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'StyleAdded'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that was added to the document.|
diff --git a/api/Visio.InvisibleApp.StyleChanged.md b/api/Visio.InvisibleApp.StyleChanged.md
index 758f4b769fa..aab71ddb6f4 100644
--- a/api/Visio.InvisibleApp.StyleChanged.md
+++ b/api/Visio.InvisibleApp.StyleChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'StyleChanged'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _style_|Required| **[IVSTYLE]**|The style that changed.|
diff --git a/api/Visio.InvisibleApp.StyleDeleteCanceled.md b/api/Visio.InvisibleApp.StyleDeleteCanceled.md
index b41b79b0427..620a088a18f 100644
--- a/api/Visio.InvisibleApp.StyleDeleteCanceled.md
+++ b/api/Visio.InvisibleApp.StyleDeleteCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'StyleDeleteCanceled'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that was going to be deleted.|
diff --git a/api/Visio.InvisibleApp.SuspendCanceled.md b/api/Visio.InvisibleApp.SuspendCanceled.md
index c90a5e25a00..175cb5d502e 100644
--- a/api/Visio.InvisibleApp.SuspendCanceled.md
+++ b/api/Visio.InvisibleApp.SuspendCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'SuspendCanceled'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio that was going to be suspended.|
diff --git a/api/Visio.InvisibleApp.SuspendEventsCanceled.md b/api/Visio.InvisibleApp.SuspendEventsCanceled.md
index 35b820f3750..a1dc41cd985 100644
--- a/api/Visio.InvisibleApp.SuspendEventsCanceled.md
+++ b/api/Visio.InvisibleApp.SuspendEventsCanceled.md
@@ -24,11 +24,11 @@ Private Sub _expression_ _'SuspendEventsCanceled'(**_ByVal app As_** , )
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio in which firing of events was going to be suspended.|
-### Return Value
+### Return value
nothing
diff --git a/api/Visio.InvisibleApp.TemplatePaths.md b/api/Visio.InvisibleApp.TemplatePaths.md
index 3e4b1e14bbc..93be11a437c 100644
--- a/api/Visio.InvisibleApp.TemplatePaths.md
+++ b/api/Visio.InvisibleApp.TemplatePaths.md
@@ -23,7 +23,7 @@ Gets or sets the paths where Microsoft Visio looks for templates. Read/write.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.InvisibleApp.TextChanged.md b/api/Visio.InvisibleApp.TextChanged.md
index c224152ad60..813da9e8e73 100644
--- a/api/Visio.InvisibleApp.TextChanged.md
+++ b/api/Visio.InvisibleApp.TextChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'TextChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose text changed.|
diff --git a/api/Visio.InvisibleApp.TraceFlags.md b/api/Visio.InvisibleApp.TraceFlags.md
index bf340493892..c60cac3baba 100644
--- a/api/Visio.InvisibleApp.TraceFlags.md
+++ b/api/Visio.InvisibleApp.TraceFlags.md
@@ -23,7 +23,7 @@ Gets or sets events logged during a Microsoft Visio instance. Read/write.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.InvisibleApp.TypelibMajorVersion.md b/api/Visio.InvisibleApp.TypelibMajorVersion.md
index a3022514e19..59a253754ca 100644
--- a/api/Visio.InvisibleApp.TypelibMajorVersion.md
+++ b/api/Visio.InvisibleApp.TypelibMajorVersion.md
@@ -23,7 +23,7 @@ Returns the major version number of the Microsoft Visio type library. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.InvisibleApp.TypelibMinorVersion.md b/api/Visio.InvisibleApp.TypelibMinorVersion.md
index b1c6ca1e5b6..f74a2981e7f 100644
--- a/api/Visio.InvisibleApp.TypelibMinorVersion.md
+++ b/api/Visio.InvisibleApp.TypelibMinorVersion.md
@@ -23,7 +23,7 @@ Returns the minor version number of the Microsoft Visio type library. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.InvisibleApp.Undo.md b/api/Visio.InvisibleApp.Undo.md
index 4ead1200ff0..624f4ffce04 100644
--- a/api/Visio.InvisibleApp.Undo.md
+++ b/api/Visio.InvisibleApp.Undo.md
@@ -23,7 +23,7 @@ Reverses the most recent undo unit, if the undo unit can be reversed.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.InvisibleApp.UndoEnabled.md b/api/Visio.InvisibleApp.UndoEnabled.md
index 2f208ee693d..6ba72f6bef9 100644
--- a/api/Visio.InvisibleApp.UndoEnabled.md
+++ b/api/Visio.InvisibleApp.UndoEnabled.md
@@ -23,7 +23,7 @@ Determines whether undo information is maintained in memory. Read/write.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.InvisibleApp.UngroupCanceled.md b/api/Visio.InvisibleApp.UngroupCanceled.md
index 888b0d176ec..143d6f44b12 100644
--- a/api/Visio.InvisibleApp.UngroupCanceled.md
+++ b/api/Visio.InvisibleApp.UngroupCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'UngroupCanceled'(**_ByVal Selection As [IVSELECTION]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be ungrouped.|
diff --git a/api/Visio.InvisibleApp.UnregisterRibbonX.md b/api/Visio.InvisibleApp.UnregisterRibbonX.md
index 63990db2438..45106225065 100644
--- a/api/Visio.InvisibleApp.UnregisterRibbonX.md
+++ b/api/Visio.InvisibleApp.UnregisterRibbonX.md
@@ -27,12 +27,12 @@ Unregisters a previouly registered **IRibbonExtensiblity** interface that a Mic
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SourceAddOn_|Required| **IRibbonExtensibility**|The add-in to unregister.|
| _TargetDocument_|Required| **[Document](Visio.Document.md)**|The document in which to unregister the add-in.|
-### Return Value
+### Return value
**HRESULT**
diff --git a/api/Visio.InvisibleApp.UserName.md b/api/Visio.InvisibleApp.UserName.md
index d7751189366..b7aa59747d0 100644
--- a/api/Visio.InvisibleApp.UserName.md
+++ b/api/Visio.InvisibleApp.UserName.md
@@ -23,7 +23,7 @@ Gets or sets the user name of an **Application** object. Read/write.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.InvisibleApp.VBAEnabled.md b/api/Visio.InvisibleApp.VBAEnabled.md
index 8f8e29bbbb3..8d3a5ad3b87 100644
--- a/api/Visio.InvisibleApp.VBAEnabled.md
+++ b/api/Visio.InvisibleApp.VBAEnabled.md
@@ -23,7 +23,7 @@ Specifies whether Microsoft Visual Basic for Applications (VBA) is enabled in th
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.InvisibleApp.Vbe.md b/api/Visio.InvisibleApp.Vbe.md
index a3c8a4d865c..7c5b19ba25a 100644
--- a/api/Visio.InvisibleApp.Vbe.md
+++ b/api/Visio.InvisibleApp.Vbe.md
@@ -23,7 +23,7 @@ Gets the root object of the object model exposed by Microsoft Visual Basic for A
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.InvisibleApp.Version.md b/api/Visio.InvisibleApp.Version.md
index 4d56e016dc8..9c79746190d 100644
--- a/api/Visio.InvisibleApp.Version.md
+++ b/api/Visio.InvisibleApp.Version.md
@@ -23,7 +23,7 @@ Returns the version of a running Microsoft Visio instance. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.InvisibleApp.ViewChanged.md b/api/Visio.InvisibleApp.ViewChanged.md
index d851c793d5e..e79a9e0bc73 100644
--- a/api/Visio.InvisibleApp.ViewChanged.md
+++ b/api/Visio.InvisibleApp.ViewChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ViewChanged'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window whose zoom level or scroll position changed.|
diff --git a/api/Visio.InvisibleApp.Visible.md b/api/Visio.InvisibleApp.Visible.md
index 3dcad7751a3..54702e3a7e8 100644
--- a/api/Visio.InvisibleApp.Visible.md
+++ b/api/Visio.InvisibleApp.Visible.md
@@ -23,7 +23,7 @@ Determines whether an object is visible. Read/write.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.InvisibleApp.VisioIsIdle.md b/api/Visio.InvisibleApp.VisioIsIdle.md
index 02e9d82879a..f14931eedba 100644
--- a/api/Visio.InvisibleApp.VisioIsIdle.md
+++ b/api/Visio.InvisibleApp.VisioIsIdle.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'VisioIsIdle'(**_ByVal app As [IVAPPLICATION]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _app_|Required| **[IVAPPLICATION]**|The instance of Microsoft Visio that emptied its message queue.|
diff --git a/api/Visio.InvisibleApp.Window.md b/api/Visio.InvisibleApp.Window.md
index 1d6302d24b4..16db0da64f6 100644
--- a/api/Visio.InvisibleApp.Window.md
+++ b/api/Visio.InvisibleApp.Window.md
@@ -23,7 +23,7 @@ Returns the window associated with the current instance of Microsoft Visio. Read
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.InvisibleApp.WindowActivated.md b/api/Visio.InvisibleApp.WindowActivated.md
index d22c91a37f2..d49d7913206 100644
--- a/api/Visio.InvisibleApp.WindowActivated.md
+++ b/api/Visio.InvisibleApp.WindowActivated.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'WindowActivated'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that was activated.|
diff --git a/api/Visio.InvisibleApp.WindowChanged.md b/api/Visio.InvisibleApp.WindowChanged.md
index d977a812447..68822eccbaa 100644
--- a/api/Visio.InvisibleApp.WindowChanged.md
+++ b/api/Visio.InvisibleApp.WindowChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'WindowChanged'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window whose size or position has changed.|
diff --git a/api/Visio.InvisibleApp.WindowCloseCanceled.md b/api/Visio.InvisibleApp.WindowCloseCanceled.md
index d40fe7738b0..fb39ae54704 100644
--- a/api/Visio.InvisibleApp.WindowCloseCanceled.md
+++ b/api/Visio.InvisibleApp.WindowCloseCanceled.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'WindowCloseCanceled'(**_ByVal Window As [IVWINDOW]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that was going to be closed.|
diff --git a/api/Visio.InvisibleApp.WindowHandle32.md b/api/Visio.InvisibleApp.WindowHandle32.md
index 4405770f81d..efc28a25203 100644
--- a/api/Visio.InvisibleApp.WindowHandle32.md
+++ b/api/Visio.InvisibleApp.WindowHandle32.md
@@ -23,7 +23,7 @@ Returns the 32-bit handle of a Microsoft Visio window. Read-only.
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.InvisibleApp.WindowOpened.md b/api/Visio.InvisibleApp.WindowOpened.md
index de48cf33a78..5abd512ce03 100644
--- a/api/Visio.InvisibleApp.WindowOpened.md
+++ b/api/Visio.InvisibleApp.WindowOpened.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'WindowOpened'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that opened.|
diff --git a/api/Visio.InvisibleApp.WindowTurnedToPage.md b/api/Visio.InvisibleApp.WindowTurnedToPage.md
index 5b12aebfb76..5c2740d9617 100644
--- a/api/Visio.InvisibleApp.WindowTurnedToPage.md
+++ b/api/Visio.InvisibleApp.WindowTurnedToPage.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'WindowTurnedToPage'(**_ByVal Window As [IVWINDOW]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that shows a different page.|
diff --git a/api/Visio.InvisibleApp.Windows.md b/api/Visio.InvisibleApp.Windows.md
index dc522cc720e..4a471a628d2 100644
--- a/api/Visio.InvisibleApp.Windows.md
+++ b/api/Visio.InvisibleApp.Windows.md
@@ -23,7 +23,7 @@ Returns the **Windows** collection for a Microsoft Visio instance or window. Re
_expression_ A variable that represents an [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Windows
diff --git a/api/Visio.IsVisio32.md b/api/Visio.IsVisio32.md
index 42e18c2471a..e22bf75cf7c 100644
--- a/api/Visio.IsVisio32.md
+++ b/api/Visio.IsVisio32.md
@@ -23,7 +23,7 @@ Returns **True** if the current instance of Microsoft Visio is 32-bit. Returns
_expression_ An expression that returns a [Application](./Visio.Application.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.KeyboardEvent.Application.md b/api/Visio.KeyboardEvent.Application.md
index 7c92d895092..0ee294b3f81 100644
--- a/api/Visio.KeyboardEvent.Application.md
+++ b/api/Visio.KeyboardEvent.Application.md
@@ -20,7 +20,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [KeyboardEvent](./Visio.KeyboardEvent.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.KeyboardEvent.KeyAscii.md b/api/Visio.KeyboardEvent.KeyAscii.md
index c3f9d1100b1..62b1f4bced5 100644
--- a/api/Visio.KeyboardEvent.KeyAscii.md
+++ b/api/Visio.KeyboardEvent.KeyAscii.md
@@ -23,7 +23,7 @@ Returns the ASCII code associated with a **KeyPress** event. Read-only.
_expression_ A variable that represents a [KeyboardEvent](./Visio.KeyboardEvent.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.KeyboardEvent.KeyCode.md b/api/Visio.KeyboardEvent.KeyCode.md
index 252dcc005ea..54401cb4111 100644
--- a/api/Visio.KeyboardEvent.KeyCode.md
+++ b/api/Visio.KeyboardEvent.KeyCode.md
@@ -23,7 +23,7 @@ Returns the key associated with **KeyDown** and **KeyUp** events. Read-only.
_expression_ A variable that represents a [KeyboardEvent](./Visio.KeyboardEvent.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.KeyboardEvent.ObjectType.md b/api/Visio.KeyboardEvent.ObjectType.md
index fa7d810de72..5c4e900ed07 100644
--- a/api/Visio.KeyboardEvent.ObjectType.md
+++ b/api/Visio.KeyboardEvent.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [KeyboardEvent](./Visio.KeyboardEvent.md) object.
-### Return Value
+### Return value
VisObjectType
diff --git a/api/Visio.KeyboardEvent.Stat.md b/api/Visio.KeyboardEvent.Stat.md
index ed8d5b72743..c1905e8798c 100644
--- a/api/Visio.KeyboardEvent.Stat.md
+++ b/api/Visio.KeyboardEvent.Stat.md
@@ -23,7 +23,7 @@ Returns status information. Read-only.
_expression_ A variable that represents a [KeyboardEvent](./Visio.KeyboardEvent.md) object.
-### Return Value
+### Return value
VisStatCodes
diff --git a/api/Visio.KeyboardEvent.ToString.md b/api/Visio.KeyboardEvent.ToString.md
index 8c53635c892..dd7b0d96f31 100644
--- a/api/Visio.KeyboardEvent.ToString.md
+++ b/api/Visio.KeyboardEvent.ToString.md
@@ -23,7 +23,7 @@ Returns a string that represents the properties of a **KeyboardEvent** or **Mou
_expression_ A variable that represents a [KeyboardEvent](./Visio.KeyboardEvent.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.KeyboardEvent.Window.md b/api/Visio.KeyboardEvent.Window.md
index 761a4a36cb5..ff665349b0f 100644
--- a/api/Visio.KeyboardEvent.Window.md
+++ b/api/Visio.KeyboardEvent.Window.md
@@ -23,7 +23,7 @@ Returns the window associated with a **KeyboardEvent** object. Read-only.
_expression_ A variable that represents a [KeyboardEvent](./Visio.KeyboardEvent.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.LastErrorCode.md b/api/Visio.LastErrorCode.md
index 18a4427c731..7efe25c17e8 100644
--- a/api/Visio.LastErrorCode.md
+++ b/api/Visio.LastErrorCode.md
@@ -20,7 +20,7 @@ Gets the last error code returned by Microsoft Visio Viewer. Read-only.
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.Layer.Add.md b/api/Visio.Layer.Add.md
index 6cd8b002b9f..11a8d9cc8fc 100644
--- a/api/Visio.Layer.Add.md
+++ b/api/Visio.Layer.Add.md
@@ -27,12 +27,12 @@ Adds a **Shape** object to a **Layer** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SheetObject_|Required| **[IVSHAPE]**|The new **Shape** object added to the **Layer** object.|
| _fPresMems_|Required| **Integer**|Zero to remove subshapes from any previous layer assignments; non-zero to preserve layer assignments.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Layer.Application.md b/api/Visio.Layer.Application.md
index eb73a0a7d16..3169526d2fd 100644
--- a/api/Visio.Layer.Application.md
+++ b/api/Visio.Layer.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Layer](./Visio.Layer.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Layer.CellsC.md b/api/Visio.Layer.CellsC.md
index d779c3797af..e187e46f9b7 100644
--- a/api/Visio.Layer.CellsC.md
+++ b/api/Visio.Layer.CellsC.md
@@ -27,11 +27,11 @@ Returns a **Cell** object that represents a ShapeSheet cell in a row in the Lay
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Column_|Required| **Integer**|The cell index of the cell to get.|
-### Return Value
+### Return value
Cell
diff --git a/api/Visio.Layer.Delete.md b/api/Visio.Layer.Delete.md
index 360d77ddf7d..237da24f176 100644
--- a/api/Visio.Layer.Delete.md
+++ b/api/Visio.Layer.Delete.md
@@ -27,11 +27,11 @@ Deletes a **Layer** object. Can also delete shapes assigned to the deleted laye
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _fDeleteShapes_|Required| **Integer**|1 (**True**) to delete shapes assigned to the layer; otherwise, 0 (**False**).|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Layer.Document.md b/api/Visio.Layer.Document.md
index 842659864a8..2595563a092 100644
--- a/api/Visio.Layer.Document.md
+++ b/api/Visio.Layer.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Layer](./Visio.Layer.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Layer.EventList.md b/api/Visio.Layer.EventList.md
index 2b5e6b45a32..f3fbb4e05b5 100644
--- a/api/Visio.Layer.EventList.md
+++ b/api/Visio.Layer.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Layer](./Visio.Layer.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Layer.Index.md b/api/Visio.Layer.Index.md
index 2ba7df6795e..6e4009c2e0e 100644
--- a/api/Visio.Layer.Index.md
+++ b/api/Visio.Layer.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of a **Layer** object in the **Layers** collection. R
_expression_ A variable that represents a [Layer](./Visio.Layer.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Layer.Master.md b/api/Visio.Layer.Master.md
index 7c05cbfab8f..ac3f40c4fbd 100644
--- a/api/Visio.Layer.Master.md
+++ b/api/Visio.Layer.Master.md
@@ -23,7 +23,7 @@ Returns the master that contains the **Layer** object. Read-only.
_expression_ A variable that represents a [Layer](./Visio.Layer.md) object.
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Layer.Name.md b/api/Visio.Layer.Name.md
index 39c0d6c95c1..dccf86500ed 100644
--- a/api/Visio.Layer.Name.md
+++ b/api/Visio.Layer.Name.md
@@ -23,7 +23,7 @@ Specifies the name of an object. Read-only.
_expression_ A variable that represents a [Layer](./Visio.Layer.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Layer.NameU.md b/api/Visio.Layer.NameU.md
index 3ad01034dfc..2d2d3c92187 100644
--- a/api/Visio.Layer.NameU.md
+++ b/api/Visio.Layer.NameU.md
@@ -23,7 +23,7 @@ Specifies the universal name of a **Layer** object. Read/write.
_expression_ A variable that represents a [Layer](./Visio.Layer.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Layer.ObjectType.md b/api/Visio.Layer.ObjectType.md
index e66421564f6..94e25024b13 100644
--- a/api/Visio.Layer.ObjectType.md
+++ b/api/Visio.Layer.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Layer](./Visio.Layer.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Layer.Page.md b/api/Visio.Layer.Page.md
index 2da9cafe39d..905d1d6b357 100644
--- a/api/Visio.Layer.Page.md
+++ b/api/Visio.Layer.Page.md
@@ -23,7 +23,7 @@ Gets the page that contains the layer. Read-only.
_expression_ A variable that represents a [Layer](./Visio.Layer.md) object.
-### Return Value
+### Return value
Page
diff --git a/api/Visio.Layer.PersistsEvents.md b/api/Visio.Layer.PersistsEvents.md
index 5a89c16ed97..8cbaf49993e 100644
--- a/api/Visio.Layer.PersistsEvents.md
+++ b/api/Visio.Layer.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Layer](./Visio.Layer.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Layer.Remove.md b/api/Visio.Layer.Remove.md
index 36ae01c9122..5f30b5a0c85 100644
--- a/api/Visio.Layer.Remove.md
+++ b/api/Visio.Layer.Remove.md
@@ -27,12 +27,12 @@ Removes a shape from a layer.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SheetObject_|Required| **[IVSHAPE]**|An expression that returns the **Shape** object to remove.|
| _fPresMems_|Required| **Integer**|Flag that indicates whether to remove members of a group.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Layer.Row.md b/api/Visio.Layer.Row.md
index df542988823..c443e97d621 100644
--- a/api/Visio.Layer.Row.md
+++ b/api/Visio.Layer.Row.md
@@ -23,7 +23,7 @@ Returns the row index of a layer. Read-only.
_expression_ A variable that represents a [Layer](./Visio.Layer.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Layer.Stat.md b/api/Visio.Layer.Stat.md
index 59bc7fc09b1..309068409a5 100644
--- a/api/Visio.Layer.Stat.md
+++ b/api/Visio.Layer.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Layer](./Visio.Layer.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.LayerColor.md b/api/Visio.LayerColor.md
index a33d0d077ee..c07b7f6ebc1 100644
--- a/api/Visio.LayerColor.md
+++ b/api/Visio.LayerColor.md
@@ -24,11 +24,11 @@ Gets or sets the color of the layer at the specified index position in the curre
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|LayerIndex|Required| **Long**|The index of the layer in the collection of layers in the drawing open in Visio Viewer.|
-### Return Value
+### Return value
**[OLE_COLOR]**
diff --git a/api/Visio.LayerColorOverride.md b/api/Visio.LayerColorOverride.md
index 6adb813ce0a..3a842dba992 100644
--- a/api/Visio.LayerColorOverride.md
+++ b/api/Visio.LayerColorOverride.md
@@ -24,11 +24,11 @@ Gets or sets a value that indicates whether the color of the specified layer is
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|LayerIndex|Required| **Long**|The index of the layer in the collection of layers in the drawing open in Visio Viewer.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.LayerColorTrans.md b/api/Visio.LayerColorTrans.md
index 88e6895e134..cf1dbe23a7d 100644
--- a/api/Visio.LayerColorTrans.md
+++ b/api/Visio.LayerColorTrans.md
@@ -24,11 +24,11 @@ Gets or sets the transparency of the color of the layer at the specified index i
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|LayerIndex|Required| **Long**|The index of the layer in the collection of layers in the drawing open in Visio Viewer.|
-### Return Value
+### Return value
**Double**
diff --git a/api/Visio.LayerCount.md b/api/Visio.LayerCount.md
index b686ebaa9d7..77762e26f0b 100644
--- a/api/Visio.LayerCount.md
+++ b/api/Visio.LayerCount.md
@@ -20,7 +20,7 @@ Gets the number of layers in the current drawing open in Microsoft Visio Viewer.
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.LayerDeleted.md b/api/Visio.LayerDeleted.md
index 070bbc5eae1..a89a7b838de 100644
--- a/api/Visio.LayerDeleted.md
+++ b/api/Visio.LayerDeleted.md
@@ -24,11 +24,11 @@ Gets a value that indicates whether the layer at the specified index in the draw
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|LayerIndex|Required| **Long**|The index of the layer in the collection of layers in the drawing open in Visio Viewer.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.LayerName.md b/api/Visio.LayerName.md
index 88df0745ff4..39c64735971 100644
--- a/api/Visio.LayerName.md
+++ b/api/Visio.LayerName.md
@@ -24,11 +24,11 @@ Gets the name of the layer at the specified index in the drawing open in Microso
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|LayerIndex|Required| **Long**|The index of the layer in the collection of layers in the drawing open in Visio Viewer.|
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.LayerVisible.md b/api/Visio.LayerVisible.md
index 14b22e5a83e..b9cd0516ede 100644
--- a/api/Visio.LayerVisible.md
+++ b/api/Visio.LayerVisible.md
@@ -24,11 +24,11 @@ Gets or sets a value that indicates whether the specified layer is visible in th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|LayerIndex|Required| **Long**|The index of the layer in the collection of layers in the drawing open in Visio Viewer.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.Layers.Add.md b/api/Visio.Layers.Add.md
index eea3d2a9625..415e551ddba 100644
--- a/api/Visio.Layers.Add.md
+++ b/api/Visio.Layers.Add.md
@@ -27,11 +27,11 @@ Adds a new **Layer** object to a **Layers** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _LayerName_|Required| **String**|The name of the new layer.|
-### Return Value
+### Return value
Layer
diff --git a/api/Visio.Layers.Application.md b/api/Visio.Layers.Application.md
index 3a777480851..da4a35be296 100644
--- a/api/Visio.Layers.Application.md
+++ b/api/Visio.Layers.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Layers](./Visio.Layers.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Layers.Count.md b/api/Visio.Layers.Count.md
index 7d63cde5d66..76e157925d6 100644
--- a/api/Visio.Layers.Count.md
+++ b/api/Visio.Layers.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Layers](./Visio.Layers.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Layers.Document.md b/api/Visio.Layers.Document.md
index a610118d0ae..e28ca43c619 100644
--- a/api/Visio.Layers.Document.md
+++ b/api/Visio.Layers.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Layers](./Visio.Layers.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Layers.EventList.md b/api/Visio.Layers.EventList.md
index 05dff8abb41..d0ac4ab8731 100644
--- a/api/Visio.Layers.EventList.md
+++ b/api/Visio.Layers.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Layers](./Visio.Layers.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Layers.Item.md b/api/Visio.Layers.Item.md
index ad4479f8c27..abd33502325 100644
--- a/api/Visio.Layers.Item.md
+++ b/api/Visio.Layers.Item.md
@@ -27,11 +27,11 @@ Returns an item from a collection. The **Item** property is the default propert
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|Contains the name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
Layer
diff --git a/api/Visio.Layers.ItemU.md b/api/Visio.Layers.ItemU.md
index ae15bca53e0..01a2d5725cc 100644
--- a/api/Visio.Layers.ItemU.md
+++ b/api/Visio.Layers.ItemU.md
@@ -27,11 +27,11 @@ Returns an object from a collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|Contains the universal name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
Layer
diff --git a/api/Visio.Layers.Master.md b/api/Visio.Layers.Master.md
index 85474415bc5..383a8f2e5b3 100644
--- a/api/Visio.Layers.Master.md
+++ b/api/Visio.Layers.Master.md
@@ -23,7 +23,7 @@ Returns the master that contains the **Layers** collection. Read-only.
_expression_ A variable that represents a [Layers](./Visio.Layers.md) object.
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Layers.ObjectType.md b/api/Visio.Layers.ObjectType.md
index 03fb0253188..badd2137049 100644
--- a/api/Visio.Layers.ObjectType.md
+++ b/api/Visio.Layers.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Layers](./Visio.Layers.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Layers.Page.md b/api/Visio.Layers.Page.md
index 42f52efdc35..c161089cea6 100644
--- a/api/Visio.Layers.Page.md
+++ b/api/Visio.Layers.Page.md
@@ -23,7 +23,7 @@ Gets the page that contains the layers. Read-only.
_expression_ A variable that represents a [Layers](./Visio.Layers.md) object.
-### Return Value
+### Return value
Page
diff --git a/api/Visio.Layers.PersistsEvents.md b/api/Visio.Layers.PersistsEvents.md
index cd7f9c1ff8a..ad4b2d609e8 100644
--- a/api/Visio.Layers.PersistsEvents.md
+++ b/api/Visio.Layers.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Layers](./Visio.Layers.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Layers.Stat.md b/api/Visio.Layers.Stat.md
index 99f02e1097b..21594bd9cd9 100644
--- a/api/Visio.Layers.Stat.md
+++ b/api/Visio.Layers.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Layers](./Visio.Layers.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.ListFormats.md b/api/Visio.ListFormats.md
index d2a2ad8f314..a00f0ebdf5f 100644
--- a/api/Visio.ListFormats.md
+++ b/api/Visio.ListFormats.md
@@ -20,7 +20,7 @@ Displays a message box in the user interface that lists the output format types
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Load.md b/api/Visio.Load.md
index cfa7cb4a655..c6aedad08de 100644
--- a/api/Visio.Load.md
+++ b/api/Visio.Load.md
@@ -24,11 +24,11 @@ Loads a drawing file into Microsoft Visio Viewer.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|UrlOrFilename|Required| **String**|The full path and file name or the URL of the file to be loaded.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.MSGWrap.Application.md b/api/Visio.MSGWrap.Application.md
index bb16ab61b40..4ea0c6f7152 100644
--- a/api/Visio.MSGWrap.Application.md
+++ b/api/Visio.MSGWrap.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [MSGWrap](./Visio.MSGWrap.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.MSGWrap.ObjectType.md b/api/Visio.MSGWrap.ObjectType.md
index e23f10a00fb..75408c10ad1 100644
--- a/api/Visio.MSGWrap.ObjectType.md
+++ b/api/Visio.MSGWrap.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [MSGWrap](./Visio.MSGWrap.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MSGWrap.hwnd.md b/api/Visio.MSGWrap.hwnd.md
index 8d4376fc7e2..4c8f84c5429 100644
--- a/api/Visio.MSGWrap.hwnd.md
+++ b/api/Visio.MSGWrap.hwnd.md
@@ -23,7 +23,7 @@ Gets or sets the **HWND** member of the **MSG** structure being wrapped. Read/w
_expression_ A variable that represents a [MSGWrap](./Visio.MSGWrap.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.MSGWrap.lParam.md b/api/Visio.MSGWrap.lParam.md
index 85b30ec2589..b90179a9416 100644
--- a/api/Visio.MSGWrap.lParam.md
+++ b/api/Visio.MSGWrap.lParam.md
@@ -23,7 +23,7 @@ Gets or sets the **lParam** member of the **MSG** structure being wrapped. Read
_expression_ A variable that represents a [MSGWrap](./Visio.MSGWrap.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.MSGWrap.message.md b/api/Visio.MSGWrap.message.md
index 5f56b339ef1..5e8b0ac24e5 100644
--- a/api/Visio.MSGWrap.message.md
+++ b/api/Visio.MSGWrap.message.md
@@ -23,7 +23,7 @@ Gets or sets the **message** member of the **MSG** structure being wrapped. Rea
_expression_ A variable that represents a [MSGWrap](./Visio.MSGWrap.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.MSGWrap.posttime.md b/api/Visio.MSGWrap.posttime.md
index 667ea282800..aedda9cf802 100644
--- a/api/Visio.MSGWrap.posttime.md
+++ b/api/Visio.MSGWrap.posttime.md
@@ -23,7 +23,7 @@ Gets or sets the **time** member of the **MSG** structure being wrapped. Read/w
_expression_ A variable that represents a [MSGWrap](./Visio.MSGWrap.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.MSGWrap.ptx.md b/api/Visio.MSGWrap.ptx.md
index 4ff508857b9..9d6805e8ac5 100644
--- a/api/Visio.MSGWrap.ptx.md
+++ b/api/Visio.MSGWrap.ptx.md
@@ -23,7 +23,7 @@ Gets or sets the **pt.x** member of the **MSG** structure being wrapped. Read/w
_expression_ A variable that represents a [MSGWrap](./Visio.MSGWrap.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.MSGWrap.pty.md b/api/Visio.MSGWrap.pty.md
index dc430b066d3..33cde506688 100644
--- a/api/Visio.MSGWrap.pty.md
+++ b/api/Visio.MSGWrap.pty.md
@@ -23,7 +23,7 @@ Gets or sets the **pt.y** member of the **MSG** structure being wrapped. Read/w
_expression_ A variable that represents a [MSGWrap](./Visio.MSGWrap.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.MSGWrap.wParam.md b/api/Visio.MSGWrap.wParam.md
index bd066a40cf1..5d1e8e81d34 100644
--- a/api/Visio.MSGWrap.wParam.md
+++ b/api/Visio.MSGWrap.wParam.md
@@ -23,7 +23,7 @@ Gets or sets the **wParam** member of the **MSG** structure being wrapped. Read
_expression_ A variable that represents a [MSGWrap](./Visio.MSGWrap.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.MajorVersionNumber.md b/api/Visio.MajorVersionNumber.md
index a5be8d7e2d7..22c750df38d 100644
--- a/api/Visio.MajorVersionNumber.md
+++ b/api/Visio.MajorVersionNumber.md
@@ -20,7 +20,7 @@ ms.date: 06/08/2017
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.MarkupOverlaysVisible.md b/api/Visio.MarkupOverlaysVisible.md
index af0d976841b..275c2d1678a 100644
--- a/api/Visio.MarkupOverlaysVisible.md
+++ b/api/Visio.MarkupOverlaysVisible.md
@@ -20,7 +20,7 @@ Gets or sets a value that indicates whether markup overlays are visible in the c
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Master.AddGuide.md b/api/Visio.Master.AddGuide.md
index 0372a7d9c99..d2fde213401 100644
--- a/api/Visio.Master.AddGuide.md
+++ b/api/Visio.Master.AddGuide.md
@@ -27,13 +27,13 @@ Adds a guide to a master.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **Integer**|The type of guide to add.|
| _xPos_|Required| **Double**|The x-coordinate of a point on the guide.|
| _yPos_|Required| **Double**|The y-coordinate of a point on the guide.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Master.AlignName.md b/api/Visio.Master.AlignName.md
index 52a2ab3f127..50a85026159 100644
--- a/api/Visio.Master.AlignName.md
+++ b/api/Visio.Master.AlignName.md
@@ -23,7 +23,7 @@ Gets or sets the position of a master name in a stencil window. Read/write.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Master.Application.md b/api/Visio.Master.Application.md
index 2b521e48b79..5a3404e6e1c 100644
--- a/api/Visio.Master.Application.md
+++ b/api/Visio.Master.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Master.BaseID.md b/api/Visio.Master.BaseID.md
index 3657f58eb25..7102c51f0f1 100644
--- a/api/Visio.Master.BaseID.md
+++ b/api/Visio.Master.BaseID.md
@@ -23,7 +23,7 @@ Returns a base ID for a master. Read-only.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Master.BeforeMasterDelete.md b/api/Visio.Master.BeforeMasterDelete.md
index 21668b6aa3a..211b647a839 100644
--- a/api/Visio.Master.BeforeMasterDelete.md
+++ b/api/Visio.Master.BeforeMasterDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeMasterDelete'(**_ByVal Master As [IVMASTER]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that is going to be deleted.|
diff --git a/api/Visio.Master.BeforeSelectionDelete.md b/api/Visio.Master.BeforeSelectionDelete.md
index 3184685a4ef..751932319d6 100644
--- a/api/Visio.Master.BeforeSelectionDelete.md
+++ b/api/Visio.Master.BeforeSelectionDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeSelectionDelete'(**_ByVal Selection As [IVSELE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selected objects that are going to be deleted.|
diff --git a/api/Visio.Master.BeforeShapeDelete.md b/api/Visio.Master.BeforeShapeDelete.md
index 05e08954e1d..70c7493b36f 100644
--- a/api/Visio.Master.BeforeShapeDelete.md
+++ b/api/Visio.Master.BeforeShapeDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeShapeDelete'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be deleted.|
diff --git a/api/Visio.Master.BeforeShapeTextEdit.md b/api/Visio.Master.BeforeShapeTextEdit.md
index 59af96a4b8e..24af22cdec5 100644
--- a/api/Visio.Master.BeforeShapeTextEdit.md
+++ b/api/Visio.Master.BeforeShapeTextEdit.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeShapeTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be opened for text editing.|
diff --git a/api/Visio.Master.BoundingBox.md b/api/Visio.Master.BoundingBox.md
index 83a956a29e8..45eb86c57d0 100644
--- a/api/Visio.Master.BoundingBox.md
+++ b/api/Visio.Master.BoundingBox.md
@@ -27,7 +27,7 @@ Returns a rectangle that tightly encloses the shapes of a master.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Required| **Integer**|Flags that influence the bounding box calculated for each shape that contributes to the resulting bounding box.|
| _lpr8Left_|Required| **Double**|Returns the x-coordinate of the left edge of the bounding box.|
@@ -35,7 +35,7 @@ Returns a rectangle that tightly encloses the shapes of a master.
| _lpr8Right_|Required| **Double**|Returns the x-coordinate of the right edge of the bounding box.|
| _lpr8Top_|Required| **Double**|Returns the y-coordinate of the top edge of the bounding box.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Master.CellChanged.md b/api/Visio.Master.CellChanged.md
index 7a811113278..2fd196869b4 100644
--- a/api/Visio.Master.CellChanged.md
+++ b/api/Visio.Master.CellChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'CellChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose value has changed.|
diff --git a/api/Visio.Master.CenterDrawing.md b/api/Visio.Master.CenterDrawing.md
index 09a443fe8ee..470cf46c4c3 100644
--- a/api/Visio.Master.CenterDrawing.md
+++ b/api/Visio.Master.CenterDrawing.md
@@ -23,7 +23,7 @@ Centers a page's, master's, or group's shapes with respect to the extent of the
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Master.Close.md b/api/Visio.Master.Close.md
index 2a641924d32..6734c46f7e4 100644
--- a/api/Visio.Master.Close.md
+++ b/api/Visio.Master.Close.md
@@ -23,7 +23,7 @@ Closes a master.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Master.ConnectionsAdded.md b/api/Visio.Master.ConnectionsAdded.md
index c372efd119c..1f402fca6ba 100644
--- a/api/Visio.Master.ConnectionsAdded.md
+++ b/api/Visio.Master.ConnectionsAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConnectionsAdded'(**_ByVal Connects As [IVCONNECTS]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Connects_|Required| **[IVCONNECTS]**|The connections that were established.|
diff --git a/api/Visio.Master.ConnectionsDeleted.md b/api/Visio.Master.ConnectionsDeleted.md
index dd50eff9e55..3509d0d7d5d 100644
--- a/api/Visio.Master.ConnectionsDeleted.md
+++ b/api/Visio.Master.ConnectionsDeleted.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConnectionsDeleted'(**_ByVal Connects As [IVCONNECTS
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Connects_|Required| **[IVCONNECTS]**|The connections that have been removed.|
diff --git a/api/Visio.Master.Connects.md b/api/Visio.Master.Connects.md
index 3ce7358657b..a36a31b1f77 100644
--- a/api/Visio.Master.Connects.md
+++ b/api/Visio.Master.Connects.md
@@ -23,7 +23,7 @@ Returns a **Connects** collection for a shape, page, or master. Read-only.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Connects
diff --git a/api/Visio.Master.ConvertToGroupCanceled.md b/api/Visio.Master.ConvertToGroupCanceled.md
index 17e5c93cdf6..c8060109925 100644
--- a/api/Visio.Master.ConvertToGroupCanceled.md
+++ b/api/Visio.Master.ConvertToGroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConvertToGroupCanceled'(**_ByVal Selection As [IVSEL
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.Master.CreateSelection.md b/api/Visio.Master.CreateSelection.md
index 1ca1b50f406..ff6104ab58e 100644
--- a/api/Visio.Master.CreateSelection.md
+++ b/api/Visio.Master.CreateSelection.md
@@ -27,13 +27,13 @@ Creates various types of **Selection** objects.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SelType_|Required| **VisSelectionTypes**|The type of selection. See Remarks for possible values.|
| _IterationMode_|Optional| **VisSelectMode**|The selection mode used. See Remarks for possible values.|
| _Data_|Optional| **Variant**|The object type that corresponds to the _SelType_ argument. See Remarks for possible values.|
-### Return Value
+### Return value
Selection
diff --git a/api/Visio.Master.CreateShortcut.md b/api/Visio.Master.CreateShortcut.md
index fc39447ba61..db8607d927e 100644
--- a/api/Visio.Master.CreateShortcut.md
+++ b/api/Visio.Master.CreateShortcut.md
@@ -23,7 +23,7 @@ Creates a shortcut for a master.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
MasterShortcut
diff --git a/api/Visio.Master.DataGraphicDelete.md b/api/Visio.Master.DataGraphicDelete.md
index 59cd2a880b5..a34c3293d62 100644
--- a/api/Visio.Master.DataGraphicDelete.md
+++ b/api/Visio.Master.DataGraphicDelete.md
@@ -26,7 +26,7 @@ Deletes the **Master** of type **visTypeDataGraphic** from the **Masters** coll
_expression_ An expression that returns a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Master.DataGraphicHidden.md b/api/Visio.Master.DataGraphicHidden.md
index 6b0d498d729..28a1f41ca0d 100644
--- a/api/Visio.Master.DataGraphicHidden.md
+++ b/api/Visio.Master.DataGraphicHidden.md
@@ -26,7 +26,7 @@ Hides or displays a data graphic in the **Data Graphics** task pane in the Micr
_expression_ An expression that returns a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Master.DataGraphicHidesText.md b/api/Visio.Master.DataGraphicHidesText.md
index 12f3eb6917e..db944a0cfb9 100644
--- a/api/Visio.Master.DataGraphicHidesText.md
+++ b/api/Visio.Master.DataGraphicHidesText.md
@@ -26,7 +26,7 @@ Displays or hides the text of a shape or of the primary shape in a selection whe
_expression_ An expression that returns a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Master.DataGraphicHorizontalPosition.md b/api/Visio.Master.DataGraphicHorizontalPosition.md
index e9425e6482c..16274667c57 100644
--- a/api/Visio.Master.DataGraphicHorizontalPosition.md
+++ b/api/Visio.Master.DataGraphicHorizontalPosition.md
@@ -26,7 +26,7 @@ Gets or sets the default horizontal callout position for members of the **Graph
_expression_ An expression that returns a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
VisGraphicPositionHorizontal
diff --git a/api/Visio.Master.DataGraphicShowBorder.md b/api/Visio.Master.DataGraphicShowBorder.md
index c66838607c7..68ba136aab1 100644
--- a/api/Visio.Master.DataGraphicShowBorder.md
+++ b/api/Visio.Master.DataGraphicShowBorder.md
@@ -26,7 +26,7 @@ Gets or sets whether a border is displayed around the graphic items contained in
_expression_ An expression that returns a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Master.DataGraphicVerticalPosition.md b/api/Visio.Master.DataGraphicVerticalPosition.md
index 3fc5e56c76c..6ae642a054f 100644
--- a/api/Visio.Master.DataGraphicVerticalPosition.md
+++ b/api/Visio.Master.DataGraphicVerticalPosition.md
@@ -26,7 +26,7 @@ Gets or sets the default vertical callout position for members of the **Graphic
_expression_ An expression that returns a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
VisGraphicPositionVertical
diff --git a/api/Visio.Master.Delete.md b/api/Visio.Master.Delete.md
index 17c9bffdc82..71ed0514ed3 100644
--- a/api/Visio.Master.Delete.md
+++ b/api/Visio.Master.Delete.md
@@ -23,7 +23,7 @@ Deletes an object.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Master.Document.md b/api/Visio.Master.Document.md
index 1d78b7266e3..f71910f341f 100644
--- a/api/Visio.Master.Document.md
+++ b/api/Visio.Master.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Master.DrawArcByThreePoints.md b/api/Visio.Master.DrawArcByThreePoints.md
index 2b3f16fc93c..1ac739be36a 100644
--- a/api/Visio.Master.DrawArcByThreePoints.md
+++ b/api/Visio.Master.DrawArcByThreePoints.md
@@ -27,7 +27,7 @@ Creates a shape whose path consists of an arc defined by the three points passed
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xBegin_|Required| **Double**|The x-coordinate of the begin point of the arc.|
| _yBegin_|Required| **Double**|The y-coordinate of the begin point of the arc.|
@@ -36,7 +36,7 @@ Creates a shape whose path consists of an arc defined by the three points passed
| _xControl_|Required| **Double**|The x-coordinate of the control point of the arc.|
| _yControl_|Required| **Double**|The y-coordinate of the control point of the arc.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Master.DrawBezier.md b/api/Visio.Master.DrawBezier.md
index 7954fa5846e..a5db07cf011 100644
--- a/api/Visio.Master.DrawBezier.md
+++ b/api/Visio.Master.DrawBezier.md
@@ -27,13 +27,13 @@ Creates a shape whose path is defined by the supplied sequence of Bezier control
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xyArray()_|Required| **Double**|An array of alternating _x_ and _y_ values that define the Bezier control points for the new shape.|
| _degree_|Required| **Integer**|The degree of the Bezier curve.|
| _Flags_|Required| **Integer**|Flags that influence how the shape is drawn.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Master.DrawCircularArc.md b/api/Visio.Master.DrawCircularArc.md
index 4458ed3f877..1e039f3a717 100644
--- a/api/Visio.Master.DrawCircularArc.md
+++ b/api/Visio.Master.DrawCircularArc.md
@@ -27,7 +27,7 @@ Creates a new shape whose path consists of a circular arc defined by its center,
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xCenter_|Required| **Double**|The x-coordinate of the center of the arc.|
| _yCenter_|Required| **Double**|The y-coordinate of the center of the arc.|
@@ -35,7 +35,7 @@ Creates a new shape whose path consists of a circular arc defined by its center,
| _StartAngle_|Optional| **Double**|The angle in radians with respect to the x-axis at which to start drawing the arc. The default is 0.|
| _EndAngle_|Optional| **Double**|The angle in radians with respect to the x-axis at which to end the arc. The default is pi (3.14592634898).|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Master.DrawLine.md b/api/Visio.Master.DrawLine.md
index d27d5cc9abe..daab6c3c088 100644
--- a/api/Visio.Master.DrawLine.md
+++ b/api/Visio.Master.DrawLine.md
@@ -27,14 +27,14 @@ Adds a line to the **Shapes** collection of a master.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xBegin_|Required| **Double**|The x-coordinate of the line's begin point.|
| _yBegin_|Required| **Double**|The y-coordinate of the line's begin point.|
| _xEnd_|Required| **Double**|The x-coordinate of the line's endpoint.|
| _yEnd_|Required| **Double**|The y-coordinate of the line's endpoint.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Master.DrawNURBS.md b/api/Visio.Master.DrawNURBS.md
index b15ffe1960d..7b590f71c70 100644
--- a/api/Visio.Master.DrawNURBS.md
+++ b/api/Visio.Master.DrawNURBS.md
@@ -27,7 +27,7 @@ Creates a new shape whose path consists of a single NURBS (nonuniform rational B
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _degree_|Required| **Integer**|The spline's degree; an integer between 1 and 25.|
| _Flags_|Required| **Integer**|Flags that influence how the shape is drawn.|
@@ -35,7 +35,7 @@ Creates a new shape whose path consists of a single NURBS (nonuniform rational B
| _knots()_|Required| **Double**|An array of knots.|
| _weights_|Optional| **Variant**|An array of weights.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Master.DrawOval.md b/api/Visio.Master.DrawOval.md
index ff7d816d427..71690f5e8d8 100644
--- a/api/Visio.Master.DrawOval.md
+++ b/api/Visio.Master.DrawOval.md
@@ -27,14 +27,14 @@ Adds an oval (ellipse) to the **Shapes** collection of a master.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _x1_|Required| **Double**|The x-coordinate of one corner of the ellipse's width-height box.|
| _y1_|Required| **Double**|The y-coordinate of one corner of the ellipse's width-height box.|
| _x2_|Required| **Double**|The x-coordinate of the other corner of the ellipse's width-height box.|
| _y2_|Required| **Double**|The y-coordinate of the other corner of the ellipse's width-height box.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Master.DrawPolyline.md b/api/Visio.Master.DrawPolyline.md
index beab5a3c932..357d369683f 100644
--- a/api/Visio.Master.DrawPolyline.md
+++ b/api/Visio.Master.DrawPolyline.md
@@ -27,12 +27,12 @@ Creates a shape whose path is a polyline along a given set of points.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xyArray()_|Required| **Double**| An array of alternating _x_ and _y_ values that defines points in the new shape's path.|
| _Flags_|Required| **Integer**|Flags that influence how the shape is drawn.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Master.DrawQuarterArc.md b/api/Visio.Master.DrawQuarterArc.md
index 9da9a9e0dc9..08fadbfe19a 100644
--- a/api/Visio.Master.DrawQuarterArc.md
+++ b/api/Visio.Master.DrawQuarterArc.md
@@ -27,7 +27,7 @@ Creates a shape whose path consists of an elliptical arc defined by the two poin
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xBegin_|Required| **Double**|The _x_-coordinate of the begin point of the arc.|
| _yBegin_|Required| **Double**|The _y_-coordinate of the begin point of the arc.|
@@ -35,7 +35,7 @@ Creates a shape whose path consists of an elliptical arc defined by the two poin
| _yEnd_|Required| **Double**|The _y_-coordinate of the endpoint of the arc.|
| _SweepFlag_|Required| **VisArcSweepFlags**|The type of arc, concave or convex.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Master.DrawRectangle.md b/api/Visio.Master.DrawRectangle.md
index 26080eae32f..54d29c88636 100644
--- a/api/Visio.Master.DrawRectangle.md
+++ b/api/Visio.Master.DrawRectangle.md
@@ -27,14 +27,14 @@ Adds a rectangle to the **Shapes** collection of a page, master, or group.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _x1_|Required| **Double**|The _x_-coordinate of one corner of the rectangle's width-height box.|
| _y1_|Required| **Double**|The _y_-coordinate of one corner of the rectangle's width-height box.|
| _x2_|Required| **Double**|The _x_-coordinate of the other corner of the rectangle's width-height box.|
| _y2_|Required| **Double**|The _y_-coordinate of the other corner of the rectangle's width-height box.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Master.DrawSpline.md b/api/Visio.Master.DrawSpline.md
index 641cfdd85de..635371c17d4 100644
--- a/api/Visio.Master.DrawSpline.md
+++ b/api/Visio.Master.DrawSpline.md
@@ -27,13 +27,13 @@ Creates a new shape whose path follows a given sequence of points.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xyArray()_|Required| **Double**|An array of alternating _x_ and _y_ values that define points in the new shape's path.|
| _Tolerance_|Required| **Double**|How closely the path of the new shape must approximate the given points.|
| _Flags_|Required| **Integer**|Flags that influence how the shape is drawn.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Master.Drop.md b/api/Visio.Master.Drop.md
index 71aca419356..5697e9e9df0 100644
--- a/api/Visio.Master.Drop.md
+++ b/api/Visio.Master.Drop.md
@@ -27,13 +27,13 @@ Creates one or more new **Shape** objects by dropping an object onto a receivin
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectToDrop_|Required| **[UNKNOWN]**|The object or selection to drop. While this is typically a Visio object such as a **Master** , **Shape** , or **Selection** object, it can be any OLE object that provides an **IDataObject** interface.|
| _xPos_|Required| **Double**|The x-coordinate at which to place the center of the shape's width or PinX.|
| _yPos_|Required| **Double**|The y-coordinate at which to place the center of the shape's height or PinY.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Master.DropMany.md b/api/Visio.Master.DropMany.md
index c8a3bb40878..83da98dff68 100644
--- a/api/Visio.Master.DropMany.md
+++ b/api/Visio.Master.DropMany.md
@@ -27,13 +27,13 @@ Creates one or more new **Shape** objects in a master. It returns an array of t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectsToInstance()_|Required| **Variant**| An array that identifies masters or other objects from which to make shapes.|
| _xyArray()_|Required| **Double**|An array of alternating x and y values specifying the positions for the new shapes.|
| _IDArray()_|Required| **Integer**|Out parameter. An array that returns the IDs of the created shapes.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Master.DropManyU.md b/api/Visio.Master.DropManyU.md
index 70c7bfb37c6..58653834296 100644
--- a/api/Visio.Master.DropManyU.md
+++ b/api/Visio.Master.DropManyU.md
@@ -27,13 +27,13 @@ Creates one or more new **Shape** objects on a page, in a master, or in a group
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectsToInstance()_|Required| **Variant**|An array that identifies masters or other objects from which to make shapes by their universal names.|
| _xyArray()_|Required| **Double**|An array of alternating _x_ and _y_values specifying the positions for the new shapes.|
| _IDArray()_|Required| **Integer**|Out parameter. An array that returns the IDs of the created shapes.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Master.EditCopy.md b/api/Visio.Master.EditCopy.md
index 9300d1f6474..c7a8eb57f76 100644
--- a/api/Visio.Master.EditCopy.md
+++ b/api/Visio.Master.EditCopy.md
@@ -23,7 +23,7 @@ Returns a master that is open for editing and originally copied from this master
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Master.EventList.md b/api/Visio.Master.EventList.md
index b26d361659b..51007e893c5 100644
--- a/api/Visio.Master.EventList.md
+++ b/api/Visio.Master.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Master.Export.md b/api/Visio.Master.Export.md
index 1b85ab74dc9..461f1a91acc 100644
--- a/api/Visio.Master.Export.md
+++ b/api/Visio.Master.Export.md
@@ -27,11 +27,11 @@ Exports an object from Microsoft Visio to a file format such as .bmp, .dib, .dwg
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The fully qualified path and name of the file to receive the exported object.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Master.ExportIcon.md b/api/Visio.Master.ExportIcon.md
index 0c197a67a80..28825472247 100644
--- a/api/Visio.Master.ExportIcon.md
+++ b/api/Visio.Master.ExportIcon.md
@@ -27,13 +27,13 @@ Exports the icon for a **Master** object to a named file or the Clipboard.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The file to which to export the icon.|
| _Flags_|Required| **Integer**|The format in which to write the exported file.|
| _TransparentRGB_|Optional| **Variant**|The color to substitute for any transparent areas of the exported icon image.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Master.FormulaChanged.md b/api/Visio.Master.FormulaChanged.md
index deeab2b8073..16924f7b1ab 100644
--- a/api/Visio.Master.FormulaChanged.md
+++ b/api/Visio.Master.FormulaChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'FormulaChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose formula changed.|
diff --git a/api/Visio.Master.GetFormulas.md b/api/Visio.Master.GetFormulas.md
index 871facd759d..bd916943c88 100644
--- a/api/Visio.Master.GetFormulas.md
+++ b/api/Visio.Master.GetFormulas.md
@@ -27,12 +27,12 @@ Returns the formulas of many cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**|A stream that identifies cells to be queried.|
| _formulaArray()_|Required| **Variant**|Out paramter. An array that receives formulas of queried cells.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Master.GetFormulasU.md b/api/Visio.Master.GetFormulasU.md
index b689e4d73d7..4bbdf196818 100644
--- a/api/Visio.Master.GetFormulasU.md
+++ b/api/Visio.Master.GetFormulasU.md
@@ -27,12 +27,12 @@ Returns the formulas of many cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**|A stream that identifies cells to be queried.|
| _formulaArray()_|Required| **Variant**|Out parameter. An array that receives formulas of queried cells.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Master.GetResults.md b/api/Visio.Master.GetResults.md
index 9da5dda546f..d83357f9032 100644
--- a/api/Visio.Master.GetResults.md
+++ b/api/Visio.Master.GetResults.md
@@ -27,14 +27,14 @@ Gets the results or formulas of many cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**|An array that identifies cells to be queried.|
| _Flags_|Required| **Integer**|Flags that influence the type of entries returned in results.|
| _UnitsNamesOrCodes()_|Required| **Variant**| An array of measurement units that results are to be returned in.|
| _resultArray()_|Required| **Variant**|Out parameter. An array that receives results or formulas of queried cells.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Master.GraphicItems.md b/api/Visio.Master.GraphicItems.md
index 43d2d4ee0a5..ddbf93fc928 100644
--- a/api/Visio.Master.GraphicItems.md
+++ b/api/Visio.Master.GraphicItems.md
@@ -26,7 +26,7 @@ Returns the **GraphicItems** collection that the master contains. Read-only.
_expression_ An expression that returns a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
GraphicItems
diff --git a/api/Visio.Master.GroupCanceled.md b/api/Visio.Master.GroupCanceled.md
index d83733a2d00..40c4eac8cd2 100644
--- a/api/Visio.Master.GroupCanceled.md
+++ b/api/Visio.Master.GroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'GroupCanceled'(**_ByVal Selection As [IVSELECTION]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.Master.Hidden.md b/api/Visio.Master.Hidden.md
index 7db104fe681..1a9b200fd2d 100644
--- a/api/Visio.Master.Hidden.md
+++ b/api/Visio.Master.Hidden.md
@@ -23,7 +23,7 @@ Hides or shows a master on a stencil or a style in the user interface. Read/writ
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Master.ID.md b/api/Visio.Master.ID.md
index 88b4554276f..4e016c9cf07 100644
--- a/api/Visio.Master.ID.md
+++ b/api/Visio.Master.ID.md
@@ -23,7 +23,7 @@ Gets the ID of an object. Read-only.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Master.Icon.md b/api/Visio.Master.Icon.md
index e32a04d476d..4ed40873443 100644
--- a/api/Visio.Master.Icon.md
+++ b/api/Visio.Master.Icon.md
@@ -23,7 +23,7 @@ Returns the icon contained in a master. Read/write.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
IPictureDisp
diff --git a/api/Visio.Master.IconSize.md b/api/Visio.Master.IconSize.md
index 7dedc373123..78a2764d02d 100644
--- a/api/Visio.Master.IconSize.md
+++ b/api/Visio.Master.IconSize.md
@@ -23,7 +23,7 @@ Gets or sets the size of a master icon. Read/write.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Master.IconUpdate.md b/api/Visio.Master.IconUpdate.md
index d2fd162b701..741dc2e73d5 100644
--- a/api/Visio.Master.IconUpdate.md
+++ b/api/Visio.Master.IconUpdate.md
@@ -23,7 +23,7 @@ Determines whether a master icon is updated manually or automatically. Read/writ
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Master.Import.md b/api/Visio.Master.Import.md
index f155b3efd4a..3b18d581c38 100644
--- a/api/Visio.Master.Import.md
+++ b/api/Visio.Master.Import.md
@@ -27,11 +27,11 @@ Imports a file into the current document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the file to import; must be a fully qualified path.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Master.ImportIcon.md b/api/Visio.Master.ImportIcon.md
index a6ad6040751..dde292a7395 100644
--- a/api/Visio.Master.ImportIcon.md
+++ b/api/Visio.Master.ImportIcon.md
@@ -27,11 +27,11 @@ Imports the icon for a **Master** object from a named file.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the file to import.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Master.Index.md b/api/Visio.Master.Index.md
index e7be1fab195..56113e9cb24 100644
--- a/api/Visio.Master.Index.md
+++ b/api/Visio.Master.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of a **Master** object in the **Masters** collection.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Master.IndexInStencil.md b/api/Visio.Master.IndexInStencil.md
index 3c652b96b38..568d03752b4 100644
--- a/api/Visio.Master.IndexInStencil.md
+++ b/api/Visio.Master.IndexInStencil.md
@@ -23,7 +23,7 @@ Gets or sets the index of a master or master shortcut object within its stencil.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Master.InsertFromFile.md b/api/Visio.Master.InsertFromFile.md
index 87710754cd1..cd0e45131e8 100644
--- a/api/Visio.Master.InsertFromFile.md
+++ b/api/Visio.Master.InsertFromFile.md
@@ -27,12 +27,12 @@ Adds a linked or embedded object to a page, master, or group.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the file that contains the object to link or embed.|
| _Flags_|Required| **Integer**|Flags that influence how the object is inserted.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Master.InsertObject.md b/api/Visio.Master.InsertObject.md
index ef9d4679171..1a1ac217f0f 100644
--- a/api/Visio.Master.InsertObject.md
+++ b/api/Visio.Master.InsertObject.md
@@ -27,12 +27,12 @@ Adds a new embedded object or ActiveX control to a page, master, or group.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ClassOrProgID_|Required| **String**|Identifies the type of object or control to create.|
| _Flags_|Required| **Integer**|Flags that influence the operation.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Master.IsChanged.md b/api/Visio.Master.IsChanged.md
index ffa954f0957..66ff6f7867d 100644
--- a/api/Visio.Master.IsChanged.md
+++ b/api/Visio.Master.IsChanged.md
@@ -23,7 +23,7 @@ Indicates whether a master has changed since it was opened. Read-only.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Master.Layers.md b/api/Visio.Master.Layers.md
index d2412b40d19..2494c8a9545 100644
--- a/api/Visio.Master.Layers.md
+++ b/api/Visio.Master.Layers.md
@@ -23,7 +23,7 @@ Returns the **Layers** collection of an object. Read-only.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Layers
diff --git a/api/Visio.Master.Layout.md b/api/Visio.Master.Layout.md
index 5d3cbd5415f..1214ae289f1 100644
--- a/api/Visio.Master.Layout.md
+++ b/api/Visio.Master.Layout.md
@@ -23,7 +23,7 @@ Lays out the shapes and/or reroutes the connectors for the page, master, group,
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Master.MasterChanged.md b/api/Visio.Master.MasterChanged.md
index 616df157e4b..29f95d6c865 100644
--- a/api/Visio.Master.MasterChanged.md
+++ b/api/Visio.Master.MasterChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MasterChanged'(**_ByVal Master As [IVMASTER]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master whose properties changed.|
diff --git a/api/Visio.Master.MasterDeleteCanceled.md b/api/Visio.Master.MasterDeleteCanceled.md
index c1b0a8d8188..8f9c2e7f423 100644
--- a/api/Visio.Master.MasterDeleteCanceled.md
+++ b/api/Visio.Master.MasterDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MasterDeleteCanceled'(**_ByVal Master As [IVMASTER]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that was going to be deleted.|
diff --git a/api/Visio.Master.MatchByName.md b/api/Visio.Master.MatchByName.md
index dd3df2dae77..f8967cc18d4 100644
--- a/api/Visio.Master.MatchByName.md
+++ b/api/Visio.Master.MatchByName.md
@@ -23,7 +23,7 @@ Determines how the application decides if a document master is already present w
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Master.Name.md b/api/Visio.Master.Name.md
index 02d9333afb3..92eddf8d0a1 100644
--- a/api/Visio.Master.Name.md
+++ b/api/Visio.Master.Name.md
@@ -23,7 +23,7 @@ Specifies the name of an object. Read-only.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Master.NameU.md b/api/Visio.Master.NameU.md
index ae9eb5496ad..9f496202f24 100644
--- a/api/Visio.Master.NameU.md
+++ b/api/Visio.Master.NameU.md
@@ -23,7 +23,7 @@ Specifies the universal name of a **Master** object. Read/write.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Master.NewBaseID.md b/api/Visio.Master.NewBaseID.md
index ea97b3a5fd4..8ce9f314e0f 100644
--- a/api/Visio.Master.NewBaseID.md
+++ b/api/Visio.Master.NewBaseID.md
@@ -23,7 +23,7 @@ Generates a new base ID for a master. Read-only.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Master.OLEObjects.md b/api/Visio.Master.OLEObjects.md
index 3e6afb76b2f..983f312ce3f 100644
--- a/api/Visio.Master.OLEObjects.md
+++ b/api/Visio.Master.OLEObjects.md
@@ -23,7 +23,7 @@ Returns the **OLEObjects** collection of a master. Read-only.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
OLEObjects
diff --git a/api/Visio.Master.ObjectType.md b/api/Visio.Master.ObjectType.md
index d7cc145cd10..461ca42d276 100644
--- a/api/Visio.Master.ObjectType.md
+++ b/api/Visio.Master.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Master.OneD.md b/api/Visio.Master.OneD.md
index 3c40d23455c..e91a30ffa75 100644
--- a/api/Visio.Master.OneD.md
+++ b/api/Visio.Master.OneD.md
@@ -23,7 +23,7 @@ Determines whether an object behaves as a one-dimensional (1-D) object. Read-onl
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Master.Open.md b/api/Visio.Master.Open.md
index 230f6f7b111..3a2c0668166 100644
--- a/api/Visio.Master.Open.md
+++ b/api/Visio.Master.Open.md
@@ -23,7 +23,7 @@ Opens an existing master so that it can be edited.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Master.OpenDrawWindow.md b/api/Visio.Master.OpenDrawWindow.md
index f309f647308..de026f2bd14 100644
--- a/api/Visio.Master.OpenDrawWindow.md
+++ b/api/Visio.Master.OpenDrawWindow.md
@@ -23,7 +23,7 @@ Opens a new drawing window that displays a master.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.Master.OpenIconWindow.md b/api/Visio.Master.OpenIconWindow.md
index c884dac7916..bde6b1a477c 100644
--- a/api/Visio.Master.OpenIconWindow.md
+++ b/api/Visio.Master.OpenIconWindow.md
@@ -23,7 +23,7 @@ Opens an icon window that shows a master's icon.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.Master.Original.md b/api/Visio.Master.Original.md
index 26c76dbf194..4556e101fd1 100644
--- a/api/Visio.Master.Original.md
+++ b/api/Visio.Master.Original.md
@@ -23,7 +23,7 @@ Returns the original master that produced this open master. Read-only.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Master.PageSheet.md b/api/Visio.Master.PageSheet.md
index 53ae6f07159..f8b92cd01e3 100644
--- a/api/Visio.Master.PageSheet.md
+++ b/api/Visio.Master.PageSheet.md
@@ -23,7 +23,7 @@ Returns the page sheet (an object that represents the ShapeSheet spreadsheet) of
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Master.Paste.md b/api/Visio.Master.Paste.md
index ae45c963fb2..db093aad36b 100644
--- a/api/Visio.Master.Paste.md
+++ b/api/Visio.Master.Paste.md
@@ -27,11 +27,11 @@ Pastes the contents of the Clipboard into an object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Optional| **Variant**|Determines how shapes are translated during the paste operation.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Master.PasteSpecial.md b/api/Visio.Master.PasteSpecial.md
index 4c574ad46c9..9ea42da387d 100644
--- a/api/Visio.Master.PasteSpecial.md
+++ b/api/Visio.Master.PasteSpecial.md
@@ -27,13 +27,13 @@ Inserts the contents of the Clipboard, allowing you to control the format of the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Format_|Required| **Long**|The internal Clipboard format.|
| _Link_|Optional| **Variant**| **True** to establish a link to the source of the pasted data; otherwise, **False** (the default). Ignored if the source data is not suitable for, or does not support, linking.|
| _DisplayAsIcon_|Optional| **Variant**| **True** to display the pasted data as an icon; otherwise, **False** (the default).|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Master.PasteToLocation.md b/api/Visio.Master.PasteToLocation.md
index 20dca480295..1ac39718934 100644
--- a/api/Visio.Master.PasteToLocation.md
+++ b/api/Visio.Master.PasteToLocation.md
@@ -27,13 +27,13 @@ Pastes a shape to the specified location.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xPos_|Required| **Double**|The x-coordinate at which to place the center of the object?s width or PinX, in inches.|
| _yPos_|Required| **Double**|The y-coordinate at which to place the center of the object?s height or PinY, in inches.|
| _Flags_|Required| **Long**|The default is zero.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Master.PatternFlags.md b/api/Visio.Master.PatternFlags.md
index 47d2fae6fd1..cc5ebe8c65f 100644
--- a/api/Visio.Master.PatternFlags.md
+++ b/api/Visio.Master.PatternFlags.md
@@ -23,7 +23,7 @@ Determines whether a master behaves as a custom pattern. Read/write.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Master.PersistsEvents.md b/api/Visio.Master.PersistsEvents.md
index 5a0a3c2b94f..dbade75d9b2 100644
--- a/api/Visio.Master.PersistsEvents.md
+++ b/api/Visio.Master.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Master.Picture.md b/api/Visio.Master.Picture.md
index 96b5d79771e..74a7bea2c1f 100644
--- a/api/Visio.Master.Picture.md
+++ b/api/Visio.Master.Picture.md
@@ -23,7 +23,7 @@ Returns a picture that represents an enhanced metafile (EMF) contained in a mast
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
IPictureDisp
diff --git a/api/Visio.Master.Prompt.md b/api/Visio.Master.Prompt.md
index de323e5fd28..67815338b2a 100644
--- a/api/Visio.Master.Prompt.md
+++ b/api/Visio.Master.Prompt.md
@@ -23,7 +23,7 @@ Gets or sets the prompt string for a master or master shortcut. Read/write.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Master.QueryCancelConvertToGroup.md b/api/Visio.Master.QueryCancelConvertToGroup.md
index 23319b8987b..1fccaf1296f 100644
--- a/api/Visio.Master.QueryCancelConvertToGroup.md
+++ b/api/Visio.Master.QueryCancelConvertToGroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelConvertToGroup'(**_ByVal Selection As [IV
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be converted to a group.|
diff --git a/api/Visio.Master.QueryCancelGroup.md b/api/Visio.Master.QueryCancelGroup.md
index 4b06e437887..1b21849e79e 100644
--- a/api/Visio.Master.QueryCancelGroup.md
+++ b/api/Visio.Master.QueryCancelGroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelGroup'(**_ByVal Selection As [IVSELECTION
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be grouped.|
diff --git a/api/Visio.Master.QueryCancelMasterDelete.md b/api/Visio.Master.QueryCancelMasterDelete.md
index f030d5a715a..c661abdb903 100644
--- a/api/Visio.Master.QueryCancelMasterDelete.md
+++ b/api/Visio.Master.QueryCancelMasterDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelMasterDelete'(**_ByVal Master As [IVMASTE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that is going to be deleted.|
diff --git a/api/Visio.Master.QueryCancelSelectionDelete.md b/api/Visio.Master.QueryCancelSelectionDelete.md
index 94d92d1dfbf..a211a255c53 100644
--- a/api/Visio.Master.QueryCancelSelectionDelete.md
+++ b/api/Visio.Master.QueryCancelSelectionDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelSelectionDelete'(**_ByVal Selection As [I
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be deleted.|
diff --git a/api/Visio.Master.QueryCancelUngroup.md b/api/Visio.Master.QueryCancelUngroup.md
index 2e308c943da..1540f3e8aac 100644
--- a/api/Visio.Master.QueryCancelUngroup.md
+++ b/api/Visio.Master.QueryCancelUngroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelUngroup'(**_ByVal Selection As [IVSELECTI
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be ungrouped.|
diff --git a/api/Visio.Master.ResizeToFitContents.md b/api/Visio.Master.ResizeToFitContents.md
index 33e91855e4d..8bb3502a8b4 100644
--- a/api/Visio.Master.ResizeToFitContents.md
+++ b/api/Visio.Master.ResizeToFitContents.md
@@ -23,7 +23,7 @@ Resizes the page, or the master's page, to fit tightly around the shapes or mast
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Master.SelectionAdded.md b/api/Visio.Master.SelectionAdded.md
index 49bb172370c..1218f6cb9e2 100644
--- a/api/Visio.Master.SelectionAdded.md
+++ b/api/Visio.Master.SelectionAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'SelectionAdded'(**_ByVal Selection As [IVSELECTION]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was added to the document.|
diff --git a/api/Visio.Master.SelectionDeleteCanceled.md b/api/Visio.Master.SelectionDeleteCanceled.md
index 84aadea5fd3..710905c769a 100644
--- a/api/Visio.Master.SelectionDeleteCanceled.md
+++ b/api/Visio.Master.SelectionDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'SelectionDeleteCanceled'(**_ByVal Selection As [IVSE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be deleted.|
diff --git a/api/Visio.Master.SetFormulas.md b/api/Visio.Master.SetFormulas.md
index 8f28f98448d..ee873bd279a 100644
--- a/api/Visio.Master.SetFormulas.md
+++ b/api/Visio.Master.SetFormulas.md
@@ -27,13 +27,13 @@ Sets the formulas of one or more cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**|A stream identifying cells to be modified.|
| _formulaArray()_|Required| **Variant**|Formulas to be assigned to identified cells.|
| _Flags_|Required| **Integer**|Flags that influence the behavior of **SetFormulas** .|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Master.SetResults.md b/api/Visio.Master.SetResults.md
index 16ead74c0f5..eeffd21862a 100644
--- a/api/Visio.Master.SetResults.md
+++ b/api/Visio.Master.SetResults.md
@@ -27,14 +27,14 @@ Sets the results or formulas of one or more cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**|An array identifying cells to be modified.|
| _UnitsNamesOrCodes()_|Required| **Variant**|Measurement units to be attributed to entries in results array.|
| _resultArray()_|Required| **Variant**|Results or formulas to be assigned to identified cells.|
| _Flags_|Required| **Integer**|Flags that influence the behavior of **SetResults** .|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Master.ShapeAdded.md b/api/Visio.Master.ShapeAdded.md
index 79afe95cea9..c714a02c0a3 100644
--- a/api/Visio.Master.ShapeAdded.md
+++ b/api/Visio.Master.ShapeAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeAdded'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape or group of shapes that was added to the document.|
diff --git a/api/Visio.Master.ShapeChanged.md b/api/Visio.Master.ShapeChanged.md
index c5126b3937e..b305c66a436 100644
--- a/api/Visio.Master.ShapeChanged.md
+++ b/api/Visio.Master.ShapeChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose property changed.|
diff --git a/api/Visio.Master.ShapeDataGraphicChanged.md b/api/Visio.Master.ShapeDataGraphicChanged.md
index 0919f4ff860..b1f33e0987f 100644
--- a/api/Visio.Master.ShapeDataGraphicChanged.md
+++ b/api/Visio.Master.ShapeDataGraphicChanged.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'ShapeDataGraphicChanged'(**_ByVal Shape As IVSHAPE_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape to which the data graphic was applied or from which it was deleted.|
diff --git a/api/Visio.Master.ShapeExitedTextEdit.md b/api/Visio.Master.ShapeExitedTextEdit.md
index e5b6f02cc3c..620d0041424 100644
--- a/api/Visio.Master.ShapeExitedTextEdit.md
+++ b/api/Visio.Master.ShapeExitedTextEdit.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeExitedTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that was closed for text editing.|
diff --git a/api/Visio.Master.ShapeParentChanged.md b/api/Visio.Master.ShapeParentChanged.md
index ee5b56b81a9..ac015201469 100644
--- a/api/Visio.Master.ShapeParentChanged.md
+++ b/api/Visio.Master.ShapeParentChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeParentChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose parent changed.|
diff --git a/api/Visio.Master.Shapes.md b/api/Visio.Master.Shapes.md
index b122fc4e23c..ae123137fe4 100644
--- a/api/Visio.Master.Shapes.md
+++ b/api/Visio.Master.Shapes.md
@@ -23,7 +23,7 @@ Returns the **Shapes** collection for a page, master, or group. Read-only.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Shapes
diff --git a/api/Visio.Master.SpatialSearch.md b/api/Visio.Master.SpatialSearch.md
index 4b361051ea9..e3bb83c3383 100644
--- a/api/Visio.Master.SpatialSearch.md
+++ b/api/Visio.Master.SpatialSearch.md
@@ -27,7 +27,7 @@ Returns a **Selection** object whose shapes meet certain criteria in relation t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _x_|Required| **Double**|The x-coordinate.|
| _y_|Required| **Double**|The y-coordinate.|
@@ -35,7 +35,7 @@ Returns a **Selection** object whose shapes meet certain criteria in relation t
| _Tolerance_|Required| **Double**|A distance in internal drawing units with respect to the coordinate space.|
| _Flags_|Required| **Integer**|Flags that influence the result.|
-### Return Value
+### Return value
Selection
diff --git a/api/Visio.Master.Stat.md b/api/Visio.Master.Stat.md
index d24fcfd4ea5..17d5b7c5f61 100644
--- a/api/Visio.Master.Stat.md
+++ b/api/Visio.Master.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Master.TextChanged.md b/api/Visio.Master.TextChanged.md
index 909eee1fab6..f418c749f5f 100644
--- a/api/Visio.Master.TextChanged.md
+++ b/api/Visio.Master.TextChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'TextChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose text changed.|
diff --git a/api/Visio.Master.Type.md b/api/Visio.Master.Type.md
index 0148d2452ae..ed6403a4ecd 100644
--- a/api/Visio.Master.Type.md
+++ b/api/Visio.Master.Type.md
@@ -23,7 +23,7 @@ Returns the type of the **Master** object. Read-only.
_expression_ A variable that represents a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
VisMasterTypes
diff --git a/api/Visio.Master.UngroupCanceled.md b/api/Visio.Master.UngroupCanceled.md
index ffc7613c605..2f16d30f7ce 100644
--- a/api/Visio.Master.UngroupCanceled.md
+++ b/api/Visio.Master.UngroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'UngroupCanceled'(**_ByVal Selection As [IVSELECTION]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be ungrouped.|
diff --git a/api/Visio.Master.UniqueID.md b/api/Visio.Master.UniqueID.md
index 73e8f51d64f..58a15e737ff 100644
--- a/api/Visio.Master.UniqueID.md
+++ b/api/Visio.Master.UniqueID.md
@@ -23,7 +23,7 @@ Returns the unique ID of a master. Read-only.
_expression_ An expression that returns a [Master](./Visio.Master.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.MasterShortcut.AlignName.md b/api/Visio.MasterShortcut.AlignName.md
index 324c4e1d516..cadae3f40dd 100644
--- a/api/Visio.MasterShortcut.AlignName.md
+++ b/api/Visio.MasterShortcut.AlignName.md
@@ -23,7 +23,7 @@ Gets or sets the position of a master name in a stencil window. Read/write.
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MasterShortcut.Application.md b/api/Visio.MasterShortcut.Application.md
index ef009f5a046..6e7ac4a7dbd 100644
--- a/api/Visio.MasterShortcut.Application.md
+++ b/api/Visio.MasterShortcut.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.MasterShortcut.Delete.md b/api/Visio.MasterShortcut.Delete.md
index edc0cd6d45f..f3b4ab8b848 100644
--- a/api/Visio.MasterShortcut.Delete.md
+++ b/api/Visio.MasterShortcut.Delete.md
@@ -23,7 +23,7 @@ Deletes an object.
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.MasterShortcut.Document.md b/api/Visio.MasterShortcut.Document.md
index 4c874850cc6..e2c54c7d988 100644
--- a/api/Visio.MasterShortcut.Document.md
+++ b/api/Visio.MasterShortcut.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.MasterShortcut.DropActions.md b/api/Visio.MasterShortcut.DropActions.md
index c478d73cadd..40f94d024d9 100644
--- a/api/Visio.MasterShortcut.DropActions.md
+++ b/api/Visio.MasterShortcut.DropActions.md
@@ -23,7 +23,7 @@ Defines special actions to be performed on shapes created by using a master shor
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.MasterShortcut.ExportIcon.md b/api/Visio.MasterShortcut.ExportIcon.md
index 0316258e9d4..16261ff23c7 100644
--- a/api/Visio.MasterShortcut.ExportIcon.md
+++ b/api/Visio.MasterShortcut.ExportIcon.md
@@ -27,13 +27,13 @@ Exports the icon for a **Master** object to a named file or the Clipboard.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The file to which to export the icon.|
| _Flags_|Required| **Integer**|The format in which to write the exported file.|
| _TransparentRGB_|Optional| **Variant**|The color to substitute for any transparent areas of the exported icon image.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.MasterShortcut.ID.md b/api/Visio.MasterShortcut.ID.md
index 5f2f4800989..287c84f3daa 100644
--- a/api/Visio.MasterShortcut.ID.md
+++ b/api/Visio.MasterShortcut.ID.md
@@ -23,7 +23,7 @@ Gets the ID of an object. Read-only.
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.MasterShortcut.Icon.md b/api/Visio.MasterShortcut.Icon.md
index e8e65f3c0d1..bc34b0753e7 100644
--- a/api/Visio.MasterShortcut.Icon.md
+++ b/api/Visio.MasterShortcut.Icon.md
@@ -23,7 +23,7 @@ Returns the icon contained in a master shortcut. Read/write.
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
IPictureDisp
diff --git a/api/Visio.MasterShortcut.IconSize.md b/api/Visio.MasterShortcut.IconSize.md
index f7009fb761e..387f22ea224 100644
--- a/api/Visio.MasterShortcut.IconSize.md
+++ b/api/Visio.MasterShortcut.IconSize.md
@@ -23,7 +23,7 @@ Gets or sets the size of a master icon. Read/write.
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MasterShortcut.ImportIcon.md b/api/Visio.MasterShortcut.ImportIcon.md
index 0be2e2c3c26..9c13d2d105d 100644
--- a/api/Visio.MasterShortcut.ImportIcon.md
+++ b/api/Visio.MasterShortcut.ImportIcon.md
@@ -27,11 +27,11 @@ Imports the icon for a **Master** object from a named file.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the file to import.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.MasterShortcut.Index.md b/api/Visio.MasterShortcut.Index.md
index 4f0a08646dd..77c976e253e 100644
--- a/api/Visio.MasterShortcut.Index.md
+++ b/api/Visio.MasterShortcut.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of a **MasterShortcut** object in the **MasterShortcu
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MasterShortcut.IndexInStencil.md b/api/Visio.MasterShortcut.IndexInStencil.md
index a3b0578a9a1..e4b3d28038c 100644
--- a/api/Visio.MasterShortcut.IndexInStencil.md
+++ b/api/Visio.MasterShortcut.IndexInStencil.md
@@ -23,7 +23,7 @@ Gets or sets the index of a master or master shortcut object within its stencil.
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MasterShortcut.Name.md b/api/Visio.MasterShortcut.Name.md
index 6545b3aa386..bec052156de 100644
--- a/api/Visio.MasterShortcut.Name.md
+++ b/api/Visio.MasterShortcut.Name.md
@@ -23,7 +23,7 @@ Specifies the name of an object. Read-only.
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.MasterShortcut.NameU.md b/api/Visio.MasterShortcut.NameU.md
index f770956d8e9..c9035ea2899 100644
--- a/api/Visio.MasterShortcut.NameU.md
+++ b/api/Visio.MasterShortcut.NameU.md
@@ -23,7 +23,7 @@ Specifies the universal name of a **MasterShortcut** object. Read/write.
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.MasterShortcut.ObjectType.md b/api/Visio.MasterShortcut.ObjectType.md
index 19669881120..f3f1299b298 100644
--- a/api/Visio.MasterShortcut.ObjectType.md
+++ b/api/Visio.MasterShortcut.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MasterShortcut.OpenIconWindow.md b/api/Visio.MasterShortcut.OpenIconWindow.md
index d6fc3520c3e..265169cd9ea 100644
--- a/api/Visio.MasterShortcut.OpenIconWindow.md
+++ b/api/Visio.MasterShortcut.OpenIconWindow.md
@@ -23,7 +23,7 @@ Opens an icon window that shows a master's icon.
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.MasterShortcut.Prompt.md b/api/Visio.MasterShortcut.Prompt.md
index 9bd0c150980..9dde01b050c 100644
--- a/api/Visio.MasterShortcut.Prompt.md
+++ b/api/Visio.MasterShortcut.Prompt.md
@@ -23,7 +23,7 @@ Gets or sets the prompt string for a master or master shortcut. Read/write.
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.MasterShortcut.ShapeHelp.md b/api/Visio.MasterShortcut.ShapeHelp.md
index f0bd0a968c1..e408159a29c 100644
--- a/api/Visio.MasterShortcut.ShapeHelp.md
+++ b/api/Visio.MasterShortcut.ShapeHelp.md
@@ -23,7 +23,7 @@ Gets or sets the help string used when the user clicks **Help** on the shortcut
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.MasterShortcut.Stat.md b/api/Visio.MasterShortcut.Stat.md
index 317a7d9e107..292cb0c9c30 100644
--- a/api/Visio.MasterShortcut.Stat.md
+++ b/api/Visio.MasterShortcut.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MasterShortcut.TargetDocumentName.md b/api/Visio.MasterShortcut.TargetDocumentName.md
index ffb5d9714aa..239d7283c46 100644
--- a/api/Visio.MasterShortcut.TargetDocumentName.md
+++ b/api/Visio.MasterShortcut.TargetDocumentName.md
@@ -23,7 +23,7 @@ Gets and sets the path and file name of a Microsoft Visio document (usually a st
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.MasterShortcut.TargetMasterName.md b/api/Visio.MasterShortcut.TargetMasterName.md
index 0d3f72557e9..ea9a419da76 100644
--- a/api/Visio.MasterShortcut.TargetMasterName.md
+++ b/api/Visio.MasterShortcut.TargetMasterName.md
@@ -23,7 +23,7 @@ Gets or sets the name of the master to which the master shortcut refers. Read/wr
_expression_ A variable that represents a [MasterShortcut](./Visio.MasterShortcut.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.MasterShortcuts.Application.md b/api/Visio.MasterShortcuts.Application.md
index 07e929cbd29..aee2521ef5f 100644
--- a/api/Visio.MasterShortcuts.Application.md
+++ b/api/Visio.MasterShortcuts.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [MasterShortcuts](./Visio.MasterShortcuts.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.MasterShortcuts.Count.md b/api/Visio.MasterShortcuts.Count.md
index aad3a947052..29f9dd47cd8 100644
--- a/api/Visio.MasterShortcuts.Count.md
+++ b/api/Visio.MasterShortcuts.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [MasterShortcuts](./Visio.MasterShortcuts.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MasterShortcuts.Document.md b/api/Visio.MasterShortcuts.Document.md
index 506c7ff8520..6de43afa46c 100644
--- a/api/Visio.MasterShortcuts.Document.md
+++ b/api/Visio.MasterShortcuts.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [MasterShortcuts](./Visio.MasterShortcuts.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.MasterShortcuts.Drop.md b/api/Visio.MasterShortcuts.Drop.md
index ac609f0a7d1..129a4c6e3c9 100644
--- a/api/Visio.MasterShortcuts.Drop.md
+++ b/api/Visio.MasterShortcuts.Drop.md
@@ -27,13 +27,13 @@ Creates a new **Master** object by dropping an object onto a receiving object su
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectToDrop_|Required| **[UNKNOWN]**|The object to drop. While this is typically a Visio object such as a **Master** , **Shape** , or **Selection** object, it can be any OLE object that provides an **IDataObject** interface.|
| _xPos_|Required| **Integer**|The x-coordinate at which to place the center of the shape's width or PinX.|
| _yPos_|Required| **Integer**|The y-coordinate at which to place the center of the shape's height or PinY.|
-### Return Value
+### Return value
Master
diff --git a/api/Visio.MasterShortcuts.GetNames.md b/api/Visio.MasterShortcuts.GetNames.md
index 55cc22b1f9b..b9bb0c7812e 100644
--- a/api/Visio.MasterShortcuts.GetNames.md
+++ b/api/Visio.MasterShortcuts.GetNames.md
@@ -27,11 +27,11 @@ Returns the names of all items in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeSpecificNameArray()_|Required| **String**|Out parameter. An array that receives names of members of the indicated object.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.MasterShortcuts.GetNamesU.md b/api/Visio.MasterShortcuts.GetNamesU.md
index c02bfb0560f..d60e63a8056 100644
--- a/api/Visio.MasterShortcuts.GetNamesU.md
+++ b/api/Visio.MasterShortcuts.GetNamesU.md
@@ -27,11 +27,11 @@ Returns the universal names of all items in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeIndependentNameArray()_|Required| **String**|Out parameter. An array that receives the names of members of the indicated object.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.MasterShortcuts.Item.md b/api/Visio.MasterShortcuts.Item.md
index 6aa179921b8..12ca30ce6ab 100644
--- a/api/Visio.MasterShortcuts.Item.md
+++ b/api/Visio.MasterShortcuts.Item.md
@@ -27,11 +27,11 @@ Returns an item from a collection. The **Item** property is the default propert
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|Contains the name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
MasterShortcut
diff --git a/api/Visio.MasterShortcuts.ItemFromID.md b/api/Visio.MasterShortcuts.ItemFromID.md
index e8b8bb36d43..edfff394689 100644
--- a/api/Visio.MasterShortcuts.ItemFromID.md
+++ b/api/Visio.MasterShortcuts.ItemFromID.md
@@ -27,11 +27,11 @@ Returns an item of a collection using the ID of the item. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nID_|Required| **Long**|The ID of the object to retrieve.|
-### Return Value
+### Return value
MasterShortcut
diff --git a/api/Visio.MasterShortcuts.ItemU.md b/api/Visio.MasterShortcuts.ItemU.md
index b9afea157e4..b4c23db14d7 100644
--- a/api/Visio.MasterShortcuts.ItemU.md
+++ b/api/Visio.MasterShortcuts.ItemU.md
@@ -27,11 +27,11 @@ Returns an object from a collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|Contains the universal name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
MasterShortcut
diff --git a/api/Visio.MasterShortcuts.ObjectType.md b/api/Visio.MasterShortcuts.ObjectType.md
index d26796ddc29..7f8fb2e1870 100644
--- a/api/Visio.MasterShortcuts.ObjectType.md
+++ b/api/Visio.MasterShortcuts.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [MasterShortcuts](./Visio.MasterShortcuts.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MasterShortcuts.Paste.md b/api/Visio.MasterShortcuts.Paste.md
index 63ee27e9e8b..523d7bfdc34 100644
--- a/api/Visio.MasterShortcuts.Paste.md
+++ b/api/Visio.MasterShortcuts.Paste.md
@@ -27,11 +27,11 @@ Pastes the contents of the Clipboard into an object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Optional| **Variant**|Determines how shapes are translated during the paste operation.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.MasterShortcuts.Stat.md b/api/Visio.MasterShortcuts.Stat.md
index 98f4f35c632..eed7111edc7 100644
--- a/api/Visio.MasterShortcuts.Stat.md
+++ b/api/Visio.MasterShortcuts.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [MasterShortcuts](./Visio.MasterShortcuts.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Masters.Add.md b/api/Visio.Masters.Add.md
index ed382e465e7..90c84526971 100644
--- a/api/Visio.Masters.Add.md
+++ b/api/Visio.Masters.Add.md
@@ -23,7 +23,7 @@ Adds a new object to a collection.
_expression_ A variable that represents a [Masters](./Visio.Masters.md) object.
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Masters.AddEx.md b/api/Visio.Masters.AddEx.md
index bf006b27302..9cd6780e4bb 100644
--- a/api/Visio.Masters.AddEx.md
+++ b/api/Visio.Masters.AddEx.md
@@ -27,11 +27,11 @@ Adds a new **Master** object of the specified type to the **Masters** collectio
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **VisMasterTypes**|A master type from the **VisMasterTypes** enumeration. See Remarks for possible values.|
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Masters.Application.md b/api/Visio.Masters.Application.md
index 8d78f3dad27..5ce43115ee5 100644
--- a/api/Visio.Masters.Application.md
+++ b/api/Visio.Masters.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Masters](./Visio.Masters.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Masters.BeforeMasterDelete.md b/api/Visio.Masters.BeforeMasterDelete.md
index f1ace4ca970..51b1547a9a9 100644
--- a/api/Visio.Masters.BeforeMasterDelete.md
+++ b/api/Visio.Masters.BeforeMasterDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeMasterDelete'(**_ByVal Master As [IVMASTER]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that is going to be deleted.|
diff --git a/api/Visio.Masters.BeforeSelectionDelete.md b/api/Visio.Masters.BeforeSelectionDelete.md
index 2fcf3826980..233c468b51b 100644
--- a/api/Visio.Masters.BeforeSelectionDelete.md
+++ b/api/Visio.Masters.BeforeSelectionDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeSelectionDelete'(**_ByVal Selection As [IVSELE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selected objects that are going to be deleted.|
diff --git a/api/Visio.Masters.BeforeShapeDelete.md b/api/Visio.Masters.BeforeShapeDelete.md
index a3c642eb10e..fcb820b9e8d 100644
--- a/api/Visio.Masters.BeforeShapeDelete.md
+++ b/api/Visio.Masters.BeforeShapeDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeShapeDelete'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be deleted.|
diff --git a/api/Visio.Masters.BeforeShapeTextEdit.md b/api/Visio.Masters.BeforeShapeTextEdit.md
index a0096b4afed..2cc92a46dc7 100644
--- a/api/Visio.Masters.BeforeShapeTextEdit.md
+++ b/api/Visio.Masters.BeforeShapeTextEdit.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeShapeTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be opened for text editing.|
diff --git a/api/Visio.Masters.CellChanged.md b/api/Visio.Masters.CellChanged.md
index 8d746be1fe3..dfbc11cc6ba 100644
--- a/api/Visio.Masters.CellChanged.md
+++ b/api/Visio.Masters.CellChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'CellChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose value has changed.|
diff --git a/api/Visio.Masters.ConnectionsAdded.md b/api/Visio.Masters.ConnectionsAdded.md
index 92857fd2999..adc3ec87eda 100644
--- a/api/Visio.Masters.ConnectionsAdded.md
+++ b/api/Visio.Masters.ConnectionsAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConnectionsAdded'(**_ByVal Connects As [IVCONNECTS]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Connects_|Required| **[IVCONNECTS]**|The connections that were established.|
diff --git a/api/Visio.Masters.ConnectionsDeleted.md b/api/Visio.Masters.ConnectionsDeleted.md
index fbae84fed70..b6da00670c2 100644
--- a/api/Visio.Masters.ConnectionsDeleted.md
+++ b/api/Visio.Masters.ConnectionsDeleted.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConnectionsDeleted'(**_ByVal Connects As [IVCONNECTS
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Connects_|Required| **[IVCONNECTS]**|The connections that have been removed.|
diff --git a/api/Visio.Masters.ConvertToGroupCanceled.md b/api/Visio.Masters.ConvertToGroupCanceled.md
index 6b927b96347..eba8b7a623b 100644
--- a/api/Visio.Masters.ConvertToGroupCanceled.md
+++ b/api/Visio.Masters.ConvertToGroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConvertToGroupCanceled'(**_ByVal Selection As [IVSEL
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.Masters.Count.md b/api/Visio.Masters.Count.md
index 39902525c1e..01312446550 100644
--- a/api/Visio.Masters.Count.md
+++ b/api/Visio.Masters.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Masters](./Visio.Masters.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Masters.Document.md b/api/Visio.Masters.Document.md
index a47d134f748..206744f6a60 100644
--- a/api/Visio.Masters.Document.md
+++ b/api/Visio.Masters.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Masters](./Visio.Masters.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Masters.Drop.md b/api/Visio.Masters.Drop.md
index ab86c34aa81..b74df337fab 100644
--- a/api/Visio.Masters.Drop.md
+++ b/api/Visio.Masters.Drop.md
@@ -27,13 +27,13 @@ Creates a new **Master** object by dropping an object onto a receiving object su
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectToDrop_|Required| **[UNKNOWN]**|The object to drop. While this is typically a Visio object such as a **Master** , **Shape** , or **Selection** object, it can be any OLE object that provides an **IDataObject** interface.|
| _xPos_|Required| **Integer**|The x-coordinate at which to place the center of the shape's width or PinX.|
| _yPos_|Required| **Integer**|The y-coordinate at which to place the center of the shape's height or PinY.|
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Masters.EventList.md b/api/Visio.Masters.EventList.md
index 749ee7ef856..2f55c400464 100644
--- a/api/Visio.Masters.EventList.md
+++ b/api/Visio.Masters.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Masters](./Visio.Masters.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Masters.FormulaChanged.md b/api/Visio.Masters.FormulaChanged.md
index 2c20f925238..a203af9f400 100644
--- a/api/Visio.Masters.FormulaChanged.md
+++ b/api/Visio.Masters.FormulaChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'FormulaChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose formula changed.|
diff --git a/api/Visio.Masters.GetNames.md b/api/Visio.Masters.GetNames.md
index f72f1387a65..ed3fad6da1a 100644
--- a/api/Visio.Masters.GetNames.md
+++ b/api/Visio.Masters.GetNames.md
@@ -27,11 +27,11 @@ Returns the names of all items in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeSpecificNameArray()_|Required| **STring**|Out parameter. An array that receives names of members of the indicated object.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Masters.GetNamesU.md b/api/Visio.Masters.GetNamesU.md
index e662a24007a..df4541a94f5 100644
--- a/api/Visio.Masters.GetNamesU.md
+++ b/api/Visio.Masters.GetNamesU.md
@@ -27,11 +27,11 @@ Returns the universal names of all items in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeIndependentNameArray()_|Required| **String**|Out parameter. An array that receives the names of members of the indicated object.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Masters.GroupCanceled.md b/api/Visio.Masters.GroupCanceled.md
index d221fec3dd9..fbd4871cc32 100644
--- a/api/Visio.Masters.GroupCanceled.md
+++ b/api/Visio.Masters.GroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'GroupCanceled'(**_ByVal Selection As [IVSELECTION]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.Masters.Item.md b/api/Visio.Masters.Item.md
index c79d98dfa0e..d166cd4638a 100644
--- a/api/Visio.Masters.Item.md
+++ b/api/Visio.Masters.Item.md
@@ -27,11 +27,11 @@ Returns an item from a collection. The **Item** property is the default propert
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameUIDOrIndex_|Required| **Variant**|Contains the name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Masters.ItemFromID.md b/api/Visio.Masters.ItemFromID.md
index 32f951d7018..2aba674c480 100644
--- a/api/Visio.Masters.ItemFromID.md
+++ b/api/Visio.Masters.ItemFromID.md
@@ -27,11 +27,11 @@ Returns an item of a collection using the ID of the item. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nID_|Required| **Long**|The ID of the object to retrieve.|
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Masters.ItemU.md b/api/Visio.Masters.ItemU.md
index b67a105414e..c8f80d58163 100644
--- a/api/Visio.Masters.ItemU.md
+++ b/api/Visio.Masters.ItemU.md
@@ -27,11 +27,11 @@ Returns an object from a collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|Contains the universal name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Masters.MasterAdded.md b/api/Visio.Masters.MasterAdded.md
index a1b86e85678..afda5c4fa7f 100644
--- a/api/Visio.Masters.MasterAdded.md
+++ b/api/Visio.Masters.MasterAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MasterAdded'(**_ByVal Master As [IVMASTER]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that was added to the document.|
diff --git a/api/Visio.Masters.MasterChanged.md b/api/Visio.Masters.MasterChanged.md
index 4d54ae1e69e..885cac4efd0 100644
--- a/api/Visio.Masters.MasterChanged.md
+++ b/api/Visio.Masters.MasterChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MasterChanged'(**_ByVal Master As [IVMASTER]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master whose properties changed.|
diff --git a/api/Visio.Masters.MasterDeleteCanceled.md b/api/Visio.Masters.MasterDeleteCanceled.md
index bb1e4ffa275..3dc28adaaca 100644
--- a/api/Visio.Masters.MasterDeleteCanceled.md
+++ b/api/Visio.Masters.MasterDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MasterDeleteCanceled'(**_ByVal Master As [IVMASTER]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that was going to be deleted.|
diff --git a/api/Visio.Masters.ObjectType.md b/api/Visio.Masters.ObjectType.md
index fa9130715e6..741da79f57e 100644
--- a/api/Visio.Masters.ObjectType.md
+++ b/api/Visio.Masters.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Masters](./Visio.Masters.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Masters.Paste.md b/api/Visio.Masters.Paste.md
index 51b8bd5679a..9ecdb277639 100644
--- a/api/Visio.Masters.Paste.md
+++ b/api/Visio.Masters.Paste.md
@@ -27,11 +27,11 @@ Pastes the contents of the Clipboard into an object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Optional| **Variant**|Determines how shapes are translated during the paste operation.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Masters.PersistsEvents.md b/api/Visio.Masters.PersistsEvents.md
index eb913a5e336..27cb8357d5e 100644
--- a/api/Visio.Masters.PersistsEvents.md
+++ b/api/Visio.Masters.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Masters](./Visio.Masters.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Masters.QueryCancelConvertToGroup.md b/api/Visio.Masters.QueryCancelConvertToGroup.md
index 5b60891071d..0a1851bf8b7 100644
--- a/api/Visio.Masters.QueryCancelConvertToGroup.md
+++ b/api/Visio.Masters.QueryCancelConvertToGroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelConvertToGroup'(**_ByVal Selection As [IV
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be converted to a group.|
diff --git a/api/Visio.Masters.QueryCancelGroup.md b/api/Visio.Masters.QueryCancelGroup.md
index ef051e07d0b..56a2e37ab7e 100644
--- a/api/Visio.Masters.QueryCancelGroup.md
+++ b/api/Visio.Masters.QueryCancelGroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelGroup'(**_ByVal Selection As [IVSELECTION
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be grouped.|
diff --git a/api/Visio.Masters.QueryCancelMasterDelete.md b/api/Visio.Masters.QueryCancelMasterDelete.md
index e94effb8200..8ced786e217 100644
--- a/api/Visio.Masters.QueryCancelMasterDelete.md
+++ b/api/Visio.Masters.QueryCancelMasterDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelMasterDelete'(**_ByVal Master As [IVMASTE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Master_|Required| **[IVMASTER]**|The master that is going to be deleted.|
diff --git a/api/Visio.Masters.QueryCancelSelectionDelete.md b/api/Visio.Masters.QueryCancelSelectionDelete.md
index 6dc18571db0..e6bf7f3e00c 100644
--- a/api/Visio.Masters.QueryCancelSelectionDelete.md
+++ b/api/Visio.Masters.QueryCancelSelectionDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelSelectionDelete'(**_ByVal Selection As [I
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be deleted.|
diff --git a/api/Visio.Masters.QueryCancelUngroup.md b/api/Visio.Masters.QueryCancelUngroup.md
index 768aaf71d00..b807768201e 100644
--- a/api/Visio.Masters.QueryCancelUngroup.md
+++ b/api/Visio.Masters.QueryCancelUngroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelUngroup'(**_ByVal Selection As [IVSELECTI
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be ungrouped.|
diff --git a/api/Visio.Masters.SelectionAdded.md b/api/Visio.Masters.SelectionAdded.md
index 0af659d7987..d7794e33595 100644
--- a/api/Visio.Masters.SelectionAdded.md
+++ b/api/Visio.Masters.SelectionAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'SelectionAdded'(**_ByVal Selection As [IVSELECTION]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was added to the document.|
diff --git a/api/Visio.Masters.SelectionDeleteCanceled.md b/api/Visio.Masters.SelectionDeleteCanceled.md
index 9ce921c5c9a..2c6f48bd63d 100644
--- a/api/Visio.Masters.SelectionDeleteCanceled.md
+++ b/api/Visio.Masters.SelectionDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'SelectionDeleteCanceled'(**_ByVal Selection As [IVSE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be deleted.|
diff --git a/api/Visio.Masters.ShapeAdded.md b/api/Visio.Masters.ShapeAdded.md
index e847137da15..1c664d1fe3b 100644
--- a/api/Visio.Masters.ShapeAdded.md
+++ b/api/Visio.Masters.ShapeAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeAdded'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape or group of shapes that was added to the document.|
diff --git a/api/Visio.Masters.ShapeChanged.md b/api/Visio.Masters.ShapeChanged.md
index 735a4b909d0..800dc618403 100644
--- a/api/Visio.Masters.ShapeChanged.md
+++ b/api/Visio.Masters.ShapeChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose property changed.|
diff --git a/api/Visio.Masters.ShapeDataGraphicChanged.md b/api/Visio.Masters.ShapeDataGraphicChanged.md
index 5d9253fec6e..93c52d3815d 100644
--- a/api/Visio.Masters.ShapeDataGraphicChanged.md
+++ b/api/Visio.Masters.ShapeDataGraphicChanged.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'ShapeDataGraphicChanged'(**_ByVal Shape As IVSHAPE_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape to which the data graphic was applied or from which it was deleted.|
diff --git a/api/Visio.Masters.ShapeExitedTextEdit.md b/api/Visio.Masters.ShapeExitedTextEdit.md
index a5496ee71c7..e3994d72cb2 100644
--- a/api/Visio.Masters.ShapeExitedTextEdit.md
+++ b/api/Visio.Masters.ShapeExitedTextEdit.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeExitedTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that was closed for text editing.|
diff --git a/api/Visio.Masters.ShapeParentChanged.md b/api/Visio.Masters.ShapeParentChanged.md
index 46462fada36..a67815a05cf 100644
--- a/api/Visio.Masters.ShapeParentChanged.md
+++ b/api/Visio.Masters.ShapeParentChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeParentChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose parent changed.|
diff --git a/api/Visio.Masters.Stat.md b/api/Visio.Masters.Stat.md
index fb866c5c480..67e0fed9cac 100644
--- a/api/Visio.Masters.Stat.md
+++ b/api/Visio.Masters.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Masters](./Visio.Masters.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Masters.TextChanged.md b/api/Visio.Masters.TextChanged.md
index 0f2de1f0ef0..2526ce60443 100644
--- a/api/Visio.Masters.TextChanged.md
+++ b/api/Visio.Masters.TextChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'TextChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose text changed.|
diff --git a/api/Visio.Masters.UngroupCanceled.md b/api/Visio.Masters.UngroupCanceled.md
index fc87b9e5b6a..42716f1d7f8 100644
--- a/api/Visio.Masters.UngroupCanceled.md
+++ b/api/Visio.Masters.UngroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'UngroupCanceled'(**_ByVal Selection As [IVSELECTION]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be ungrouped.|
diff --git a/api/Visio.Menu.ActionText.md b/api/Visio.Menu.ActionText.md
index f165469f484..6fcfaea1ef6 100644
--- a/api/Visio.Menu.ActionText.md
+++ b/api/Visio.Menu.ActionText.md
@@ -23,7 +23,7 @@ Gets or sets the action text for a menu. Read/write.
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Menu.AddOnArgs.md b/api/Visio.Menu.AddOnArgs.md
index 41535e15637..00355895f9c 100644
--- a/api/Visio.Menu.AddOnArgs.md
+++ b/api/Visio.Menu.AddOnArgs.md
@@ -23,7 +23,7 @@ Gets or sets the argument string that you send to the add-on associated with a p
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Menu.AddOnName.md b/api/Visio.Menu.AddOnName.md
index 02a71d77442..c9556b00841 100644
--- a/api/Visio.Menu.AddOnName.md
+++ b/api/Visio.Menu.AddOnName.md
@@ -23,7 +23,7 @@ Gets or sets the name of an add-on or procedure that is run when its associated
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Menu.BuiltIn.md b/api/Visio.Menu.BuiltIn.md
index 88dad05085f..fcf82428c70 100644
--- a/api/Visio.Menu.BuiltIn.md
+++ b/api/Visio.Menu.BuiltIn.md
@@ -23,7 +23,7 @@ Determines whether an object is a default Microsoft Visio user interface object
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Menu.Caption.md b/api/Visio.Menu.Caption.md
index 76ac3221da1..18010ec298c 100644
--- a/api/Visio.Menu.Caption.md
+++ b/api/Visio.Menu.Caption.md
@@ -23,7 +23,7 @@ Gets or sets the caption for a menu. Read/write.
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Menu.CmdNum.md b/api/Visio.Menu.CmdNum.md
index 895776223ec..e9ad03c78d8 100644
--- a/api/Visio.Menu.CmdNum.md
+++ b/api/Visio.Menu.CmdNum.md
@@ -23,7 +23,7 @@ Gets or sets the command ID associated with a menu. Read/write.
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Menu.CntrlType.md b/api/Visio.Menu.CntrlType.md
index c08c6e69677..3fe4c268b69 100644
--- a/api/Visio.Menu.CntrlType.md
+++ b/api/Visio.Menu.CntrlType.md
@@ -23,7 +23,7 @@ Gets or sets the control type of a menu. Read/write.
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Menu.Delete.md b/api/Visio.Menu.Delete.md
index d9f01424fc4..ee3e318fd57 100644
--- a/api/Visio.Menu.Delete.md
+++ b/api/Visio.Menu.Delete.md
@@ -23,7 +23,7 @@ Deletes an object.
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Menu.Enabled.md b/api/Visio.Menu.Enabled.md
index bfd977850a7..a4e0f15c1fc 100644
--- a/api/Visio.Menu.Enabled.md
+++ b/api/Visio.Menu.Enabled.md
@@ -23,7 +23,7 @@ Determines whether or not an object is currently enabled. Read/write.
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Menu.FaceID.md b/api/Visio.Menu.FaceID.md
index c32fcef82fa..dac57c6941b 100644
--- a/api/Visio.Menu.FaceID.md
+++ b/api/Visio.Menu.FaceID.md
@@ -23,7 +23,7 @@ Gets or sets the icon for an item. Read/write.
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Menu.IconFileName.md b/api/Visio.Menu.IconFileName.md
index 25c34acb411..f2915740bc6 100644
--- a/api/Visio.Menu.IconFileName.md
+++ b/api/Visio.Menu.IconFileName.md
@@ -27,11 +27,11 @@ Sets a custom icon file for a menu or toolbar item.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _IconFileName_|Required| **String**|The path and name of the ICO, EXE, DLL, or VSL file to load.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Menu.Index.md b/api/Visio.Menu.Index.md
index 29b578d6493..9d6c3cb0b14 100644
--- a/api/Visio.Menu.Index.md
+++ b/api/Visio.Menu.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of a **Menu** object in a **Menus** collection. Read-
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Menu.IsHierarchical.md b/api/Visio.Menu.IsHierarchical.md
index 51c41094004..2c620bb47c0 100644
--- a/api/Visio.Menu.IsHierarchical.md
+++ b/api/Visio.Menu.IsHierarchical.md
@@ -23,7 +23,7 @@ Indicates whether a menu is hierarchical; that is, whether it contains a drop-do
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Menu.MDIWindowMenu.md b/api/Visio.Menu.MDIWindowMenu.md
index 666274c1e74..4154bf6e76b 100644
--- a/api/Visio.Menu.MDIWindowMenu.md
+++ b/api/Visio.Menu.MDIWindowMenu.md
@@ -23,7 +23,7 @@ Determines whether this menu can be used by the MDI window manager to list the c
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Menu.MenuItems.md b/api/Visio.Menu.MenuItems.md
index d821ab95802..1cce123e493 100644
--- a/api/Visio.Menu.MenuItems.md
+++ b/api/Visio.Menu.MenuItems.md
@@ -23,7 +23,7 @@ Returns the **MenuItems** collection of a **Menu** object. Read-only.
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
MenuItems
diff --git a/api/Visio.Menu.PaletteWidth.md b/api/Visio.Menu.PaletteWidth.md
index d268f479abd..c063f692a45 100644
--- a/api/Visio.Menu.PaletteWidth.md
+++ b/api/Visio.Menu.PaletteWidth.md
@@ -23,7 +23,7 @@ Gets or sets the width of a palette in pixels. Read/write.
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Menu.Parent.md b/api/Visio.Menu.Parent.md
index e99bf6e7e46..68a4ec66d09 100644
--- a/api/Visio.Menu.Parent.md
+++ b/api/Visio.Menu.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Menus
diff --git a/api/Visio.Menu.State.md b/api/Visio.Menu.State.md
index 4808731d2f6..bc87f855152 100644
--- a/api/Visio.Menu.State.md
+++ b/api/Visio.Menu.State.md
@@ -23,7 +23,7 @@ Determines a menu's state, pressed or not pressed. Read/write.
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Menu.Style.md b/api/Visio.Menu.Style.md
index 0944e809b77..e1b58008f48 100644
--- a/api/Visio.Menu.Style.md
+++ b/api/Visio.Menu.Style.md
@@ -23,7 +23,7 @@ Determines whether a menu shows an icon, a caption, or some combination. Read/wr
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Menu.TypeSpecific1.md b/api/Visio.Menu.TypeSpecific1.md
index 955aa2a2290..6f69413c181 100644
--- a/api/Visio.Menu.TypeSpecific1.md
+++ b/api/Visio.Menu.TypeSpecific1.md
@@ -23,7 +23,7 @@ Gets or sets the type of a menu. Read/write.
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Menu.TypeSpecific2.md b/api/Visio.Menu.TypeSpecific2.md
index 0036e7f07cf..ceb931e80bb 100644
--- a/api/Visio.Menu.TypeSpecific2.md
+++ b/api/Visio.Menu.TypeSpecific2.md
@@ -23,7 +23,7 @@ Gets or sets the type of a menu. Read/write.
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Menu.Visible.md b/api/Visio.Menu.Visible.md
index c36636259db..8e7411baa47 100644
--- a/api/Visio.Menu.Visible.md
+++ b/api/Visio.Menu.Visible.md
@@ -23,7 +23,7 @@ Determines whether an object is visible. Read/write.
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Menu.Width.md b/api/Visio.Menu.Width.md
index 03ec5d5ca37..8cab1e2c6a3 100644
--- a/api/Visio.Menu.Width.md
+++ b/api/Visio.Menu.Width.md
@@ -23,7 +23,7 @@ Gets the width of a menu in pixels. Read/write.
_expression_ A variable that represents a [Menu](./Visio.Menu.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuItem.ActionText.md b/api/Visio.MenuItem.ActionText.md
index 187ebcdb95c..f21335d618c 100644
--- a/api/Visio.MenuItem.ActionText.md
+++ b/api/Visio.MenuItem.ActionText.md
@@ -23,7 +23,7 @@ Gets or sets the action text for a menu item. Read/write.
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.MenuItem.AddOnArgs.md b/api/Visio.MenuItem.AddOnArgs.md
index 605d68278da..c8bff213580 100644
--- a/api/Visio.MenuItem.AddOnArgs.md
+++ b/api/Visio.MenuItem.AddOnArgs.md
@@ -23,7 +23,7 @@ Gets or sets the argument string that you send to the add-on associated with a p
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.MenuItem.AddOnName.md b/api/Visio.MenuItem.AddOnName.md
index 78295f177a0..3f7668312ec 100644
--- a/api/Visio.MenuItem.AddOnName.md
+++ b/api/Visio.MenuItem.AddOnName.md
@@ -23,7 +23,7 @@ Gets or sets the name of an add-on or procedure that is run when its associated
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.MenuItem.BeginGroup.md b/api/Visio.MenuItem.BeginGroup.md
index 8cd4a88d56d..260bc5b0237 100644
--- a/api/Visio.MenuItem.BeginGroup.md
+++ b/api/Visio.MenuItem.BeginGroup.md
@@ -23,7 +23,7 @@ Determines whether a menu item appears at the beginning of a group of items on t
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.MenuItem.BuiltIn.md b/api/Visio.MenuItem.BuiltIn.md
index b0668963762..137dad4b3f5 100644
--- a/api/Visio.MenuItem.BuiltIn.md
+++ b/api/Visio.MenuItem.BuiltIn.md
@@ -23,7 +23,7 @@ Determines whether an object is a default Microsoft Visio user interface object
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.MenuItem.Caption.md b/api/Visio.MenuItem.Caption.md
index e2b4a0f8a94..eeb80710d52 100644
--- a/api/Visio.MenuItem.Caption.md
+++ b/api/Visio.MenuItem.Caption.md
@@ -23,7 +23,7 @@ Gets or sets the caption for a menu item. Read/write.
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.MenuItem.CmdNum.md b/api/Visio.MenuItem.CmdNum.md
index eec065bc515..557ddb8b5be 100644
--- a/api/Visio.MenuItem.CmdNum.md
+++ b/api/Visio.MenuItem.CmdNum.md
@@ -23,7 +23,7 @@ Gets or sets the command ID associated with a menu item. Read/write.
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuItem.CntrlType.md b/api/Visio.MenuItem.CntrlType.md
index acfab555ae3..c1ceebe6934 100644
--- a/api/Visio.MenuItem.CntrlType.md
+++ b/api/Visio.MenuItem.CntrlType.md
@@ -23,7 +23,7 @@ Gets or sets the control type of a menu item. Read/write.
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuItem.Delete.md b/api/Visio.MenuItem.Delete.md
index 659e0da1839..4ffa4949ed6 100644
--- a/api/Visio.MenuItem.Delete.md
+++ b/api/Visio.MenuItem.Delete.md
@@ -23,7 +23,7 @@ Deletes an object.
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.MenuItem.Enabled.md b/api/Visio.MenuItem.Enabled.md
index 369bbaa0064..ce6d9d08545 100644
--- a/api/Visio.MenuItem.Enabled.md
+++ b/api/Visio.MenuItem.Enabled.md
@@ -23,7 +23,7 @@ Determines whether or not an object is currently enabled. Read/write.
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.MenuItem.FaceID.md b/api/Visio.MenuItem.FaceID.md
index 17f492000f7..f68f4acdd3f 100644
--- a/api/Visio.MenuItem.FaceID.md
+++ b/api/Visio.MenuItem.FaceID.md
@@ -23,7 +23,7 @@ Gets or sets the icon for an item. Read/write.
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuItem.IconFileName.md b/api/Visio.MenuItem.IconFileName.md
index 52700839bb3..7b5397eb6d1 100644
--- a/api/Visio.MenuItem.IconFileName.md
+++ b/api/Visio.MenuItem.IconFileName.md
@@ -27,11 +27,11 @@ Sets a custom icon file for a menu or toolbar item.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _IconFileName_|Required| **String**|The path and name of the ICO, EXE, DLL, or VSL file to load.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.MenuItem.Index.md b/api/Visio.MenuItem.Index.md
index 94216c753e2..306366c2724 100644
--- a/api/Visio.MenuItem.Index.md
+++ b/api/Visio.MenuItem.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of a **MenuItem** object in the **MenuItems** collect
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.MenuItem.IsHierarchical.md b/api/Visio.MenuItem.IsHierarchical.md
index cfd5bd826a8..5399336ce0c 100644
--- a/api/Visio.MenuItem.IsHierarchical.md
+++ b/api/Visio.MenuItem.IsHierarchical.md
@@ -23,7 +23,7 @@ Indicates whether a menu item is hierarchical; that is, whether it contains a dr
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuItem.MenuItems.md b/api/Visio.MenuItem.MenuItems.md
index 77756337118..ad1ac8f7a4c 100644
--- a/api/Visio.MenuItem.MenuItems.md
+++ b/api/Visio.MenuItem.MenuItems.md
@@ -23,7 +23,7 @@ Returns the **MenuItems** collection of a **MenuItem** object. Read-only.
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
MenuItems
diff --git a/api/Visio.MenuItem.PaletteWidth.md b/api/Visio.MenuItem.PaletteWidth.md
index 7d0b2e24c60..024b855bdf9 100644
--- a/api/Visio.MenuItem.PaletteWidth.md
+++ b/api/Visio.MenuItem.PaletteWidth.md
@@ -23,7 +23,7 @@ Gets or sets the width of a palette in pixels. Read/write.
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuItem.Parent.md b/api/Visio.MenuItem.Parent.md
index 4687d24e1c7..07db1066269 100644
--- a/api/Visio.MenuItem.Parent.md
+++ b/api/Visio.MenuItem.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
MenuItems
diff --git a/api/Visio.MenuItem.State.md b/api/Visio.MenuItem.State.md
index cf2efb24573..0383326c4e6 100644
--- a/api/Visio.MenuItem.State.md
+++ b/api/Visio.MenuItem.State.md
@@ -23,7 +23,7 @@ Determines a menu item's state, pressed or not pressed. Read/write.
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuItem.Style.md b/api/Visio.MenuItem.Style.md
index 8c78e5b6a68..763c9dd4df7 100644
--- a/api/Visio.MenuItem.Style.md
+++ b/api/Visio.MenuItem.Style.md
@@ -23,7 +23,7 @@ Determines whether a menu item shows an icon, a caption, or some combination. Re
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuItem.TypeSpecific1.md b/api/Visio.MenuItem.TypeSpecific1.md
index ba3513f0837..bc3213dca57 100644
--- a/api/Visio.MenuItem.TypeSpecific1.md
+++ b/api/Visio.MenuItem.TypeSpecific1.md
@@ -23,7 +23,7 @@ Gets or sets the type of a menu item. Read/write.
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuItem.TypeSpecific2.md b/api/Visio.MenuItem.TypeSpecific2.md
index ea15955c474..890ac1463e9 100644
--- a/api/Visio.MenuItem.TypeSpecific2.md
+++ b/api/Visio.MenuItem.TypeSpecific2.md
@@ -23,7 +23,7 @@ Gets or sets the type of a menu item. Read/write.
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuItem.Visible.md b/api/Visio.MenuItem.Visible.md
index 5ec886a25f7..718de893dea 100644
--- a/api/Visio.MenuItem.Visible.md
+++ b/api/Visio.MenuItem.Visible.md
@@ -23,7 +23,7 @@ Determines whether an object is visible. Read/write.
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.MenuItem.Width.md b/api/Visio.MenuItem.Width.md
index 46800532620..3c1214e3cde 100644
--- a/api/Visio.MenuItem.Width.md
+++ b/api/Visio.MenuItem.Width.md
@@ -23,7 +23,7 @@ Gets the width of an object in pixels. Read/write.
_expression_ A variable that represents a [MenuItem](./Visio.MenuItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuItems.Add.md b/api/Visio.MenuItems.Add.md
index 2b7fda9ca08..e92d40edc14 100644
--- a/api/Visio.MenuItems.Add.md
+++ b/api/Visio.MenuItems.Add.md
@@ -23,7 +23,7 @@ Adds a new object to a collection.
_expression_ A variable that represents a [MenuItems](./Visio.MenuItems.md) collection.
-### Return Value
+### Return value
MenuItem
diff --git a/api/Visio.MenuItems.AddAt.md b/api/Visio.MenuItems.AddAt.md
index 2138262dc87..a9c303d0cb5 100644
--- a/api/Visio.MenuItems.AddAt.md
+++ b/api/Visio.MenuItems.AddAt.md
@@ -27,11 +27,11 @@ Creates a new **MenuItem** object at a specified index in the **MenuItems** col
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _lIndex_|Required| **Long**|The index at which to add the object.|
-### Return Value
+### Return value
MenuItem
diff --git a/api/Visio.MenuItems.Count.md b/api/Visio.MenuItems.Count.md
index 90a9644c694..43b143ab355 100644
--- a/api/Visio.MenuItems.Count.md
+++ b/api/Visio.MenuItems.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [MenuItems](./Visio.MenuItems.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.MenuItems.Item.md b/api/Visio.MenuItems.Item.md
index b04ada00143..bb719957ec3 100644
--- a/api/Visio.MenuItems.Item.md
+++ b/api/Visio.MenuItems.Item.md
@@ -27,11 +27,11 @@ Returns a **MenuItem** object from the **MenuItems** collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Contains the index of the object to retrieve.|
-### Return Value
+### Return value
MenuItem
diff --git a/api/Visio.MenuItems.Parent.md b/api/Visio.MenuItems.Parent.md
index 51b809d7bc7..45f206cf88f 100644
--- a/api/Visio.MenuItems.Parent.md
+++ b/api/Visio.MenuItems.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [MenuItems](./Visio.MenuItems.md) object.
-### Return Value
+### Return value
Menu
diff --git a/api/Visio.MenuItems.ParentItem.md b/api/Visio.MenuItems.ParentItem.md
index ab8879b59d0..46bbcc4ba9c 100644
--- a/api/Visio.MenuItems.ParentItem.md
+++ b/api/Visio.MenuItems.ParentItem.md
@@ -23,7 +23,7 @@ Returns the parent object of a hierarchical menu. Read-only.
_expression_ A variable that represents a [MenuItems](./Visio.MenuItems.md) object.
-### Return Value
+### Return value
MenuItem
diff --git a/api/Visio.MenuSet.BuiltIn.md b/api/Visio.MenuSet.BuiltIn.md
index 15d6089c7a7..ffd2f6f3c52 100644
--- a/api/Visio.MenuSet.BuiltIn.md
+++ b/api/Visio.MenuSet.BuiltIn.md
@@ -23,7 +23,7 @@ Determines whether an object is a default Microsoft Visio user interface object
_expression_ A variable that represents a [MenuSet](./Visio.MenuSet.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.MenuSet.Caption.md b/api/Visio.MenuSet.Caption.md
index c5de9fd9499..fe03c0fcf3a 100644
--- a/api/Visio.MenuSet.Caption.md
+++ b/api/Visio.MenuSet.Caption.md
@@ -23,7 +23,7 @@ Gets or sets the caption for a menu set. Read/write.
_expression_ A variable that represents a [MenuSet](./Visio.MenuSet.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.MenuSet.Delete.md b/api/Visio.MenuSet.Delete.md
index ca380904240..6f6c0f1daa5 100644
--- a/api/Visio.MenuSet.Delete.md
+++ b/api/Visio.MenuSet.Delete.md
@@ -23,7 +23,7 @@ Deletes an object.
_expression_ A variable that represents a [MenuSet](./Visio.MenuSet.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.MenuSet.Enabled.md b/api/Visio.MenuSet.Enabled.md
index f8e6d7c63d1..8da173cb4c0 100644
--- a/api/Visio.MenuSet.Enabled.md
+++ b/api/Visio.MenuSet.Enabled.md
@@ -23,7 +23,7 @@ Determines whether or not an object is currently enabled. Read/write.
_expression_ A variable that represents a [MenuSet](./Visio.MenuSet.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.MenuSet.Height.md b/api/Visio.MenuSet.Height.md
index 5f4f6c8c71a..98f16464d53 100644
--- a/api/Visio.MenuSet.Height.md
+++ b/api/Visio.MenuSet.Height.md
@@ -23,7 +23,7 @@ Gets or sets the height of a menu set. Read/write.
_expression_ A variable that represents a [MenuSet](./Visio.MenuSet.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuSet.Left.md b/api/Visio.MenuSet.Left.md
index f867377b789..8806b4e9d62 100644
--- a/api/Visio.MenuSet.Left.md
+++ b/api/Visio.MenuSet.Left.md
@@ -23,7 +23,7 @@ Gets the distance in pixels between the left edge of the object and the left sid
_expression_ A variable that represents a [MenuSet](./Visio.MenuSet.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuSet.Menus.md b/api/Visio.MenuSet.Menus.md
index 29cf21feeb9..7d2d39b8a31 100644
--- a/api/Visio.MenuSet.Menus.md
+++ b/api/Visio.MenuSet.Menus.md
@@ -23,7 +23,7 @@ Returns the **Menus** collection of a **MenuSet** object. Read-only.
_expression_ A variable that represents a [MenuSet](./Visio.MenuSet.md) object.
-### Return Value
+### Return value
Menus
diff --git a/api/Visio.MenuSet.Parent.md b/api/Visio.MenuSet.Parent.md
index aac0feb92c2..dfc649a7882 100644
--- a/api/Visio.MenuSet.Parent.md
+++ b/api/Visio.MenuSet.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [MenuSet](./Visio.MenuSet.md) object.
-### Return Value
+### Return value
MenuSets
diff --git a/api/Visio.MenuSet.Position.md b/api/Visio.MenuSet.Position.md
index be04cbb6601..4af0857556d 100644
--- a/api/Visio.MenuSet.Position.md
+++ b/api/Visio.MenuSet.Position.md
@@ -23,7 +23,7 @@ Gets or sets the position of an object. Read/write.
_expression_ A variable that represents a [MenuSet](./Visio.MenuSet.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuSet.Protection.md b/api/Visio.MenuSet.Protection.md
index dad0c8500dd..11b933a88f9 100644
--- a/api/Visio.MenuSet.Protection.md
+++ b/api/Visio.MenuSet.Protection.md
@@ -23,7 +23,7 @@ Determines how a **MenuSet** object is protected from user customization. Read/
_expression_ A variable that represents a [MenuSet](./Visio.MenuSet.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuSet.RowIndex.md b/api/Visio.MenuSet.RowIndex.md
index 2f1f31c032e..eb69f6dfa5d 100644
--- a/api/Visio.MenuSet.RowIndex.md
+++ b/api/Visio.MenuSet.RowIndex.md
@@ -23,7 +23,7 @@ Gets or sets the docking order of a **MenuSet** object in relation to other ite
_expression_ A variable that represents a [MenuSet](./Visio.MenuSet.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuSet.SetID.md b/api/Visio.MenuSet.SetID.md
index ff2e9c1b925..0a47d56a15c 100644
--- a/api/Visio.MenuSet.SetID.md
+++ b/api/Visio.MenuSet.SetID.md
@@ -23,7 +23,7 @@ Returns the set ID of a **MenuSet** object in its collection. Read-only.
_expression_ A variable that represents a [MenuSet](./Visio.MenuSet.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.MenuSet.Top.md b/api/Visio.MenuSet.Top.md
index 165373042bd..f5ca8de18a9 100644
--- a/api/Visio.MenuSet.Top.md
+++ b/api/Visio.MenuSet.Top.md
@@ -23,7 +23,7 @@ Gets the distance between the top of an object and the top of the docking area o
_expression_ A variable that represents a [MenuSet](./Visio.MenuSet.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuSet.Visible.md b/api/Visio.MenuSet.Visible.md
index 2af75be7116..def117990e8 100644
--- a/api/Visio.MenuSet.Visible.md
+++ b/api/Visio.MenuSet.Visible.md
@@ -23,7 +23,7 @@ Determines whether an object is visible. Read/write.
_expression_ A variable that represents a [MenuSet](./Visio.MenuSet.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.MenuSet.Width.md b/api/Visio.MenuSet.Width.md
index 76be05f8c07..752c164bd2a 100644
--- a/api/Visio.MenuSet.Width.md
+++ b/api/Visio.MenuSet.Width.md
@@ -23,7 +23,7 @@ Gets the width of an object in pixels. Read/write.
_expression_ A variable that represents a [MenuSet](./Visio.MenuSet.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.MenuSets.Add.md b/api/Visio.MenuSets.Add.md
index d7cbdfec609..e125dea44cc 100644
--- a/api/Visio.MenuSets.Add.md
+++ b/api/Visio.MenuSets.Add.md
@@ -23,7 +23,7 @@ Adds a new object to a collection.
_expression_ A variable that represents a [MenuSets](./Visio.MenuSets.md) collection.
-### Return Value
+### Return value
MenuSet
diff --git a/api/Visio.MenuSets.AddAtID.md b/api/Visio.MenuSets.AddAtID.md
index 97228601c9d..4514db2435f 100644
--- a/api/Visio.MenuSets.AddAtID.md
+++ b/api/Visio.MenuSets.AddAtID.md
@@ -27,11 +27,11 @@ Creates a new object with a specified ID in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _lID_|Required| **Long**| The window context for the new object.|
-### Return Value
+### Return value
MenuSet
diff --git a/api/Visio.MenuSets.Count.md b/api/Visio.MenuSets.Count.md
index 51a85981bd2..e4273000c6b 100644
--- a/api/Visio.MenuSets.Count.md
+++ b/api/Visio.MenuSets.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [MenuSets](./Visio.MenuSets.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.MenuSets.Item.md b/api/Visio.MenuSets.Item.md
index 5a94ad594fd..44df662f41f 100644
--- a/api/Visio.MenuSets.Item.md
+++ b/api/Visio.MenuSets.Item.md
@@ -27,11 +27,11 @@ Returns a **MenuSet** object from the **MenuSets** collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _lIndex_|Required| **Long**|Contains the index of the object to retrieve.|
-### Return Value
+### Return value
MenuSet
diff --git a/api/Visio.MenuSets.ItemAtID.md b/api/Visio.MenuSets.ItemAtID.md
index ac614769960..d00fb0559a3 100644
--- a/api/Visio.MenuSets.ItemAtID.md
+++ b/api/Visio.MenuSets.ItemAtID.md
@@ -27,11 +27,11 @@ Returns the **MenuSet** object with the specified ID within the **MenuSets** co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _lID_|Required| **Long**|The Visio context ID of the object to retrieve.|
-### Return Value
+### Return value
MenuSet
diff --git a/api/Visio.MenuSets.Parent.md b/api/Visio.MenuSets.Parent.md
index 1ad267e1c54..fbbce77ddae 100644
--- a/api/Visio.MenuSets.Parent.md
+++ b/api/Visio.MenuSets.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [MenuSets](./Visio.MenuSets.md) object.
-### Return Value
+### Return value
UIObject
diff --git a/api/Visio.Menus.Add.md b/api/Visio.Menus.Add.md
index d70b1dcdea6..d5ca602e811 100644
--- a/api/Visio.Menus.Add.md
+++ b/api/Visio.Menus.Add.md
@@ -23,7 +23,7 @@ Adds a new object to a collection.
_expression_ A variable that represents a [Menus](./Visio.Menus.md) collection.
-### Return Value
+### Return value
Menu
diff --git a/api/Visio.Menus.AddAt.md b/api/Visio.Menus.AddAt.md
index e0a5a496e32..4ec92a34b51 100644
--- a/api/Visio.Menus.AddAt.md
+++ b/api/Visio.Menus.AddAt.md
@@ -27,11 +27,11 @@ Creates a new **Menu** object at a specified index in the **Menus** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _lIndex_|Required| **Long**|The index at which to add the object.|
-### Return Value
+### Return value
Menu
diff --git a/api/Visio.Menus.Count.md b/api/Visio.Menus.Count.md
index 096afe9635f..4d22d191292 100644
--- a/api/Visio.Menus.Count.md
+++ b/api/Visio.Menus.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Menus](./Visio.Menus.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Menus.Item.md b/api/Visio.Menus.Item.md
index fb698277405..5cfed8f9185 100644
--- a/api/Visio.Menus.Item.md
+++ b/api/Visio.Menus.Item.md
@@ -27,11 +27,11 @@ Returns a **Menu** object from the **Menus** collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _lIndex_|Required| **Long**|The index of the object to retrieve.|
-### Return Value
+### Return value
Menu
diff --git a/api/Visio.Menus.Parent.md b/api/Visio.Menus.Parent.md
index d58c8ac4cdc..2921012f6d7 100644
--- a/api/Visio.Menus.Parent.md
+++ b/api/Visio.Menus.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [Menus](./Visio.Menus.md) object.
-### Return Value
+### Return value
MenuSet
diff --git a/api/Visio.MinorVersionNumber.md b/api/Visio.MinorVersionNumber.md
index 9392dd67bcd..645c1bdaa27 100644
--- a/api/Visio.MinorVersionNumber.md
+++ b/api/Visio.MinorVersionNumber.md
@@ -20,7 +20,7 @@ Gets the minor version number of Microsoft Visio Viewer. Read-only.
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.MouseEvent.Application.md b/api/Visio.MouseEvent.Application.md
index b1065e2278f..b02239832aa 100644
--- a/api/Visio.MouseEvent.Application.md
+++ b/api/Visio.MouseEvent.Application.md
@@ -20,7 +20,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [MouseEvent](./Visio.MouseEvent.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.MouseEvent.Button.md b/api/Visio.MouseEvent.Button.md
index df07ba62d23..6c5a41596eb 100644
--- a/api/Visio.MouseEvent.Button.md
+++ b/api/Visio.MouseEvent.Button.md
@@ -23,7 +23,7 @@ Returns the mouse button that was clicked to fire a **MouseDown** or **MouseUp*
_expression_ An expression that returns a [MouseEvent](./Visio.MouseEvent.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.MouseEvent.DragState.md b/api/Visio.MouseEvent.DragState.md
index 66bf0d6d60b..09bcffcd9b2 100644
--- a/api/Visio.MouseEvent.DragState.md
+++ b/api/Visio.MouseEvent.DragState.md
@@ -23,7 +23,7 @@ Returns information about the state of mouse movement as it relates to dragging
_expression_ An expression that returns a [MouseEvent](./Visio.MouseEvent.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.MouseEvent.KeyButtonState.md b/api/Visio.MouseEvent.KeyButtonState.md
index 9b05d7cd011..d0b6720d484 100644
--- a/api/Visio.MouseEvent.KeyButtonState.md
+++ b/api/Visio.MouseEvent.KeyButtonState.md
@@ -23,7 +23,7 @@ Returns the state of mouse buttons and the SHIFT and CTRL keys associated with a
_expression_ A variable that represents a [MouseEvent](./Visio.MouseEvent.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.MouseEvent.ObjectType.md b/api/Visio.MouseEvent.ObjectType.md
index b8a2ab0e82e..58b92203d25 100644
--- a/api/Visio.MouseEvent.ObjectType.md
+++ b/api/Visio.MouseEvent.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [MouseEvent](./Visio.MouseEvent.md) object.
-### Return Value
+### Return value
VisObjectType
diff --git a/api/Visio.MouseEvent.Stat.md b/api/Visio.MouseEvent.Stat.md
index f0266b32496..b8355debb26 100644
--- a/api/Visio.MouseEvent.Stat.md
+++ b/api/Visio.MouseEvent.Stat.md
@@ -23,7 +23,7 @@ Returns status information. Read-only.
_expression_ A variable that represents a [MouseEvent](./Visio.MouseEvent.md) object.
-### Return Value
+### Return value
VisStatCodes
diff --git a/api/Visio.MouseEvent.ToString.md b/api/Visio.MouseEvent.ToString.md
index 705a52e7dfe..8d1e3d1b4d9 100644
--- a/api/Visio.MouseEvent.ToString.md
+++ b/api/Visio.MouseEvent.ToString.md
@@ -23,7 +23,7 @@ Returns a string that represents the properties of a **KeyboardEvent** or **Mou
_expression_ A variable that represents a [MouseEvent](./Visio.MouseEvent.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.MouseEvent.Window.md b/api/Visio.MouseEvent.Window.md
index 946f44d7f04..2fe9c7d685d 100644
--- a/api/Visio.MouseEvent.Window.md
+++ b/api/Visio.MouseEvent.Window.md
@@ -23,7 +23,7 @@ Returns the window associated with a **MouseEvent** object. Read-only.
_expression_ A variable that represents a [MouseEvent](./Visio.MouseEvent.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.MouseEvent.x.md b/api/Visio.MouseEvent.x.md
index ef5627ba453..20124444ff5 100644
--- a/api/Visio.MouseEvent.x.md
+++ b/api/Visio.MouseEvent.x.md
@@ -23,7 +23,7 @@ Returns the x-coordinate of the location in the Microsoft Visio window where a
_expression_ A variable that represents a [MouseEvent](./Visio.MouseEvent.md) object.
-### Return Value
+### Return value
VisStatCodes
diff --git a/api/Visio.MouseEvent.y.md b/api/Visio.MouseEvent.y.md
index a9cee59040c..6002d98f689 100644
--- a/api/Visio.MouseEvent.y.md
+++ b/api/Visio.MouseEvent.y.md
@@ -23,7 +23,7 @@ Returns the y-coordinate of the location in the Microsoft Visio window where a
_expression_ A variable that represents a [MouseEvent](./Visio.MouseEvent.md) object.
-### Return Value
+### Return value
VisStatCodes
diff --git a/api/Visio.MovedSelectionEvent.Application.md b/api/Visio.MovedSelectionEvent.Application.md
index 24ca602c2cb..94d92324d77 100644
--- a/api/Visio.MovedSelectionEvent.Application.md
+++ b/api/Visio.MovedSelectionEvent.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a '[MovedSelectionEvent](Visio.MovedSelectionEvent.md)' object.
-### Return Value
+### Return value
**[Application](Visio.Application.md)**
diff --git a/api/Visio.MovedSelectionEvent.ObjectType.md b/api/Visio.MovedSelectionEvent.ObjectType.md
index 5cd38a76005..88c6c39dde1 100644
--- a/api/Visio.MovedSelectionEvent.ObjectType.md
+++ b/api/Visio.MovedSelectionEvent.ObjectType.md
@@ -23,7 +23,7 @@ Returns **visObjTypeMovedSelectionEvent** , the type of this object. Read-only.
_expression_ A variable that represents a '[MovedSelectionEvent](Visio.MovedSelectionEvent.md)' object.
-### Return Value
+### Return value
**visObjTypeMovedSelectionEvent**
diff --git a/api/Visio.MovedSelectionEvent.ReplacementShape.md b/api/Visio.MovedSelectionEvent.ReplacementShape.md
index bc3467af181..9875e14ef68 100644
--- a/api/Visio.MovedSelectionEvent.ReplacementShape.md
+++ b/api/Visio.MovedSelectionEvent.ReplacementShape.md
@@ -23,7 +23,7 @@ Returns a **[Shape](Visio.Shape.md)** object that represents the shape that is
_expression_ A variable that represents a '[MovedSelectionEvent](Visio.MovedSelectionEvent.md)' object.
-### Return Value
+### Return value
**Shape**
diff --git a/api/Visio.MovedSelectionEvent.SelectionSource.md b/api/Visio.MovedSelectionEvent.SelectionSource.md
index 3d56741998b..3d377d080bb 100644
--- a/api/Visio.MovedSelectionEvent.SelectionSource.md
+++ b/api/Visio.MovedSelectionEvent.SelectionSource.md
@@ -23,7 +23,7 @@ Returns a **[Selection](Visio.Selection.md)** object that represents the set of
_expression_ A variable that represents a '[MovedSelectionEvent](Visio.MovedSelectionEvent.md)' object.
-### Return Value
+### Return value
**Selection**
diff --git a/api/Visio.MovedSelectionEvent.SelectionTarget.md b/api/Visio.MovedSelectionEvent.SelectionTarget.md
index 1918b1e6d84..661b15b6e10 100644
--- a/api/Visio.MovedSelectionEvent.SelectionTarget.md
+++ b/api/Visio.MovedSelectionEvent.SelectionTarget.md
@@ -23,7 +23,7 @@ Returns a **[Selection](Visio.Selection.md)** object that represents the set of
_expression_ A variable that represents a '[MovedSelectionEvent](Visio.MovedSelectionEvent.md)' object.
-### Return Value
+### Return value
**Selection**
diff --git a/api/Visio.MovedSelectionEvent.Stat.md b/api/Visio.MovedSelectionEvent.Stat.md
index 551ac61b50d..9432af734f6 100644
--- a/api/Visio.MovedSelectionEvent.Stat.md
+++ b/api/Visio.MovedSelectionEvent.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a '[MovedSelectionEvent](Visio.MovedSelectionEvent.md)' object.
-### Return Value
+### Return value
**[VisStatCodes](Visio.visstatcodes.md)**
diff --git a/api/Visio.NavBar.md b/api/Visio.NavBar.md
index 4544b060f36..188a71dbf35 100644
--- a/api/Visio.NavBar.md
+++ b/api/Visio.NavBar.md
@@ -20,7 +20,7 @@ Determines whether the **Go to Page** navigation control is displayed in a Web
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.NegotiateMenus.md b/api/Visio.NegotiateMenus.md
index 46b6677c73a..78e24be2456 100644
--- a/api/Visio.NegotiateMenus.md
+++ b/api/Visio.NegotiateMenus.md
@@ -23,7 +23,7 @@ Determines whether Microsoft Visio menus are merged with those of the host appli
_expression_ A variable that represents a [DrawingControl](./Visio.DrawingControl.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.NegotiateToolbars.md b/api/Visio.NegotiateToolbars.md
index cdc33b3678d..fc946c46ac6 100644
--- a/api/Visio.NegotiateToolbars.md
+++ b/api/Visio.NegotiateToolbars.md
@@ -23,7 +23,7 @@ Determines whether Microsoft Visio toolbars are merged with those of the host ap
_expression_ A variable that represents a [DrawingControl](./Visio.DrawingControl.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.OLEObject.Application.md b/api/Visio.OLEObject.Application.md
index f4730d2cd12..44e9c9a1772 100644
--- a/api/Visio.OLEObject.Application.md
+++ b/api/Visio.OLEObject.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents an [OLEObject](./Visio.OLEObject.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.OLEObject.ClassID.md b/api/Visio.OLEObject.ClassID.md
index 392195e81ba..486b3895513 100644
--- a/api/Visio.OLEObject.ClassID.md
+++ b/api/Visio.OLEObject.ClassID.md
@@ -23,7 +23,7 @@ Returns the class ID string of a shape that represents an ActiveX control or an
_expression_ A variable that represents an [OLEObject](./Visio.OLEObject.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.OLEObject.ForeignType.md b/api/Visio.OLEObject.ForeignType.md
index e1498653f05..918a199835d 100644
--- a/api/Visio.OLEObject.ForeignType.md
+++ b/api/Visio.OLEObject.ForeignType.md
@@ -23,7 +23,7 @@ Returns the subtype of a **Shape** object that represents a foreign object. Rea
_expression_ A variable that represents an [OLEObject](./Visio.OLEObject.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.OLEObject.Object.md b/api/Visio.OLEObject.Object.md
index 69896cfc0cb..30a0d2c1c9f 100644
--- a/api/Visio.OLEObject.Object.md
+++ b/api/Visio.OLEObject.Object.md
@@ -23,7 +23,7 @@ Returns an **IDispatch** interface on the ActiveX control or embedded or linked
_expression_ A variable that represents an [OLEObject](./Visio.OLEObject.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.OLEObject.ObjectType.md b/api/Visio.OLEObject.ObjectType.md
index 39cd2cb6422..4aaa0a6295d 100644
--- a/api/Visio.OLEObject.ObjectType.md
+++ b/api/Visio.OLEObject.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents an [OLEObject](./Visio.OLEObject.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.OLEObject.ProgID.md b/api/Visio.OLEObject.ProgID.md
index 0a9b88b38ee..8d480dcc850 100644
--- a/api/Visio.OLEObject.ProgID.md
+++ b/api/Visio.OLEObject.ProgID.md
@@ -23,7 +23,7 @@ Returns the programmatic identifier of a shape that represents an ActiveX contro
_expression_ A variable that represents an [OLEObject](./Visio.OLEObject.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.OLEObject.Shape.md b/api/Visio.OLEObject.Shape.md
index f7df8e25c9f..7cbe13e09c2 100644
--- a/api/Visio.OLEObject.Shape.md
+++ b/api/Visio.OLEObject.Shape.md
@@ -23,7 +23,7 @@ Returns the **Shape** object that owns a **Cell** , **Characters** , **Row** ,
_expression_ A variable that represents an [OLEObject](./Visio.OLEObject.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.OLEObject.Stat.md b/api/Visio.OLEObject.Stat.md
index 73e6d82cc0c..81ea0a56cb3 100644
--- a/api/Visio.OLEObject.Stat.md
+++ b/api/Visio.OLEObject.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents an [OLEObject](./Visio.OLEObject.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.OLEObjects.Application.md b/api/Visio.OLEObjects.Application.md
index 54aef722909..538287c74ce 100644
--- a/api/Visio.OLEObjects.Application.md
+++ b/api/Visio.OLEObjects.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents an [OLEObjects](./Visio.OLEObjects.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.OLEObjects.Count.md b/api/Visio.OLEObjects.Count.md
index e116d705602..c48aa3f0e5e 100644
--- a/api/Visio.OLEObjects.Count.md
+++ b/api/Visio.OLEObjects.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents an [OLEObjects](./Visio.OLEObjects.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.OLEObjects.Item.md b/api/Visio.OLEObjects.Item.md
index cb2a38ac9fb..27367643e72 100644
--- a/api/Visio.OLEObjects.Item.md
+++ b/api/Visio.OLEObjects.Item.md
@@ -27,11 +27,11 @@ Returns an item from a collection. The **Item** property is the default propert
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|Contains the name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
OLEObject
diff --git a/api/Visio.OLEObjects.ObjectType.md b/api/Visio.OLEObjects.ObjectType.md
index b9d02f05b54..f5336a20042 100644
--- a/api/Visio.OLEObjects.ObjectType.md
+++ b/api/Visio.OLEObjects.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents an [OLEObjects](./Visio.OLEObjects.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.OLEObjects.Stat.md b/api/Visio.OLEObjects.Stat.md
index 671d23d5b82..cc08da38442 100644
--- a/api/Visio.OLEObjects.Stat.md
+++ b/api/Visio.OLEObjects.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents an [OLEObjects](./Visio.OLEObjects.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.OnDocumentLoaded.md b/api/Visio.OnDocumentLoaded.md
index 4ee8c0eb83d..bde2eacb0a9 100644
--- a/api/Visio.OnDocumentLoaded.md
+++ b/api/Visio.OnDocumentLoaded.md
@@ -20,7 +20,7 @@ Occurs after a document is loaded into Microsoft Visio Viewer.
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.OnLayerChanged.md b/api/Visio.OnLayerChanged.md
index 42639bcebbc..30504b393cb 100644
--- a/api/Visio.OnLayerChanged.md
+++ b/api/Visio.OnLayerChanged.md
@@ -24,7 +24,7 @@ Occurs when a layer is changed in the document open in Microsoft Visio Viewer.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|LayerIndex|Required| **Long**|The index of the changed layer.|
|Visible|Required| **Boolean**|Indicates whether the changed layer is visible in the user interface.|
diff --git a/api/Visio.OnMarkupOverlaysVisibleChanged.md b/api/Visio.OnMarkupOverlaysVisibleChanged.md
index 28e3f387cb6..078b4c3b6fd 100644
--- a/api/Visio.OnMarkupOverlaysVisibleChanged.md
+++ b/api/Visio.OnMarkupOverlaysVisibleChanged.md
@@ -24,7 +24,7 @@ Occurs when the visibility of markup overlays changes in Microsoft Visio Viewer.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|MarkupOverlaysVisible|Required| **Boolean**|Indicates whether markup overlays are visible in the Visio Viewer user interface.|
diff --git a/api/Visio.OnPageChanged.md b/api/Visio.OnPageChanged.md
index bb426fdadce..e4a0ed36572 100644
--- a/api/Visio.OnPageChanged.md
+++ b/api/Visio.OnPageChanged.md
@@ -24,11 +24,11 @@ Occurs when the active page is changed in Microsoft Visio Viewer.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PageIndex|Required| **Long**|The index of the new page.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.OnReviewerChanged.md b/api/Visio.OnReviewerChanged.md
index facedcbb882..1174aaeaed6 100644
--- a/api/Visio.OnReviewerChanged.md
+++ b/api/Visio.OnReviewerChanged.md
@@ -24,12 +24,12 @@ Occurs when the visibility of a particular reviewer's markup (comments) is chang
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ReviewerIndex|Required| **Long**|The index of the reviewer.|
|ReviewerVisible|Required| **Boolean**|Indicates whether markup of the reviewer is visible in the user interface.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.OnSelectionChanged.md b/api/Visio.OnSelectionChanged.md
index 89703ea28d7..4cc9d5ca3d9 100644
--- a/api/Visio.OnSelectionChanged.md
+++ b/api/Visio.OnSelectionChanged.md
@@ -24,11 +24,11 @@ Occurs when the shape selection is changed in Microsoft Visio Viewer.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ShapeIndex|Required| **Long**|The index of the newly selected shape.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.OnToolbarCustomized.md b/api/Visio.OnToolbarCustomized.md
index bbf28fb4b15..1efa973211d 100644
--- a/api/Visio.OnToolbarCustomized.md
+++ b/api/Visio.OnToolbarCustomized.md
@@ -20,7 +20,7 @@ Occurs when the user customizes the Microsoft Visio Viewer toolbar by adding or
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.OnViewChanged.md b/api/Visio.OnViewChanged.md
index 7c58f99655f..ec392d781e0 100644
--- a/api/Visio.OnViewChanged.md
+++ b/api/Visio.OnViewChanged.md
@@ -24,13 +24,13 @@ Occurs when the view of the current page is changed in Microsoft Visio Viewer.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PageXAtViewCenter|Required| **Double**|The x-coordinate, in drawing units, of the center of the page.|
|PageYAtViewCenter|Required| **Double**|The y-coordinate, in drawing units, of the center of the page.|
|ZoomFactor|Required| **Double**|The factor by which the zoom (the page size) is multiplied. |
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.OpenBrowser.md b/api/Visio.OpenBrowser.md
index 5dfbb57d16a..c23a09de32a 100644
--- a/api/Visio.OpenBrowser.md
+++ b/api/Visio.OpenBrowser.md
@@ -20,7 +20,7 @@ Determines whether the Web page opens in the browser after the drawing is export
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.Page.AddGuide.md b/api/Visio.Page.AddGuide.md
index 529cd2834bc..232ed53032a 100644
--- a/api/Visio.Page.AddGuide.md
+++ b/api/Visio.Page.AddGuide.md
@@ -27,13 +27,13 @@ Adds a guide to a drawing page.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **Integer**|The type of guide to add.|
| _xPos_|Required| **Double**|The x-coordinate of a point on the guide.|
| _yPos_|Required| **Double**|The y-coordinate of a point on the guide.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Page.Application.md b/api/Visio.Page.Application.md
index 2b4a316bf9f..d851b9f58f3 100644
--- a/api/Visio.Page.Application.md
+++ b/api/Visio.Page.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Page.AutoConnectMany.md b/api/Visio.Page.AutoConnectMany.md
index 2446cbbfaa2..3a4fcadda24 100644
--- a/api/Visio.Page.AutoConnectMany.md
+++ b/api/Visio.Page.AutoConnectMany.md
@@ -27,14 +27,14 @@ Automatically draws multiple connections in the specified directions between the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FromShapeIDs()_|Required| **Long**|An array of identifers of the shapes from which to draw a connection.|
| _ToShapeIDs()_|Required| **Long**|An array of identifers of the shapes to which to draw a connection.|
| _PlacementDirs()_|Required| **Long**|An array of **[VisAutoConnectDir](Visio.visautoconnectdir.md)** constants that represent the directions in which to draw the connections. See Remarks for possible values.|
| _Connector_|Optional| **[UNKNOWN]**|The connector to use. Can be a **[Master](Visio.Master.md)** , **[MasterShortcut](Visio.MasterShortcut.md)** , **[Shape](Visio.Shape.md)** , or **IDataObject** object.|
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.Page.AvoidPageBreaks.md b/api/Visio.Page.AvoidPageBreaks.md
index f1e383ba641..9b678512733 100644
--- a/api/Visio.Page.AvoidPageBreaks.md
+++ b/api/Visio.Page.AvoidPageBreaks.md
@@ -23,7 +23,7 @@ Makes small adjustments to shapes to move them off page breaks.
_expression_ A variable that represents a '[Page](Visio.Page.md)' object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Page.BackPage.md b/api/Visio.Page.BackPage.md
index 4ffda940418..106a6ed02cc 100644
--- a/api/Visio.Page.BackPage.md
+++ b/api/Visio.Page.BackPage.md
@@ -23,7 +23,7 @@ Gets or sets the background page of a page. Read/write.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Variant
diff --git a/api/Visio.Page.Background.md b/api/Visio.Page.Background.md
index 5e6ec03a114..019e2df12b4 100644
--- a/api/Visio.Page.Background.md
+++ b/api/Visio.Page.Background.md
@@ -23,7 +23,7 @@ Determines whether a page is a background page. Read/write.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Page.BeforePageDelete.md b/api/Visio.Page.BeforePageDelete.md
index 16f2f8eb3d3..cfa0268a1dc 100644
--- a/api/Visio.Page.BeforePageDelete.md
+++ b/api/Visio.Page.BeforePageDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforePageDelete'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that is going to be deleted.|
diff --git a/api/Visio.Page.BeforeSelectionDelete.md b/api/Visio.Page.BeforeSelectionDelete.md
index 8c867482dcd..86560ecbd68 100644
--- a/api/Visio.Page.BeforeSelectionDelete.md
+++ b/api/Visio.Page.BeforeSelectionDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeSelectionDelete'(**_ByVal Selection As [IVSELE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selected objects that are going to be deleted.|
diff --git a/api/Visio.Page.BeforeShapeDelete.md b/api/Visio.Page.BeforeShapeDelete.md
index 168e6b2a2d1..7f61f1bc214 100644
--- a/api/Visio.Page.BeforeShapeDelete.md
+++ b/api/Visio.Page.BeforeShapeDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeShapeDelete'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be deleted.|
diff --git a/api/Visio.Page.BeforeShapeTextEdit.md b/api/Visio.Page.BeforeShapeTextEdit.md
index 1a73e3dcbf6..30a9164587c 100644
--- a/api/Visio.Page.BeforeShapeTextEdit.md
+++ b/api/Visio.Page.BeforeShapeTextEdit.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeShapeTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be opened for text editing.|
diff --git a/api/Visio.Page.BoundingBox.md b/api/Visio.Page.BoundingBox.md
index 22a009facd9..513db463fc3 100644
--- a/api/Visio.Page.BoundingBox.md
+++ b/api/Visio.Page.BoundingBox.md
@@ -27,7 +27,7 @@ Returns a rectangle that tightly encloses the shapes of a page.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Required| **Integer**|Flags that influence the bounding box calculated for each shape that contributes to the resulting bounding box.|
| _lpr8Left_|Required| **Double**|Returns the x-coordinate of the left edge of the bounding box.|
@@ -35,7 +35,7 @@ Returns a rectangle that tightly encloses the shapes of a page.
| _lpr8Right_|Required| **Double**|Returns the x-coordinate of the right edge of the bounding box.|
| _lpr8Top_|Required| **Double**|Returns the y-coordinate of the top edge of the bounding box.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.CalloutRelationshipAdded.md b/api/Visio.Page.CalloutRelationshipAdded.md
index be539bb568e..8f2768f43bd 100644
--- a/api/Visio.Page.CalloutRelationshipAdded.md
+++ b/api/Visio.Page.CalloutRelationshipAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'CalloutRelationshipAdded'(**_By Val ShapePair As Rel
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the new callout shape-pair relationship.|
diff --git a/api/Visio.Page.CalloutRelationshipDeleted.md b/api/Visio.Page.CalloutRelationshipDeleted.md
index cb6ec17765d..e1a0a0a348a 100644
--- a/api/Visio.Page.CalloutRelationshipDeleted.md
+++ b/api/Visio.Page.CalloutRelationshipDeleted.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'CalloutRelationshipDeleted'(**_By Val ShapePair As R
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the callout shape-pair relationship.|
diff --git a/api/Visio.Page.CellChanged.md b/api/Visio.Page.CellChanged.md
index e4291a1d25c..451af55dc41 100644
--- a/api/Visio.Page.CellChanged.md
+++ b/api/Visio.Page.CellChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'CellChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose value has changed.|
diff --git a/api/Visio.Page.CenterDrawing.md b/api/Visio.Page.CenterDrawing.md
index fa42383ffb7..d580503fd6f 100644
--- a/api/Visio.Page.CenterDrawing.md
+++ b/api/Visio.Page.CenterDrawing.md
@@ -23,7 +23,7 @@ Centers a page's, master's, or group's shapes with respect to the extent of the
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.ConnectionsAdded.md b/api/Visio.Page.ConnectionsAdded.md
index 30493bc762b..bf6a8e4743a 100644
--- a/api/Visio.Page.ConnectionsAdded.md
+++ b/api/Visio.Page.ConnectionsAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConnectionsAdded'(**_ByVal Connects As [IVCONNECTS]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Connects_|Required| **[IVCONNECTS]**|The connections that were established.|
diff --git a/api/Visio.Page.ConnectionsDeleted.md b/api/Visio.Page.ConnectionsDeleted.md
index d983b3f1297..65464b45277 100644
--- a/api/Visio.Page.ConnectionsDeleted.md
+++ b/api/Visio.Page.ConnectionsDeleted.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConnectionsDeleted'(**_ByVal Connects As [IVCONNECTS
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Connects_|Required| **[IVCONNECTS]**|The connections that have been removed.|
diff --git a/api/Visio.Page.Connects.md b/api/Visio.Page.Connects.md
index bd903a746e8..60246a0cb70 100644
--- a/api/Visio.Page.Connects.md
+++ b/api/Visio.Page.Connects.md
@@ -23,7 +23,7 @@ Returns a **Connects** collection for a shape, page, or master. Read-only.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Connects
diff --git a/api/Visio.Page.ContainerRelationshipAdded.md b/api/Visio.Page.ContainerRelationshipAdded.md
index 37f556fb15c..9aff2a241d2 100644
--- a/api/Visio.Page.ContainerRelationshipAdded.md
+++ b/api/Visio.Page.ContainerRelationshipAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ContainerRelationshipAdded'(**_By Val ShapePair As R
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the new container shape-pair relationship.|
diff --git a/api/Visio.Page.ContainerRelationshipDeleted.md b/api/Visio.Page.ContainerRelationshipDeleted.md
index cba91758fd2..5a8b2d9c32e 100644
--- a/api/Visio.Page.ContainerRelationshipDeleted.md
+++ b/api/Visio.Page.ContainerRelationshipDeleted.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ContainerRelationshipDeleted'(**_By Val ShapePair As
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the container shape-pair relationship.|
diff --git a/api/Visio.Page.ConvertToGroupCanceled.md b/api/Visio.Page.ConvertToGroupCanceled.md
index b12634ea1ba..060bcb96aba 100644
--- a/api/Visio.Page.ConvertToGroupCanceled.md
+++ b/api/Visio.Page.ConvertToGroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConvertToGroupCanceled'(**_ByVal Selection As [IVSEL
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.Page.CreateSelection.md b/api/Visio.Page.CreateSelection.md
index b25b3b5e8d7..dbedf65afb0 100644
--- a/api/Visio.Page.CreateSelection.md
+++ b/api/Visio.Page.CreateSelection.md
@@ -27,13 +27,13 @@ Creates various types of **Selection** objects.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SelType_|Required| **VisSelectionTypes**|The type of selection. See Remarks for possible values.|
| _IterationMode_|Optional| **VisSelectMode**|The selection mode used. See Remarks for possible values.|
| _Data_|Optional| **Variant**|The object type that corresponds to the _SelType_ argument. See Remarks for possible values.|
-### Return Value
+### Return value
Selection
diff --git a/api/Visio.Page.Delete.md b/api/Visio.Page.Delete.md
index 610fced0a3e..cd57ca57d23 100644
--- a/api/Visio.Page.Delete.md
+++ b/api/Visio.Page.Delete.md
@@ -27,11 +27,11 @@ Deletes a **Page** object. Can also renumber remaining pages.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _fRenumberPages_|Required| **Integer**|1 (**True**) to renumber remaining pages; otherwise, 0 (**False**).|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.Document.md b/api/Visio.Page.Document.md
index 181137c03db..3b4635d3ff9 100644
--- a/api/Visio.Page.Document.md
+++ b/api/Visio.Page.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Page.DrawArcByThreePoints.md b/api/Visio.Page.DrawArcByThreePoints.md
index 48b65a7015d..b988349cd09 100644
--- a/api/Visio.Page.DrawArcByThreePoints.md
+++ b/api/Visio.Page.DrawArcByThreePoints.md
@@ -27,7 +27,7 @@ Creates a shape whose path consists of an arc defined by the three points passed
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xBegin_|Required| **Double**|The x-coordinate of the begin point of the arc.|
| _yBegin_|Required| **Double**|The y-coordinate of the begin point of the arc.|
@@ -36,7 +36,7 @@ Creates a shape whose path consists of an arc defined by the three points passed
| _xControl_|Required| **Double**|The x-coordinate of the control point of the arc.|
| _yControl_|Required| **Double**|The y-coordinate of the control point of the arc.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Page.DrawBezier.md b/api/Visio.Page.DrawBezier.md
index 6a41eef9654..0850973250e 100644
--- a/api/Visio.Page.DrawBezier.md
+++ b/api/Visio.Page.DrawBezier.md
@@ -27,13 +27,13 @@ Creates a shape whose path is defined by the supplied sequence of Bezier control
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xyArray()_|Required| **Double**|An array of alternating _x_ and _y_ values that define the Bezier control points for the new shape.|
| _degree_|Required| **Integer**|The degree of the Bezier curve.|
| _Flags_|Required| **Integer**|Flags that influence how the shape is drawn.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Page.DrawCircularArc.md b/api/Visio.Page.DrawCircularArc.md
index cbd6629a1c9..91d48f5d137 100644
--- a/api/Visio.Page.DrawCircularArc.md
+++ b/api/Visio.Page.DrawCircularArc.md
@@ -27,7 +27,7 @@ Creates a new shape whose path consists of a circular arc defined by its center,
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xCenter_|Required| **Double**|The x-coordinate of the center of the arc.|
| _yCenter_|Required| **Double**|The y-coordinate of the center of the arc.|
@@ -35,7 +35,7 @@ Creates a new shape whose path consists of a circular arc defined by its center,
| _StartAngle_|Optional| **Double**|The angle in radians with respect to the x-axis at which to start drawing the arc. The default is 0.|
| _EndAngle_|Optional| **Double**|The angle in radians with respect to the x-axis at which to end the arc. The default is pi (3.14592634898).|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Page.DrawLine.md b/api/Visio.Page.DrawLine.md
index 979d9202a1e..791ab606663 100644
--- a/api/Visio.Page.DrawLine.md
+++ b/api/Visio.Page.DrawLine.md
@@ -27,14 +27,14 @@ Adds a line to the **Shapes** collection of a page.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xBegin_|Required| **Double**|The x-coordinate of the line's begin point.|
| _yBegin_|Required| **Double**|The y-coordinate of the line's begin point.|
| _xEnd_|Required| **Double**|The x-coordinate of the line's endpoint.|
| _yEnd_|Required| **Double**|The y-coordinate of the line's endpoint.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Page.DrawNURBS.md b/api/Visio.Page.DrawNURBS.md
index cd5ad45ad59..ba424367deb 100644
--- a/api/Visio.Page.DrawNURBS.md
+++ b/api/Visio.Page.DrawNURBS.md
@@ -27,7 +27,7 @@ Creates a new shape whose path consists of a single NURBS (nonuniform rational B
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _degree_|Required| **Integer**|The spline's degree; an integer between 1 and 25.|
| _Flags_|Required| **Integer**|Flags that influence how the shape is drawn.|
@@ -35,7 +35,7 @@ Creates a new shape whose path consists of a single NURBS (nonuniform rational B
| _knots()_|Required| **Double**|An array of knots.|
| _weights_|Optional| **Variant**|An array of weights.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Page.DrawOval.md b/api/Visio.Page.DrawOval.md
index 0f78d5ab2e2..f4a50b6b9c4 100644
--- a/api/Visio.Page.DrawOval.md
+++ b/api/Visio.Page.DrawOval.md
@@ -27,14 +27,14 @@ Adds an oval (ellipse) to the **Shapes** collection of a page.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _x1_|Required| **Double**|The x-coordinate of one corner of the ellipse's width-height box.|
| _y1_|Required| **Double**|The y-coordinate of one corner of the ellipse's width-height box.|
| _x2_|Required| **Double**|The x-coordinate of the other corner of the ellipse's width-height box.|
| _y2_|Required| **Double**|The y-coordinate of the other corner of the ellipse's width-height box.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Page.DrawPolyline.md b/api/Visio.Page.DrawPolyline.md
index 213997165ca..d01a0f9a0c2 100644
--- a/api/Visio.Page.DrawPolyline.md
+++ b/api/Visio.Page.DrawPolyline.md
@@ -27,12 +27,12 @@ Creates a shape whose path is a polyline along a given set of points.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xyArray()_|Required| **Double**| An array of alternating _x_ and _y_ values that defines points in the new shape's path.|
| _Flags_|Required| **Integer**|Flags that influence how the shape is drawn.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Page.DrawQuarterArc.md b/api/Visio.Page.DrawQuarterArc.md
index d1192dfc6b2..ab26b539be2 100644
--- a/api/Visio.Page.DrawQuarterArc.md
+++ b/api/Visio.Page.DrawQuarterArc.md
@@ -27,7 +27,7 @@ Creates a shape whose path consists of an elliptical arc defined by the two poin
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xBegin_|Required| **Double**|The _x_-coordinate of the begin point of the arc.|
| _yBegin_|Required| **Double**|The _y_-coordinate of the begin point of the arc.|
@@ -35,7 +35,7 @@ Creates a shape whose path consists of an elliptical arc defined by the two poin
| _yEnd_|Required| **Double**|The _y_-coordinate of the endpoint of the arc.|
| _SweepFlag_|Required| **VisArcSweepFlags**|The type of arc, concave or convex.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Page.DrawRectangle.md b/api/Visio.Page.DrawRectangle.md
index 1f534d3873b..2904273c7f4 100644
--- a/api/Visio.Page.DrawRectangle.md
+++ b/api/Visio.Page.DrawRectangle.md
@@ -27,14 +27,14 @@ Adds a rectangle to the **Shapes** collection of a page, master, or group.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _x1_|Required| **Double**|The _x_-coordinate of one corner of the rectangle's width-height box.|
| _y1_|Required| **Double**|The _y_-coordinate of one corner of the rectangle's width-height box.|
| _x2_|Required| **Double**|The _x_-coordinate of the other corner of the rectangle's width-height box.|
| _y2_|Required| **Double**|The _y_-coordinate of the other corner of the rectangle's width-height box.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Page.DrawSpline.md b/api/Visio.Page.DrawSpline.md
index 297f5273dbc..1a9a210751c 100644
--- a/api/Visio.Page.DrawSpline.md
+++ b/api/Visio.Page.DrawSpline.md
@@ -27,13 +27,13 @@ Creates a new shape whose path follows a given sequence of points.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xyArray()_|Required| **Double**|An array of alternating _x_ and _y_ values that define points in the new shape's path.|
| _Tolerance_|Required| **Double**|How closely the path of the new shape must approximate the given points.|
| _Flags_|Required| **Integer**|Flags that influence how the shape is drawn.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Page.Drop.md b/api/Visio.Page.Drop.md
index a5e19232bb6..f1eacbe3433 100644
--- a/api/Visio.Page.Drop.md
+++ b/api/Visio.Page.Drop.md
@@ -27,13 +27,13 @@ Creates one or more new **Shape** objects by dropping an object onto a receivin
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectToDrop_|Required| **[UNKNOWN]**|The object or selection to drop. While this is typically a Visio object such as a **Master** , **Shape** , or **Selection** object, it can be any OLE object that provides an **IDataObject** interface.|
| _xPos_|Required| **Double**|The x-coordinate at which to place the center of the shape's width or PinX.|
| _yPos_|Required| **Double**|The y-coordinate at which to place the center of the shape's height or PinY.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Page.DropCallout.md b/api/Visio.Page.DropCallout.md
index 2d393f5f976..8d95ac6910b 100644
--- a/api/Visio.Page.DropCallout.md
+++ b/api/Visio.Page.DropCallout.md
@@ -27,12 +27,12 @@ Creates a new callout **[Shape](Visio.Shape.md)** object on the page near the s
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectToDrop_|Required| **[UNKNOWN]**|The callout to add to the page. Can be a **[Master](Visio.Master.md)** , **[MasterShortcut](Visio.MasterShortcut.md)** , **Shape** , or **IDataObject** object.|
| _TargetShape_|Required| **Shape**|The existing shape with which to associate the callout.|
-### Return Value
+### Return value
**Shape**
diff --git a/api/Visio.Page.DropConnected.md b/api/Visio.Page.DropConnected.md
index f02daff568e..9c01ec2adeb 100644
--- a/api/Visio.Page.DropConnected.md
+++ b/api/Visio.Page.DropConnected.md
@@ -27,14 +27,14 @@ Creates a new **[Shape](Visio.Shape.md)** object on the page, places the new sh
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectToDrop_|Required| **[UNKNOWN]**|The shape to add to the page. Can be a **[Master](Visio.Master.md)** , **[MasterShortcut](Visio.MasterShortcut.md)** , **Shape** , or an **IDataObject** object.|
| _TargetShape_|Required| **Shape**|The existing shape from which to align, space, and connect.|
| _PlacementDir_|Required| **[VisAutoConnectDir](Visio.visautoconnectdir.md)**|The direction from _TargetShape_ in which to place _ObjectToDrop_.|
| _Connector_|Optional| **[UNKNOWN]**|The connector to use. Can be a **Master** , **MasterShortcut** , **Shape** , or an **IDataObject** object.|
-### Return Value
+### Return value
**Shape**
diff --git a/api/Visio.Page.DropContainer.md b/api/Visio.Page.DropContainer.md
index 1bf0e81b85a..c84aafb80b4 100644
--- a/api/Visio.Page.DropContainer.md
+++ b/api/Visio.Page.DropContainer.md
@@ -27,12 +27,12 @@ Creates a new container **[Shape](Visio.Shape.md)** object on the page, places
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectToDrop_|Required| **[UNKNOWN]**|The container shape to add to the page. Can be a **[Master](Visio.Master.md)** , **[MasterShortcut](Visio.MasterShortcut.md)** , **Shape** , or **IDataObject** object.|
| _TargetShapes_|Required| **[UNKNOWN]**|The shapes that the container should contain. Can be a **Shape** or a **[Selection](Visio.Selection.md)** object. The shapes or selection must already be on the page.|
-### Return Value
+### Return value
**Shape**
diff --git a/api/Visio.Page.DropIntoList.md b/api/Visio.Page.DropIntoList.md
index f08aad42e34..34e3aae79de 100644
--- a/api/Visio.Page.DropIntoList.md
+++ b/api/Visio.Page.DropIntoList.md
@@ -27,13 +27,13 @@ Drops the specified object into the specified list at the specified position. Re
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectToDrop_|Required| **IUnknown**|The source of the shape to drop into the list. Can be a **[Master](Visio.Master.md)** , **[Selection](Visio.Selection.md)** , **[Shape](Visio.Shape.md)** , or **IDataObject** object. See Remarks for more information.|
| _TargetList_|Required| **Shape**|The list into which to drop _ObjectToDrop_. |
| _lPosition_|Required| **Long**|The position in the 1-based list to add the shape.|
-### Return Value
+### Return value
**Shape**
diff --git a/api/Visio.Page.DropLegend.md b/api/Visio.Page.DropLegend.md
index e6f9c32cb11..acecb80f42a 100644
--- a/api/Visio.Page.DropLegend.md
+++ b/api/Visio.Page.DropLegend.md
@@ -30,13 +30,13 @@ Inserts a data graphics legend on a Microsoft Visio drawing page. Returns the li
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _OuterList_|Required| **[UNKNOWN]**|A **[Master](Visio.Master.md)** or **[MasterShortcut](Visio.MasterShortcut.md)** object that represents the legend object. Corresponds to the outermost list shape.|
| _InnerContainer_|Required| **[UNKNOWN]**|A **Master** or **MasterShortcut** object that represents the legend object. Corresponds to the inner field container shape used within the legend for each data-graphic field.|
| _populateFlags_|Required| **[VisLegendFlags](Visio.VisLegendFlags.md)**|A flag that specifies whether Visio should populate the legend.|
-### Return Value
+### Return value
**[Shape](Visio.Shape.md)**
diff --git a/api/Visio.Page.DropLinked.md b/api/Visio.Page.DropLinked.md
index 1417696a58b..48150d46131 100644
--- a/api/Visio.Page.DropLinked.md
+++ b/api/Visio.Page.DropLinked.md
@@ -30,7 +30,7 @@ Returns a new shape on the drawing page linked to data in a data recordset.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectToDrop_|Required| **[UNKNOWN]**|The object to drop. While this is typically a Visio object such as a **Master** , **Shape** , or **Selection** object; it can be any OLE object that provides an **IDataObject** interface.|
| _x_|Required| **Double**|The x-coordinate at which to place the center of the shape's width or PinX.|
@@ -39,7 +39,7 @@ Returns a new shape on the drawing page linked to data in a data recordset.
| _DataRowID_|Required| **Long**|The ID of the data row that contains the data to link to.|
| _ApplyDataGraphicAfterLink_|Required| **Boolean**|Whether to apply the current data graphic to the linked shape. The default is not to apply a data graphic. See Remarks for more information.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Page.DropMany.md b/api/Visio.Page.DropMany.md
index c52a893c825..cc0c5bf70f3 100644
--- a/api/Visio.Page.DropMany.md
+++ b/api/Visio.Page.DropMany.md
@@ -27,13 +27,13 @@ Creates one or more new **Shape** objects on a page. It returns an array of the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectsToInstance()_|Required| **Variant**|Identifies masters or other objects from which to make shapes.|
| _xyArray()_|Required| **Double**|An array of alternating x and y values specifying the positions for the new shapes.|
| _IDArray()_|Required| **Integer**|Out parameter. An array that returns the IDs of the created shapes.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Page.DropManyLinkedU.md b/api/Visio.Page.DropManyLinkedU.md
index 7fd79428472..2db8f7a07c4 100644
--- a/api/Visio.Page.DropManyLinkedU.md
+++ b/api/Visio.Page.DropManyLinkedU.md
@@ -30,7 +30,7 @@ Creates multiple new shapes on the drawing page that are linked to multiple data
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectsToInstance()_|Required| **Variant**|An array of type **Variant** of objects to create instances of.|
| _XYs()_|Required| **Double**|An array of type **Double**|
@@ -39,7 +39,7 @@ Creates multiple new shapes on the drawing page that are linked to multiple data
| _ApplyDataGraphicAfterLink_|Required| **Boolean**|Whether to apply the current data graphic to the linked shapes. See Remarks for more information.|
| _ShapeIDs()_|Required| **Long**|Out parameter. An array of type **Long** of shapes created and linked to.|
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Page.DropManyU.md b/api/Visio.Page.DropManyU.md
index 3b156216130..9d4a3c6d613 100644
--- a/api/Visio.Page.DropManyU.md
+++ b/api/Visio.Page.DropManyU.md
@@ -27,13 +27,13 @@ Creates one or more new **Shape** objects on a page, in a master, or in a group
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectsToInstance()_|Required| **Variant**|Identifies masters or other objects from which to make shapes by their universal names.|
| _xyArray()_|Required| **Double**|An array of alternating _x_ and _y_ values that specify the positions for the new shapes.|
| _IDArray()_|Required| **Integer**|Out parameter. An array that returns the IDs of the created shapes.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Page.EventList.md b/api/Visio.Page.EventList.md
index a5bda6afb73..c412d8b6425 100644
--- a/api/Visio.Page.EventList.md
+++ b/api/Visio.Page.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Page.Export.md b/api/Visio.Page.Export.md
index 497d0f1dd9c..2781bd83246 100644
--- a/api/Visio.Page.Export.md
+++ b/api/Visio.Page.Export.md
@@ -27,11 +27,11 @@ Exports an object from Microsoft Visio to a file format such as .bmp, .dib, .dwg
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The fully qualified path and name of the file to receive the exported object.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.FormulaChanged.md b/api/Visio.Page.FormulaChanged.md
index 475df78800c..4f39c97122c 100644
--- a/api/Visio.Page.FormulaChanged.md
+++ b/api/Visio.Page.FormulaChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'FormulaChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose formula changed.|
diff --git a/api/Visio.Page.GetCallouts.md b/api/Visio.Page.GetCallouts.md
index 4b635e6439f..abc3b8ba505 100644
--- a/api/Visio.Page.GetCallouts.md
+++ b/api/Visio.Page.GetCallouts.md
@@ -27,11 +27,11 @@ Returns the list of identifiers of the callout shapes on the page.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NestedOptions_|Required| **[VisContainerNested](Visio.VisContainerNested.md)**|A constant that indicates whether to exclude shapes on the page that are contained by containers or lists. See Remarks for possible values.|
-### Return Value
+### Return value
**Long()**
diff --git a/api/Visio.Page.GetContainers.md b/api/Visio.Page.GetContainers.md
index f166c15e52d..848690ef526 100644
--- a/api/Visio.Page.GetContainers.md
+++ b/api/Visio.Page.GetContainers.md
@@ -27,11 +27,11 @@ Returns an array of shape identifiers (IDs) of the container shapes on the page.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NestedOptions_|Required| **[VisContainerNested](Visio.VisContainerNested.md)**|Indicates whether to exclude shapes in nested containers. See Remarks for possible values.|
-### Return Value
+### Return value
**Long()**
diff --git a/api/Visio.Page.GetFormulas.md b/api/Visio.Page.GetFormulas.md
index eb15004d40d..82c7d4eec9e 100644
--- a/api/Visio.Page.GetFormulas.md
+++ b/api/Visio.Page.GetFormulas.md
@@ -27,12 +27,12 @@ Returns the formulas of many cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**|Stream identifying cells to be queried.|
| _formulaArray()_|Required| **Variant**|Out parameter. Array that receives formulas of queried cells.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.GetFormulasU.md b/api/Visio.Page.GetFormulasU.md
index 7be56b51e31..e4016aad759 100644
--- a/api/Visio.Page.GetFormulasU.md
+++ b/api/Visio.Page.GetFormulasU.md
@@ -27,12 +27,12 @@ Returns the formulas of many cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**|Stream identifying cells to be queried.|
| _formulaArray()_|Required| **Variant**|Out parameter. Array that receives formulas of queried cells.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.GetResults.md b/api/Visio.Page.GetResults.md
index 58d81059226..0f4cc433506 100644
--- a/api/Visio.Page.GetResults.md
+++ b/api/Visio.Page.GetResults.md
@@ -27,14 +27,14 @@ Gets the results or formulas of many cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**|Array identifying cells to be queried.|
| _Flags_|Required| **Integer**|Flags that influence the type of entries returned in results.|
| _UnitsNamesOrCodes()_|Required| **Variant**| Array of measurement units that results are to be returned in.|
| _resultArray()_|Required| **Variant**|Array that receives results or formulas of queried cells.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.GetShapesLinkedToData.md b/api/Visio.Page.GetShapesLinkedToData.md
index 9a25654bf3c..6607a45a0ea 100644
--- a/api/Visio.Page.GetShapesLinkedToData.md
+++ b/api/Visio.Page.GetShapesLinkedToData.md
@@ -30,12 +30,12 @@ Returns an array of all shapes on the active page linked to data in the specifie
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetID_|Required| **Long**|The ID of a data recordset contained in the current document.|
| _ShapeIDs()_|Required| **Long**|Out parameter. An array of type **Long** that the method will return filled with the shape IDs of shapes on the page linked to the data recordset specified in DataRecordsetID.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.GetShapesLinkedToDataRow.md b/api/Visio.Page.GetShapesLinkedToDataRow.md
index 7a9f5f6d001..63dd79bb9b8 100644
--- a/api/Visio.Page.GetShapesLinkedToDataRow.md
+++ b/api/Visio.Page.GetShapesLinkedToDataRow.md
@@ -30,13 +30,13 @@ Returns an array of all shapes on the active page linked to data in the specifie
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetID_|Required| **Long**|The ID of a data recordset contained in the current document.|
| _DataRowID_|Required| **Long**|The ID of a data row in the data recordset specified in DataRecordsetID.|
| _ShapeIDs()_|Required| **Long**|Out parameter. An array of type **Long** that the method will return filled with the shape IDs of shapes on the page linked to the data row specified in DataRowID in the data recordset specified in DataRecordsetID.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.GroupCanceled.md b/api/Visio.Page.GroupCanceled.md
index 5b45e70d1b5..dd3cd51ed45 100644
--- a/api/Visio.Page.GroupCanceled.md
+++ b/api/Visio.Page.GroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'GroupCanceled'(**_ByVal Selection As [IVSELECTION]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.Page.ID.md b/api/Visio.Page.ID.md
index 13199f63904..50c46eb4e18 100644
--- a/api/Visio.Page.ID.md
+++ b/api/Visio.Page.ID.md
@@ -23,7 +23,7 @@ Gets the ID of an object. Read-only.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Page.Import.md b/api/Visio.Page.Import.md
index d5c952c329c..f1b9e4b6f98 100644
--- a/api/Visio.Page.Import.md
+++ b/api/Visio.Page.Import.md
@@ -27,11 +27,11 @@ Imports a file into the current document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the file to import; must be a fully qualified path.|
-### Return Value
+### Return value
**Shape**
diff --git a/api/Visio.Page.Index.md b/api/Visio.Page.Index.md
index 2fc408235c3..2995f978b56 100644
--- a/api/Visio.Page.Index.md
+++ b/api/Visio.Page.Index.md
@@ -23,7 +23,7 @@ Gets or sets the ordinal position of a page in a **Pages** collection. Read/wri
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Page.InsertFromFile.md b/api/Visio.Page.InsertFromFile.md
index 2a6ec5d1d0f..a27d67e7947 100644
--- a/api/Visio.Page.InsertFromFile.md
+++ b/api/Visio.Page.InsertFromFile.md
@@ -27,12 +27,12 @@ Adds a linked or embedded object to a page, master, or group.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the file that contains the object to link or embed.|
| _Flags_|Required| **Integer**|Flags that influence how the object is inserted.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Page.InsertObject.md b/api/Visio.Page.InsertObject.md
index 11f3c3ebfef..646e3c8daed 100644
--- a/api/Visio.Page.InsertObject.md
+++ b/api/Visio.Page.InsertObject.md
@@ -27,12 +27,12 @@ Adds a new embedded object or ActiveX control to a page, master, or group.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ClassOrProgID_|Required| **String**|Identifies the type of object or control to create.|
| _Flags_|Required| **Integer**|Flags that influence the operation.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Page.Layers.md b/api/Visio.Page.Layers.md
index 0917df2952f..1183e2a8d17 100644
--- a/api/Visio.Page.Layers.md
+++ b/api/Visio.Page.Layers.md
@@ -23,7 +23,7 @@ Returns the **Layers** collection of an object. Read-only.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Layers
diff --git a/api/Visio.Page.Layout.md b/api/Visio.Page.Layout.md
index 5ea0dd29c08..638b182dff0 100644
--- a/api/Visio.Page.Layout.md
+++ b/api/Visio.Page.Layout.md
@@ -23,7 +23,7 @@ Lays out the shapes and/or reroutes the connectors for the page, master, group,
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.LayoutChangeDirection.md b/api/Visio.Page.LayoutChangeDirection.md
index 57c1eabea99..84d747f29c6 100644
--- a/api/Visio.Page.LayoutChangeDirection.md
+++ b/api/Visio.Page.LayoutChangeDirection.md
@@ -27,11 +27,11 @@ Revises the layout of a set of connected shapes on the page, by rotating or flip
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Direction_|Required| **[VisLayoutDirection](Visio.VisLayoutDirection.md)**|The action to take. See Remarks for possible values.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Page.LayoutIncremental.md b/api/Visio.Page.LayoutIncremental.md
index 33a92e9b011..da677bc3129 100644
--- a/api/Visio.Page.LayoutIncremental.md
+++ b/api/Visio.Page.LayoutIncremental.md
@@ -27,7 +27,7 @@ Makes small adjustments to the position of shapes on the drawing page to better
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _AlignOrSpace_|Required| **[VisLayoutIncrementalType](Visio.VisLayoutIncrementalType.md)**|The type of incremental layout action to perform--alignment, spacing, or both. See Remarks for possible values.|
| _AlignHorizontal_|Required| **[VisLayoutHorzAlignType](Visio.VisLayoutHorzAlignType.md)**|Indicates how Microsoft Visio aligns shapes horizontally when it aligns incrementally. See Remarks for possible values.|
@@ -36,7 +36,7 @@ Makes small adjustments to the position of shapes on the drawing page to better
| _SpaceVertical_|Required| **Double**|The edge-to-edge vertical spacing (except if layout style is circular). Must be greater than or equal to zero.|
| _UnitsNameOrCode_|Required| **[VisUnitCodes](Visio.visunitcodes.md)**|The units for the spacing values.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Page.LayoutRoutePassive.md b/api/Visio.Page.LayoutRoutePassive.md
index 3e2e869968d..06e94be7a78 100644
--- a/api/Visio.Page.LayoutRoutePassive.md
+++ b/api/Visio.Page.LayoutRoutePassive.md
@@ -23,7 +23,7 @@ Determines whether to enable advanced connector routing logic on the page. Read/
_expression_ A variable that represents a '[Page](Visio.Page.md)' object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.Page.LinkShapesToDataRows.md b/api/Visio.Page.LinkShapesToDataRows.md
index ae58ba733f0..951efb39e64 100644
--- a/api/Visio.Page.LinkShapesToDataRows.md
+++ b/api/Visio.Page.LinkShapesToDataRows.md
@@ -30,14 +30,14 @@ Links multiple rows in the specified data recordset, as specified by their data
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetID_|Required| **Long**|The ID of a data recordset contained in the current document containing the data to link to.|
| _DataRowIDs()_|Required| **Long**|An array of type **Long** of data row IDs of rows in the data recordset specified in DataRecordsetID, to be linked to the shapes specified in ShapeIDs().|
| _ShapeIDs()_|Required| **Long**| An array of type **Long** of shape IDs of shapes on the page to be linked to the data rows specified in DataRowIDs() in the data recordset specified in DataRecordsetID.|
| _ApplyDataGraphicAfterLink_|Optional| **Boolean**|Whether to apply the current data graphic to the linked shapes. See Remarks for more information.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.Name.md b/api/Visio.Page.Name.md
index 51ef51139bc..d8fd22a2dd7 100644
--- a/api/Visio.Page.Name.md
+++ b/api/Visio.Page.Name.md
@@ -23,7 +23,7 @@ Specifies the name of an object. Read-only.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Page.NameU.md b/api/Visio.Page.NameU.md
index 474f8acd5f8..fb07df346c9 100644
--- a/api/Visio.Page.NameU.md
+++ b/api/Visio.Page.NameU.md
@@ -23,7 +23,7 @@ Specifies the universal name of a **Page** object. Read/write.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Page.OLEObjects.md b/api/Visio.Page.OLEObjects.md
index 69bc810ac9c..ae9a7b3c4fb 100644
--- a/api/Visio.Page.OLEObjects.md
+++ b/api/Visio.Page.OLEObjects.md
@@ -23,7 +23,7 @@ Returns the **OLEObjects** collection of a page. Read-only.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
OLEObjects
diff --git a/api/Visio.Page.ObjectType.md b/api/Visio.Page.ObjectType.md
index 1062a20d3ec..1ec3cf45a42 100644
--- a/api/Visio.Page.ObjectType.md
+++ b/api/Visio.Page.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Page.OpenDrawWindow.md b/api/Visio.Page.OpenDrawWindow.md
index d2af40a6d82..03cffce42f8 100644
--- a/api/Visio.Page.OpenDrawWindow.md
+++ b/api/Visio.Page.OpenDrawWindow.md
@@ -23,7 +23,7 @@ Opens a new drawing window that displays a page.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.Page.OriginalPage.md b/api/Visio.Page.OriginalPage.md
index 200c949689c..564610a915a 100644
--- a/api/Visio.Page.OriginalPage.md
+++ b/api/Visio.Page.OriginalPage.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Page
diff --git a/api/Visio.Page.PageChanged.md b/api/Visio.Page.PageChanged.md
index 5e8c15afe23..d9b7d516ff9 100644
--- a/api/Visio.Page.PageChanged.md
+++ b/api/Visio.Page.PageChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'PageChanged'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that changed.|
diff --git a/api/Visio.Page.PageDeleteCanceled.md b/api/Visio.Page.PageDeleteCanceled.md
index 00a63d27554..44455fada5e 100644
--- a/api/Visio.Page.PageDeleteCanceled.md
+++ b/api/Visio.Page.PageDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'PageDeleteCanceled'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that was going to be deleted.|
diff --git a/api/Visio.Page.PageSheet.md b/api/Visio.Page.PageSheet.md
index 1da7cd7f055..a384eacc14f 100644
--- a/api/Visio.Page.PageSheet.md
+++ b/api/Visio.Page.PageSheet.md
@@ -23,7 +23,7 @@ Returns the page sheet (an object that represents the ShapeSheet spreadsheet) of
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Page.Paste.md b/api/Visio.Page.Paste.md
index f782c617a4b..33b995f0f68 100644
--- a/api/Visio.Page.Paste.md
+++ b/api/Visio.Page.Paste.md
@@ -27,11 +27,11 @@ Pastes the contents of the Clipboard into an object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Optional| **Variant**|Determines how shapes are translated during the paste operation.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.PasteSpecial.md b/api/Visio.Page.PasteSpecial.md
index abf087b533a..a381838e998 100644
--- a/api/Visio.Page.PasteSpecial.md
+++ b/api/Visio.Page.PasteSpecial.md
@@ -27,13 +27,13 @@ Inserts the contents of the Clipboard, allowing you to control the format of the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Format_|Required| **Long**|The internal Clipboard format.|
| _Link_|Optional| **Variant**| **True** to establish a link to the source of the pasted data; otherwise, **False** (the default). Ignored if the source data is not suitable for, or does not support, linking.|
| _DisplayAsIcon_|Optional| **Variant**| **True** to display the pasted data as an icon; otherwise, **False** (the default).|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.PasteToLocation.md b/api/Visio.Page.PasteToLocation.md
index 43b07be3833..317db1828d4 100644
--- a/api/Visio.Page.PasteToLocation.md
+++ b/api/Visio.Page.PasteToLocation.md
@@ -27,13 +27,13 @@ Pastes the shape to the specified location on the page.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xPos_|Required| **Double**|The x-coordinate at which to place the center of the object?s width or PinX, in inches.|
| _yPos_|Required| **Double**|The y-coordinate at which to place the center of the object?s height or PinY, in inches.|
| _Flags_|Required| **Long**|The default is zero.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Page.PersistsEvents.md b/api/Visio.Page.PersistsEvents.md
index 15c857af3c6..1c6940f87b8 100644
--- a/api/Visio.Page.PersistsEvents.md
+++ b/api/Visio.Page.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Page.Picture.md b/api/Visio.Page.Picture.md
index 3b17ab85f2a..0e16ae1bf2a 100644
--- a/api/Visio.Page.Picture.md
+++ b/api/Visio.Page.Picture.md
@@ -23,7 +23,7 @@ Returns a picture that represents an enhanced metafile (EMF) contained in a mast
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
IPictureDisp
diff --git a/api/Visio.Page.Print.md b/api/Visio.Page.Print.md
index 1f0979aba06..bdff52ff5e1 100644
--- a/api/Visio.Page.Print.md
+++ b/api/Visio.Page.Print.md
@@ -23,7 +23,7 @@ Prints the contents of an object to the default printer.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.PrintTile.md b/api/Visio.Page.PrintTile.md
index 0e45c7b3615..a4e44cf25cf 100644
--- a/api/Visio.Page.PrintTile.md
+++ b/api/Visio.Page.PrintTile.md
@@ -27,11 +27,11 @@ Prints a single tile of a drawing page.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nTile_|Required| **Long**|The number of tiles.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.PrintTileCount.md b/api/Visio.Page.PrintTileCount.md
index 4f53ad69ab1..e794454752c 100644
--- a/api/Visio.Page.PrintTileCount.md
+++ b/api/Visio.Page.PrintTileCount.md
@@ -23,7 +23,7 @@ Returns the number of print tiles for a drawing page. Read-only.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Page.QueryCancelConvertToGroup.md b/api/Visio.Page.QueryCancelConvertToGroup.md
index 00d4b1be2a3..5c895af8cbf 100644
--- a/api/Visio.Page.QueryCancelConvertToGroup.md
+++ b/api/Visio.Page.QueryCancelConvertToGroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelConvertToGroup'(**_ByVal Selection As [IV
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be converted to a group.|
diff --git a/api/Visio.Page.QueryCancelGroup.md b/api/Visio.Page.QueryCancelGroup.md
index 8308bfb2021..ab02ba1ec2d 100644
--- a/api/Visio.Page.QueryCancelGroup.md
+++ b/api/Visio.Page.QueryCancelGroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelGroup'(**_ByVal Selection As [IVSELECTION
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be grouped.|
diff --git a/api/Visio.Page.QueryCancelPageDelete.md b/api/Visio.Page.QueryCancelPageDelete.md
index f965d2934c4..9b51a7117d4 100644
--- a/api/Visio.Page.QueryCancelPageDelete.md
+++ b/api/Visio.Page.QueryCancelPageDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelPageDelete'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that is going to be deleted.|
diff --git a/api/Visio.Page.QueryCancelSelectionDelete.md b/api/Visio.Page.QueryCancelSelectionDelete.md
index 98c854f91d9..9587326b464 100644
--- a/api/Visio.Page.QueryCancelSelectionDelete.md
+++ b/api/Visio.Page.QueryCancelSelectionDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelSelectionDelete'(**_ByVal Selection As [I
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be deleted.|
diff --git a/api/Visio.Page.QueryCancelUngroup.md b/api/Visio.Page.QueryCancelUngroup.md
index f599108e078..daf14ed56c9 100644
--- a/api/Visio.Page.QueryCancelUngroup.md
+++ b/api/Visio.Page.QueryCancelUngroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelUngroup'(**_ByVal Selection As [IVSELECTI
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be ungrouped.|
diff --git a/api/Visio.Page.ResizeToFitContents.md b/api/Visio.Page.ResizeToFitContents.md
index 88cd6375750..7ee44e269e5 100644
--- a/api/Visio.Page.ResizeToFitContents.md
+++ b/api/Visio.Page.ResizeToFitContents.md
@@ -23,7 +23,7 @@ Resizes the page, or the master's page, to fit tightly around the shapes or mast
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.ReviewerID.md b/api/Visio.Page.ReviewerID.md
index 94b5db5631e..0f6f0bdefa7 100644
--- a/api/Visio.Page.ReviewerID.md
+++ b/api/Visio.Page.ReviewerID.md
@@ -23,7 +23,7 @@ Gets the reviewer ID associated with the markup overlay. Read-only.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Page.SelectionAdded.md b/api/Visio.Page.SelectionAdded.md
index 4587eaa30ff..5783f2f9ae9 100644
--- a/api/Visio.Page.SelectionAdded.md
+++ b/api/Visio.Page.SelectionAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'SelectionAdded'(**_ByVal Selection As [IVSELECTION]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was added to the document.|
diff --git a/api/Visio.Page.SelectionDeleteCanceled.md b/api/Visio.Page.SelectionDeleteCanceled.md
index 2fdbe6bea14..47cdb7aaace 100644
--- a/api/Visio.Page.SelectionDeleteCanceled.md
+++ b/api/Visio.Page.SelectionDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'SelectionDeleteCanceled'(**_ByVal Selection As [IVSE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be deleted.|
diff --git a/api/Visio.Page.SetFormulas.md b/api/Visio.Page.SetFormulas.md
index 853855b1140..21eac103c59 100644
--- a/api/Visio.Page.SetFormulas.md
+++ b/api/Visio.Page.SetFormulas.md
@@ -27,13 +27,13 @@ Sets the formulas of one or more cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**|Stream identifying cells to be modified.|
| _formulaArray()_|Required| **Variant**|Formulas to be assigned to identified cells.|
| _Flags_|Required| **Integer**|Flags that influence the behavior of **SetFormulas** .|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Page.SetResults.md b/api/Visio.Page.SetResults.md
index 183bb6b0e90..630838a347f 100644
--- a/api/Visio.Page.SetResults.md
+++ b/api/Visio.Page.SetResults.md
@@ -27,14 +27,14 @@ Sets the results or formulas of one or more cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**|An array identifying cells to be modified.|
| _UnitsNamesOrCodes()_|Required| **Variant**|Measurement units to be attributed to entries in results array.|
| _resultArray()_|Required| **Variant**|Results or formulas to be assigned to identified cells.|
| _Flags_|Required| **Integer**|Flags that influence the behavior of **SetResults** .|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Page.ShapeAdded.md b/api/Visio.Page.ShapeAdded.md
index c824233b7f0..ddf1d222bba 100644
--- a/api/Visio.Page.ShapeAdded.md
+++ b/api/Visio.Page.ShapeAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeAdded'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape or group of shapes that was added to the document.|
diff --git a/api/Visio.Page.ShapeChanged.md b/api/Visio.Page.ShapeChanged.md
index 94fd0d8a092..7336715cc44 100644
--- a/api/Visio.Page.ShapeChanged.md
+++ b/api/Visio.Page.ShapeChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose property changed.|
diff --git a/api/Visio.Page.ShapeDataGraphicChanged.md b/api/Visio.Page.ShapeDataGraphicChanged.md
index 79a7a46d673..34c89e664f9 100644
--- a/api/Visio.Page.ShapeDataGraphicChanged.md
+++ b/api/Visio.Page.ShapeDataGraphicChanged.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'ShapeDataGraphicChanged'(**_ByVal Shape As IVSHAPE_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape to which the data graphic was applied or from which it was deleted.|
diff --git a/api/Visio.Page.ShapeExitedTextEdit.md b/api/Visio.Page.ShapeExitedTextEdit.md
index b96e32dc72d..e56cf32a9c4 100644
--- a/api/Visio.Page.ShapeExitedTextEdit.md
+++ b/api/Visio.Page.ShapeExitedTextEdit.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeExitedTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that was closed for text editing.|
diff --git a/api/Visio.Page.ShapeIDsToUniqueIDs.md b/api/Visio.Page.ShapeIDsToUniqueIDs.md
index 7628513df4c..f3dbd25f249 100644
--- a/api/Visio.Page.ShapeIDsToUniqueIDs.md
+++ b/api/Visio.Page.ShapeIDsToUniqueIDs.md
@@ -27,13 +27,13 @@ Returns an array of unique IDs of shapes on the page, as specified by their shap
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapeIDs()_|Required| **Long**|An array of type **Long** of shape IDs corresponding to a set of shapes on the active drawing page.|
| _UniqueIDArgs_|Required| **VisUniqueIDArgs**|Gets, deletes, or makes the unique ID of a **Shape** object. See Remarks for possible values.|
| _GUIDs()_|Required| **String**|Out parameter. An empty array that the method fills with unique IDs of type **String** corresponding to the shapes specified in _ShapeIDs()_|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Page.ShapeLinkAdded.md b/api/Visio.Page.ShapeLinkAdded.md
index 43ec1cc661e..6a5f3e95535 100644
--- a/api/Visio.Page.ShapeLinkAdded.md
+++ b/api/Visio.Page.ShapeLinkAdded.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'ShapeLinkAdded'(**_ByVal Shape As [IVSHAPE]_** , **_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is linked to data.|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset containing the data row linked to the shape.|
diff --git a/api/Visio.Page.ShapeLinkDeleted.md b/api/Visio.Page.ShapeLinkDeleted.md
index 2a11205145b..e214291457e 100644
--- a/api/Visio.Page.ShapeLinkDeleted.md
+++ b/api/Visio.Page.ShapeLinkDeleted.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'ShapeLinkDeleted'(**_ByVal Shape As [IVSHAPE]_** , *
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose link to a data row was broken.|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset containing the data row that was linked to the shape.|
diff --git a/api/Visio.Page.ShapeParentChanged.md b/api/Visio.Page.ShapeParentChanged.md
index 306e2ba55c1..ef5d75f8831 100644
--- a/api/Visio.Page.ShapeParentChanged.md
+++ b/api/Visio.Page.ShapeParentChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeParentChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose parent changed.|
diff --git a/api/Visio.Page.Shapes.md b/api/Visio.Page.Shapes.md
index 16a8356604d..5af10aee63a 100644
--- a/api/Visio.Page.Shapes.md
+++ b/api/Visio.Page.Shapes.md
@@ -23,7 +23,7 @@ Returns the **Shapes** collection for a page, master, or group. Read-only.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Shapes
diff --git a/api/Visio.Page.SpatialSearch.md b/api/Visio.Page.SpatialSearch.md
index 883cddab2f7..a34e7b7efbb 100644
--- a/api/Visio.Page.SpatialSearch.md
+++ b/api/Visio.Page.SpatialSearch.md
@@ -27,7 +27,7 @@ Returns a **Selection** object whose shapes meet certain criteria in relation t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _x_|Required| **Double**|The x-coordinate.|
| _y_|Required| **Double**|The y-coordinate.|
@@ -35,7 +35,7 @@ Returns a **Selection** object whose shapes meet certain criteria in relation t
| _Tolerance_|Required| **Double**|A distance in internal drawing units with respect to the coordinate space.|
| _Flags_|Required| **Integer**|Flags that influence the result.|
-### Return Value
+### Return value
Selection
diff --git a/api/Visio.Page.SplitConnector.md b/api/Visio.Page.SplitConnector.md
index ac9a06bffaa..8917797e525 100644
--- a/api/Visio.Page.SplitConnector.md
+++ b/api/Visio.Page.SplitConnector.md
@@ -27,12 +27,12 @@ Splits the specified connector with the specified shape. Returns the new duplica
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ConnectorToSplit_|Required| **[Shape](Visio.Shape.md)**|The connector to split. Must be a routable one-dimensional (1-D) connector.|
| _Shape_|Required| **Shape**|The shape to use to split the connector. Must be a two-dimensional (2-D) shape.|
-### Return Value
+### Return value
**Shape**
diff --git a/api/Visio.Page.Stat.md b/api/Visio.Page.Stat.md
index 319d1a00128..d528c75bea9 100644
--- a/api/Visio.Page.Stat.md
+++ b/api/Visio.Page.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Page.TextChanged.md b/api/Visio.Page.TextChanged.md
index f8e74b0e3a3..5a99156158c 100644
--- a/api/Visio.Page.TextChanged.md
+++ b/api/Visio.Page.TextChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'TextChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose text changed.|
diff --git a/api/Visio.Page.ThemeColors.md b/api/Visio.Page.ThemeColors.md
index 5decd07953e..be14642be08 100644
--- a/api/Visio.Page.ThemeColors.md
+++ b/api/Visio.Page.ThemeColors.md
@@ -23,7 +23,7 @@ Gets or sets the current theme colors for the page. Read/write.
_expression_ An expression that returns a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Variant
diff --git a/api/Visio.Page.ThemeEffects.md b/api/Visio.Page.ThemeEffects.md
index 1aceb7e8040..66b7d639c58 100644
--- a/api/Visio.Page.ThemeEffects.md
+++ b/api/Visio.Page.ThemeEffects.md
@@ -23,7 +23,7 @@ Gets or sets the current theme effect for the page. Read/write.
_expression_ An expression that returns a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
Variant
diff --git a/api/Visio.Page.Type.md b/api/Visio.Page.Type.md
index b71b6809aaa..e40811c6aa7 100644
--- a/api/Visio.Page.Type.md
+++ b/api/Visio.Page.Type.md
@@ -23,7 +23,7 @@ Returns the type of the object. Read-only.
_expression_ A variable that represents a [Page](./Visio.Page.md) object.
-### Return Value
+### Return value
VisPageTypes
diff --git a/api/Visio.Page.UngroupCanceled.md b/api/Visio.Page.UngroupCanceled.md
index cc47969b59f..d3376d5b5c9 100644
--- a/api/Visio.Page.UngroupCanceled.md
+++ b/api/Visio.Page.UngroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'UngroupCanceled'(**_ByVal Selection As [IVSELECTION]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be ungrouped.|
diff --git a/api/Visio.Page.UniqueIDsToShapeIDs.md b/api/Visio.Page.UniqueIDsToShapeIDs.md
index 51b9852f066..c42fdb187cb 100644
--- a/api/Visio.Page.UniqueIDsToShapeIDs.md
+++ b/api/Visio.Page.UniqueIDsToShapeIDs.md
@@ -30,12 +30,12 @@ Returns an array of shape IDs of shapes on the page, as specifed by their unique
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _GUIDs()_|Required| **String**|An array of unique IDs of type **String** of shapes on the page.|
| _ShapeIDs()_|Required| **Long**|Out parameter. An empty array that the method fills with shape IDs of type **Long** corresponding to the shapes specified in GUIDs()|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.PageColor.md b/api/Visio.PageColor.md
index fc1f60f8f4e..6424955b6d5 100644
--- a/api/Visio.PageColor.md
+++ b/api/Visio.PageColor.md
@@ -20,7 +20,7 @@ Gets or sets the color of the page in the current drawing that is open in Micros
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**[OLE_COLOR]**
diff --git a/api/Visio.PageCount.md b/api/Visio.PageCount.md
index ca348678cfb..4e4433c6421 100644
--- a/api/Visio.PageCount.md
+++ b/api/Visio.PageCount.md
@@ -20,7 +20,7 @@ Gets the number of pages in the current document that is open in Microsoft Visio
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.PageIDToIndex.md b/api/Visio.PageIDToIndex.md
index c481bf54484..9f0d00320b5 100644
--- a/api/Visio.PageIDToIndex.md
+++ b/api/Visio.PageIDToIndex.md
@@ -24,11 +24,11 @@ Gets the index of the specified page in the collection of pages in the drawing t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PageID|Required| **Long**|The ID of the page whose index you want to determine.|
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.PageIndexToID.md b/api/Visio.PageIndexToID.md
index 45ef96fb820..3c71d36c5cf 100644
--- a/api/Visio.PageIndexToID.md
+++ b/api/Visio.PageIndexToID.md
@@ -24,11 +24,11 @@ Gets the ID of the page at the specified index in the collection of pages in the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PageIndex|Required| **Long**|The index of the page whose ID you want to get.|
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.PageName.md b/api/Visio.PageName.md
index 58465aaa255..8a2ef630448 100644
--- a/api/Visio.PageName.md
+++ b/api/Visio.PageName.md
@@ -24,11 +24,11 @@ Gets the name of the specified page in the drawing that is open in Microsoft Vis
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PageIndex|Required| **Long**|The index of the page whose name you want to get.|
-### Return Value
+### Return value
String
diff --git a/api/Visio.PageSizingBehavior.md b/api/Visio.PageSizingBehavior.md
index c8bbebb7fe5..47abeda2ab6 100644
--- a/api/Visio.PageSizingBehavior.md
+++ b/api/Visio.PageSizingBehavior.md
@@ -23,7 +23,7 @@ Specifies how drawing pages and shapes in the Microsoft Visio Drawing Control re
_expression_ A variable that represents a [DrawingControl](./Visio.DrawingControl.md) object.
-### Return Value
+### Return value
VisPageSizingBehaviors
diff --git a/api/Visio.PageTabsVisible.md b/api/Visio.PageTabsVisible.md
index 4952d2fd544..7bbd1884e81 100644
--- a/api/Visio.PageTabsVisible.md
+++ b/api/Visio.PageTabsVisible.md
@@ -20,7 +20,7 @@ Gets or sets a value that indicates whether page tabs are visible in Microsoft V
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.PageTitle.md b/api/Visio.PageTitle.md
index e7e1ab27976..963c3ef614c 100644
--- a/api/Visio.PageTitle.md
+++ b/api/Visio.PageTitle.md
@@ -20,7 +20,7 @@ Specifies the name of the Web page as it appears in the browser's title bar. Rea
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.PageVisible.md b/api/Visio.PageVisible.md
index 15b3e9f8b47..d186cc0942d 100644
--- a/api/Visio.PageVisible.md
+++ b/api/Visio.PageVisible.md
@@ -20,7 +20,7 @@ Gets or sets a value that indicates whether the drawing page is visible in Micro
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.Pages.Add.md b/api/Visio.Pages.Add.md
index 3edfcb0a8b5..08d7ebd1372 100644
--- a/api/Visio.Pages.Add.md
+++ b/api/Visio.Pages.Add.md
@@ -23,7 +23,7 @@ Adds a new object to a collection.
_expression_ A variable that represents a [Pages](./Visio.Pages.md) object.
-### Return Value
+### Return value
Page
diff --git a/api/Visio.Pages.Application.md b/api/Visio.Pages.Application.md
index cb8b5cd2f1c..2f4fc80b763 100644
--- a/api/Visio.Pages.Application.md
+++ b/api/Visio.Pages.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Pages](./Visio.Pages.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Pages.BeforePageDelete.md b/api/Visio.Pages.BeforePageDelete.md
index 451c505460b..22d351069a4 100644
--- a/api/Visio.Pages.BeforePageDelete.md
+++ b/api/Visio.Pages.BeforePageDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforePageDelete'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that is going to be deleted.|
diff --git a/api/Visio.Pages.BeforeSelectionDelete.md b/api/Visio.Pages.BeforeSelectionDelete.md
index 4ecdcd638f6..6e75e6f4d31 100644
--- a/api/Visio.Pages.BeforeSelectionDelete.md
+++ b/api/Visio.Pages.BeforeSelectionDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeSelectionDelete'(**_ByVal Selection As [IVSELE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selected objects that are going to be deleted.|
diff --git a/api/Visio.Pages.BeforeShapeDelete.md b/api/Visio.Pages.BeforeShapeDelete.md
index 92a866a565f..a8581c2c87a 100644
--- a/api/Visio.Pages.BeforeShapeDelete.md
+++ b/api/Visio.Pages.BeforeShapeDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeShapeDelete'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be deleted.|
diff --git a/api/Visio.Pages.BeforeShapeTextEdit.md b/api/Visio.Pages.BeforeShapeTextEdit.md
index b1faf0c6172..d77e19f18cb 100644
--- a/api/Visio.Pages.BeforeShapeTextEdit.md
+++ b/api/Visio.Pages.BeforeShapeTextEdit.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeShapeTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be opened for text editing.|
diff --git a/api/Visio.Pages.CalloutRelationshipAdded.md b/api/Visio.Pages.CalloutRelationshipAdded.md
index 241feb160ae..d2975292d78 100644
--- a/api/Visio.Pages.CalloutRelationshipAdded.md
+++ b/api/Visio.Pages.CalloutRelationshipAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'CalloutRelationshipAdded'(**_By Val ShapePair As Rel
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the new callout shape-pair relationship.|
diff --git a/api/Visio.Pages.CalloutRelationshipDeleted.md b/api/Visio.Pages.CalloutRelationshipDeleted.md
index 896f13037d6..345d0f5bd55 100644
--- a/api/Visio.Pages.CalloutRelationshipDeleted.md
+++ b/api/Visio.Pages.CalloutRelationshipDeleted.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'CalloutRelationshipDeleted'(**_By Val ShapePair As R
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the callout shape-pair relationship.|
diff --git a/api/Visio.Pages.CellChanged.md b/api/Visio.Pages.CellChanged.md
index f10898ed81b..1e0e0c0bcdf 100644
--- a/api/Visio.Pages.CellChanged.md
+++ b/api/Visio.Pages.CellChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'CellChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose value has changed.|
diff --git a/api/Visio.Pages.ConnectionsAdded.md b/api/Visio.Pages.ConnectionsAdded.md
index 17f4ee68636..43e9ae7cbd2 100644
--- a/api/Visio.Pages.ConnectionsAdded.md
+++ b/api/Visio.Pages.ConnectionsAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConnectionsAdded'(**_ByVal Connects As [IVCONNECTS]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Connects_|Required| **[IVCONNECTS]**|The connections that were established.|
diff --git a/api/Visio.Pages.ConnectionsDeleted.md b/api/Visio.Pages.ConnectionsDeleted.md
index cce286f8e9b..7f25f1e3c73 100644
--- a/api/Visio.Pages.ConnectionsDeleted.md
+++ b/api/Visio.Pages.ConnectionsDeleted.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConnectionsDeleted'(**_ByVal Connects As [IVCONNECTS
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Connects_|Required| **[IVCONNECTS]**|The connections that have been removed.|
diff --git a/api/Visio.Pages.ContainerRelationshipAdded.md b/api/Visio.Pages.ContainerRelationshipAdded.md
index 80f12efaac1..d18f3aa5b47 100644
--- a/api/Visio.Pages.ContainerRelationshipAdded.md
+++ b/api/Visio.Pages.ContainerRelationshipAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ContainerRelationshipAdded'(**_By Val ShapePair As R
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the new container shape-pair relationship.|
diff --git a/api/Visio.Pages.ContainerRelationshipDeleted.md b/api/Visio.Pages.ContainerRelationshipDeleted.md
index 8d0c8c222c7..4fd66494687 100644
--- a/api/Visio.Pages.ContainerRelationshipDeleted.md
+++ b/api/Visio.Pages.ContainerRelationshipDeleted.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ContainerRelationshipDeleted'(**_By Val ShapePair As
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapePair_|Required| **[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)**|An object that represents the container shape-pair relationship.|
diff --git a/api/Visio.Pages.ConvertToGroupCanceled.md b/api/Visio.Pages.ConvertToGroupCanceled.md
index 07520be7b41..1123bc87975 100644
--- a/api/Visio.Pages.ConvertToGroupCanceled.md
+++ b/api/Visio.Pages.ConvertToGroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConvertToGroupCanceled'(**_ByVal Selection As [IVSEL
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.Pages.Count.md b/api/Visio.Pages.Count.md
index dd3ef33ffee..e607a8e24f0 100644
--- a/api/Visio.Pages.Count.md
+++ b/api/Visio.Pages.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Pages](./Visio.Pages.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Pages.Document.md b/api/Visio.Pages.Document.md
index ea2848a2022..0a23fa1f7ea 100644
--- a/api/Visio.Pages.Document.md
+++ b/api/Visio.Pages.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Pages](./Visio.Pages.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Pages.EventList.md b/api/Visio.Pages.EventList.md
index 51d8c46eea9..9b4846e0eb8 100644
--- a/api/Visio.Pages.EventList.md
+++ b/api/Visio.Pages.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Pages](./Visio.Pages.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Pages.FormulaChanged.md b/api/Visio.Pages.FormulaChanged.md
index aa86126b16e..4d54933c6d9 100644
--- a/api/Visio.Pages.FormulaChanged.md
+++ b/api/Visio.Pages.FormulaChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'FormulaChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose formula changed.|
diff --git a/api/Visio.Pages.GetNames.md b/api/Visio.Pages.GetNames.md
index 2ea410090f4..593b38317c6 100644
--- a/api/Visio.Pages.GetNames.md
+++ b/api/Visio.Pages.GetNames.md
@@ -27,11 +27,11 @@ Returns the names of all items in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeSpecificNameArray()_|Required| **String**|Out parameter. An array that receives names of members of the indicated object.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Pages.GetNamesU.md b/api/Visio.Pages.GetNamesU.md
index 3a5bc83f807..7531b58c0ae 100644
--- a/api/Visio.Pages.GetNamesU.md
+++ b/api/Visio.Pages.GetNamesU.md
@@ -27,11 +27,11 @@ Returns the universal names of all items in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeIndependentNameArray()_|Required| **String**|Out parameter. An array that receives the names of members of the indicated object.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Pages.GroupCanceled.md b/api/Visio.Pages.GroupCanceled.md
index 7a6291a901f..579092eb382 100644
--- a/api/Visio.Pages.GroupCanceled.md
+++ b/api/Visio.Pages.GroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'GroupCanceled'(**_ByVal Selection As [IVSELECTION]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.Pages.Item.md b/api/Visio.Pages.Item.md
index b0d9a61bb03..dcdbda0e62b 100644
--- a/api/Visio.Pages.Item.md
+++ b/api/Visio.Pages.Item.md
@@ -27,11 +27,11 @@ Returns an item from a collection. The **Item** property is the default propert
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameUIDOrIndex_|Required| **Variant**|Contains the name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
Page
diff --git a/api/Visio.Pages.ItemFromID.md b/api/Visio.Pages.ItemFromID.md
index b5d7fab7418..5f45cbd309a 100644
--- a/api/Visio.Pages.ItemFromID.md
+++ b/api/Visio.Pages.ItemFromID.md
@@ -27,11 +27,11 @@ Returns an item of a collection using the ID of the item. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nID_|Required| **Long**|The ID of the object to retrieve.|
-### Return Value
+### Return value
Page
diff --git a/api/Visio.Pages.ItemU.md b/api/Visio.Pages.ItemU.md
index 7b858c3cff0..26b9a8d871b 100644
--- a/api/Visio.Pages.ItemU.md
+++ b/api/Visio.Pages.ItemU.md
@@ -27,11 +27,11 @@ Returns an object from a collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|Contains the universal name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
Page
diff --git a/api/Visio.Pages.ObjectType.md b/api/Visio.Pages.ObjectType.md
index 8985aab8d2e..c1c1f47eb70 100644
--- a/api/Visio.Pages.ObjectType.md
+++ b/api/Visio.Pages.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Pages](./Visio.Pages.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Pages.PageAdded.md b/api/Visio.Pages.PageAdded.md
index baddd956553..1603bf07937 100644
--- a/api/Visio.Pages.PageAdded.md
+++ b/api/Visio.Pages.PageAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'PageAdded'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that was added.|
diff --git a/api/Visio.Pages.PageChanged.md b/api/Visio.Pages.PageChanged.md
index a6222e71345..97a14bcab82 100644
--- a/api/Visio.Pages.PageChanged.md
+++ b/api/Visio.Pages.PageChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'PageChanged'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that changed.|
diff --git a/api/Visio.Pages.PageDeleteCanceled.md b/api/Visio.Pages.PageDeleteCanceled.md
index bc6bef6d33c..7943c5a5bf5 100644
--- a/api/Visio.Pages.PageDeleteCanceled.md
+++ b/api/Visio.Pages.PageDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'PageDeleteCanceled'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that was going to be deleted.|
diff --git a/api/Visio.Pages.PersistsEvents.md b/api/Visio.Pages.PersistsEvents.md
index 71e1f848721..a6807cee942 100644
--- a/api/Visio.Pages.PersistsEvents.md
+++ b/api/Visio.Pages.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Pages](./Visio.Pages.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Pages.QueryCancelConvertToGroup.md b/api/Visio.Pages.QueryCancelConvertToGroup.md
index 1289f486e79..4c7cfd9cc31 100644
--- a/api/Visio.Pages.QueryCancelConvertToGroup.md
+++ b/api/Visio.Pages.QueryCancelConvertToGroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelConvertToGroup'(**_ByVal Selection As [IV
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be converted to a group.|
diff --git a/api/Visio.Pages.QueryCancelGroup.md b/api/Visio.Pages.QueryCancelGroup.md
index 9a0119849e5..de73bc84a39 100644
--- a/api/Visio.Pages.QueryCancelGroup.md
+++ b/api/Visio.Pages.QueryCancelGroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelGroup'(**_ByVal Selection As [IVSELECTION
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be grouped.|
diff --git a/api/Visio.Pages.QueryCancelPageDelete.md b/api/Visio.Pages.QueryCancelPageDelete.md
index 2d4b0d5a761..e14e7a5f6d2 100644
--- a/api/Visio.Pages.QueryCancelPageDelete.md
+++ b/api/Visio.Pages.QueryCancelPageDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelPageDelete'(**_ByVal Page As [IVPAGE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[IVPAGE]**|The page that is going to be deleted.|
diff --git a/api/Visio.Pages.QueryCancelSelectionDelete.md b/api/Visio.Pages.QueryCancelSelectionDelete.md
index f559bbec507..fb711c8b7f3 100644
--- a/api/Visio.Pages.QueryCancelSelectionDelete.md
+++ b/api/Visio.Pages.QueryCancelSelectionDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelSelectionDelete'(**_ByVal Selection As [I
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be deleted.|
diff --git a/api/Visio.Pages.QueryCancelUngroup.md b/api/Visio.Pages.QueryCancelUngroup.md
index d76242c2572..a85f5b779a4 100644
--- a/api/Visio.Pages.QueryCancelUngroup.md
+++ b/api/Visio.Pages.QueryCancelUngroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelUngroup'(**_ByVal Selection As [IVSELECTI
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be ungrouped.|
diff --git a/api/Visio.Pages.SelectionAdded.md b/api/Visio.Pages.SelectionAdded.md
index f3d8dabd2c6..14859913faf 100644
--- a/api/Visio.Pages.SelectionAdded.md
+++ b/api/Visio.Pages.SelectionAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'SelectionAdded'(**_ByVal Selection As [IVSELECTION]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was added to the document.|
diff --git a/api/Visio.Pages.SelectionDeleteCanceled.md b/api/Visio.Pages.SelectionDeleteCanceled.md
index d0fdad2ede4..17dc67fc9d0 100644
--- a/api/Visio.Pages.SelectionDeleteCanceled.md
+++ b/api/Visio.Pages.SelectionDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'SelectionDeleteCanceled'(**_ByVal Selection As [IVSE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be deleted.|
diff --git a/api/Visio.Pages.ShapeAdded.md b/api/Visio.Pages.ShapeAdded.md
index c79f1945fca..ee73b3d3480 100644
--- a/api/Visio.Pages.ShapeAdded.md
+++ b/api/Visio.Pages.ShapeAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeAdded'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape or group of shapes that was added to the document.|
diff --git a/api/Visio.Pages.ShapeChanged.md b/api/Visio.Pages.ShapeChanged.md
index 24453970358..4defadb1a34 100644
--- a/api/Visio.Pages.ShapeChanged.md
+++ b/api/Visio.Pages.ShapeChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose property changed.|
diff --git a/api/Visio.Pages.ShapeDataGraphicChanged.md b/api/Visio.Pages.ShapeDataGraphicChanged.md
index 84696344120..2afabac407e 100644
--- a/api/Visio.Pages.ShapeDataGraphicChanged.md
+++ b/api/Visio.Pages.ShapeDataGraphicChanged.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'ShapeDataGraphicChanged'(**_ByVal Shape As IVSHAPE_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape to which the data graphic was applied or from which it was deleted.|
diff --git a/api/Visio.Pages.ShapeExitedTextEdit.md b/api/Visio.Pages.ShapeExitedTextEdit.md
index 3601a2ee29a..c06c4382262 100644
--- a/api/Visio.Pages.ShapeExitedTextEdit.md
+++ b/api/Visio.Pages.ShapeExitedTextEdit.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeExitedTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that was closed for text editing.|
diff --git a/api/Visio.Pages.ShapeLinkAdded.md b/api/Visio.Pages.ShapeLinkAdded.md
index 8993f32248f..91288a557ce 100644
--- a/api/Visio.Pages.ShapeLinkAdded.md
+++ b/api/Visio.Pages.ShapeLinkAdded.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'ShapeLinkAdded'(**_ByVal Shape As [IVSHAPE]_** , **_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is linked to data.|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset containing the data row linked to the shape.|
diff --git a/api/Visio.Pages.ShapeLinkDeleted.md b/api/Visio.Pages.ShapeLinkDeleted.md
index dc2e97cccc8..933ea3a2cd8 100644
--- a/api/Visio.Pages.ShapeLinkDeleted.md
+++ b/api/Visio.Pages.ShapeLinkDeleted.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'ShapeLinkDeleted'(**_ByVal Shape As [IVSHAPE]_** , *
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose link to a data row was broken.|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset containing the data row that was linked to the shape.|
diff --git a/api/Visio.Pages.ShapeParentChanged.md b/api/Visio.Pages.ShapeParentChanged.md
index 2dec0fff062..61608fd025c 100644
--- a/api/Visio.Pages.ShapeParentChanged.md
+++ b/api/Visio.Pages.ShapeParentChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeParentChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose parent changed.|
diff --git a/api/Visio.Pages.Stat.md b/api/Visio.Pages.Stat.md
index 7145a806c1d..8d78360b457 100644
--- a/api/Visio.Pages.Stat.md
+++ b/api/Visio.Pages.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Pages](./Visio.Pages.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Pages.TextChanged.md b/api/Visio.Pages.TextChanged.md
index 6cd7a072dfe..af481198e99 100644
--- a/api/Visio.Pages.TextChanged.md
+++ b/api/Visio.Pages.TextChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'TextChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose text changed.|
diff --git a/api/Visio.Pages.UngroupCanceled.md b/api/Visio.Pages.UngroupCanceled.md
index 7db01000392..38029099734 100644
--- a/api/Visio.Pages.UngroupCanceled.md
+++ b/api/Visio.Pages.UngroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'UngroupCanceled'(**_ByVal Selection As [IVSELECTION]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be ungrouped.|
diff --git a/api/Visio.Pan.md b/api/Visio.Pan.md
index e790116e25c..60bf8b3fbfa 100644
--- a/api/Visio.Pan.md
+++ b/api/Visio.Pan.md
@@ -24,12 +24,12 @@ Moves the page by the specified coordinate values, in pixels, in Microsoft Visio
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|DeltaX|Required| **Long**|The amount, in pixels, to move horizontally.|
|DeltaY|Required| **Long**|The amount, in pixels, to move vertically.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.PanAndZoom.md b/api/Visio.PanAndZoom.md
index 132d3602b5f..33439712c09 100644
--- a/api/Visio.PanAndZoom.md
+++ b/api/Visio.PanAndZoom.md
@@ -20,7 +20,7 @@ Determines whether the **Pan and Zoom** control for zooming in and out of the p
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ParentShape.md b/api/Visio.ParentShape.md
index 83b00e5b0de..941b9b9508e 100644
--- a/api/Visio.ParentShape.md
+++ b/api/Visio.ParentShape.md
@@ -24,11 +24,11 @@ Gets the index number of the parent shape of the specified shape in the drawing
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ShapeIndex|Required| **Long**|The index of the shape whose parent you want to find.|
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.Path.Application.md b/api/Visio.Path.Application.md
index 257bcb6027f..5c0db3fae86 100644
--- a/api/Visio.Path.Application.md
+++ b/api/Visio.Path.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Path](./Visio.Path.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Path.Closed.md b/api/Visio.Path.Closed.md
index d07c1642199..b82763be031 100644
--- a/api/Visio.Path.Closed.md
+++ b/api/Visio.Path.Closed.md
@@ -23,7 +23,7 @@ Determines if an object is closed (that is, if its begin point coincides with it
_expression_ A variable that represents a [Path](./Visio.Path.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Path.Count.md b/api/Visio.Path.Count.md
index 2eaa0f47309..d63a782f57f 100644
--- a/api/Visio.Path.Count.md
+++ b/api/Visio.Path.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Path](./Visio.Path.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Path.Item.md b/api/Visio.Path.Item.md
index 1531482df24..657023ba006 100644
--- a/api/Visio.Path.Item.md
+++ b/api/Visio.Path.Item.md
@@ -27,11 +27,11 @@ Returns an object from a collection. The **Item** property is the default prope
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Contains the index of the object to retrieve.|
-### Return Value
+### Return value
Curve
diff --git a/api/Visio.Path.ObjectType.md b/api/Visio.Path.ObjectType.md
index 5d35f8cea4d..9185ced83f6 100644
--- a/api/Visio.Path.ObjectType.md
+++ b/api/Visio.Path.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Path](./Visio.Path.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Path.Points.md b/api/Visio.Path.Points.md
index ec2f28791e6..9a76d52c5db 100644
--- a/api/Visio.Path.Points.md
+++ b/api/Visio.Path.Points.md
@@ -27,12 +27,12 @@ Returns an array of points that defines a polyline that approximates a **Path**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Tolerance_|Required| **Double**|Specifies how close the returned array of points must approximate the true path.|
| _xyArray()_|Required| **Double**|Out parameter. Returns an array of alternating _x_ and _y_ values specifying points along a path's or curve's stroke.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Paths.Application.md b/api/Visio.Paths.Application.md
index 001520ccf50..d1ab196e7c9 100644
--- a/api/Visio.Paths.Application.md
+++ b/api/Visio.Paths.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Paths](./Visio.Paths.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Paths.Count.md b/api/Visio.Paths.Count.md
index a0cff922e00..a75cdcdf3ea 100644
--- a/api/Visio.Paths.Count.md
+++ b/api/Visio.Paths.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Paths](./Visio.Paths.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Paths.Item.md b/api/Visio.Paths.Item.md
index d17b44124e2..2f683d6ebc6 100644
--- a/api/Visio.Paths.Item.md
+++ b/api/Visio.Paths.Item.md
@@ -27,11 +27,11 @@ Returns an object from a collection. The **Item** property is the default prope
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Contains the index of the object to retrieve.|
-### Return Value
+### Return value
Path
diff --git a/api/Visio.Paths.ObjectType.md b/api/Visio.Paths.ObjectType.md
index 0d1076ffef8..2892590d6ab 100644
--- a/api/Visio.Paths.ObjectType.md
+++ b/api/Visio.Paths.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Paths](./Visio.Paths.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.PriFormat.md b/api/Visio.PriFormat.md
index e104e969edb..e8dfe1c67ff 100644
--- a/api/Visio.PriFormat.md
+++ b/api/Visio.PriFormat.md
@@ -20,7 +20,7 @@ Specifies the primary output format for the Web page. Read/write.
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.PropControl.md b/api/Visio.PropControl.md
index 611d3500983..684872e8e12 100644
--- a/api/Visio.PropControl.md
+++ b/api/Visio.PropControl.md
@@ -20,7 +20,7 @@ Determines whether a shape's custom properties (shape data) are displayed in the
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.PropertyDialogEnabled.md b/api/Visio.PropertyDialogEnabled.md
index 7c5d43d0664..34e22e5e1d5 100644
--- a/api/Visio.PropertyDialogEnabled.md
+++ b/api/Visio.PropertyDialogEnabled.md
@@ -20,7 +20,7 @@ Gets or sets a value that indicates whether the **Properties and Settings** dia
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.QuietMode.md b/api/Visio.QuietMode.md
index 6419ea76e40..d19bd0b6cca 100644
--- a/api/Visio.QuietMode.md
+++ b/api/Visio.QuietMode.md
@@ -20,7 +20,7 @@ Determines whether dialog boxes are displayed in the Visio user interface when y
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.RasterExportBackgroundColor.md b/api/Visio.RasterExportBackgroundColor.md
index d0838e5242a..9fec19be551 100644
--- a/api/Visio.RasterExportBackgroundColor.md
+++ b/api/Visio.RasterExportBackgroundColor.md
@@ -23,7 +23,7 @@ Determines the background color that is applied to the exported image when you c
_expression_ An expression that returns an '[ApplicationSettings](Visio.ApplicationSettings.md)' object.
-### Return Value
+### Return value
**OLE_COLOR**
diff --git a/api/Visio.RasterExportColorFormat.md b/api/Visio.RasterExportColorFormat.md
index f97329f94b9..9a020933452 100644
--- a/api/Visio.RasterExportColorFormat.md
+++ b/api/Visio.RasterExportColorFormat.md
@@ -23,7 +23,7 @@ Determines the color format that is applied to the exported image when you call
_expression_ An expression that returns an '[ApplicationSettings](Visio.ApplicationSettings.md)' object.
-### Return Value
+### Return value
**[VisRasterExportColorFormat](Visio.VisRasterExportColorFormat.md)**
diff --git a/api/Visio.RasterExportColorReduction.md b/api/Visio.RasterExportColorReduction.md
index 8658634d7cd..2c2f950c881 100644
--- a/api/Visio.RasterExportColorReduction.md
+++ b/api/Visio.RasterExportColorReduction.md
@@ -23,7 +23,7 @@ Determines the color reduction that is applied to the exported image when you ca
_expression_ An expression that returns an '[ApplicationSettings](Visio.ApplicationSettings.md)' object.
-### Return Value
+### Return value
**[VisRasterExportColorReduction](Visio.VisRasterExportColorReduction.md)**
diff --git a/api/Visio.RasterExportDataCompression.md b/api/Visio.RasterExportDataCompression.md
index d5286b07148..761625f23d5 100644
--- a/api/Visio.RasterExportDataCompression.md
+++ b/api/Visio.RasterExportDataCompression.md
@@ -23,7 +23,7 @@ Determines the data compression algorithm that is applied to the exported image
_expression_ An expression that returns an '[ApplicationSettings](Visio.ApplicationSettings.md)' object.
-### Return Value
+### Return value
**[VisRasterExportDataCompression](Visio.VisRasterExportDataCompression.md)**
diff --git a/api/Visio.RasterExportDataFormat.md b/api/Visio.RasterExportDataFormat.md
index b394bfcd0d8..570231d1d65 100644
--- a/api/Visio.RasterExportDataFormat.md
+++ b/api/Visio.RasterExportDataFormat.md
@@ -23,7 +23,7 @@ Determines whether the exported raster image is interlaced or non-interlaced whe
_expression_ An expression that returns an '[ApplicationSettings](Visio.ApplicationSettings.md)' object.
-### Return Value
+### Return value
**[VisRasterExportDataFormat](Visio.VisRasterExportDataFormat.md)**
diff --git a/api/Visio.RasterExportFlip.md b/api/Visio.RasterExportFlip.md
index 4fb5b45fea8..4c385f54ff7 100644
--- a/api/Visio.RasterExportFlip.md
+++ b/api/Visio.RasterExportFlip.md
@@ -23,7 +23,7 @@ Determines the flip that is applied to the exported image when you call the **E
_expression_ An expression that returns an '[ApplicationSettings](Visio.ApplicationSettings.md)' object.
-### Return Value
+### Return value
**[VisRasterExportFlip](Visio.VisRasterExportFlip.md)**
diff --git a/api/Visio.RasterExportOperation.md b/api/Visio.RasterExportOperation.md
index db388b84099..d2d28bf54b0 100644
--- a/api/Visio.RasterExportOperation.md
+++ b/api/Visio.RasterExportOperation.md
@@ -23,7 +23,7 @@ Determines the export operation that is applied to the exported image when you c
_expression_ An expression that returns an '[ApplicationSettings](Visio.ApplicationSettings.md)' object.
-### Return Value
+### Return value
**[VisRasterExportOperation](Visio.VisRasterExportOperation.md)**
diff --git a/api/Visio.RasterExportQuality.md b/api/Visio.RasterExportQuality.md
index c410ad83e35..316f3422118 100644
--- a/api/Visio.RasterExportQuality.md
+++ b/api/Visio.RasterExportQuality.md
@@ -23,7 +23,7 @@ Determines the export quality that is applied to the exported image when you cal
_expression_ An expression that returns an '[ApplicationSettings](Visio.ApplicationSettings.md)' object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.RasterExportRotation.md b/api/Visio.RasterExportRotation.md
index 19f16c9b568..4fb27838f7f 100644
--- a/api/Visio.RasterExportRotation.md
+++ b/api/Visio.RasterExportRotation.md
@@ -23,7 +23,7 @@ Determines the rotation that is applied to the exported image when you call the
_expression_ An expression that returns an '[ApplicationSettings](Visio.ApplicationSettings.md)' object.
-### Return Value
+### Return value
**[VisRasterExportRotation](Visio.VisRasterExportRotation.md)**
diff --git a/api/Visio.RasterExportTransparencyColor.md b/api/Visio.RasterExportTransparencyColor.md
index cb611d0758b..6d293b6ff7f 100644
--- a/api/Visio.RasterExportTransparencyColor.md
+++ b/api/Visio.RasterExportTransparencyColor.md
@@ -23,7 +23,7 @@ Determines the transparency color that is applied to the exported image when you
_expression_ An expression that returns an '[ApplicationSettings](Visio.ApplicationSettings.md)' object.
-### Return Value
+### Return value
**OLE_COLOR**
diff --git a/api/Visio.RasterExportUseTransparencyColor.md b/api/Visio.RasterExportUseTransparencyColor.md
index 6d6447f2eec..a149431f498 100644
--- a/api/Visio.RasterExportUseTransparencyColor.md
+++ b/api/Visio.RasterExportUseTransparencyColor.md
@@ -23,7 +23,7 @@ Determines whether Microsoft Visio applies, to the exported image, the transpare
_expression_ An expression that returns an '[ApplicationSettings](Visio.ApplicationSettings.md)' object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.RelatedShapePairEvent.ContainingPage.md b/api/Visio.RelatedShapePairEvent.ContainingPage.md
index 5ba5081bd6b..653edb2ab44 100644
--- a/api/Visio.RelatedShapePairEvent.ContainingPage.md
+++ b/api/Visio.RelatedShapePairEvent.ContainingPage.md
@@ -23,7 +23,7 @@ Returns the **[Page](Visio.Page.md)** object that is associated with the **Rela
_expression_ A variable that represents a '[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)' object.
-### Return Value
+### Return value
**Page**
diff --git a/api/Visio.RelatedShapePairEvent.ContainingPageID.md b/api/Visio.RelatedShapePairEvent.ContainingPageID.md
index 989b253e4a8..a0f9aaa3b6f 100644
--- a/api/Visio.RelatedShapePairEvent.ContainingPageID.md
+++ b/api/Visio.RelatedShapePairEvent.ContainingPageID.md
@@ -23,7 +23,7 @@ Returns the identifier of the **[Page](Visio.Page.md)** object that is associat
_expression_ A variable that represents a [RelatedShapePairEvent](./Visio.RelatedShapePairEvent.md) object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.RelatedShapePairEvent.Document.md b/api/Visio.RelatedShapePairEvent.Document.md
index 9b0762f75a1..8a5306afd9b 100644
--- a/api/Visio.RelatedShapePairEvent.Document.md
+++ b/api/Visio.RelatedShapePairEvent.Document.md
@@ -23,7 +23,7 @@ Gets the **[Document](Visio.Document.md)** object that is associated with an ob
_expression_ A variable that represents a '[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)' object.
-### Return Value
+### Return value
**Document**
diff --git a/api/Visio.RelatedShapePairEvent.FromShapeID.md b/api/Visio.RelatedShapePairEvent.FromShapeID.md
index 8618001edd6..8d83b0112f0 100644
--- a/api/Visio.RelatedShapePairEvent.FromShapeID.md
+++ b/api/Visio.RelatedShapePairEvent.FromShapeID.md
@@ -23,7 +23,7 @@ Returrns the identifier of the first (container or callout) shape in the related
_expression_ A variable that represents a '[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)' object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.RelatedShapePairEvent.ObjectType.md b/api/Visio.RelatedShapePairEvent.ObjectType.md
index 4f6459e6d3c..2dc0a7392af 100644
--- a/api/Visio.RelatedShapePairEvent.ObjectType.md
+++ b/api/Visio.RelatedShapePairEvent.ObjectType.md
@@ -23,7 +23,7 @@ Returns **visObjTypeRelatedShapePairEvent** , the type of this object. Read-onl
_expression_ A variable that represents a '[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)' object.
-### Return Value
+### Return value
**visObjTypeRelatedShapePairEvent**
diff --git a/api/Visio.RelatedShapePairEvent.Stat.md b/api/Visio.RelatedShapePairEvent.Stat.md
index c1902e1fa04..f4b1f2bc386 100644
--- a/api/Visio.RelatedShapePairEvent.Stat.md
+++ b/api/Visio.RelatedShapePairEvent.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a '[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)' object.
-### Return Value
+### Return value
**[VisStatCodes](Visio.visstatcodes.md)**
diff --git a/api/Visio.RelatedShapePairEvent.ToShapeID.md b/api/Visio.RelatedShapePairEvent.ToShapeID.md
index 2152a1c8d74..8165ea67aaf 100644
--- a/api/Visio.RelatedShapePairEvent.ToShapeID.md
+++ b/api/Visio.RelatedShapePairEvent.ToShapeID.md
@@ -23,7 +23,7 @@ Returrns the identifier of the second (member) shape in the related shape pair.
_expression_ A variable that represents a '[RelatedShapePairEvent](Visio.RelatedShapePairEvent.md)' object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ReviewerColor.md b/api/Visio.ReviewerColor.md
index 2cbe5e20962..1924b36da48 100644
--- a/api/Visio.ReviewerColor.md
+++ b/api/Visio.ReviewerColor.md
@@ -24,11 +24,11 @@ Gets the color of the markup overlay associated with the specified reviewer in t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ReviewerIndex|Required| **Long**|The index of the reviewer in the collection of reveiwers.|
-### Return Value
+### Return value
**[OLE_COLOR]**
diff --git a/api/Visio.ReviewerCount.md b/api/Visio.ReviewerCount.md
index eeb55622cee..0270e218b47 100644
--- a/api/Visio.ReviewerCount.md
+++ b/api/Visio.ReviewerCount.md
@@ -20,7 +20,7 @@ Gets the count of reviewers in the current document open in Microsoft Visio View
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ReviewerID.md b/api/Visio.ReviewerID.md
index d0ac3ac8174..efdfad31815 100644
--- a/api/Visio.ReviewerID.md
+++ b/api/Visio.ReviewerID.md
@@ -24,11 +24,11 @@ Gets the ID of the specified reviewer in the drawing open in Microsoft Visio Vie
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ReviewerIndex|Required| **Long**|The index of the reviewer in the collection of reviewers.|
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ReviewerInitial.md b/api/Visio.ReviewerInitial.md
index b8259c889aa..54e473258f6 100644
--- a/api/Visio.ReviewerInitial.md
+++ b/api/Visio.ReviewerInitial.md
@@ -24,11 +24,11 @@ Gets the initials of the specified reviewer in the drawing that is open in Micro
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ReviewerIndex|Required| **Long**|The index of the reviewer in the collection of reviewers.|
-### Return Value
+### Return value
String
diff --git a/api/Visio.ReviewerMarkupVisible.md b/api/Visio.ReviewerMarkupVisible.md
index 651bb9a2bf1..1c2fac59df9 100644
--- a/api/Visio.ReviewerMarkupVisible.md
+++ b/api/Visio.ReviewerMarkupVisible.md
@@ -24,11 +24,11 @@ Gets or sets a value that indicates whether markup of the specified reviewer is
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ReviewerIndex|Required| **Long**|The index of the reviewer in the collection of reviewers.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.ReviewerName.md b/api/Visio.ReviewerName.md
index 6f8a812d1d5..3533f4a6ec4 100644
--- a/api/Visio.ReviewerName.md
+++ b/api/Visio.ReviewerName.md
@@ -24,11 +24,11 @@ Gets the name of the specified reviewer in the drawing that is open in Microsoft
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ReviewerIndex|Required| **Long**|The index of the reviewer in the collection of reviewers.|
-### Return Value
+### Return value
String
diff --git a/api/Visio.Row.Application.md b/api/Visio.Row.Application.md
index ad7e69753c2..89a9d32c674 100644
--- a/api/Visio.Row.Application.md
+++ b/api/Visio.Row.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Row](./Visio.Row.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Row.Cell.md b/api/Visio.Row.Cell.md
index 54196281042..fe3ba206dcb 100644
--- a/api/Visio.Row.Cell.md
+++ b/api/Visio.Row.Cell.md
@@ -27,11 +27,11 @@ Uses the local name or index of a cell to return the cell. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|The local name or index of the cell.|
-### Return Value
+### Return value
Cell
diff --git a/api/Visio.Row.CellChanged.md b/api/Visio.Row.CellChanged.md
index a266d4e8d6a..fdef8508e07 100644
--- a/api/Visio.Row.CellChanged.md
+++ b/api/Visio.Row.CellChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'CellChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose value has changed.|
diff --git a/api/Visio.Row.CellU.md b/api/Visio.Row.CellU.md
index a7eab2a50c1..474e74d5247 100644
--- a/api/Visio.Row.CellU.md
+++ b/api/Visio.Row.CellU.md
@@ -27,11 +27,11 @@ Uses the universal name or index of a cell to return the cell. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|The universal name or index of the cell.|
-### Return Value
+### Return value
Cell
diff --git a/api/Visio.Row.ContainingMasterID.md b/api/Visio.Row.ContainingMasterID.md
index a3de2631921..25b77cd0223 100644
--- a/api/Visio.Row.ContainingMasterID.md
+++ b/api/Visio.Row.ContainingMasterID.md
@@ -23,7 +23,7 @@ Returns the ID of the **Master** object that contains an object. Read-only.
_expression_ A variable that represents a [Row](./Visio.Row.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Row.ContainingPageID.md b/api/Visio.Row.ContainingPageID.md
index 54750084d03..b9805fa0b29 100644
--- a/api/Visio.Row.ContainingPageID.md
+++ b/api/Visio.Row.ContainingPageID.md
@@ -23,7 +23,7 @@ Returns the ID of the page that contains an object. Read-only.
_expression_ A variable that represents a [Row](./Visio.Row.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Row.ContainingSection.md b/api/Visio.Row.ContainingSection.md
index 2950c224653..08275104b62 100644
--- a/api/Visio.Row.ContainingSection.md
+++ b/api/Visio.Row.ContainingSection.md
@@ -23,7 +23,7 @@ Returns the section that contains a row. Read-only.
_expression_ A variable that represents a [Row](./Visio.Row.md) object.
-### Return Value
+### Return value
Section
diff --git a/api/Visio.Row.Count.md b/api/Visio.Row.Count.md
index a178ce1d063..de7f4ddb84b 100644
--- a/api/Visio.Row.Count.md
+++ b/api/Visio.Row.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Row](./Visio.Row.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Row.EventList.md b/api/Visio.Row.EventList.md
index c4cbb4665e3..7dcd0b8ec58 100644
--- a/api/Visio.Row.EventList.md
+++ b/api/Visio.Row.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Row](./Visio.Row.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Row.FormulaChanged.md b/api/Visio.Row.FormulaChanged.md
index d5d2b160f00..30a8ca886d7 100644
--- a/api/Visio.Row.FormulaChanged.md
+++ b/api/Visio.Row.FormulaChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'FormulaChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose formula changed.|
diff --git a/api/Visio.Row.GetPolylineData.md b/api/Visio.Row.GetPolylineData.md
index 7a9665fa6b9..9005eae9706 100644
--- a/api/Visio.Row.GetPolylineData.md
+++ b/api/Visio.Row.GetPolylineData.md
@@ -27,12 +27,12 @@ Returns the points recorded in a polyline row.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Required| **Integer**|Flags that influence the points returned.|
| _xyArray()_|Required| **Double**|Out parameter. Returns an array of alternating _x_ and _y_ values specifying the points recorded in the row.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Row.Index.md b/api/Visio.Row.Index.md
index 49d0bc70eee..5aaccc3985e 100644
--- a/api/Visio.Row.Index.md
+++ b/api/Visio.Row.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of an object in a collection. Read-only.
_expression_ A variable that represents a [Row](./Visio.Row.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Row.Name.md b/api/Visio.Row.Name.md
index 3f458a163e8..098d82681e1 100644
--- a/api/Visio.Row.Name.md
+++ b/api/Visio.Row.Name.md
@@ -23,7 +23,7 @@ Specifies the name of an object. Read-only.
_expression_ A variable that represents a [Row](./Visio.Row.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Row.NameU.md b/api/Visio.Row.NameU.md
index 6641e11b13b..3fcd5c63576 100644
--- a/api/Visio.Row.NameU.md
+++ b/api/Visio.Row.NameU.md
@@ -23,7 +23,7 @@ Specifies the universal name of a **Row** object. Read/write.
_expression_ A variable that represents a [Row](./Visio.Row.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Row.ObjectType.md b/api/Visio.Row.ObjectType.md
index 5a31bf6b51d..c3490fffa5e 100644
--- a/api/Visio.Row.ObjectType.md
+++ b/api/Visio.Row.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Row](./Visio.Row.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Row.PersistsEvents.md b/api/Visio.Row.PersistsEvents.md
index b6f5062c00d..fec3f09e4fa 100644
--- a/api/Visio.Row.PersistsEvents.md
+++ b/api/Visio.Row.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Row](./Visio.Row.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Row.Shape.md b/api/Visio.Row.Shape.md
index 61e1a704efa..7b28e349444 100644
--- a/api/Visio.Row.Shape.md
+++ b/api/Visio.Row.Shape.md
@@ -23,7 +23,7 @@ Returns the **Shape** object that owns a **Cell** , **Characters** , **Row** ,
_expression_ A variable that represents a [Row](./Visio.Row.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Row.Stat.md b/api/Visio.Row.Stat.md
index 2582660cdca..96938e09339 100644
--- a/api/Visio.Row.Stat.md
+++ b/api/Visio.Row.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Row](./Visio.Row.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Row.Style.md b/api/Visio.Row.Style.md
index f713f04be6f..f2b874168ae 100644
--- a/api/Visio.Row.Style.md
+++ b/api/Visio.Row.Style.md
@@ -23,7 +23,7 @@ Gets the style that contains a **Row** object. Read-only.
_expression_ A variable that represents a [Row](./Visio.Row.md) object.
-### Return Value
+### Return value
Style
diff --git a/api/Visio.RowType.md b/api/Visio.RowType.md
index 31cfc67d528..ae1a3df7be4 100644
--- a/api/Visio.RowType.md
+++ b/api/Visio.RowType.md
@@ -27,12 +27,12 @@ Gets or sets the type of a row in a Geometry, Connection Points, Controls, or Ta
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Section_|Required| **Integer**|The index of the section that contains the row.|
| _Row_|Required| **Integer**|The index of the row.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.SaveSettings.md b/api/Visio.SaveSettings.md
index 70fbbf25e0a..b4ee95c80e9 100644
--- a/api/Visio.SaveSettings.md
+++ b/api/Visio.SaveSettings.md
@@ -20,7 +20,7 @@ Saves the current Web page settings to the registry.
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ScrollbarsVisible.md b/api/Visio.ScrollbarsVisible.md
index 39bccd0e4fc..3aecd01cbd9 100644
--- a/api/Visio.ScrollbarsVisible.md
+++ b/api/Visio.ScrollbarsVisible.md
@@ -20,7 +20,7 @@ Gets or sets a value that indicates whether the scroll bars are visible in Micro
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.Search.md b/api/Visio.Search.md
index 3588181540c..be338e8e42d 100644
--- a/api/Visio.Search.md
+++ b/api/Visio.Search.md
@@ -20,7 +20,7 @@ Determines whether the **Search Pages** control for searching for shapes in a d
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.SecFormat.md b/api/Visio.SecFormat.md
index 4673867c5b6..d5ef01eeb24 100644
--- a/api/Visio.SecFormat.md
+++ b/api/Visio.SecFormat.md
@@ -20,7 +20,7 @@ Specifies the secondary output format for the Web page. Read/write.
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.Section.Application.md b/api/Visio.Section.Application.md
index 8d0a28dd713..991dab33d9a 100644
--- a/api/Visio.Section.Application.md
+++ b/api/Visio.Section.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Section](./Visio.Section.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Section.CellChanged.md b/api/Visio.Section.CellChanged.md
index 91d7d241c92..8232ae5efad 100644
--- a/api/Visio.Section.CellChanged.md
+++ b/api/Visio.Section.CellChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'CellChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose value has changed.|
diff --git a/api/Visio.Section.ContainingMasterID.md b/api/Visio.Section.ContainingMasterID.md
index 569375902cb..7e31e4fb7cc 100644
--- a/api/Visio.Section.ContainingMasterID.md
+++ b/api/Visio.Section.ContainingMasterID.md
@@ -23,7 +23,7 @@ Returns the ID of the **Master** object that contains an object. Read-only.
_expression_ A variable that represents a [Section](./Visio.Section.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Section.ContainingPageID.md b/api/Visio.Section.ContainingPageID.md
index efdb64d7c1e..1dbc812f6a3 100644
--- a/api/Visio.Section.ContainingPageID.md
+++ b/api/Visio.Section.ContainingPageID.md
@@ -23,7 +23,7 @@ Returns the ID of the page that contains the section. Read-only. .
_expression_ A variable that represents a [Section](./Visio.Section.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Section.Count.md b/api/Visio.Section.Count.md
index 6249c7e4ef5..7dd81d24091 100644
--- a/api/Visio.Section.Count.md
+++ b/api/Visio.Section.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Section](./Visio.Section.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Section.EventList.md b/api/Visio.Section.EventList.md
index 01fc884ad07..283ddb0da64 100644
--- a/api/Visio.Section.EventList.md
+++ b/api/Visio.Section.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Section](./Visio.Section.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Section.FormulaChanged.md b/api/Visio.Section.FormulaChanged.md
index 11acc4184cb..995434e9035 100644
--- a/api/Visio.Section.FormulaChanged.md
+++ b/api/Visio.Section.FormulaChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'FormulaChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose formula changed.|
diff --git a/api/Visio.Section.Index.md b/api/Visio.Section.Index.md
index 91f65063da4..57b480b1ce8 100644
--- a/api/Visio.Section.Index.md
+++ b/api/Visio.Section.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of an object in a collection. Read-only.
_expression_ A variable that represents a [Section](./Visio.Section.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Section.ObjectType.md b/api/Visio.Section.ObjectType.md
index 420b15ad798..2d9297c1375 100644
--- a/api/Visio.Section.ObjectType.md
+++ b/api/Visio.Section.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Section](./Visio.Section.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Section.PersistsEvents.md b/api/Visio.Section.PersistsEvents.md
index 6ff34cb2a8f..b2bf1a16ead 100644
--- a/api/Visio.Section.PersistsEvents.md
+++ b/api/Visio.Section.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Section](./Visio.Section.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Section.Row.md b/api/Visio.Section.Row.md
index 7a081668153..7c305dc1944 100644
--- a/api/Visio.Section.Row.md
+++ b/api/Visio.Section.Row.md
@@ -27,11 +27,11 @@ Returns the row in a section specified by row index number. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Integer**|Specifies the index number of the row to be returned.|
-### Return Value
+### Return value
Row
diff --git a/api/Visio.Section.Shape.md b/api/Visio.Section.Shape.md
index 9b4288d2d5b..6c91968b780 100644
--- a/api/Visio.Section.Shape.md
+++ b/api/Visio.Section.Shape.md
@@ -23,7 +23,7 @@ Returns the **Shape** object that owns a **Cell** , **Characters** , **Row** ,
_expression_ A variable that represents a [Section](./Visio.Section.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Section.Stat.md b/api/Visio.Section.Stat.md
index 2f9b2f207e9..055dc34d1c1 100644
--- a/api/Visio.Section.Stat.md
+++ b/api/Visio.Section.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Section](./Visio.Section.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Section.Style.md b/api/Visio.Section.Style.md
index e1d7482e586..3a769cf1d24 100644
--- a/api/Visio.Section.Style.md
+++ b/api/Visio.Section.Style.md
@@ -23,7 +23,7 @@ Gets the style that contains a **Section** object. Read-only.
_expression_ A variable that represents a [Section](./Visio.Section.md) object.
-### Return Value
+### Return value
Style
diff --git a/api/Visio.SelectShape.md b/api/Visio.SelectShape.md
index bc3bcad3016..6430cca33e4 100644
--- a/api/Visio.SelectShape.md
+++ b/api/Visio.SelectShape.md
@@ -24,11 +24,11 @@ Selects the specified shape in the drawing that is open in Microsoft Visio Viewe
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ShapeIndex|Required| **Long**|The index in the collection of shapes of the shape to be selected.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.SelectedShapeIndex.md b/api/Visio.SelectedShapeIndex.md
index 21d874c9741..b0ee4c1300c 100644
--- a/api/Visio.SelectedShapeIndex.md
+++ b/api/Visio.SelectedShapeIndex.md
@@ -20,7 +20,7 @@ Gets the index in the collection of shapes of the selected shape in the drawing
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.Selection.AddToContainers.md b/api/Visio.Selection.AddToContainers.md
index 93bdce18b4a..1d6bef83141 100644
--- a/api/Visio.Selection.AddToContainers.md
+++ b/api/Visio.Selection.AddToContainers.md
@@ -23,7 +23,7 @@ Adds the selection of shapes to all underlying containers that allow it as a mem
_expression_ A variable that represents a '[Selection](Visio.Selection.md)' object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Selection.AddToGroup.md b/api/Visio.Selection.AddToGroup.md
index feda261882c..0d40f273146 100644
--- a/api/Visio.Selection.AddToGroup.md
+++ b/api/Visio.Selection.AddToGroup.md
@@ -23,7 +23,7 @@ Adds the selected shapes to the selected group.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Align.md b/api/Visio.Selection.Align.md
index 70f059fcd05..62c9310d5a0 100644
--- a/api/Visio.Selection.Align.md
+++ b/api/Visio.Selection.Align.md
@@ -27,13 +27,13 @@ Aligns two or more selected shapes.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _AlignHorizontal_|Required| **VisHorizontalAlignTypes**|Aligns selected shapes along a horizontal axis. See Remarks for possible values.|
| _AlignVertical_|Required| **VisVerticalAlignTypes**|Aligns selected shapes along a vertical axis. See Remarks for possible values.|
| _GlueToGuide_|Optional| **Boolean**|If **True** , creates a guide and glues selected shapes to it; if **False** , it does not. The default is **False** .|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Application.md b/api/Visio.Selection.Application.md
index 7a56c7936f0..306de1b6183 100644
--- a/api/Visio.Selection.Application.md
+++ b/api/Visio.Selection.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Selection.AutomaticLink.md b/api/Visio.Selection.AutomaticLink.md
index fd0aa9c4ad2..e81d25419fc 100644
--- a/api/Visio.Selection.AutomaticLink.md
+++ b/api/Visio.Selection.AutomaticLink.md
@@ -30,7 +30,7 @@ Links selected shapes to data rows in the specified data recordset automatically
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetID_|Required| **Long**|The value of the **ID** property of the **DataRecordset** object that contains the data rows to link to.|
| _ColumnNames()_|Required| **String**|An array of strings that correspond to names of columns in the data recordset. |
@@ -39,7 +39,7 @@ Links selected shapes to data rows in the specified data recordset automatically
| _AutoLinkBehavior_|Required| **Long**|A combination of one or more constants from the **VisAutoLinkBehavior** enumeration that specify how the linking will occur. See Remarks for possible values.|
| _ShapeIDs()_|Required| **Long**|Out parameter. An array of IDs of shapes (of type **Long**) that were linked by the method.|
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Selection.AvoidPageBreaks.md b/api/Visio.Selection.AvoidPageBreaks.md
index 190ea693100..b31c0a97341 100644
--- a/api/Visio.Selection.AvoidPageBreaks.md
+++ b/api/Visio.Selection.AvoidPageBreaks.md
@@ -23,7 +23,7 @@ Makes small adjustments to selected shapes to move them off page breaks.
_expression_ A variable that represents a '[Selection](Visio.Selection.md)' object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Selection.BoundingBox.md b/api/Visio.Selection.BoundingBox.md
index 4d51ebfbe05..1f6c0866737 100644
--- a/api/Visio.Selection.BoundingBox.md
+++ b/api/Visio.Selection.BoundingBox.md
@@ -27,7 +27,7 @@ Returns a rectangle that tightly encloses the shapes of a selection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Required| **Integer**|Flags that influence the bounding box calculated for each shape that contributes to the resulting bounding box.|
| _lpr8Left_|Required| **Double**|Returns the x-coordinate of the left edge of the bounding box.|
@@ -35,7 +35,7 @@ Returns a rectangle that tightly encloses the shapes of a selection.
| _lpr8Right_|Required| **Double**|Returns the x-coordinate of the right edge of the bounding box.|
| _lpr8Top_|Required| **Double**|Returns the y-coordinate of the top edge of the bounding box.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.BreakLinkToData.md b/api/Visio.Selection.BreakLinkToData.md
index d0f59db7030..4dd82832927 100644
--- a/api/Visio.Selection.BreakLinkToData.md
+++ b/api/Visio.Selection.BreakLinkToData.md
@@ -30,11 +30,11 @@ Breaks links between all shapes in the selection and data rows in the specified
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset containing the data rows with which to break links.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.BringForward.md b/api/Visio.Selection.BringForward.md
index 52d9ef379d1..675059b4543 100644
--- a/api/Visio.Selection.BringForward.md
+++ b/api/Visio.Selection.BringForward.md
@@ -23,7 +23,7 @@ Brings the shape or selected shapes forward one position in the z-order.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.BringToFront.md b/api/Visio.Selection.BringToFront.md
index 6adc90b7069..eb209d6872f 100644
--- a/api/Visio.Selection.BringToFront.md
+++ b/api/Visio.Selection.BringToFront.md
@@ -23,7 +23,7 @@ Brings the shape or selected shapes to the front of the z-order.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Combine.md b/api/Visio.Selection.Combine.md
index dfcbaf276e4..15e1dacfa6b 100644
--- a/api/Visio.Selection.Combine.md
+++ b/api/Visio.Selection.Combine.md
@@ -23,7 +23,7 @@ Creates a new shape by combining selected shapes.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.ConnectShapes.md b/api/Visio.Selection.ConnectShapes.md
index 1d0e7c7ece7..3fa1b0d9efe 100644
--- a/api/Visio.Selection.ConnectShapes.md
+++ b/api/Visio.Selection.ConnectShapes.md
@@ -23,7 +23,7 @@ Connects two or more selected shapes with a dynamic connector. Returns **Nothing
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.ContainingMaster.md b/api/Visio.Selection.ContainingMaster.md
index 22a7dec784a..a4497e6ff87 100644
--- a/api/Visio.Selection.ContainingMaster.md
+++ b/api/Visio.Selection.ContainingMaster.md
@@ -23,7 +23,7 @@ Returns the **Master** object that contains an object. Read-only.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Selection.ContainingMasterID.md b/api/Visio.Selection.ContainingMasterID.md
index 8c46efc2be4..42a7d58f397 100644
--- a/api/Visio.Selection.ContainingMasterID.md
+++ b/api/Visio.Selection.ContainingMasterID.md
@@ -23,7 +23,7 @@ Returns the ID of the **Master** object that contains an object. Read-only.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Selection.ContainingPage.md b/api/Visio.Selection.ContainingPage.md
index c13471183b3..168b7fdf7d2 100644
--- a/api/Visio.Selection.ContainingPage.md
+++ b/api/Visio.Selection.ContainingPage.md
@@ -23,7 +23,7 @@ Returns the page that contains an object.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Page
diff --git a/api/Visio.Selection.ContainingPageID.md b/api/Visio.Selection.ContainingPageID.md
index 4e10f173cae..50abbea485e 100644
--- a/api/Visio.Selection.ContainingPageID.md
+++ b/api/Visio.Selection.ContainingPageID.md
@@ -23,7 +23,7 @@ Returns the ID of the page that contains an object. Read-only.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Selection.ContainingShape.md b/api/Visio.Selection.ContainingShape.md
index 0c5e3b00be0..022ffe8ff80 100644
--- a/api/Visio.Selection.ContainingShape.md
+++ b/api/Visio.Selection.ContainingShape.md
@@ -23,7 +23,7 @@ Returns the **Shape** object that contains an object or collection. Read-only.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Selection.ConvertToGroup.md b/api/Visio.Selection.ConvertToGroup.md
index d0b2aaa100e..fab0c4cb06a 100644
--- a/api/Visio.Selection.ConvertToGroup.md
+++ b/api/Visio.Selection.ConvertToGroup.md
@@ -23,7 +23,7 @@ Converts a selection or an object from another application (a linked or embedded
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Copy.md b/api/Visio.Selection.Copy.md
index 5152b63332b..479dfe3d5ae 100644
--- a/api/Visio.Selection.Copy.md
+++ b/api/Visio.Selection.Copy.md
@@ -27,11 +27,11 @@ Copies a selection to the Clipboard.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Optional| **Variant**|Determines how shapes are translated during the copy operation.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Count.md b/api/Visio.Selection.Count.md
index a5959a06d52..0d0b7e6ca08 100644
--- a/api/Visio.Selection.Count.md
+++ b/api/Visio.Selection.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Selection.Cut.md b/api/Visio.Selection.Cut.md
index 835c75f2423..126fca2ed5b 100644
--- a/api/Visio.Selection.Cut.md
+++ b/api/Visio.Selection.Cut.md
@@ -27,11 +27,11 @@ Deletes a selection and places it on the Clipboard.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Optional| **Variant**|Determines how shapes are translated during the cut operation.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.DataGraphic.md b/api/Visio.Selection.DataGraphic.md
index 7718c105c1b..2200e310848 100644
--- a/api/Visio.Selection.DataGraphic.md
+++ b/api/Visio.Selection.DataGraphic.md
@@ -26,7 +26,7 @@ Gets the data graphic master (**Master** object of type **visTypeDataGraphic**)
_expression_ An expression that returns a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Selection.Delete.md b/api/Visio.Selection.Delete.md
index 185ff9ee7c3..a2a30692e08 100644
--- a/api/Visio.Selection.Delete.md
+++ b/api/Visio.Selection.Delete.md
@@ -23,7 +23,7 @@ Deletes an object or selection.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.DeleteEx.md b/api/Visio.Selection.DeleteEx.md
index c0181315f78..98ff4802300 100644
--- a/api/Visio.Selection.DeleteEx.md
+++ b/api/Visio.Selection.DeleteEx.md
@@ -27,11 +27,11 @@ Deletes additional shapes associated with the selection, such as connectors and
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DelFlags_|Required| **Long**|The additional shapes to delete. See Remarks for possible values.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Selection.DeselectAll.md b/api/Visio.Selection.DeselectAll.md
index 43433679ea9..bd3e797a0ad 100644
--- a/api/Visio.Selection.DeselectAll.md
+++ b/api/Visio.Selection.DeselectAll.md
@@ -23,7 +23,7 @@ Deselects all shapes in a window or selection.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Distribute.md b/api/Visio.Selection.Distribute.md
index 24d43b22919..77f7e54c149 100644
--- a/api/Visio.Selection.Distribute.md
+++ b/api/Visio.Selection.Distribute.md
@@ -27,12 +27,12 @@ Distributes three or more selected shapes at regular intervals on the drawing pa
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Distribute_|Required| **VisDistributeTypes**|Specifies how the shapes are distributed. See Remarks for possible values.|
| _GlueToGuide_|Optional| **Boolean**|If **True** , creates guides and glues selected shapes to them. If **False** , does not. Default is **False** .|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Document.md b/api/Visio.Selection.Document.md
index d4146d80903..139f65ae695 100644
--- a/api/Visio.Selection.Document.md
+++ b/api/Visio.Selection.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Selection.DrawRegion.md b/api/Visio.Selection.DrawRegion.md
index 5b98bbf4691..78f84c0b473 100644
--- a/api/Visio.Selection.DrawRegion.md
+++ b/api/Visio.Selection.DrawRegion.md
@@ -27,7 +27,7 @@ Draws a new shape that represents the region containing a given point.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Tolerance_|Required| **Double**|Error tolerance when determining the coincidence of points. A distance expressed in internal units in the coordinate space of the **Selection** object's containing shape; the maximum gap between paths that is tolerated when constructing the boundaries of a region.|
| _Flags_|Required| **Integer**|A constant or integer that specifies how to draw the region.|
@@ -35,7 +35,7 @@ Draws a new shape that represents the region containing a given point.
| _y_|Optional| **Variant**|y-coordinate in internal units in the coordinate space of the **Selection** object.|
| _ResultsMaster_|Optional| **Variant**|The **Master** object which the new **Shape** object should be an instance of.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Selection.Duplicate.md b/api/Visio.Selection.Duplicate.md
index a0d831bbd7d..0dffa0bfb47 100644
--- a/api/Visio.Selection.Duplicate.md
+++ b/api/Visio.Selection.Duplicate.md
@@ -23,7 +23,7 @@ Duplicates a selection.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Selection
diff --git a/api/Visio.Selection.EventList.md b/api/Visio.Selection.EventList.md
index 42494d08842..67b99d48696 100644
--- a/api/Visio.Selection.EventList.md
+++ b/api/Visio.Selection.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Selection.Export.md b/api/Visio.Selection.Export.md
index a5e12bffcd3..336bb999eb3 100644
--- a/api/Visio.Selection.Export.md
+++ b/api/Visio.Selection.Export.md
@@ -27,11 +27,11 @@ Exports an object from Microsoft Visio to a file format such as .bmp, .dib, .dwg
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The fully qualified path and name of the file to receive the exported object.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.FillStyle.md b/api/Visio.Selection.FillStyle.md
index 9befe309b46..9917adb0652 100644
--- a/api/Visio.Selection.FillStyle.md
+++ b/api/Visio.Selection.FillStyle.md
@@ -23,7 +23,7 @@ Returns or sets the fill style for an object. Read/write.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Selection.FillStyleKeepFmt.md b/api/Visio.Selection.FillStyleKeepFmt.md
index 814db67bf9a..ee09927b7ca 100644
--- a/api/Visio.Selection.FillStyleKeepFmt.md
+++ b/api/Visio.Selection.FillStyleKeepFmt.md
@@ -23,7 +23,7 @@ Applies a fill style to an object while preserving local formatting. Read/write.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Selection.FitCurve.md b/api/Visio.Selection.FitCurve.md
index 8d052cfbefd..be37b2a1da6 100644
--- a/api/Visio.Selection.FitCurve.md
+++ b/api/Visio.Selection.FitCurve.md
@@ -27,12 +27,12 @@ Reduces the number of geometry segments in a shape or shapes by replacing them w
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Tolerance_|Required| **Double**|How closely the resulting paths must match the shape's original paths.|
| _Flags_|Required| **Integer**|Flags that influence how the shape is drawn.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Flip.md b/api/Visio.Selection.Flip.md
index afdef9baf05..9fd95e0aa28 100644
--- a/api/Visio.Selection.Flip.md
+++ b/api/Visio.Selection.Flip.md
@@ -27,7 +27,7 @@ Flips selected shapes either as a group or individually about their pins. Return
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FlipDirection_|Required| **VisFlipDirection**|Specifies the direction in which to flip the selection. See Remarks for possible values.|
| _FlipType_|Optional| **VisFlipTypes**|Specifes how selection is to be flipped. See Remarks for possible values.|
@@ -36,7 +36,7 @@ Flips selected shapes either as a group or individually about their pins. Return
| _PinY_|Optional| **Double**|When _FlipType_ is **visFlipSelectionWithPin** , specifies the Y-position of the pin about which the selection is to be flipped.|
| _PinUnitsNameOrCode_|Optional| **Variant**|Specifies the units to use for _PinX_ and _PinY_. See Remarks for possible values. The default is inches.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.FlipHorizontal.md b/api/Visio.Selection.FlipHorizontal.md
index 850acb6a4b0..6ea9a93953a 100644
--- a/api/Visio.Selection.FlipHorizontal.md
+++ b/api/Visio.Selection.FlipHorizontal.md
@@ -23,7 +23,7 @@ Flips an object horizontally.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.FlipVertical.md b/api/Visio.Selection.FlipVertical.md
index 5f960b621fd..6ead6d6db23 100644
--- a/api/Visio.Selection.FlipVertical.md
+++ b/api/Visio.Selection.FlipVertical.md
@@ -23,7 +23,7 @@ Flips an object vertically.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Fragment.md b/api/Visio.Selection.Fragment.md
index 99dceed6253..8c8fbf72ec3 100644
--- a/api/Visio.Selection.Fragment.md
+++ b/api/Visio.Selection.Fragment.md
@@ -23,7 +23,7 @@ Breaks selected shapes into smaller shapes.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.GetCallouts.md b/api/Visio.Selection.GetCallouts.md
index 2296671924f..6ba2331d984 100644
--- a/api/Visio.Selection.GetCallouts.md
+++ b/api/Visio.Selection.GetCallouts.md
@@ -27,11 +27,11 @@ Returns the list of identifiers of the callout shapes in the selection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NestedOptions_|Required| **[VisContainerNested](Visio.VisContainerNested.md)**|Indicates whether to exclude shapes in the selection that are contained by containers or lists. See Remarks for possible values.|
-### Return Value
+### Return value
**Long()**
diff --git a/api/Visio.Selection.GetContainers.md b/api/Visio.Selection.GetContainers.md
index 45800e5dd77..5820817b1a3 100644
--- a/api/Visio.Selection.GetContainers.md
+++ b/api/Visio.Selection.GetContainers.md
@@ -27,11 +27,11 @@ Returns an array of shape identifiers (IDs) of the container shapes in the selec
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NestedOptions_|Required| **[VisContainerNested](Visio.VisContainerNested.md)**|Indicates whether to exclude shapes in nested containers. See Remarks for possible values.|
-### Return Value
+### Return value
**Long()**
diff --git a/api/Visio.Selection.GetIDs.md b/api/Visio.Selection.GetIDs.md
index 86799d4f77a..7e879615fbe 100644
--- a/api/Visio.Selection.GetIDs.md
+++ b/api/Visio.Selection.GetIDs.md
@@ -30,11 +30,11 @@ Gets the shape IDs of the shapes in the selection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShapeIDs()_|Required| **Long**|Out parameter. An array of shape IDs of type **Long** corresponding to the shapes in the selection.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Group.md b/api/Visio.Selection.Group.md
index 1df50a6af4b..5382f89d8cc 100644
--- a/api/Visio.Selection.Group.md
+++ b/api/Visio.Selection.Group.md
@@ -23,7 +23,7 @@ Groups the objects that are selected in a selection, or it converts a shape into
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Selection.Intersect.md b/api/Visio.Selection.Intersect.md
index a22c236dbb3..a37bd673279 100644
--- a/api/Visio.Selection.Intersect.md
+++ b/api/Visio.Selection.Intersect.md
@@ -23,7 +23,7 @@ Creates one closed shape from the area in which selected shapes overlap or inter
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Item.md b/api/Visio.Selection.Item.md
index fcb87ace01e..7e76326dc17 100644
--- a/api/Visio.Selection.Item.md
+++ b/api/Visio.Selection.Item.md
@@ -27,11 +27,11 @@ Returns an object from a collection. The **Item** property is the default prope
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Contains the index of the object to retrieve.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Selection.ItemStatus.md b/api/Visio.Selection.ItemStatus.md
index 128912a4231..1b9499c33f7 100644
--- a/api/Visio.Selection.ItemStatus.md
+++ b/api/Visio.Selection.ItemStatus.md
@@ -27,11 +27,11 @@ Indicates if an item in a **Selection** object is subselected, if the group to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Index of the item for which you want to retrieve the status.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Selection.IterationMode.md b/api/Visio.Selection.IterationMode.md
index ed2259451c5..42efd1a0f03 100644
--- a/api/Visio.Selection.IterationMode.md
+++ b/api/Visio.Selection.IterationMode.md
@@ -23,7 +23,7 @@ Determines whether a **Selection** object reports subselected shapes and groups
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Selection.Join.md b/api/Visio.Selection.Join.md
index 57e94be78cd..6c048dc8d1b 100644
--- a/api/Visio.Selection.Join.md
+++ b/api/Visio.Selection.Join.md
@@ -23,7 +23,7 @@ Creates a new shape by joining selected shapes.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Layout.md b/api/Visio.Selection.Layout.md
index 3b8929ebecd..10192235375 100644
--- a/api/Visio.Selection.Layout.md
+++ b/api/Visio.Selection.Layout.md
@@ -23,7 +23,7 @@ Lays out the shapes and/or reroutes the connectors for the page, master, group,
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.LayoutChangeDirection.md b/api/Visio.Selection.LayoutChangeDirection.md
index 48c4d83f122..a104f09e934 100644
--- a/api/Visio.Selection.LayoutChangeDirection.md
+++ b/api/Visio.Selection.LayoutChangeDirection.md
@@ -27,11 +27,11 @@ Revises the layout of a selection of connected shapes by rotating or flipping th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Direction_|Required| **[VisLayoutDirection](Visio.VisLayoutDirection.md)**|The layout action to take. See Remarks for possible values.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Selection.LayoutIncremental.md b/api/Visio.Selection.LayoutIncremental.md
index 4bd527ecba7..e449c475130 100644
--- a/api/Visio.Selection.LayoutIncremental.md
+++ b/api/Visio.Selection.LayoutIncremental.md
@@ -27,7 +27,7 @@ Makes small adjustments to the position of shapes in the selection to better ali
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _AlignOrSpace_|Required| **[VisLayoutIncrementalType](Visio.VisLayoutIncrementalType.md)**|The type of incremental layout action to perform (alignment, spacing, or both). See Remarks for possible values.|
| _AlignHorizontal_|Required| **[VisLayoutHorzAlignType](Visio.VisLayoutHorzAlignType.md)**|Indicates how Microsoft Visio aligns shapes horizontally when it aligns incrementally. See Remarks for possible values.|
@@ -36,7 +36,7 @@ Makes small adjustments to the position of shapes in the selection to better ali
| _SpaceVertical_|Required| **Double**|The edge-to-edge vertical spacing (except if layout style is circular). Must be greater than or equal to zero.|
| _UnitCode_|Required| **[VisUnitCodes](Visio.visunitcodes.md)**|The units for the spacing values.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Selection.LineStyle.md b/api/Visio.Selection.LineStyle.md
index 58000656235..7911c101ff1 100644
--- a/api/Visio.Selection.LineStyle.md
+++ b/api/Visio.Selection.LineStyle.md
@@ -23,7 +23,7 @@ Specifies the line style for an object. Read/write.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Selection.LineStyleKeepFmt.md b/api/Visio.Selection.LineStyleKeepFmt.md
index 9ab3a8b8ac3..1f4a16d1343 100644
--- a/api/Visio.Selection.LineStyleKeepFmt.md
+++ b/api/Visio.Selection.LineStyleKeepFmt.md
@@ -23,7 +23,7 @@ Applies a line style to an object while preserving local formatting. Read/write.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Selection.LinkToData.md b/api/Visio.Selection.LinkToData.md
index 8612c878a79..7d075971e48 100644
--- a/api/Visio.Selection.LinkToData.md
+++ b/api/Visio.Selection.LinkToData.md
@@ -30,13 +30,13 @@ Links a selection of shapes to a single data row in a data recordset.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset containing the data to link to.|
| _DataRowID_|Required| **Long**|The ID of the row in the data recordset containing the particular data record to link to. |
| _AutoApplyDataGraphics_|Optional| **Boolean**|Whether to automatically apply a data graphic to the linked shapes. See Remarks for more information.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.MemberOfContainersIntersection.md b/api/Visio.Selection.MemberOfContainersIntersection.md
index 4ce550543d4..2c1c0a3a781 100644
--- a/api/Visio.Selection.MemberOfContainersIntersection.md
+++ b/api/Visio.Selection.MemberOfContainersIntersection.md
@@ -23,7 +23,7 @@ Returns an array of identifiers of the shapes that belong to the normal or list
_expression_ An expression that returns a '[Selection](Visio.Selection.md)' object.
-### Return Value
+### Return value
**Long()**
diff --git a/api/Visio.Selection.MemberOfContainersUnion.md b/api/Visio.Selection.MemberOfContainersUnion.md
index 18577e72da7..3b94c81560c 100644
--- a/api/Visio.Selection.MemberOfContainersUnion.md
+++ b/api/Visio.Selection.MemberOfContainersUnion.md
@@ -23,7 +23,7 @@ Returns an array of identifiers of the shapes that belong to the normal or list
_expression_ An expression that returns a '[Selection](Visio.Selection.md)' object.
-### Return Value
+### Return value
**Long()**
diff --git a/api/Visio.Selection.Move.md b/api/Visio.Selection.Move.md
index 80ba5af35c8..a60477ddfe9 100644
--- a/api/Visio.Selection.Move.md
+++ b/api/Visio.Selection.Move.md
@@ -27,13 +27,13 @@ Moves a selection a specified distance.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _dx_|Required| **Double**|Specifies the amount to move in the x-direction.|
| _dy_|Required| **Double**|Specifies the amount to move in the y-direction.|
| _UnitsNameOrCode_|Optional| **Variant**|Specifies the units to use for _dx_ and _dy_. See Remarks for possible values. The default is inches.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.MoveToSubprocess.md b/api/Visio.Selection.MoveToSubprocess.md
index e08fefcaa39..4434e5d1d3e 100644
--- a/api/Visio.Selection.MoveToSubprocess.md
+++ b/api/Visio.Selection.MoveToSubprocess.md
@@ -27,13 +27,13 @@ Moves the selection to the specified page, and drops a replacement shape on the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required| **[Page](Visio.Page.md)**|The subprocess page to which the selection should be moved. You cannot pass the current page.|
| _ObjectToDrop_|Required| **[UNKNOWN]**|The replacement shape to drop.|
| _NewShape_|Optional| **[Shape](Visio.Shape.md)**|Out parameter. Returns the shape that is linked to the new page.|
-### Return Value
+### Return value
**Selection**
diff --git a/api/Visio.Selection.ObjectType.md b/api/Visio.Selection.ObjectType.md
index a533fb784e0..e15e35e097e 100644
--- a/api/Visio.Selection.ObjectType.md
+++ b/api/Visio.Selection.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Selection.Offset.md b/api/Visio.Selection.Offset.md
index 7512628d89c..8861aebbf7d 100644
--- a/api/Visio.Selection.Offset.md
+++ b/api/Visio.Selection.Offset.md
@@ -27,11 +27,11 @@ Offsets a selection a specified amount.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Distance_|Required| **Double**|Specifies the distance to offset the selection.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.PersistsEvents.md b/api/Visio.Selection.PersistsEvents.md
index c0e56c54f7e..407fcf63185 100644
--- a/api/Visio.Selection.PersistsEvents.md
+++ b/api/Visio.Selection.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Selection.Picture.md b/api/Visio.Selection.Picture.md
index d0cc19a723f..bcdc11d59fd 100644
--- a/api/Visio.Selection.Picture.md
+++ b/api/Visio.Selection.Picture.md
@@ -23,7 +23,7 @@ Returns a picture that represents an enhanced metafile (EMF) contained in a mast
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
IPictureDisp
diff --git a/api/Visio.Selection.PrimaryItem.md b/api/Visio.Selection.PrimaryItem.md
index 0ef77c48bfd..7906b9e1fae 100644
--- a/api/Visio.Selection.PrimaryItem.md
+++ b/api/Visio.Selection.PrimaryItem.md
@@ -23,7 +23,7 @@ Returns the **Shape** object that is a **Selection** object's primary item. Rea
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Selection.RemoveFromContainers.md b/api/Visio.Selection.RemoveFromContainers.md
index 2e4bde52e37..5dc049fb4f0 100644
--- a/api/Visio.Selection.RemoveFromContainers.md
+++ b/api/Visio.Selection.RemoveFromContainers.md
@@ -23,7 +23,7 @@ Removes the selection of shapes from all lists and containers of which the selec
_expression_ A variable that represents a '[Selection](Visio.Selection.md)' object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Selection.RemoveFromGroup.md b/api/Visio.Selection.RemoveFromGroup.md
index 792e5225e12..142d6461847 100644
--- a/api/Visio.Selection.RemoveFromGroup.md
+++ b/api/Visio.Selection.RemoveFromGroup.md
@@ -23,7 +23,7 @@ Removes selected shapes from a group.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Resize.md b/api/Visio.Selection.Resize.md
index 24b8bd2b489..fc58d0cfc3c 100644
--- a/api/Visio.Selection.Resize.md
+++ b/api/Visio.Selection.Resize.md
@@ -27,13 +27,13 @@ Resizes the selection by moving shape handles as specified.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Direction_|Required| **[VisResizeDirection](Visio.VisResizeDirection.md)**|The direction that corresponds to the shape handle. See Remarks for possible values.|
| _Distance_|Required| **Double**|The distance to move the selection edge or corner, where positive values move outward, and negative values move inward.|
| _UnitCode_|Required| **[VisUnitCodes](Visio.visunitcodes.md)**|The unit of measure for the resize distance.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Selection.ReverseEnds.md b/api/Visio.Selection.ReverseEnds.md
index 79e43bec4e2..7109731ec76 100644
--- a/api/Visio.Selection.ReverseEnds.md
+++ b/api/Visio.Selection.ReverseEnds.md
@@ -23,7 +23,7 @@ Reverses an object by flipping it both horizontally and vertically.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Rotate.md b/api/Visio.Selection.Rotate.md
index e1b503d64aa..2681f310284 100644
--- a/api/Visio.Selection.Rotate.md
+++ b/api/Visio.Selection.Rotate.md
@@ -27,7 +27,7 @@ Rotates selected shapes either as a group or individually about their pins.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Angle_|Required| **Double**|Specifies the angle to rotate the selection. See Remarks for possible values.|
| _AngleUnitsNameOrCode_|Optional| **Variant**|Specifies the units to use for _Angle_. See Remarks for possible values. The default is degrees.|
@@ -37,7 +37,7 @@ Rotates selected shapes either as a group or individually about their pins.
| _PinY_|Optional| **Double**| When _RotationType_ is **visRotateSelectionWithPin** , specifies the Y-position of the pin about which the selection is to be rotated.|
| _PinUnitsNameOrCode_|Optional| **Variant**|Specifies the units to use for _PinX_ and _PinY_. See Remarks for possible values. The default is inches.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Rotate90.md b/api/Visio.Selection.Rotate90.md
index 57346329269..8212ca67d95 100644
--- a/api/Visio.Selection.Rotate90.md
+++ b/api/Visio.Selection.Rotate90.md
@@ -23,7 +23,7 @@ Rotates an object 90 degrees counterclockwise.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Select.md b/api/Visio.Selection.Select.md
index 0dbbf6797d8..fcb54d9e26c 100644
--- a/api/Visio.Selection.Select.md
+++ b/api/Visio.Selection.Select.md
@@ -27,12 +27,12 @@ Selects or clears the selection of an object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SheetObject_|Required| **[IVSHAPE]**|An expression that returns a **Shape** object to select or clear.|
| _SelectAction_|Required| **Integer**|The type of selection action to take.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.SelectAll.md b/api/Visio.Selection.SelectAll.md
index fe07e97388f..88797c79853 100644
--- a/api/Visio.Selection.SelectAll.md
+++ b/api/Visio.Selection.SelectAll.md
@@ -23,7 +23,7 @@ Selects all possible shapes in a window or selection.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.SelectionForDragCopy.md b/api/Visio.Selection.SelectionForDragCopy.md
index 51d7269711e..be734c9e987 100644
--- a/api/Visio.Selection.SelectionForDragCopy.md
+++ b/api/Visio.Selection.SelectionForDragCopy.md
@@ -23,7 +23,7 @@ Returns the **[Selection](Visio.Selection.md)** object that represents the coll
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
**Selection**
diff --git a/api/Visio.Selection.SendBackward.md b/api/Visio.Selection.SendBackward.md
index c468b14ca86..6e9ee2a24e9 100644
--- a/api/Visio.Selection.SendBackward.md
+++ b/api/Visio.Selection.SendBackward.md
@@ -23,7 +23,7 @@ Moves a shape or selected shapes back one position in the z-order.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.SendToBack.md b/api/Visio.Selection.SendToBack.md
index 4bb5a76b447..15b5e7ee86f 100644
--- a/api/Visio.Selection.SendToBack.md
+++ b/api/Visio.Selection.SendToBack.md
@@ -23,7 +23,7 @@ Moves the shape or selected shapes to the back of the z-order.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.SetContainerFormat.md b/api/Visio.Selection.SetContainerFormat.md
index da4802e86c3..d58c0d34a8e 100644
--- a/api/Visio.Selection.SetContainerFormat.md
+++ b/api/Visio.Selection.SetContainerFormat.md
@@ -27,12 +27,12 @@ Changes the formatting of one aspect of all the containers in the selection, and
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FormatType_|Required| **[VisContainerFormatType](Visio.VisContainerFormatType.md)**|The container formatting to change. See Remarks for possible values.|
| _FormatValue_|Optional| **Variant**|The new format to apply.|
-### Return Value
+### Return value
**Long()**
diff --git a/api/Visio.Selection.Stat.md b/api/Visio.Selection.Stat.md
index bcb85ef6b2b..2560de593bc 100644
--- a/api/Visio.Selection.Stat.md
+++ b/api/Visio.Selection.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Selection.Style.md b/api/Visio.Selection.Style.md
index 784c35b4e35..d0695722a8f 100644
--- a/api/Visio.Selection.Style.md
+++ b/api/Visio.Selection.Style.md
@@ -23,7 +23,7 @@ Gets or sets the style for a **Selection** object. Read/write.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Selection.StyleKeepFmt.md b/api/Visio.Selection.StyleKeepFmt.md
index a7131f56baf..afaa4a9ebed 100644
--- a/api/Visio.Selection.StyleKeepFmt.md
+++ b/api/Visio.Selection.StyleKeepFmt.md
@@ -23,7 +23,7 @@ Applies a style to an object while preserving local formatting. Read/write.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Selection.Subtract.md b/api/Visio.Selection.Subtract.md
index 345771e19d7..808d442461b 100644
--- a/api/Visio.Selection.Subtract.md
+++ b/api/Visio.Selection.Subtract.md
@@ -23,7 +23,7 @@ Subtracts the areas that overlap the selected shape.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.SwapEnds.md b/api/Visio.Selection.SwapEnds.md
index 4caf6507b5a..662b59fa42f 100644
--- a/api/Visio.Selection.SwapEnds.md
+++ b/api/Visio.Selection.SwapEnds.md
@@ -23,7 +23,7 @@ Swaps the begin and endpoints of a one-dimensional (1-D) shape.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.TextStyle.md b/api/Visio.Selection.TextStyle.md
index a88fae1fcc5..200c6560832 100644
--- a/api/Visio.Selection.TextStyle.md
+++ b/api/Visio.Selection.TextStyle.md
@@ -23,7 +23,7 @@ Gets or sets the text style for an object. Read/write.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Selection.TextStyleKeepFmt.md b/api/Visio.Selection.TextStyleKeepFmt.md
index b1d97297980..41528679d3a 100644
--- a/api/Visio.Selection.TextStyleKeepFmt.md
+++ b/api/Visio.Selection.TextStyleKeepFmt.md
@@ -23,7 +23,7 @@ Applies a text style to an object while preserving local formatting. Read/write.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Selection.Trim.md b/api/Visio.Selection.Trim.md
index ea2afab57c2..80616816998 100644
--- a/api/Visio.Selection.Trim.md
+++ b/api/Visio.Selection.Trim.md
@@ -23,7 +23,7 @@ Trims selected shapes into smaller shapes.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Ungroup.md b/api/Visio.Selection.Ungroup.md
index e7df363f497..97e1e751af4 100644
--- a/api/Visio.Selection.Ungroup.md
+++ b/api/Visio.Selection.Ungroup.md
@@ -23,7 +23,7 @@ Ungroups a group.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.Union.md b/api/Visio.Selection.Union.md
index 616aa0468e2..c2cb59bbdc3 100644
--- a/api/Visio.Selection.Union.md
+++ b/api/Visio.Selection.Union.md
@@ -23,7 +23,7 @@ Creates a new shape from the perimeter of selected shapes.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Selection.UpdateAlignmentBox.md b/api/Visio.Selection.UpdateAlignmentBox.md
index ca54e76e016..cff40f133e7 100644
--- a/api/Visio.Selection.UpdateAlignmentBox.md
+++ b/api/Visio.Selection.UpdateAlignmentBox.md
@@ -23,7 +23,7 @@ Updates the alignment box for a shape.
_expression_ A variable that represents a [Selection](./Visio.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.ServerPublishOptions.Application.md b/api/Visio.ServerPublishOptions.Application.md
index 10daabfffdb..8b8c509cb7f 100644
--- a/api/Visio.ServerPublishOptions.Application.md
+++ b/api/Visio.ServerPublishOptions.Application.md
@@ -26,7 +26,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a '[ServerPublishOptions](Visio.ServerPublishOptions.md)' object.
-### Return Value
+### Return value
**[Application](Visio.Application.md)**
diff --git a/api/Visio.ServerPublishOptions.Document.md b/api/Visio.ServerPublishOptions.Document.md
index cc8df831514..b04c2f7d17f 100644
--- a/api/Visio.ServerPublishOptions.Document.md
+++ b/api/Visio.ServerPublishOptions.Document.md
@@ -26,7 +26,7 @@ Gets the **[Document](Visio.Document.md)** object that is associated with an ob
_expression_ A variable that represents a '[ServerPublishOptions](Visio.ServerPublishOptions.md)' object.
-### Return Value
+### Return value
**Document**
diff --git a/api/Visio.ServerPublishOptions.ExcludePage.md b/api/Visio.ServerPublishOptions.ExcludePage.md
index 08eebfce6a5..1146f44438f 100644
--- a/api/Visio.ServerPublishOptions.ExcludePage.md
+++ b/api/Visio.ServerPublishOptions.ExcludePage.md
@@ -27,12 +27,12 @@ Excludes the specified page from being published when the document is published
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PageName_|Required| **String**|The name of the page to exclude.|
| _Flags_|Required| **[VisLangFlags](Visio.VisLangFlags.md)**|Specifies whether _PageName_ is local or universal.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ServerPublishOptions.GetPagesToPublish.md b/api/Visio.ServerPublishOptions.GetPagesToPublish.md
index 5b152b03119..b1a921ef6ac 100644
--- a/api/Visio.ServerPublishOptions.GetPagesToPublish.md
+++ b/api/Visio.ServerPublishOptions.GetPagesToPublish.md
@@ -27,13 +27,13 @@ Returns an array of pages that are set to be published to a server.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Required| **[VisLangFlags](Visio.VisLangFlags.md)**|Out parameter. Indicates whether universal or local page names are returned in _NamesArray_. See Remarks for possible values.|
| _PublishPages_|Required| **[VisPublishPages](Visio.VisPublishPages.md)**|Out parameter. Indicates whether all pages or selected pages are set to be published. See Remarks for possible values.|
| _NamesArray()_|Required| **String**|Out parameter. Returns the names of the pages set to be published.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ServerPublishOptions.GetRecordsetsToPublish.md b/api/Visio.ServerPublishOptions.GetRecordsetsToPublish.md
index 616f27c0fdc..fa01f727fc5 100644
--- a/api/Visio.ServerPublishOptions.GetRecordsetsToPublish.md
+++ b/api/Visio.ServerPublishOptions.GetRecordsetsToPublish.md
@@ -27,12 +27,12 @@ Returns the identifiers (IDs) of the data recordsets that are set to be publishe
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PublishDataRecordsets_|Required| **[VisPublishDataRecordsets](Visio.VisPublishDataRecordsets.md)**|Out parameter. Returns whether all, no, or selected data recordsets are set to be published. See Remarks for possible values.|
| _DataRecordsetIDs()_|Required| **Long**|Out parameter. Returns the IDs of the data recordsets that are set to be published.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ServerPublishOptions.IncludePage.md b/api/Visio.ServerPublishOptions.IncludePage.md
index 1f0c4f4703d..e107b55435d 100644
--- a/api/Visio.ServerPublishOptions.IncludePage.md
+++ b/api/Visio.ServerPublishOptions.IncludePage.md
@@ -27,12 +27,12 @@ Includes the specified page for publication when the document is published as a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PageName_|Required| **String**|The name of the page to be published.|
| _Flags_|Required| **[VisLangFlags](Visio.VisLangFlags.md)**|Indicates whether a universal or local page name is specified in PageName. See Remarks for possible values.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ServerPublishOptions.IsPublishedPage.md b/api/Visio.ServerPublishOptions.IsPublishedPage.md
index c20e09b2c68..8ca0647549c 100644
--- a/api/Visio.ServerPublishOptions.IsPublishedPage.md
+++ b/api/Visio.ServerPublishOptions.IsPublishedPage.md
@@ -27,12 +27,12 @@ Returns **True** if the specified page is designated to be included when the do
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PageName_|Required| **String**|The page to check for publish status.|
| _Flags_|Required| **[VisLangFlags](Visio.VisLangFlags.md)**|Specifies whether the page name is a local or a universal name.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.ServerPublishOptions.ObjectType.md b/api/Visio.ServerPublishOptions.ObjectType.md
index 407d3123a5f..fe932f221ca 100644
--- a/api/Visio.ServerPublishOptions.ObjectType.md
+++ b/api/Visio.ServerPublishOptions.ObjectType.md
@@ -26,7 +26,7 @@ Returns **visObjTypeServerPublishOptions** , the type of this object. Read-only
_expression_ A variable that represents a '[ServerPublishOptions](Visio.ServerPublishOptions.md)' object.
-### Return Value
+### Return value
**visObjTypeServerPublishOptions**
diff --git a/api/Visio.ServerPublishOptions.SetPagesToPublish.md b/api/Visio.ServerPublishOptions.SetPagesToPublish.md
index 0200cf0cf7f..d762a6b6108 100644
--- a/api/Visio.ServerPublishOptions.SetPagesToPublish.md
+++ b/api/Visio.ServerPublishOptions.SetPagesToPublish.md
@@ -27,13 +27,13 @@ Specifies the pages to publish to a server.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PublishPages_|Required| **[VisPublishPages](Visio.VisPublishPages.md)**|Indicates whether all pages or selected pages are to be published. See Remarks for possible values.|
| _NamesArray()_|Required| **String**|The names of the pages to be published, if _PublishPages_ is **visPublishPageSelect** .|
| _Flags_|Required| **[VisLangFlags](Visio.VisLangFlags.md)**|Indicates whether universal or local page names are specified in _NamesArray_. See Remarks for possible values.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ServerPublishOptions.SetRecordsetsToPublish.md b/api/Visio.ServerPublishOptions.SetRecordsetsToPublish.md
index 22285468c9a..a7931afe428 100644
--- a/api/Visio.ServerPublishOptions.SetRecordsetsToPublish.md
+++ b/api/Visio.ServerPublishOptions.SetRecordsetsToPublish.md
@@ -27,12 +27,12 @@ Sets the data recordsets to be published to a server.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PublishDataRecordsets_|Required| **[VisPublishDataRecordsets](Visio.VisPublishDataRecordsets.md)**|Specifies whether all, no, or selected data recordsets are to be published. See Remarks for possible values.|
| _DataRecordsetIDs()_|Required| **Long**|Specifies the identifiers of the data recordsets that are set to be published if _PublishDataRecordsets_ is **visPublishDataRecordsetsSelect** .|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ServerPublishOptions.Stat.md b/api/Visio.ServerPublishOptions.Stat.md
index 524e840fa44..3ee2007db57 100644
--- a/api/Visio.ServerPublishOptions.Stat.md
+++ b/api/Visio.ServerPublishOptions.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a '[ServerPublishOptions](Visio.ServerPublishOptions.md)' object.
-### Return Value
+### Return value
**[VisStatCodes](Visio.visstatcodes.md)**
diff --git a/api/Visio.SetPageView.md b/api/Visio.SetPageView.md
index 07765371af7..8139c012340 100644
--- a/api/Visio.SetPageView.md
+++ b/api/Visio.SetPageView.md
@@ -24,13 +24,13 @@ Sets the position and zoom factor (size) of the drawing page in Microsoft Visio
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|PageXAtViewCenter|Required| **Double**|The x-coordinate, in drawing-page units, of the center of the page, measured from the lower left corner of the page.|
|PageYAtViewCenter|Required| **Double**|The y-coordinate, in drawing-page units, of the center of the page, measured from the lower left corner of the page.|
|ZoomFactor|Required| **Double**|The factor by which to multiply the zoom (page size).|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.AddGuide.md b/api/Visio.Shape.AddGuide.md
index 293f365e491..06627a0b073 100644
--- a/api/Visio.Shape.AddGuide.md
+++ b/api/Visio.Shape.AddGuide.md
@@ -27,13 +27,13 @@ Adds a guide to a group shape.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **Integer**|The type of guide to add.|
| _xPos_|Required| **Double**|The x-coordinate of a point on the guide.|
| _yPos_|Required| **Double**|The y-coordinate of a point on the guide.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.AddHyperlink.md b/api/Visio.Shape.AddHyperlink.md
index 85dc1a4e3ba..639e8b1e3ec 100644
--- a/api/Visio.Shape.AddHyperlink.md
+++ b/api/Visio.Shape.AddHyperlink.md
@@ -20,7 +20,7 @@ Adds a **Hyperlink** object to a Microsoft Visio shape.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Hyperlink
diff --git a/api/Visio.Shape.AddNamedRow.md b/api/Visio.Shape.AddNamedRow.md
index ba18469e923..e0503996e3f 100644
--- a/api/Visio.Shape.AddNamedRow.md
+++ b/api/Visio.Shape.AddNamedRow.md
@@ -27,13 +27,13 @@ Adds a row that has the specified name to the specified ShapeSheet section.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Section_|Required| **Integer**| The section in which the row is to be added.|
| _RowName_|Required| **String**|The name of the new row.|
| _RowTag_|Required| **Integer**| The type of row to be added.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.AddRow.md b/api/Visio.Shape.AddRow.md
index 2cdbc704bf5..a0c3c90f638 100644
--- a/api/Visio.Shape.AddRow.md
+++ b/api/Visio.Shape.AddRow.md
@@ -27,13 +27,13 @@ Adds a row to a ShapeSheet section at a specified position.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Section_|Required| **Integer**|The section in which to add the row.|
| _Row_|Required| **Integer**| The position at which to add the row.|
| _RowTag_|Required| **Integer**|The type of row to add.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.AddRows.md b/api/Visio.Shape.AddRows.md
index 4bf44732c2b..c73ae743c25 100644
--- a/api/Visio.Shape.AddRows.md
+++ b/api/Visio.Shape.AddRows.md
@@ -27,14 +27,14 @@ Adds the specified number of rows to a ShapeSheet section at a specified positio
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Section_|Required| **Integer**|The section in which to add the rows.|
| _Row_|Required| **Integer**|The position at which to add the rows.|
| _RowTag_|Required| **Integer**|The type of rows to add.|
| _RowCount_|Required| **Integer**|The number of rows to add.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.AddSection.md b/api/Visio.Shape.AddSection.md
index dafb36051ca..5b35f4a9ef2 100644
--- a/api/Visio.Shape.AddSection.md
+++ b/api/Visio.Shape.AddSection.md
@@ -27,11 +27,11 @@ Adds a new section to a ShapeSheet spreadsheet.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Section_|Required| **Integer**|The type of section to add.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.AddToContainers.md b/api/Visio.Shape.AddToContainers.md
index ed35991d780..5c62e33c6fd 100644
--- a/api/Visio.Shape.AddToContainers.md
+++ b/api/Visio.Shape.AddToContainers.md
@@ -23,7 +23,7 @@ Adds the shape to all underlying containers that allow it as a member.
_expression_ A variable that represents a '[Shape](Visio.Shape.md)' object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Shape.Application.md b/api/Visio.Shape.Application.md
index ab96683e4cc..5f269e7893b 100644
--- a/api/Visio.Shape.Application.md
+++ b/api/Visio.Shape.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Shape.AreaIU.md b/api/Visio.Shape.AreaIU.md
index a98de3885bd..5b59722fbb8 100644
--- a/api/Visio.Shape.AreaIU.md
+++ b/api/Visio.Shape.AreaIU.md
@@ -27,11 +27,11 @@ Returns the area of a **Shape** object in internal units (square inches). Read-
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _fIncludeSubShapes_|Optional| **Boolean**| **False** to exclude the area of subshapes. Area of subshapes is included by default.|
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Shape.AutoConnect.md b/api/Visio.Shape.AutoConnect.md
index c981bf45a6d..8939e487971 100644
--- a/api/Visio.Shape.AutoConnect.md
+++ b/api/Visio.Shape.AutoConnect.md
@@ -27,13 +27,13 @@ Automatically draws a connection in the specified direction between the shape an
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ToShape_|Required| **[IVSHAPE]**|The shape to draw the connection to.|
| _PlacementDir_|Required| **VisAutoConnectDir**|The direction in which to draw the connection. See Remarks for possible values.|
| _Connector_|Optional| **[UNKNOWN]**|The connector to use.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.BeforeSelectionDelete.md b/api/Visio.Shape.BeforeSelectionDelete.md
index 2071d2bba74..056d8cc9316 100644
--- a/api/Visio.Shape.BeforeSelectionDelete.md
+++ b/api/Visio.Shape.BeforeSelectionDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeSelectionDelete'(**_ByVal Selection As [IVSELE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selected objects that are going to be deleted.|
diff --git a/api/Visio.Shape.BeforeShapeDelete.md b/api/Visio.Shape.BeforeShapeDelete.md
index 458760e1557..f39031f7f05 100644
--- a/api/Visio.Shape.BeforeShapeDelete.md
+++ b/api/Visio.Shape.BeforeShapeDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeShapeDelete'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be deleted.|
diff --git a/api/Visio.Shape.BeforeShapeTextEdit.md b/api/Visio.Shape.BeforeShapeTextEdit.md
index da4e9b15ef0..a0445c530db 100644
--- a/api/Visio.Shape.BeforeShapeTextEdit.md
+++ b/api/Visio.Shape.BeforeShapeTextEdit.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeShapeTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is going to be opened for text editing.|
diff --git a/api/Visio.Shape.BoundingBox.md b/api/Visio.Shape.BoundingBox.md
index 88f077c4983..602f6ad2a00 100644
--- a/api/Visio.Shape.BoundingBox.md
+++ b/api/Visio.Shape.BoundingBox.md
@@ -27,7 +27,7 @@ Returns a rectangle that tightly encloses a shape.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Required| **Integer**|Flags that influence the bounding box calculated for each shape that contributes to the resulting bounding box.|
| _lpr8Left_|Required| **Double**|Returns the x-coordinate of the left edge of the bounding box.|
@@ -35,7 +35,7 @@ Returns a rectangle that tightly encloses a shape.
| _lpr8Right_|Required| **Double**|Returns the x-coordinate of the right edge of the bounding box.|
| _lpr8Top_|Required| **Double**|Returns the y-coordinate of the top edge of the bounding box.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.BreakLinkToData.md b/api/Visio.Shape.BreakLinkToData.md
index b81baf21e7a..dd93f21103d 100644
--- a/api/Visio.Shape.BreakLinkToData.md
+++ b/api/Visio.Shape.BreakLinkToData.md
@@ -30,11 +30,11 @@ Breaks the link between the shape and the data row to which it is linked in the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset containing the data row the shape is linked to.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.BringForward.md b/api/Visio.Shape.BringForward.md
index 5b6c6ab29b6..0255104a119 100644
--- a/api/Visio.Shape.BringForward.md
+++ b/api/Visio.Shape.BringForward.md
@@ -23,7 +23,7 @@ Brings the shape or selected shapes forward one position in the z-order.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.BringToFront.md b/api/Visio.Shape.BringToFront.md
index 9f5426f4363..7fe891f01a1 100644
--- a/api/Visio.Shape.BringToFront.md
+++ b/api/Visio.Shape.BringToFront.md
@@ -23,7 +23,7 @@ Brings the shape or selected shapes to the front of the z-order.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.CalloutTarget.md b/api/Visio.Shape.CalloutTarget.md
index f0f422f2c25..4a5fe0d69b1 100644
--- a/api/Visio.Shape.CalloutTarget.md
+++ b/api/Visio.Shape.CalloutTarget.md
@@ -23,7 +23,7 @@ Gets or sets the target shape that is associated with the callout shape by a cal
_expression_ A variable that represents a '[Shape](Visio.Shape.md)' object.
-### Return Value
+### Return value
**Shape**
diff --git a/api/Visio.Shape.CalloutsAssociated.md b/api/Visio.Shape.CalloutsAssociated.md
index 339d655d37f..9ea88032dac 100644
--- a/api/Visio.Shape.CalloutsAssociated.md
+++ b/api/Visio.Shape.CalloutsAssociated.md
@@ -23,7 +23,7 @@ Returns an array of **Long** values that represent the collection of identifier
_expression_ A variable that represents a '[Shape](Visio.Shape.md)' object.
-### Return Value
+### Return value
**Long()**
diff --git a/api/Visio.Shape.CellChanged.md b/api/Visio.Shape.CellChanged.md
index da1ea8c8c54..7cd12395933 100644
--- a/api/Visio.Shape.CellChanged.md
+++ b/api/Visio.Shape.CellChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'CellChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose value has changed.|
diff --git a/api/Visio.Shape.CellExists.md b/api/Visio.Shape.CellExists.md
index 0e4d38b622b..d0834b45179 100644
--- a/api/Visio.Shape.CellExists.md
+++ b/api/Visio.Shape.CellExists.md
@@ -27,12 +27,12 @@ Determines whether a particular ShapeSheet cell exists in the scope of the searc
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeSpecificCellName_|Required| **String**|The local or universal name of the ShapeSheet cell for which you want to search.|
| _fExistsLocally_|Required| **Integer**|The scope of the search.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.CellExistsU.md b/api/Visio.Shape.CellExistsU.md
index e09f5a61d6f..b561f06ec18 100644
--- a/api/Visio.Shape.CellExistsU.md
+++ b/api/Visio.Shape.CellExistsU.md
@@ -27,12 +27,12 @@ Determines whether a particular ShapeSheet cell exists in the scope of the searc
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeIndependentCellName_|Required| **String**|The universal name of the ShapeSheet cell for which you want to search.|
| _fExistsLocally_|Required| **Integer**|The scope of the search.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.Cells.md b/api/Visio.Shape.Cells.md
index 96703738592..cb0a1d8cce2 100644
--- a/api/Visio.Shape.Cells.md
+++ b/api/Visio.Shape.Cells.md
@@ -27,11 +27,11 @@ Returns a **Cell** object that represents a ShapeSheet cell. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeSpecificCellName_|Required| **String**|The name of a ShapeSheet cell.|
-### Return Value
+### Return value
Cell
diff --git a/api/Visio.Shape.CellsRowIndex.md b/api/Visio.Shape.CellsRowIndex.md
index 57af335acd9..4c015765978 100644
--- a/api/Visio.Shape.CellsRowIndex.md
+++ b/api/Visio.Shape.CellsRowIndex.md
@@ -27,11 +27,11 @@ Returns the index of a row to which a cell belongs. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeSpecificCellName_|Required| **String**|The name of a ShapeSheet cell.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.CellsRowIndexU.md b/api/Visio.Shape.CellsRowIndexU.md
index dd8a75ec726..aaac013b9cb 100644
--- a/api/Visio.Shape.CellsRowIndexU.md
+++ b/api/Visio.Shape.CellsRowIndexU.md
@@ -27,11 +27,11 @@ Returns the index of a row to which a cell belongs. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeIndependentCellName_|Required| **String**|The universal name of a ShapeSheet cell.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.CellsSRC.md b/api/Visio.Shape.CellsSRC.md
index 0442c262be0..726e2622f55 100644
--- a/api/Visio.Shape.CellsSRC.md
+++ b/api/Visio.Shape.CellsSRC.md
@@ -27,13 +27,13 @@ Returns a **Cell** object that represents a ShapeSheet cell identified by secti
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Section_|Required| **Integer**|The cell's section index.|
| _Row_|Required| **Integer**|The cell's row index.|
| _Column_|Required| **Integer**|The cell's column index.|
-### Return Value
+### Return value
Cell
diff --git a/api/Visio.Shape.CellsSRCExists.md b/api/Visio.Shape.CellsSRCExists.md
index 93b2026e7ee..65f91d1f3b7 100644
--- a/api/Visio.Shape.CellsSRCExists.md
+++ b/api/Visio.Shape.CellsSRCExists.md
@@ -27,14 +27,14 @@ Determines whether a ShapeSheet cell exists in the scope of a search. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Section_|Required| **Integer**|The cell's section index.|
| _Row_|Required| **Integer**|The cell's row index.|
| _Column_|Required| **Integer**|The cell's column index.|
| _fExistsLocally_|Required| **Integer**|The scope of the search.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.CellsU.md b/api/Visio.Shape.CellsU.md
index 27421cabba3..f29660d4ade 100644
--- a/api/Visio.Shape.CellsU.md
+++ b/api/Visio.Shape.CellsU.md
@@ -27,11 +27,11 @@ Returns a **Cell** object that represents a ShapeSheet cell. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeIndependentCellName_|Required| **String**|The name of a ShapeSheet cell.|
-### Return Value
+### Return value
Cell
diff --git a/api/Visio.Shape.CenterDrawing.md b/api/Visio.Shape.CenterDrawing.md
index 1d3e364c89f..eeb05616bcf 100644
--- a/api/Visio.Shape.CenterDrawing.md
+++ b/api/Visio.Shape.CenterDrawing.md
@@ -23,7 +23,7 @@ Centers a page's, master's, or group's shapes with respect to the extent of the
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.CharCount.md b/api/Visio.Shape.CharCount.md
index 614621f95e1..84a4440f670 100644
--- a/api/Visio.Shape.CharCount.md
+++ b/api/Visio.Shape.CharCount.md
@@ -23,7 +23,7 @@ Returns the number of characters in an object. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Shape.Characters.md b/api/Visio.Shape.Characters.md
index 453933f6160..7d624717a5b 100644
--- a/api/Visio.Shape.Characters.md
+++ b/api/Visio.Shape.Characters.md
@@ -23,7 +23,7 @@ Returns a **Characters** object that represents the text of a shape. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Characters
diff --git a/api/Visio.Shape.ClassID.md b/api/Visio.Shape.ClassID.md
index 9a12623f2f1..47338bf3fb9 100644
--- a/api/Visio.Shape.ClassID.md
+++ b/api/Visio.Shape.ClassID.md
@@ -23,7 +23,7 @@ Returns the class ID string of a shape that represents an ActiveX control or an
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.ConnectedShapes.md b/api/Visio.Shape.ConnectedShapes.md
index b1b3f6d581a..f1bd557ca37 100644
--- a/api/Visio.Shape.ConnectedShapes.md
+++ b/api/Visio.Shape.ConnectedShapes.md
@@ -27,12 +27,12 @@ Returns an array that contains the identifiers (IDs) of the shapes that are conn
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Required| **[VisConnectedShapesFlags](Visio.VisConnectedShapesFlags.md)**|Filters the array of returned shape IDs by the directionality of the connectors. See Remarks for possible values.|
| _CategoryFilter_|Required| **String**|Filters the array of returned shape IDs by limiting it to the IDs of shapes that match the specified category.|
-### Return Value
+### Return value
**Long()**
diff --git a/api/Visio.Shape.Connects.md b/api/Visio.Shape.Connects.md
index 1e786ded3be..2a7a2ea3710 100644
--- a/api/Visio.Shape.Connects.md
+++ b/api/Visio.Shape.Connects.md
@@ -23,7 +23,7 @@ Returns a **Connects** collection for a shape, page, or master. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Connects
diff --git a/api/Visio.Shape.ContainerProperties.md b/api/Visio.Shape.ContainerProperties.md
index 4cd204a6fa5..a441a5f723b 100644
--- a/api/Visio.Shape.ContainerProperties.md
+++ b/api/Visio.Shape.ContainerProperties.md
@@ -23,7 +23,7 @@ Returns the **[ContainerProperties](Visio.ContainerProperties.md)** object asso
_expression_ A variable that represents a '[Shape](Visio.Shape.md)' object.
-### Return Value
+### Return value
**ContainerProperties**
diff --git a/api/Visio.Shape.ContainingMaster.md b/api/Visio.Shape.ContainingMaster.md
index de9265ce704..bb0a99f536f 100644
--- a/api/Visio.Shape.ContainingMaster.md
+++ b/api/Visio.Shape.ContainingMaster.md
@@ -23,7 +23,7 @@ Returns the **Master** object that contains an object. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Shape.ContainingMasterID.md b/api/Visio.Shape.ContainingMasterID.md
index 34e51ed1379..27ef55cfedf 100644
--- a/api/Visio.Shape.ContainingMasterID.md
+++ b/api/Visio.Shape.ContainingMasterID.md
@@ -23,7 +23,7 @@ Returns the ID of the **Master** object that contains an object. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Shape.ContainingPage.md b/api/Visio.Shape.ContainingPage.md
index 0569a020c42..e0f7b0d86d6 100644
--- a/api/Visio.Shape.ContainingPage.md
+++ b/api/Visio.Shape.ContainingPage.md
@@ -23,7 +23,7 @@ Returns the page that contains an object.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Page
diff --git a/api/Visio.Shape.ContainingPageID.md b/api/Visio.Shape.ContainingPageID.md
index eff70bbdeff..0f4127a2260 100644
--- a/api/Visio.Shape.ContainingPageID.md
+++ b/api/Visio.Shape.ContainingPageID.md
@@ -23,7 +23,7 @@ Returns the ID of the page that contains an object. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Shape.ContainingShape.md b/api/Visio.Shape.ContainingShape.md
index aab70e59fb7..ca3875de6fc 100644
--- a/api/Visio.Shape.ContainingShape.md
+++ b/api/Visio.Shape.ContainingShape.md
@@ -23,7 +23,7 @@ Returns the **Shape** object that contains an object or collection. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.ConvertToGroup.md b/api/Visio.Shape.ConvertToGroup.md
index 988540a3278..7b60b48a5c4 100644
--- a/api/Visio.Shape.ConvertToGroup.md
+++ b/api/Visio.Shape.ConvertToGroup.md
@@ -23,7 +23,7 @@ Converts a selection or an object from another application (a linked or embedded
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.ConvertToGroupCanceled.md b/api/Visio.Shape.ConvertToGroupCanceled.md
index 156d91c687f..6293cee5d3f 100644
--- a/api/Visio.Shape.ConvertToGroupCanceled.md
+++ b/api/Visio.Shape.ConvertToGroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ConvertToGroupCanceled'(**_ByVal Selection As [IVSEL
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.Shape.Copy.md b/api/Visio.Shape.Copy.md
index bbbf9450e89..761cd35a8b6 100644
--- a/api/Visio.Shape.Copy.md
+++ b/api/Visio.Shape.Copy.md
@@ -27,11 +27,11 @@ Copies a shape to the Clipboard.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Optional| **Variant**|Determines how shapes are translated during the copy operation.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.CreateSelection.md b/api/Visio.Shape.CreateSelection.md
index a2556b7836a..84054943818 100644
--- a/api/Visio.Shape.CreateSelection.md
+++ b/api/Visio.Shape.CreateSelection.md
@@ -27,13 +27,13 @@ Creates various types of **Selection** objects.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SelType_|Required| **VisSelectionTypes**|The type of selection. See Remarks for possible values.|
| _IterationMode_|Optional| **VisSelectMode**|The selection mode used. See Remarks for possible values.|
| _Data_|Optional| **Variant**|The object type that corresponds to the _SelType_ argument. See Remarks for possible values.|
-### Return Value
+### Return value
Selection
diff --git a/api/Visio.Shape.CreateSubProcess.md b/api/Visio.Shape.CreateSubProcess.md
index 56899e9032b..45d6f76e634 100644
--- a/api/Visio.Shape.CreateSubProcess.md
+++ b/api/Visio.Shape.CreateSubProcess.md
@@ -23,7 +23,7 @@ Creates and returns a new sub-process page that is linked to the shape.
_expression_ A variable that represents a '[Shape](Visio.Shape.md)' object.
-### Return Value
+### Return value
**[Page](Visio.Page.md)**
diff --git a/api/Visio.Shape.Cut.md b/api/Visio.Shape.Cut.md
index 4342fe060ec..4398d69d47a 100644
--- a/api/Visio.Shape.Cut.md
+++ b/api/Visio.Shape.Cut.md
@@ -27,11 +27,11 @@ Deletes an object or selection and places it on the Clipboard.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Optional| **Variant**|Determines how shapes are translated during the cut operation.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.Data1.md b/api/Visio.Shape.Data1.md
index 525f857ea33..a6db0ff7d58 100644
--- a/api/Visio.Shape.Data1.md
+++ b/api/Visio.Shape.Data1.md
@@ -23,7 +23,7 @@ Gets or sets the value of the **Data1** field for a **Shape** object. Read/writ
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.Data2.md b/api/Visio.Shape.Data2.md
index 5bd13ee4bcb..e118fda68ff 100644
--- a/api/Visio.Shape.Data2.md
+++ b/api/Visio.Shape.Data2.md
@@ -23,7 +23,7 @@ Gets or sets the value of the **Data2** field for a **Shape** object. Read/writ
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.Data3.md b/api/Visio.Shape.Data3.md
index e5a87f51a14..bff5efc70dd 100644
--- a/api/Visio.Shape.Data3.md
+++ b/api/Visio.Shape.Data3.md
@@ -23,7 +23,7 @@ Gets or sets the value of the **Data3** field for a **Shape** object. Read/writ
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.DataGraphic.md b/api/Visio.Shape.DataGraphic.md
index c8eeeb68a7f..07beb95c013 100644
--- a/api/Visio.Shape.DataGraphic.md
+++ b/api/Visio.Shape.DataGraphic.md
@@ -26,7 +26,7 @@ Gets or sets the data graphic master (**Master** of type **visTypeDataGraphic**)
_expression_ An expression that returns a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Shape.Delete.md b/api/Visio.Shape.Delete.md
index 24bb5105a7f..f783e26c5ec 100644
--- a/api/Visio.Shape.Delete.md
+++ b/api/Visio.Shape.Delete.md
@@ -23,7 +23,7 @@ Deletes an object or selection.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.DeleteEx.md b/api/Visio.Shape.DeleteEx.md
index 338d07cd0f1..e7704f41d63 100644
--- a/api/Visio.Shape.DeleteEx.md
+++ b/api/Visio.Shape.DeleteEx.md
@@ -27,11 +27,11 @@ Deletes the additional shapes that are associated with the shape, such as connec
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DelFlags_|Required| **Long**|The additional shapes to delete. See Remarks for possible values.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Shape.DeleteRow.md b/api/Visio.Shape.DeleteRow.md
index 3ca437c0e12..4d84ac7c47a 100644
--- a/api/Visio.Shape.DeleteRow.md
+++ b/api/Visio.Shape.DeleteRow.md
@@ -27,12 +27,12 @@ Deletes a row from a section in a ShapeSheet spreadsheet.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Section_|Required| **Integer**|The index of the section that contains the row.|
| _Row_|Required| **Integer**|The index of the row to delete.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.DeleteSection.md b/api/Visio.Shape.DeleteSection.md
index eb6bc01ae6e..8760cd285e0 100644
--- a/api/Visio.Shape.DeleteSection.md
+++ b/api/Visio.Shape.DeleteSection.md
@@ -27,11 +27,11 @@ Deletes a ShapeSheet section.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Section_|Required| **Integer**|The index of the section to delete.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.Disconnect.md b/api/Visio.Shape.Disconnect.md
index 5c95f55715c..d687ee273c0 100644
--- a/api/Visio.Shape.Disconnect.md
+++ b/api/Visio.Shape.Disconnect.md
@@ -27,14 +27,14 @@ Unglues the specified connector end points and offsets them the specified amount
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ConnectorEnd_|Required| **[VisConnectorEnds](Visio.VisConnectorEnds.md)**|The end of the connector to disconnect.|
| _OffsetX_|Required| **Double**|The _x_-distance that the connector end is moved away from the shape.|
| _OffsetY_|Required| **Double**|The _y_-distance that the connector end is moved away from the shape.|
| _Units_|Required| **[VisUnitCodes](Visio.visunitcodes.md)**|The units of measure for the assigned offset values.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Shape.DistanceFrom.md b/api/Visio.Shape.DistanceFrom.md
index cdc08950d56..892eaa60892 100644
--- a/api/Visio.Shape.DistanceFrom.md
+++ b/api/Visio.Shape.DistanceFrom.md
@@ -27,12 +27,12 @@ Returns the distance from one shape to another, measured between the closest poi
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _OtherShape_|Required| **[IVSHAPE]**|The other **Shape** object involved in the comparison.|
| _Flags_|Required| **Integer**|Flags that influence the type of entries returned in results.|
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Shape.DistanceFromPoint.md b/api/Visio.Shape.DistanceFromPoint.md
index 007b17620e1..2c3c2316b5d 100644
--- a/api/Visio.Shape.DistanceFromPoint.md
+++ b/api/Visio.Shape.DistanceFromPoint.md
@@ -27,7 +27,7 @@ Returns the distance from a shape to a point. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _x_|Required| **Double**|An x-coordinate.|
| _y_|Required| **Double**|A y-coordinate.|
@@ -36,7 +36,7 @@ Returns the distance from a shape to a point. Read-only.
| _pvCurveIndex_|Optional| **Variant**|Identifies the point on the shape in conjunction with _pvPathIndex_ and _pvt_.|
| _pvt_|Optional| **Variant**|Identifies the point on the shape in conjunction with _pvPathIndex_ and _pvCurveIndex_.|
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Shape.Document.md b/api/Visio.Shape.Document.md
index 0183688cdaa..78e2ed3f321 100644
--- a/api/Visio.Shape.Document.md
+++ b/api/Visio.Shape.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Shape.DrawArcByThreePoints.md b/api/Visio.Shape.DrawArcByThreePoints.md
index 642ba916bd5..a61123d2259 100644
--- a/api/Visio.Shape.DrawArcByThreePoints.md
+++ b/api/Visio.Shape.DrawArcByThreePoints.md
@@ -27,7 +27,7 @@ Creates a shape whose path consists of an arc defined by the three points passed
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xBegin_|Required| **Double**|The x-coordinate of the begin point of the arc.|
| _yBegin_|Required| **Double**|The y-coordinate of the begin point of the arc.|
@@ -36,7 +36,7 @@ Creates a shape whose path consists of an arc defined by the three points passed
| _xControl_|Required| **Double**|The x-coordinate of the control point of the arc.|
| _yControl_|Required| **Double**|The y-coordinate of the control point of the arc.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.DrawBezier.md b/api/Visio.Shape.DrawBezier.md
index 3eaf0fb2dae..9f1ca13e340 100644
--- a/api/Visio.Shape.DrawBezier.md
+++ b/api/Visio.Shape.DrawBezier.md
@@ -27,13 +27,13 @@ Creates a shape whose path is defined by the supplied sequence of Bezier control
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xyArray()_|Required| **Double**|An array of alternating _x_ and _y_ values that define the Bezier control points for the new shape.|
| _degree_|Required| **Integer**|The degree of the Bezier curve.|
| _Flags_|Required| **Integer**|Flags that influence how the shape is drawn.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.DrawCircularArc.md b/api/Visio.Shape.DrawCircularArc.md
index 39d9db38c4f..f95314f4e29 100644
--- a/api/Visio.Shape.DrawCircularArc.md
+++ b/api/Visio.Shape.DrawCircularArc.md
@@ -27,7 +27,7 @@ Creates a new shape whose path consists of a circular arc defined by its center,
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xCenter_|Required| **Double**|The x-coordinate of the center of the arc.|
| _yCenter_|Required| **Double**|The y-coordinate of the center of the arc.|
@@ -35,7 +35,7 @@ Creates a new shape whose path consists of a circular arc defined by its center,
| _StartAngle_|Optional| **Double**|The angle in radians with respect to the x-axis at which to start drawing the arc. The default is 0.|
| _EndAngle_|Optional| **Double**|The angle in radians with respect to the x-axis at which to end the arc. The default is pi (3.14592634898).|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.DrawLine.md b/api/Visio.Shape.DrawLine.md
index 367d5b2c68d..300c44d1aa9 100644
--- a/api/Visio.Shape.DrawLine.md
+++ b/api/Visio.Shape.DrawLine.md
@@ -27,14 +27,14 @@ Adds a line to the **Shapes** collection of a group shape.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xBegin_|Required| **Double**|The x-coordinate of the line's begin point.|
| _yBegin_|Required| **Double**|The y-coordinate of the line's begin point.|
| _xEnd_|Required| **Double**|The x-coordinate of the line's endpoint.|
| _yEnd_|Required| **Double**|The y-coordinate of the line's endpoint.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.DrawNURBS.md b/api/Visio.Shape.DrawNURBS.md
index fe8ffd7885e..710bc0e88d2 100644
--- a/api/Visio.Shape.DrawNURBS.md
+++ b/api/Visio.Shape.DrawNURBS.md
@@ -27,7 +27,7 @@ Creates a new shape whose path consists of a single NURBS (nonuniform rational B
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _degree_|Required| **Integer**|The spline's degree; an integer between 1 and 25.|
| _Flags_|Required| **Integer**|Flags that influence how the shape is drawn.|
@@ -35,7 +35,7 @@ Creates a new shape whose path consists of a single NURBS (nonuniform rational B
| _knots()_|Required| **Double**|An array of knots.|
| _weights_|Optional| **Variant**|An array of weights.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.DrawOval.md b/api/Visio.Shape.DrawOval.md
index 11a7861072a..094e25700dc 100644
--- a/api/Visio.Shape.DrawOval.md
+++ b/api/Visio.Shape.DrawOval.md
@@ -27,14 +27,14 @@ Adds an oval (ellipse) to the **Shapes** collection of a group shape.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _x1_|Required| **Double**|The x-coordinate of one corner of the ellipse's width-height box.|
| _y1_|Required| **Double**|The y-coordinate of one corner of the ellipse's width-height box.|
| _x2_|Required| **Double**|The x-coordinate of the other corner of the ellipse's width-height box.|
| _y2_|Required| **Double**|The y-coordinate of the other corner of the ellipse's width-height box.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.DrawPolyline.md b/api/Visio.Shape.DrawPolyline.md
index 50c43f0c7d1..890a4983dba 100644
--- a/api/Visio.Shape.DrawPolyline.md
+++ b/api/Visio.Shape.DrawPolyline.md
@@ -27,12 +27,12 @@ Creates a shape whose path is a polyline along a given set of points.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xyArray()_|Required| **Double**| An array of alternating _x_ and _y_ values that defines points in the new shape's path.|
| _Flags_|Required| **Integer**|Flags that influence how the shape is drawn.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.DrawQuarterArc.md b/api/Visio.Shape.DrawQuarterArc.md
index 0a4e7c13e76..ca5b5425c82 100644
--- a/api/Visio.Shape.DrawQuarterArc.md
+++ b/api/Visio.Shape.DrawQuarterArc.md
@@ -27,7 +27,7 @@ Creates a new shape whose path consists of an elliptical arc defined by the two
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xBegin_|Required| **Double**|The _x_-coordinate of the begin point of the arc.|
| _yBegin_|Required| **Double**|The _y_-coordinate of the begin point of the arc.|
@@ -35,7 +35,7 @@ Creates a new shape whose path consists of an elliptical arc defined by the two
| _yEnd_|Required| **Double**|The _y_-coordinate of the endpoint of the arc.|
| _SweepFlag_|Required| **VisArcSweepFlags**|The type of arc, concave or convex.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.DrawRectangle.md b/api/Visio.Shape.DrawRectangle.md
index f43a8fb91fd..d62d49b945a 100644
--- a/api/Visio.Shape.DrawRectangle.md
+++ b/api/Visio.Shape.DrawRectangle.md
@@ -27,14 +27,14 @@ Adds a rectangle to the **Shapes** collection of a page, master, or group.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _x1_|Required| **Double**|The _x_-coordinate of one corner of the rectangle's width-height box.|
| _y1_|Required| **Double**|The _y_-coordinate of one corner of the rectangle's width-height box.|
| _x2_|Required| **Double**|The _x_-coordinate of the other corner of the rectangle's width-height box.|
| _y2_|Required| **Double**|The _y_-coordinate of the other corner of the rectangle's width-height box.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.DrawSpline.md b/api/Visio.Shape.DrawSpline.md
index d57b678a098..daf99389bb0 100644
--- a/api/Visio.Shape.DrawSpline.md
+++ b/api/Visio.Shape.DrawSpline.md
@@ -27,13 +27,13 @@ Creates a new shape whose path follows a given sequence of points.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xyArray()_|Required| **Double**|An array of alternating _x_ and _y_ values that define points in the new shape's path.|
| _Tolerance_|Required| **Double**|How closely the path of the new shape must approximate the given points.|
| _Flags_|Required| **Integer**|Flags that influence how the shape is drawn.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.Drop.md b/api/Visio.Shape.Drop.md
index 753b2efda43..ee90e228178 100644
--- a/api/Visio.Shape.Drop.md
+++ b/api/Visio.Shape.Drop.md
@@ -27,13 +27,13 @@ Creates one or more new **Shape** objects by dropping an object onto a receivin
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectToDrop_|Required| **[UNKNOWN]**|The object or selection to drop. While this is typically a Visio object such as a **Master** , **Shape** , or **Selection** object, it can be any OLE object that provides an **IDataObject** interface.|
| _xPos_|Required| **Double**|The x-coordinate at which to place the center of the shape's width or PinX.|
| _yPos_|Required| **Double**|The y-coordinate at which to place the center of the shape's height or PinY.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.DropMany.md b/api/Visio.Shape.DropMany.md
index f60bae5bb2f..333e03122f6 100644
--- a/api/Visio.Shape.DropMany.md
+++ b/api/Visio.Shape.DropMany.md
@@ -27,13 +27,13 @@ Creates one or more new **Shape** objects in a group. It returns an array of th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectsToInstance()_|Required| **Variant**|Identifies masters or other objects from which to make shapes.|
| _xyArray()_|Required| **Double**|An array of alternating x and y values specifying the positions for the new shapes.|
| _IDArray()_|Required| **Integer**|Out parameter. An array that returns the IDs of the created shapes.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.DropManyU.md b/api/Visio.Shape.DropManyU.md
index 204bd352dea..5c966ccdf76 100644
--- a/api/Visio.Shape.DropManyU.md
+++ b/api/Visio.Shape.DropManyU.md
@@ -27,13 +27,13 @@ Creates one or more new **Shape** objects on a page, in a master, or in a group
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ObjectsToInstance()_|Required| **Variant**|Identifies masters or other objects from which to make shapes by their universal names.|
| _xyArray()_|Required| **Double**|An array of alternating _x_ and _y_ values specifying the positions for the new shapes.|
| _IDArray()_|Required| **Integer**|Out parameter. An array that returns the IDs of the created shapes.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.Duplicate.md b/api/Visio.Shape.Duplicate.md
index 6e726f4a605..7309e4a801f 100644
--- a/api/Visio.Shape.Duplicate.md
+++ b/api/Visio.Shape.Duplicate.md
@@ -23,7 +23,7 @@ Duplicates an object.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.EventList.md b/api/Visio.Shape.EventList.md
index 1c56092e250..92dae2e5bd9 100644
--- a/api/Visio.Shape.EventList.md
+++ b/api/Visio.Shape.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Shape.Export.md b/api/Visio.Shape.Export.md
index 96f4b04fd80..d8951222160 100644
--- a/api/Visio.Shape.Export.md
+++ b/api/Visio.Shape.Export.md
@@ -27,11 +27,11 @@ Exports an object from Microsoft Visio to a file format such as .bmp, .dib, .dwg
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The fully qualified path and name of the file to receive the exported object.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.FillStyle.md b/api/Visio.Shape.FillStyle.md
index 83b1d0c7d87..ae66eeae9e1 100644
--- a/api/Visio.Shape.FillStyle.md
+++ b/api/Visio.Shape.FillStyle.md
@@ -23,7 +23,7 @@ Returns or sets the fill style for a shape. Read/write.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.FillStyleKeepFmt.md b/api/Visio.Shape.FillStyleKeepFmt.md
index 524a731be7c..d8e344fd2d3 100644
--- a/api/Visio.Shape.FillStyleKeepFmt.md
+++ b/api/Visio.Shape.FillStyleKeepFmt.md
@@ -23,7 +23,7 @@ Applies a fill style to an object while preserving local formatting. Read/write.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.FitCurve.md b/api/Visio.Shape.FitCurve.md
index 51f65ead5d9..9a4b484e6b7 100644
--- a/api/Visio.Shape.FitCurve.md
+++ b/api/Visio.Shape.FitCurve.md
@@ -27,12 +27,12 @@ Reduces the number of geometry segments in a shape or shapes by replacing them w
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Tolerance_|Required| **Double**|How closely the resulting paths must match the shape's original paths.|
| _Flags_|Required| **Integer**|Flags that influence how the shape is drawn.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.FlipHorizontal.md b/api/Visio.Shape.FlipHorizontal.md
index 71417d7d1b8..cdb612efe80 100644
--- a/api/Visio.Shape.FlipHorizontal.md
+++ b/api/Visio.Shape.FlipHorizontal.md
@@ -23,7 +23,7 @@ Flips an object horizontally.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.FlipVertical.md b/api/Visio.Shape.FlipVertical.md
index b602db7f052..ba4c731eedd 100644
--- a/api/Visio.Shape.FlipVertical.md
+++ b/api/Visio.Shape.FlipVertical.md
@@ -23,7 +23,7 @@ Flips an object vertically.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.ForeignData.md b/api/Visio.Shape.ForeignData.md
index 193f873fadf..db6adf8264a 100644
--- a/api/Visio.Shape.ForeignData.md
+++ b/api/Visio.Shape.ForeignData.md
@@ -23,7 +23,7 @@ Returns metafile, bitmap, or OLE data for a shape that represents a foreign obje
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Byte()
diff --git a/api/Visio.Shape.ForeignType.md b/api/Visio.Shape.ForeignType.md
index 5f535b54968..ec7e4b795bb 100644
--- a/api/Visio.Shape.ForeignType.md
+++ b/api/Visio.Shape.ForeignType.md
@@ -23,7 +23,7 @@ Returns the subtype of a **Shape** object that represents a foreign object. Rea
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.FormulaChanged.md b/api/Visio.Shape.FormulaChanged.md
index 8590afbda4d..2c7125208a8 100644
--- a/api/Visio.Shape.FormulaChanged.md
+++ b/api/Visio.Shape.FormulaChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'FormulaChanged'(**_ByVal Cell As [IVCELL]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cell_|Required| **[IVCELL]**|The cell whose formula changed.|
diff --git a/api/Visio.Shape.FromConnects.md b/api/Visio.Shape.FromConnects.md
index 6a4d84e9ef2..d0193ada6e8 100644
--- a/api/Visio.Shape.FromConnects.md
+++ b/api/Visio.Shape.FromConnects.md
@@ -23,7 +23,7 @@ Returns a **Connects** collection of the shapes connected to a shape. Read-only
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Connects
diff --git a/api/Visio.Shape.GeometryCount.md b/api/Visio.Shape.GeometryCount.md
index 7845197d3d3..cc06bd4eeaf 100644
--- a/api/Visio.Shape.GeometryCount.md
+++ b/api/Visio.Shape.GeometryCount.md
@@ -23,7 +23,7 @@ Returns the number of Geometry sections for a shape. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.GetCustomPropertiesLinkedToData.md b/api/Visio.Shape.GetCustomPropertiesLinkedToData.md
index 3b95d010d15..fb8d836d1dc 100644
--- a/api/Visio.Shape.GetCustomPropertiesLinkedToData.md
+++ b/api/Visio.Shape.GetCustomPropertiesLinkedToData.md
@@ -30,12 +30,12 @@ Gets the IDs of the shape-data-item (custom property) rows in the Shape Data sec
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset that contains the data the shape is linked to.|
| _CustomPropertyIndices()_|Required| **Long**|Out parameter. An empty, dimensionless array that the method fills with the row IDs of the shape-data-item (custom property) rows in the shape's ShapeSheet that are linked to data columns in the data recordset.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.GetCustomPropertyLinkedColumn.md b/api/Visio.Shape.GetCustomPropertyLinkedColumn.md
index 7fb2c4c44af..b22a99eba3c 100644
--- a/api/Visio.Shape.GetCustomPropertyLinkedColumn.md
+++ b/api/Visio.Shape.GetCustomPropertyLinkedColumn.md
@@ -30,12 +30,12 @@ Gets the name of the data column linked to the shape data (custom property) row
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset that contains the data column linked to the shape's custom property.|
| _CustomPropertyIndex_|Required| **Long**|The index of the shape data item (custom property) linked to the data column in the data recordset.|
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.GetFormulas.md b/api/Visio.Shape.GetFormulas.md
index 754bae68f5a..63827ce2ea1 100644
--- a/api/Visio.Shape.GetFormulas.md
+++ b/api/Visio.Shape.GetFormulas.md
@@ -27,12 +27,12 @@ Returns the formulas of many cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**| A stream identifying cells to be queried.|
| _formulaArray()_|Required| **Variant**|Out parameter. An array that receives formulas of queried cells.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.GetFormulasU.md b/api/Visio.Shape.GetFormulasU.md
index 8ccfa81db50..d908439c034 100644
--- a/api/Visio.Shape.GetFormulasU.md
+++ b/api/Visio.Shape.GetFormulasU.md
@@ -27,12 +27,12 @@ Returns the formulas of many cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SRCStream()_|Required| **Integer**| A stream identifying cells to be queried.|
| _formulaArray()_|Required| **Variant**|Out parameter. An array that receives formulas of queried cells.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.GetLinkedDataRecordsetIDs.md b/api/Visio.Shape.GetLinkedDataRecordsetIDs.md
index cbaf6973211..954383c81c9 100644
--- a/api/Visio.Shape.GetLinkedDataRecordsetIDs.md
+++ b/api/Visio.Shape.GetLinkedDataRecordsetIDs.md
@@ -30,11 +30,11 @@ Gets the IDs of all the data recordsets that contain data rows linked to the sha
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetIDs()_|Required| **Long**|Out parameter. An array of IDs of data recordsets containing data rows linked to the shape.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.GetLinkedDataRow.md b/api/Visio.Shape.GetLinkedDataRow.md
index 643d9d0efef..468373333c2 100644
--- a/api/Visio.Shape.GetLinkedDataRow.md
+++ b/api/Visio.Shape.GetLinkedDataRow.md
@@ -30,11 +30,11 @@ Gets the ID of the data row in the specified data recordset linked to the shape.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset that contains the linked row.|
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Shape.GetResults.md b/api/Visio.Shape.GetResults.md
index 8cfe129aae5..ea2b63e1b52 100644
--- a/api/Visio.Shape.GetResults.md
+++ b/api/Visio.Shape.GetResults.md
@@ -27,14 +27,14 @@ Gets the results or formulas of many cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**|An array that identifies cells to be queried.|
| _Flags_|Required| **Integer**|Flags that influence the type of entries returned in results.|
| _UnitsNamesOrCodes()_|Required| **Variant**| An array of measurement units that results are to be returned in.|
| _resultArray()_|Required| **Variant**|Out parameter. An array that receives results or formulas of queried cells.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.GluedShapes.md b/api/Visio.Shape.GluedShapes.md
index a4c7c1e6516..88d374b4fb5 100644
--- a/api/Visio.Shape.GluedShapes.md
+++ b/api/Visio.Shape.GluedShapes.md
@@ -27,13 +27,13 @@ Returns an array that contains the identifiers of the shapes that are glued to a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Required| **[VisGluedShapesFlags](Visio.VisGluedShapesFlags.md)**|The dimensionality and directionality of the connection points of the shapes to return.|
| _CategoryFilter_|Required| **String**|The category of shapes to return. See Remarks for more information|
| _pOtherConnectedShape_|Optional| **Shape**|Additional shape to which returned shapes must also be glued. |
-### Return Value
+### Return value
**Long()**
diff --git a/api/Visio.Shape.Group.md b/api/Visio.Shape.Group.md
index ae1d978f12c..78fab3da9e5 100644
--- a/api/Visio.Shape.Group.md
+++ b/api/Visio.Shape.Group.md
@@ -23,7 +23,7 @@ Groups the objects that are selected in a selection, or it converts a shape into
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.GroupCanceled.md b/api/Visio.Shape.GroupCanceled.md
index 875468c356f..d3b6828e0a5 100644
--- a/api/Visio.Shape.GroupCanceled.md
+++ b/api/Visio.Shape.GroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'GroupCanceled'(**_ByVal Selection As [IVSELECTION]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be grouped.|
diff --git a/api/Visio.Shape.HasCategory.md b/api/Visio.Shape.HasCategory.md
index 0a0dead6c3b..43501ab6f4d 100644
--- a/api/Visio.Shape.HasCategory.md
+++ b/api/Visio.Shape.HasCategory.md
@@ -27,11 +27,11 @@ Returns **True** if the specified category is in the shape categories list.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Category_|Required| **String**|The name of the category.|
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.Shape.Help.md b/api/Visio.Shape.Help.md
index b36021456ca..5b67f00e99e 100644
--- a/api/Visio.Shape.Help.md
+++ b/api/Visio.Shape.Help.md
@@ -23,7 +23,7 @@ Gets or sets the Help string for a shape. Read/write.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.HitTest.md b/api/Visio.Shape.HitTest.md
index bb4cb799b0b..c49fae0619a 100644
--- a/api/Visio.Shape.HitTest.md
+++ b/api/Visio.Shape.HitTest.md
@@ -27,13 +27,13 @@ Determines if a given _x,y_ position hits outside, inside, or on the boundary o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xPos_|Required| **Double**|The x-coordinate to be tested for a hit.|
| _yPos_|Required| **Double**|The y-coordinate to be tested for a hit.|
| _Tolerance_|Required| **Double**|How close _xPos,yPos_ must be to a shape for a hit to occur.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.Hyperlinks.md b/api/Visio.Shape.Hyperlinks.md
index 0aab2e0261f..791c771fd2c 100644
--- a/api/Visio.Shape.Hyperlinks.md
+++ b/api/Visio.Shape.Hyperlinks.md
@@ -23,7 +23,7 @@ Returns the **Hyperlinks** collection for a **Shape** object. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Hyperlinks
diff --git a/api/Visio.Shape.ID.md b/api/Visio.Shape.ID.md
index 9876f99d766..2abe90dc54b 100644
--- a/api/Visio.Shape.ID.md
+++ b/api/Visio.Shape.ID.md
@@ -23,7 +23,7 @@ Gets the ID of an object. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Shape.Import.md b/api/Visio.Shape.Import.md
index e624b4fb034..bc7520dab72 100644
--- a/api/Visio.Shape.Import.md
+++ b/api/Visio.Shape.Import.md
@@ -27,11 +27,11 @@ Imports a file into the current document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the file to import; must be a fully qualified path.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.Index.md b/api/Visio.Shape.Index.md
index 8441a1f662d..4f6bca42fd9 100644
--- a/api/Visio.Shape.Index.md
+++ b/api/Visio.Shape.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of a **Shape** object in the **Shapes** collection. R
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Shape.InsertFromFile.md b/api/Visio.Shape.InsertFromFile.md
index 72d1fc19978..87ebf5e963f 100644
--- a/api/Visio.Shape.InsertFromFile.md
+++ b/api/Visio.Shape.InsertFromFile.md
@@ -27,12 +27,12 @@ Adds a linked or embedded object to a page, master, or group.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the file that contains the object to link or embed.|
| _Flags_|Required| **Integer**|Flags that influence how the object is inserted.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.InsertObject.md b/api/Visio.Shape.InsertObject.md
index 018171553ec..032f581f52e 100644
--- a/api/Visio.Shape.InsertObject.md
+++ b/api/Visio.Shape.InsertObject.md
@@ -27,12 +27,12 @@ Adds a new embedded object or ActiveX control to a page, master, or group.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ClassOrProgID_|Required| **String**|Identifies the type of object or control to create.|
| _Flags_|Required| **Integer**|Flags that influence the operation.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.IsCallout.md b/api/Visio.Shape.IsCallout.md
index c08ce207ec2..403271b739b 100644
--- a/api/Visio.Shape.IsCallout.md
+++ b/api/Visio.Shape.IsCallout.md
@@ -23,7 +23,7 @@ Indicates whether the shape is a callout shape. Read-only.
_expression_ A variable that represents a '[Shape](Visio.Shape.md)' object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.Shape.IsCustomPropertyLinked.md b/api/Visio.Shape.IsCustomPropertyLinked.md
index 3a5a8e43b25..76ead62cfa4 100644
--- a/api/Visio.Shape.IsCustomPropertyLinked.md
+++ b/api/Visio.Shape.IsCustomPropertyLinked.md
@@ -30,12 +30,12 @@ Returns whether the shape data (custom property) row in the Shape Data section o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset that contains the data row.|
| _CustomPropertyIndex_|Required| **Long**|The index of the shape data (custom property) row in the Shape Data section of the shape's ShapeSheet.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Shape.IsDataGraphicCallout.md b/api/Visio.Shape.IsDataGraphicCallout.md
index c6747a266ec..a7a805d436c 100644
--- a/api/Visio.Shape.IsDataGraphicCallout.md
+++ b/api/Visio.Shape.IsDataGraphicCallout.md
@@ -23,7 +23,7 @@ Specifes whether a shape is a data graphic callout. Read-only.
_expression_ An expression that returns a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Shape.IsOpenForTextEdit.md b/api/Visio.Shape.IsOpenForTextEdit.md
index 6d1296a8d5f..6badc5efded 100644
--- a/api/Visio.Shape.IsOpenForTextEdit.md
+++ b/api/Visio.Shape.IsOpenForTextEdit.md
@@ -23,7 +23,7 @@ Indicates whether a shape is currently open for interactive text editing. Read-o
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Shape.Language.md b/api/Visio.Shape.Language.md
index db7bed687df..84ac5032ee5 100644
--- a/api/Visio.Shape.Language.md
+++ b/api/Visio.Shape.Language.md
@@ -23,7 +23,7 @@ Represents the language ID of the version of the Microsoft Visio instance repres
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Shape.Layer.md b/api/Visio.Shape.Layer.md
index 6f85e9c12eb..e3d9df15fbc 100644
--- a/api/Visio.Shape.Layer.md
+++ b/api/Visio.Shape.Layer.md
@@ -27,11 +27,11 @@ Returns the layer to which a shape is assigned. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Integer**|The ordinal of the layer to get.|
-### Return Value
+### Return value
Layer
diff --git a/api/Visio.Shape.LayerCount.md b/api/Visio.Shape.LayerCount.md
index d455c4c2632..92c082dcbee 100644
--- a/api/Visio.Shape.LayerCount.md
+++ b/api/Visio.Shape.LayerCount.md
@@ -23,7 +23,7 @@ Returns the number of layers to which a shape is assigned. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.Layout.md b/api/Visio.Shape.Layout.md
index 7c1bea197ac..0774c210434 100644
--- a/api/Visio.Shape.Layout.md
+++ b/api/Visio.Shape.Layout.md
@@ -23,7 +23,7 @@ Lays out the shapes or reroutes the connectors (or both) for the page, master, g
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.LengthIU.md b/api/Visio.Shape.LengthIU.md
index 5de14bd3248..0b643c35b3f 100644
--- a/api/Visio.Shape.LengthIU.md
+++ b/api/Visio.Shape.LengthIU.md
@@ -27,11 +27,11 @@ Returns the length (perimeter) of the shape in internal units. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _fIncludeSubShapes_|Optional| **Boolean**| **False** to exclude the length of subshapes. Length of subshapes is included by default.|
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Shape.LineStyle.md b/api/Visio.Shape.LineStyle.md
index b1089f3ca62..a1fe384bce2 100644
--- a/api/Visio.Shape.LineStyle.md
+++ b/api/Visio.Shape.LineStyle.md
@@ -23,7 +23,7 @@ Specifies the line style for an object. Read/write.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.LineStyleKeepFmt.md b/api/Visio.Shape.LineStyleKeepFmt.md
index 57197e61da1..0eb4e545667 100644
--- a/api/Visio.Shape.LineStyleKeepFmt.md
+++ b/api/Visio.Shape.LineStyleKeepFmt.md
@@ -23,7 +23,7 @@ Applies a line style to an object while preserving local formatting. Read/write.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.LinkToData.md b/api/Visio.Shape.LinkToData.md
index 8c5009a6e62..e1ecb6042a3 100644
--- a/api/Visio.Shape.LinkToData.md
+++ b/api/Visio.Shape.LinkToData.md
@@ -30,13 +30,13 @@ Links a shape to a data row in a data recordset.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset containing the data to link to.|
| _RowID_|Required| **Long**|The ID of the row in the data recordset containing the particular data record to link to. |
| _AutoApplyDataGraphics_|Optional| **Boolean**|Whether to automatically apply a data graphic to the linked shapes. See Remarks for more information.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.Master.md b/api/Visio.Shape.Master.md
index c3eb4887458..5ab28464d5a 100644
--- a/api/Visio.Shape.Master.md
+++ b/api/Visio.Shape.Master.md
@@ -23,7 +23,7 @@ Returns the master from which the **Shape** object was created. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Shape.MasterShape.md b/api/Visio.Shape.MasterShape.md
index 8b3d567520a..9881f320864 100644
--- a/api/Visio.Shape.MasterShape.md
+++ b/api/Visio.Shape.MasterShape.md
@@ -23,7 +23,7 @@ If this shape is part of a master instance, returns the shape in the master that
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.MemberOfContainers.md b/api/Visio.Shape.MemberOfContainers.md
index 8f8f68358b6..f28d92d7b6d 100644
--- a/api/Visio.Shape.MemberOfContainers.md
+++ b/api/Visio.Shape.MemberOfContainers.md
@@ -23,7 +23,7 @@ Returns an array of **Long** values that represent the identifiers of the conta
_expression_ A variable that represents a '[Shape](Visio.Shape.md)' object.
-### Return Value
+### Return value
**Long()**
diff --git a/api/Visio.Shape.MoveToSubprocess.md b/api/Visio.Shape.MoveToSubprocess.md
index eb6222078ae..6d2e2593be6 100644
--- a/api/Visio.Shape.MoveToSubprocess.md
+++ b/api/Visio.Shape.MoveToSubprocess.md
@@ -24,7 +24,7 @@ _expression_ A variable that represents a **[Shape](Visio.Shape.md)** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Page_|Required|**[Page](Visio.Page.md)**|The sub-process page to which the shape should be moved. You cannot pass the current page.|
| _ObjectToDrop_|Required|**[UNKNOWN]**|The replacement shape to drop.|
diff --git a/api/Visio.Shape.Name.md b/api/Visio.Shape.Name.md
index d2d38d5c997..703ebc8bf21 100644
--- a/api/Visio.Shape.Name.md
+++ b/api/Visio.Shape.Name.md
@@ -23,7 +23,7 @@ Specifies the name of an object. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.NameID.md b/api/Visio.Shape.NameID.md
index 1a99b255883..b161b93b555 100644
--- a/api/Visio.Shape.NameID.md
+++ b/api/Visio.Shape.NameID.md
@@ -23,7 +23,7 @@ Returns a unique name for a shape. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.NameU.md b/api/Visio.Shape.NameU.md
index c842c96f09a..bdf22fbee5a 100644
--- a/api/Visio.Shape.NameU.md
+++ b/api/Visio.Shape.NameU.md
@@ -23,7 +23,7 @@ Specifies the universal name of a **Shape** object. Read/write.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.Object.md b/api/Visio.Shape.Object.md
index f12a32ecdad..442055f7fd9 100644
--- a/api/Visio.Shape.Object.md
+++ b/api/Visio.Shape.Object.md
@@ -23,7 +23,7 @@ Returns an **IDispatch** interface on the ActiveX control or embedded or linked
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.Shape.ObjectIsInherited.md b/api/Visio.Shape.ObjectIsInherited.md
index f683fdaac78..8201426159e 100644
--- a/api/Visio.Shape.ObjectIsInherited.md
+++ b/api/Visio.Shape.ObjectIsInherited.md
@@ -23,7 +23,7 @@ Indicates if a shape represents an ActiveX or OLE object that is inherited from
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.ObjectType.md b/api/Visio.Shape.ObjectType.md
index 8a42201be53..90e31510b34 100644
--- a/api/Visio.Shape.ObjectType.md
+++ b/api/Visio.Shape.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.Offset.md b/api/Visio.Shape.Offset.md
index 01ea31defdf..c240c79082b 100644
--- a/api/Visio.Shape.Offset.md
+++ b/api/Visio.Shape.Offset.md
@@ -27,11 +27,11 @@ Offsets a shape a specified amount.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Distance_|Required| **Double**|Specifies the distance to offset the shape.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.OneD.md b/api/Visio.Shape.OneD.md
index 907909373e9..d3f9a7ffe77 100644
--- a/api/Visio.Shape.OneD.md
+++ b/api/Visio.Shape.OneD.md
@@ -23,7 +23,7 @@ Determines whether an object behaves as a one-dimensional (1-D) object. Read-onl
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.OpenDrawWindow.md b/api/Visio.Shape.OpenDrawWindow.md
index 34ec1ab573c..89bf3f6232c 100644
--- a/api/Visio.Shape.OpenDrawWindow.md
+++ b/api/Visio.Shape.OpenDrawWindow.md
@@ -23,7 +23,7 @@ Opens a new drawing window that displays a group.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.Shape.OpenSheetWindow.md b/api/Visio.Shape.OpenSheetWindow.md
index bd002c1536c..0615c4dad10 100644
--- a/api/Visio.Shape.OpenSheetWindow.md
+++ b/api/Visio.Shape.OpenSheetWindow.md
@@ -23,7 +23,7 @@ Opens a ShapeSheet window for a **Shape** object.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.Shape.Parent.md b/api/Visio.Shape.Parent.md
index 32f8f94a897..b766d31a41f 100644
--- a/api/Visio.Shape.Parent.md
+++ b/api/Visio.Shape.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of a **Shape** object. Read/write.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Object
diff --git a/api/Visio.Shape.Paste.md b/api/Visio.Shape.Paste.md
index 33d8edc4b4c..c52d82a049f 100644
--- a/api/Visio.Shape.Paste.md
+++ b/api/Visio.Shape.Paste.md
@@ -27,11 +27,11 @@ Pastes the contents of the Clipboard into an object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Flags_|Optional| **Variant**|Determines how shapes are translated during the paste operation.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.PasteSpecial.md b/api/Visio.Shape.PasteSpecial.md
index 8f05adf3455..7d9089d01a2 100644
--- a/api/Visio.Shape.PasteSpecial.md
+++ b/api/Visio.Shape.PasteSpecial.md
@@ -27,13 +27,13 @@ Inserts the contents of the Clipboard, allowing you to control the format of the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Format_|Required| **Long**|The internal Clipboard format.|
| _Link_|Optional| **Variant**| **True** to establish a link to the source of the pasted data; otherwise, **False** (the default). Ignored if the source data is not suitable for, or doesn't support, linking.|
| _DisplayAsIcon_|Optional| **Variant**| **True** to display the pasted data as an icon; otherwise, **False** (the default).|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.Paths.md b/api/Visio.Shape.Paths.md
index e0c3bd2479a..7ad04badaf0 100644
--- a/api/Visio.Shape.Paths.md
+++ b/api/Visio.Shape.Paths.md
@@ -23,7 +23,7 @@ Returns a **Paths** collection that reports the coordinates of a shape's paths
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Paths
diff --git a/api/Visio.Shape.PathsLocal.md b/api/Visio.Shape.PathsLocal.md
index fa13429f6dc..17ad483315b 100644
--- a/api/Visio.Shape.PathsLocal.md
+++ b/api/Visio.Shape.PathsLocal.md
@@ -23,7 +23,7 @@ Returns a **Paths** collection that reports the coordinates of a shape's paths
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Paths
diff --git a/api/Visio.Shape.PersistsEvents.md b/api/Visio.Shape.PersistsEvents.md
index d83fdf25f75..999671c3209 100644
--- a/api/Visio.Shape.PersistsEvents.md
+++ b/api/Visio.Shape.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.Picture.md b/api/Visio.Shape.Picture.md
index 4fe50052ca9..925a8a7fea7 100644
--- a/api/Visio.Shape.Picture.md
+++ b/api/Visio.Shape.Picture.md
@@ -23,7 +23,7 @@ Returns a picture that represents an enhanced metafile (EMF) contained in a mast
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
IPictureDisp
diff --git a/api/Visio.Shape.ProgID.md b/api/Visio.Shape.ProgID.md
index 728bbcd369a..cc7fca5bb93 100644
--- a/api/Visio.Shape.ProgID.md
+++ b/api/Visio.Shape.ProgID.md
@@ -23,7 +23,7 @@ Returns the programmatic identifier of a shape that represents an ActiveX contro
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.QueryCancelConvertToGroup.md b/api/Visio.Shape.QueryCancelConvertToGroup.md
index 4ae0ddd62c5..b5581bc4b84 100644
--- a/api/Visio.Shape.QueryCancelConvertToGroup.md
+++ b/api/Visio.Shape.QueryCancelConvertToGroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelConvertToGroup'(**_ByVal Selection As [IV
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be converted to a group.|
diff --git a/api/Visio.Shape.QueryCancelGroup.md b/api/Visio.Shape.QueryCancelGroup.md
index 14ac4166af8..b357a532e7a 100644
--- a/api/Visio.Shape.QueryCancelGroup.md
+++ b/api/Visio.Shape.QueryCancelGroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelGroup'(**_ByVal Selection As [IVSELECTION
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be grouped.|
diff --git a/api/Visio.Shape.QueryCancelSelectionDelete.md b/api/Visio.Shape.QueryCancelSelectionDelete.md
index 50c1e984e67..702d6b2c92d 100644
--- a/api/Visio.Shape.QueryCancelSelectionDelete.md
+++ b/api/Visio.Shape.QueryCancelSelectionDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelSelectionDelete'(**_ByVal Selection As [I
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be deleted.|
diff --git a/api/Visio.Shape.QueryCancelUngroup.md b/api/Visio.Shape.QueryCancelUngroup.md
index fccc496a1f4..b2dad8cb242 100644
--- a/api/Visio.Shape.QueryCancelUngroup.md
+++ b/api/Visio.Shape.QueryCancelUngroup.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelUngroup'(**_ByVal Selection As [IVSELECTI
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that is going to be ungrouped.|
diff --git a/api/Visio.Shape.RemoveFromContainers.md b/api/Visio.Shape.RemoveFromContainers.md
index f687a9af6ea..5d18d76c534 100644
--- a/api/Visio.Shape.RemoveFromContainers.md
+++ b/api/Visio.Shape.RemoveFromContainers.md
@@ -23,7 +23,7 @@ Removes the shape from all lists and containers of which it is a member.
_expression_ A variable that represents a '[Shape](Visio.Shape.md)' object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Shape.Resize.md b/api/Visio.Shape.Resize.md
index 9304e9d530f..ef9ec70ebcb 100644
--- a/api/Visio.Shape.Resize.md
+++ b/api/Visio.Shape.Resize.md
@@ -27,13 +27,13 @@ Resizes the shape by moving shape handles as specified.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Direction_|Required| **[VisResizeDirection](Visio.VisResizeDirection.md)**|The direction that corresponds to the shape handle. See Remarks for possible values.|
| _Distance_|Required| **Double**|The distance to move the shape edge or corner; positive values move outward and negative values move inward.|
| _UnitCode_|Required| **[VisUnitCodes](Visio.visunitcodes.md)**|The units of measure to use for the resize distance.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Shape.ReverseEnds.md b/api/Visio.Shape.ReverseEnds.md
index ef31bf85d06..22f38fdb34c 100644
--- a/api/Visio.Shape.ReverseEnds.md
+++ b/api/Visio.Shape.ReverseEnds.md
@@ -23,7 +23,7 @@ Reverses an object by flipping it both horizontally and vertically.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.RootShape.md b/api/Visio.Shape.RootShape.md
index f74b2506d00..79b889dd275 100644
--- a/api/Visio.Shape.RootShape.md
+++ b/api/Visio.Shape.RootShape.md
@@ -23,7 +23,7 @@ Returns the top-level shape of an instance if this shape is part of a master ins
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shape.Rotate90.md b/api/Visio.Shape.Rotate90.md
index a23ffaa6403..c3acc6ec7b7 100644
--- a/api/Visio.Shape.Rotate90.md
+++ b/api/Visio.Shape.Rotate90.md
@@ -23,7 +23,7 @@ Rotates an object 90 degrees counterclockwise.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.RowCount.md b/api/Visio.Shape.RowCount.md
index ddf1f0c0e31..d5ce697b83d 100644
--- a/api/Visio.Shape.RowCount.md
+++ b/api/Visio.Shape.RowCount.md
@@ -27,11 +27,11 @@ Returns the number of rows in a ShapeSheet section. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Section_|Required| **Integer**|The section whose rows to count.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.RowExists.md b/api/Visio.Shape.RowExists.md
index b44edeb1b23..4917fe2f9b1 100644
--- a/api/Visio.Shape.RowExists.md
+++ b/api/Visio.Shape.RowExists.md
@@ -27,13 +27,13 @@ Determines whether a ShapeSheet row exists. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Section_|Required| **Integer**|The row's section index.|
| _Row_|Required| **Integer**|The row's row index.|
| _fExistsLocally_|Required| **Integer**|The scope of the search.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.RowsCellCount.md b/api/Visio.Shape.RowsCellCount.md
index bd93f3b1707..7374f2c31ef 100644
--- a/api/Visio.Shape.RowsCellCount.md
+++ b/api/Visio.Shape.RowsCellCount.md
@@ -27,12 +27,12 @@ Returns the number of cells in a row of a ShapeSheet section. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Section_|Required| **Integer**|The index of the section that contains the row.|
| _Row_|Required| **Integer**|The index of the row to count.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.Section.md b/api/Visio.Shape.Section.md
index 997cec87a5c..b87799e29ce 100644
--- a/api/Visio.Shape.Section.md
+++ b/api/Visio.Shape.Section.md
@@ -27,11 +27,11 @@ Returns the requested **Section** object belonging to a shape. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Integer**|A section index.|
-### Return Value
+### Return value
Section
diff --git a/api/Visio.Shape.SectionExists.md b/api/Visio.Shape.SectionExists.md
index 55b9d873e3c..0b86cec8f28 100644
--- a/api/Visio.Shape.SectionExists.md
+++ b/api/Visio.Shape.SectionExists.md
@@ -27,12 +27,12 @@ Determines whether a ShapeSheet section exists for a particular shape. Read-only
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Section_|Required| **Integer**|The section index.|
| _fExistsLocally_|Required| **Integer**|The scope of the search.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.SelectionAdded.md b/api/Visio.Shape.SelectionAdded.md
index 25673d43f38..65fe48a9db7 100644
--- a/api/Visio.Shape.SelectionAdded.md
+++ b/api/Visio.Shape.SelectionAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'SelectionAdded'(**_ByVal Selection As [IVSELECTION]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was added to the document.|
diff --git a/api/Visio.Shape.SelectionDeleteCanceled.md b/api/Visio.Shape.SelectionDeleteCanceled.md
index 9950b7f9553..7ce647d43b4 100644
--- a/api/Visio.Shape.SelectionDeleteCanceled.md
+++ b/api/Visio.Shape.SelectionDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'SelectionDeleteCanceled'(**_ByVal Selection As [IVSE
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be deleted.|
diff --git a/api/Visio.Shape.SendBackward.md b/api/Visio.Shape.SendBackward.md
index f5693993256..8d13216aed4 100644
--- a/api/Visio.Shape.SendBackward.md
+++ b/api/Visio.Shape.SendBackward.md
@@ -23,7 +23,7 @@ Moves a shape or selected shapes back one position in the z-order.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.SendToBack.md b/api/Visio.Shape.SendToBack.md
index a63847c5a72..5c4ea57c907 100644
--- a/api/Visio.Shape.SendToBack.md
+++ b/api/Visio.Shape.SendToBack.md
@@ -23,7 +23,7 @@ Moves the shape or selected shapes to the back of the z-order.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.SetBegin.md b/api/Visio.Shape.SetBegin.md
index e9fba120693..165927f54bc 100644
--- a/api/Visio.Shape.SetBegin.md
+++ b/api/Visio.Shape.SetBegin.md
@@ -27,12 +27,12 @@ Moves the begin point of a one-dimensional (1-D) shape to the coordinates repres
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xPos_|Required| **Double**|The new x-coordinate of the begin point.|
| _yPos_|Required| **Double**|The new y-coordinate of the begin point.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.SetCenter.md b/api/Visio.Shape.SetCenter.md
index 5c70284d6d0..9f1ef9f2e2f 100644
--- a/api/Visio.Shape.SetCenter.md
+++ b/api/Visio.Shape.SetCenter.md
@@ -27,12 +27,12 @@ Moves a shape so that its pin is positioned at the coordinates represented by _
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xPos_|Required| **Double**|The new x-coordinate of the center of rotation (PinX).|
| _yPos_|Required| **Double**|The new y-coordinate of the center of rotation (PinY).|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.SetEnd.md b/api/Visio.Shape.SetEnd.md
index ff46e5ebb50..e671c243012 100644
--- a/api/Visio.Shape.SetEnd.md
+++ b/api/Visio.Shape.SetEnd.md
@@ -27,12 +27,12 @@ Moves the endpoint of a one-dimensional (1-D) shape to the coordinates represent
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _xPos_|Required| **Double**|The new x-coordinate of the endpoint.|
| _yPos_|Required| **Double**|The new y-coordinate of the endpoint.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.SetFormulas.md b/api/Visio.Shape.SetFormulas.md
index bc4bb871f0f..e5fca77fea8 100644
--- a/api/Visio.Shape.SetFormulas.md
+++ b/api/Visio.Shape.SetFormulas.md
@@ -27,13 +27,13 @@ Sets the formulas of one or more cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**|Stream identifying cells to be modified.|
| _formulaArray()_|Required| **Variant**|Formulas to be assigned to identified cells.|
| _Flags_|Required| **Integer**|Flags that influence the behavior of **SetFormulas** .|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.SetResults.md b/api/Visio.Shape.SetResults.md
index 1b9f4eee2b9..fb22f1685b8 100644
--- a/api/Visio.Shape.SetResults.md
+++ b/api/Visio.Shape.SetResults.md
@@ -27,14 +27,14 @@ Sets the results or formulas of one or more cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**|An array identifying cells to be modified.|
| _UnitsNamesOrCodes()_|Required| **Variant**|Measurement units to be attributed to entries in results array.|
| _resultArray()_|Required| **Variant**|Out parameter. Results or formulas to be assigned to identified cells.|
| _Flags_|Required| **Integer**|Flags that influence the behavior of **SetResults** .|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.ShapeAdded.md b/api/Visio.Shape.ShapeAdded.md
index c1c876d5791..706800684b9 100644
--- a/api/Visio.Shape.ShapeAdded.md
+++ b/api/Visio.Shape.ShapeAdded.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'ShapeAdded'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape or group of shapes that was added to the document.|
diff --git a/api/Visio.Shape.ShapeChanged.md b/api/Visio.Shape.ShapeChanged.md
index 5094e28765a..119e86ab636 100644
--- a/api/Visio.Shape.ShapeChanged.md
+++ b/api/Visio.Shape.ShapeChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose property changed.|
diff --git a/api/Visio.Shape.ShapeDataGraphicChanged.md b/api/Visio.Shape.ShapeDataGraphicChanged.md
index ecf79d398f4..99ceca7c347 100644
--- a/api/Visio.Shape.ShapeDataGraphicChanged.md
+++ b/api/Visio.Shape.ShapeDataGraphicChanged.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'ShapeDataGraphicChanged'(**_ByVal Shape As IVSHAPE_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape to which the data graphic was applied or from which it was deleted.|
diff --git a/api/Visio.Shape.ShapeExitedTextEdit.md b/api/Visio.Shape.ShapeExitedTextEdit.md
index 586ff3f0b61..9cc4734c968 100644
--- a/api/Visio.Shape.ShapeExitedTextEdit.md
+++ b/api/Visio.Shape.ShapeExitedTextEdit.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeExitedTextEdit'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that was closed for text editing.|
diff --git a/api/Visio.Shape.ShapeLinkAdded.md b/api/Visio.Shape.ShapeLinkAdded.md
index 2da0548601a..62d9f35d3b0 100644
--- a/api/Visio.Shape.ShapeLinkAdded.md
+++ b/api/Visio.Shape.ShapeLinkAdded.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'ShapeLinkAdded'(**_ByVal Shape As [IVSHAPE]_** , **_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape that is linked to data.|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset containing the data row linked to the shape.|
diff --git a/api/Visio.Shape.ShapeLinkDeleted.md b/api/Visio.Shape.ShapeLinkDeleted.md
index adeb50d9ed0..7d1eec88e25 100644
--- a/api/Visio.Shape.ShapeLinkDeleted.md
+++ b/api/Visio.Shape.ShapeLinkDeleted.md
@@ -30,7 +30,7 @@ Private Sub _expression_ _'ShapeLinkDeleted'(**_ByVal Shape As [IVSHAPE]_** , *
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose link to a data row was broken.|
| _DataRecordsetID_|Required| **Long**|The ID of the data recordset containing the data row that was linked to the shape.|
diff --git a/api/Visio.Shape.ShapeParentChanged.md b/api/Visio.Shape.ShapeParentChanged.md
index 8858d7eee43..69b4a926162 100644
--- a/api/Visio.Shape.ShapeParentChanged.md
+++ b/api/Visio.Shape.ShapeParentChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ShapeParentChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose parent changed.|
diff --git a/api/Visio.Shape.Shapes.md b/api/Visio.Shape.Shapes.md
index 81f8fa93840..422d6cb358f 100644
--- a/api/Visio.Shape.Shapes.md
+++ b/api/Visio.Shape.Shapes.md
@@ -23,7 +23,7 @@ Returns the **Shapes** collection for a page, master, or group. Read-only.
_expression_ An expression that returns a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Shapes
diff --git a/api/Visio.Shape.SpatialNeighbors.md b/api/Visio.Shape.SpatialNeighbors.md
index 41c6496a235..90b20ba696c 100644
--- a/api/Visio.Shape.SpatialNeighbors.md
+++ b/api/Visio.Shape.SpatialNeighbors.md
@@ -27,14 +27,14 @@ Returns a **Selection** object that represents the shapes that meet certain cri
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Relation_|Required| **Integer**|An integer describing the type of relationship to be used.|
| _Tolerance_|Required| **Double**|A distance in internal drawing units with respect to the coordinate space defined by the parent shape.|
| _Flags_|Required| **Integer**|Flags that influence the type of entries returned in results.|
| _ResultRoot_|Optional| **Variant**|A **Shape** object that represents a page or group.|
-### Return Value
+### Return value
Selection
diff --git a/api/Visio.Shape.SpatialRelation.md b/api/Visio.Shape.SpatialRelation.md
index a3281cabe03..a364f5f2482 100644
--- a/api/Visio.Shape.SpatialRelation.md
+++ b/api/Visio.Shape.SpatialRelation.md
@@ -27,13 +27,13 @@ Returns an integer that represents the spatial relationship of one shape to anot
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _OtherShape_|Required| **[IVSHAPE]**|The other **Shape** object involved in the comparison.|
| _Tolerance_|Required| **Double**|A distance in internal drawing units with respect to the coordinate space defined by the **Shape** object's parent.|
| _Flags_|Required| **Integer**|Flags that influence the result. See Remarks for the values of this argument.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.SpatialSearch.md b/api/Visio.Shape.SpatialSearch.md
index 04fbc9ba82b..47cc861a105 100644
--- a/api/Visio.Shape.SpatialSearch.md
+++ b/api/Visio.Shape.SpatialSearch.md
@@ -27,7 +27,7 @@ Returns a **Selection** object whose shapes meet certain criteria in relation t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _x_|Required| **Double**|The x-coordinate.|
| _y_|Required| **Double**|The y-coordinate.|
@@ -35,7 +35,7 @@ Returns a **Selection** object whose shapes meet certain criteria in relation t
| _Tolerance_|Required| **Double**|A distance in internal drawing units with respect to the coordinate space.|
| _Flags_|Required| **Integer**|Flags that influence the result.|
-### Return Value
+### Return value
Selection
diff --git a/api/Visio.Shape.Stat.md b/api/Visio.Shape.Stat.md
index eac2eb12328..cb7cf456c14 100644
--- a/api/Visio.Shape.Stat.md
+++ b/api/Visio.Shape.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.Style.md b/api/Visio.Shape.Style.md
index c800e3d49c1..bb188630605 100644
--- a/api/Visio.Shape.Style.md
+++ b/api/Visio.Shape.Style.md
@@ -23,7 +23,7 @@ Gets or sets the style for a **Shape** object. Read/write.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.StyleKeepFmt.md b/api/Visio.Shape.StyleKeepFmt.md
index 7c9ccd633c3..e3183b88d00 100644
--- a/api/Visio.Shape.StyleKeepFmt.md
+++ b/api/Visio.Shape.StyleKeepFmt.md
@@ -23,7 +23,7 @@ Applies a style to an object while preserving local formatting. Read/write.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.SwapEnds.md b/api/Visio.Shape.SwapEnds.md
index a3fe4a083bd..89052ed15af 100644
--- a/api/Visio.Shape.SwapEnds.md
+++ b/api/Visio.Shape.SwapEnds.md
@@ -23,7 +23,7 @@ Swaps the begin and endpoints of a one-dimensional (1-D) shape.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.Text.md b/api/Visio.Shape.Text.md
index 07cc3774dec..97074b59dd2 100644
--- a/api/Visio.Shape.Text.md
+++ b/api/Visio.Shape.Text.md
@@ -23,7 +23,7 @@ Returns all of the shape's text. Read/write.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.TextChanged.md b/api/Visio.Shape.TextChanged.md
index a985c362ba7..54878c2c884 100644
--- a/api/Visio.Shape.TextChanged.md
+++ b/api/Visio.Shape.TextChanged.md
@@ -24,7 +24,7 @@ Private Sub _expression_ _'TextChanged'(**_ByVal Shape As [IVSHAPE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Shape_|Required| **[IVSHAPE]**|The shape whose text changed.|
diff --git a/api/Visio.Shape.TextStyle.md b/api/Visio.Shape.TextStyle.md
index ba758e14c88..970e264e0ab 100644
--- a/api/Visio.Shape.TextStyle.md
+++ b/api/Visio.Shape.TextStyle.md
@@ -23,7 +23,7 @@ Gets or sets the text style for an object. Read/write.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.TextStyleKeepFmt.md b/api/Visio.Shape.TextStyleKeepFmt.md
index d3deb4a5565..e933c00c50b 100644
--- a/api/Visio.Shape.TextStyleKeepFmt.md
+++ b/api/Visio.Shape.TextStyleKeepFmt.md
@@ -23,7 +23,7 @@ Applies a text style to an object while preserving local formatting. Read/write.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.TransformXYFrom.md b/api/Visio.Shape.TransformXYFrom.md
index c7a5be5a7bb..100ecdafb45 100644
--- a/api/Visio.Shape.TransformXYFrom.md
+++ b/api/Visio.Shape.TransformXYFrom.md
@@ -27,7 +27,7 @@ Transforms a point expressed in the local coordinate system of one **Shape** ob
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _OtherShape_|Required| **[IVSHAPE]**|An expression that returns a **Shape** object whose local coordinate system you are transforming the point from.|
| _x_|Required| **Double**| _x_-coordinate corresponding to _x_ in the _OtherShape_ coordinate system.|
@@ -35,7 +35,7 @@ Transforms a point expressed in the local coordinate system of one **Shape** ob
| _xprime_|Required| **Double**| _x_-coordinate in coordinate system of _object._|
| _yprime_|Required| **Double**| _y_-coordinate in coordinate system of _object._|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.TransformXYTo.md b/api/Visio.Shape.TransformXYTo.md
index caef0696c44..dcd1e6e8cfb 100644
--- a/api/Visio.Shape.TransformXYTo.md
+++ b/api/Visio.Shape.TransformXYTo.md
@@ -27,7 +27,7 @@ Transforms a point expressed in the local coordinate system of one **Shape** ob
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _OtherShape_|Required| **[IVSHAPE]**|An expression that returns a **Shape** object whose local coordinate system you are transforming the point to.|
| _x_|Required| **Double**| _x_-coordinate in coordinate system of _object._|
@@ -35,7 +35,7 @@ Transforms a point expressed in the local coordinate system of one **Shape** ob
| _xprime_|Required| **Double**| _x_-coordinate corresponding to _x_in the _OtherShape_coordinate system.|
| _yprime_|Required| **Double**| _y_-coordinate corresponding to _y_in the _OtherShape_coordinate system.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.Type.md b/api/Visio.Shape.Type.md
index 6a3306847c5..7747844d373 100644
--- a/api/Visio.Shape.Type.md
+++ b/api/Visio.Shape.Type.md
@@ -23,7 +23,7 @@ Returns the type of the object. Read-only.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shape.Ungroup.md b/api/Visio.Shape.Ungroup.md
index 2eb869b14e8..bc11b21e247 100644
--- a/api/Visio.Shape.Ungroup.md
+++ b/api/Visio.Shape.Ungroup.md
@@ -23,7 +23,7 @@ Ungroups a group.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.UngroupCanceled.md b/api/Visio.Shape.UngroupCanceled.md
index e72485f498f..9bab57bd915 100644
--- a/api/Visio.Shape.UngroupCanceled.md
+++ b/api/Visio.Shape.UngroupCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'UngroupCanceled'(**_ByVal Selection As [IVSELECTION]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Selection_|Required| **[IVSELECTION]**|The selection of shapes that was going to be ungrouped.|
diff --git a/api/Visio.Shape.UniqueID.md b/api/Visio.Shape.UniqueID.md
index 0a67f32e774..5c7615af04b 100644
--- a/api/Visio.Shape.UniqueID.md
+++ b/api/Visio.Shape.UniqueID.md
@@ -27,11 +27,11 @@ Gets, deletes, or makes the GUID that uniquely identifies the shape within the s
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _fUniqueID_|Required| **Integer**|Gets, deletes, or makes the unique ID of a **Shape** object. See Remarks for possible values.|
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shape.UpdateAlignmentBox.md b/api/Visio.Shape.UpdateAlignmentBox.md
index d922bf4ab9e..e444fd861a8 100644
--- a/api/Visio.Shape.UpdateAlignmentBox.md
+++ b/api/Visio.Shape.UpdateAlignmentBox.md
@@ -23,7 +23,7 @@ Updates the alignment box for a shape.
_expression_ A variable that represents a [Shape](./Visio.Shape.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.XYFromPage.md b/api/Visio.Shape.XYFromPage.md
index bb69d5b2a5b..eb20ce901cf 100644
--- a/api/Visio.Shape.XYFromPage.md
+++ b/api/Visio.Shape.XYFromPage.md
@@ -27,14 +27,14 @@ Transforms a point expressed in the local coordinate system of its **Page** or
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _x_|Required| **Double**| _x_-coordinate corresponding to _x_ in the **Page** or **Master** object's coordinate system.|
| _y_|Required| **Double**| _y_-coordinate corresponding to _y_ in the **Page** or **Master** object's coordinate system.|
| _xprime_|Required| **Double**| _x_-coordinate in coordinate system of _object._|
| _yprime_|Required| **Double**| _y_-coordinate in coordinate system of _object._|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shape.XYToPage.md b/api/Visio.Shape.XYToPage.md
index 4b7c0491a32..d6f09664a19 100644
--- a/api/Visio.Shape.XYToPage.md
+++ b/api/Visio.Shape.XYToPage.md
@@ -27,14 +27,14 @@ Transforms a point expressed in the local coordinate system of a **Shape** obje
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _x_|Required| **Double**| _x_-coordinate in coordinate system of _object._|
| _y_|Required| **Double**| _y_-coordinate in coordinate system of _object._|
| _xprime_|Required| **Double**| _x_-coordinate corresponding to _x_ in the **Page** or **Master** object's coordinate system.|
| _yprime_|Required| **Double**| _y_-coordinate corresponding to _y_ in the **Page** or **Master** object's coordinate system.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.ShapeAtPoint.md b/api/Visio.ShapeAtPoint.md
index d02db5f5609..e901cfabe95 100644
--- a/api/Visio.ShapeAtPoint.md
+++ b/api/Visio.ShapeAtPoint.md
@@ -24,12 +24,12 @@ Gets the ID of the shape in the drawing that is open in Microsoft Visio Viewer,
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|X|Required| **Long**|The x-coordinate, in pixels, of the point.|
|Y|Required| **Long**|The y-coordinate, in pixels, of the point.|
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ShapeCount.md b/api/Visio.ShapeCount.md
index 57a8201318f..3e298705ce0 100644
--- a/api/Visio.ShapeCount.md
+++ b/api/Visio.ShapeCount.md
@@ -20,7 +20,7 @@ Gets the count of shapes in the drawing that is open in Microsoft Visio Viewer.
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ShapeIDToIndex.md b/api/Visio.ShapeIDToIndex.md
index 13a146beb71..d9ab60d1455 100644
--- a/api/Visio.ShapeIDToIndex.md
+++ b/api/Visio.ShapeIDToIndex.md
@@ -24,11 +24,11 @@ Gets the index in the collection of shapes of the shape with the specified ID in
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ShapeID|Required| **Long**|The ID of the shape.|
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ShapeIndexToID.md b/api/Visio.ShapeIndexToID.md
index 054a7fe74ce..c8bcf152cbe 100644
--- a/api/Visio.ShapeIndexToID.md
+++ b/api/Visio.ShapeIndexToID.md
@@ -24,11 +24,11 @@ Gets the ID of the shape at the specified index position in the collection of sh
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ShapeIndex|Required| **Long**|The index position of the shape in the collection of shapes.|
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ShapeName.md b/api/Visio.ShapeName.md
index 02673217382..9b7ee60d325 100644
--- a/api/Visio.ShapeName.md
+++ b/api/Visio.ShapeName.md
@@ -24,11 +24,11 @@ Gets the name of the shape at the specified index in the collection of shapes in
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|ShapeIndex|Required| **Long**|The index of the shape in the collection of shapes.|
-### Return Value
+### Return value
String
diff --git a/api/Visio.Shapes.Application.md b/api/Visio.Shapes.Application.md
index f6313dc3494..17870e34150 100644
--- a/api/Visio.Shapes.Application.md
+++ b/api/Visio.Shapes.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Shapes](./Visio.Shapes.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Shapes.CenterDrawing.md b/api/Visio.Shapes.CenterDrawing.md
index 45f2f4ff222..9a609e6f9f9 100644
--- a/api/Visio.Shapes.CenterDrawing.md
+++ b/api/Visio.Shapes.CenterDrawing.md
@@ -23,7 +23,7 @@ Centers a page's, master's, or group's shapes with respect to the extent of the
_expression_ A variable that represents a [Shapes](./Visio.Shapes.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Shapes.ContainingMaster.md b/api/Visio.Shapes.ContainingMaster.md
index 8fa56f084fd..add3ce53735 100644
--- a/api/Visio.Shapes.ContainingMaster.md
+++ b/api/Visio.Shapes.ContainingMaster.md
@@ -23,7 +23,7 @@ Returns the **Master** object that contains an object. Read-only.
_expression_ A variable that represents a [Shapes](./Visio.Shapes.md) object.
-### Return Value
+### Return value
Master
diff --git a/api/Visio.Shapes.ContainingPage.md b/api/Visio.Shapes.ContainingPage.md
index e26461dde75..62095e9617b 100644
--- a/api/Visio.Shapes.ContainingPage.md
+++ b/api/Visio.Shapes.ContainingPage.md
@@ -23,7 +23,7 @@ Returns the page that contains an object.
_expression_ A variable that represents a [Shapes](./Visio.Shapes.md) object.
-### Return Value
+### Return value
Page
diff --git a/api/Visio.Shapes.ContainingShape.md b/api/Visio.Shapes.ContainingShape.md
index 552612262e1..205dfc5afc7 100644
--- a/api/Visio.Shapes.ContainingShape.md
+++ b/api/Visio.Shapes.ContainingShape.md
@@ -23,7 +23,7 @@ Returns the **Shape** object that contains an object or collection. Read-only.
_expression_ A variable that represents a [Shapes](./Visio.Shapes.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shapes.Count.md b/api/Visio.Shapes.Count.md
index 4ae076d6870..ea6125036bd 100644
--- a/api/Visio.Shapes.Count.md
+++ b/api/Visio.Shapes.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Shapes](./Visio.Shapes.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Shapes.Document.md b/api/Visio.Shapes.Document.md
index 05cd5e8e752..06ef2dc4bf6 100644
--- a/api/Visio.Shapes.Document.md
+++ b/api/Visio.Shapes.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Shapes](./Visio.Shapes.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Shapes.EventList.md b/api/Visio.Shapes.EventList.md
index 2c876071353..23cfbd4af41 100644
--- a/api/Visio.Shapes.EventList.md
+++ b/api/Visio.Shapes.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Shapes](./Visio.Shapes.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Shapes.Item.md b/api/Visio.Shapes.Item.md
index 47c2c41e711..676b119d34f 100644
--- a/api/Visio.Shapes.Item.md
+++ b/api/Visio.Shapes.Item.md
@@ -27,11 +27,11 @@ Returns an item from a collection. The **Item** property is the default propert
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameUIDOrIndex_|Required| **Variant**|Contains the name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shapes.ItemFromID.md b/api/Visio.Shapes.ItemFromID.md
index 0cbf2eee6b5..f0c1e57e65f 100644
--- a/api/Visio.Shapes.ItemFromID.md
+++ b/api/Visio.Shapes.ItemFromID.md
@@ -27,11 +27,11 @@ Returns an item of a collection using the ID of the item. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nID_|Required| **Long**|The ID of the object to retrieve.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shapes.ItemFromUniqueID.md b/api/Visio.Shapes.ItemFromUniqueID.md
index bc6a3a810bc..5cb1debcd42 100644
--- a/api/Visio.Shapes.ItemFromUniqueID.md
+++ b/api/Visio.Shapes.ItemFromUniqueID.md
@@ -27,11 +27,11 @@ Returns the **[Shape](Visio.Shape.md)** object that matches the specified **[Un
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UniqueID_|Required| **String**|The unique ID of a **Shape** object.|
-### Return Value
+### Return value
**Shape**
diff --git a/api/Visio.Shapes.ItemU.md b/api/Visio.Shapes.ItemU.md
index 0b6dd28b867..af75cdd4d6c 100644
--- a/api/Visio.Shapes.ItemU.md
+++ b/api/Visio.Shapes.ItemU.md
@@ -27,11 +27,11 @@ Returns an object from a collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|Contains the universal name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Shapes.ObjectType.md b/api/Visio.Shapes.ObjectType.md
index 1c8a3724f41..00474086c39 100644
--- a/api/Visio.Shapes.ObjectType.md
+++ b/api/Visio.Shapes.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Shapes](./Visio.Shapes.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shapes.PersistsEvents.md b/api/Visio.Shapes.PersistsEvents.md
index f7b7f498722..1cd9a7caac4 100644
--- a/api/Visio.Shapes.PersistsEvents.md
+++ b/api/Visio.Shapes.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Shapes](./Visio.Shapes.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Shapes.Stat.md b/api/Visio.Shapes.Stat.md
index 76e2d3e9c32..2c0b0c09093 100644
--- a/api/Visio.Shapes.Stat.md
+++ b/api/Visio.Shapes.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Shapes](./Visio.Shapes.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.SilentMode.md b/api/Visio.SilentMode.md
index 0debabf4305..1043014afb8 100644
--- a/api/Visio.SilentMode.md
+++ b/api/Visio.SilentMode.md
@@ -20,7 +20,7 @@ Determines whether any component of the user interface (either that of Microsoft
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Src.md b/api/Visio.Src.md
index 16a8d8eafa5..15f2bd0a642 100644
--- a/api/Visio.Src.md
+++ b/api/Visio.Src.md
@@ -23,7 +23,7 @@ The full path, including file name, of the Microsoft Visio file used to initiali
_expression_ A variable that represents a [DrawingControl](./Visio.DrawingControl.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.StartPage.md b/api/Visio.StartPage.md
index 42775b1f44a..b914cbc124b 100644
--- a/api/Visio.StartPage.md
+++ b/api/Visio.StartPage.md
@@ -20,7 +20,7 @@ Specifies the page number of the first page in the range when you save a range o
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.StoreInFolder.md b/api/Visio.StoreInFolder.md
index 7a8d8ef0538..c007b568710 100644
--- a/api/Visio.StoreInFolder.md
+++ b/api/Visio.StoreInFolder.md
@@ -20,7 +20,7 @@ Determines whether supporting files for the Web page to be created are placed in
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.Style.Application.md b/api/Visio.Style.Application.md
index 9aa92a210a0..078ce430b41 100644
--- a/api/Visio.Style.Application.md
+++ b/api/Visio.Style.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Style.BasedOn.md b/api/Visio.Style.BasedOn.md
index 79dbfcad15b..dc99de9b24e 100644
--- a/api/Visio.Style.BasedOn.md
+++ b/api/Visio.Style.BasedOn.md
@@ -23,7 +23,7 @@ Gets or sets the style on which a **Style** object is based. Read/write.
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Style.BeforeStyleDelete.md b/api/Visio.Style.BeforeStyleDelete.md
index da429514dfe..9fd18f9ad98 100644
--- a/api/Visio.Style.BeforeStyleDelete.md
+++ b/api/Visio.Style.BeforeStyleDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeStyleDelete'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that is going to be deleted.|
diff --git a/api/Visio.Style.CellExists.md b/api/Visio.Style.CellExists.md
index 19edc2b47ac..1b454dc5d36 100644
--- a/api/Visio.Style.CellExists.md
+++ b/api/Visio.Style.CellExists.md
@@ -27,12 +27,12 @@ Determines whether a particular ShapeSheet cell exists in the scope of the searc
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeSpecificCellName_|Required| **String**|The local or universal name of the ShapeSheet cell for which you want to search.|
| _fExistsLocally_|Required| **Integer**|The scope of the search.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Style.CellExistsU.md b/api/Visio.Style.CellExistsU.md
index 872c07b1a54..4ffd3cf25a2 100644
--- a/api/Visio.Style.CellExistsU.md
+++ b/api/Visio.Style.CellExistsU.md
@@ -27,12 +27,12 @@ Determines whether a particular ShapeSheet cell exists in the scope of the searc
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeIndependentCellName_|Required| **String**|The universal name of the ShapeSheet cell for which you want to search.|
| _fExistsLocally_|Required| **Integer**|The scope of the search.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Style.Cells.md b/api/Visio.Style.Cells.md
index 3cf150b4f3d..cf603c74ae3 100644
--- a/api/Visio.Style.Cells.md
+++ b/api/Visio.Style.Cells.md
@@ -27,11 +27,11 @@ Returns a **Cell** object that represents a ShapeSheet cell. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeSpecificCellName_|Required| **String**|The name of a ShapeSheet cell.|
-### Return Value
+### Return value
Cell
diff --git a/api/Visio.Style.CellsSRC.md b/api/Visio.Style.CellsSRC.md
index c1282b889dc..5d9ff8deeb5 100644
--- a/api/Visio.Style.CellsSRC.md
+++ b/api/Visio.Style.CellsSRC.md
@@ -27,13 +27,13 @@ Returns a **Cell** object that represents a ShapeSheet cell identified by secti
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Section_|Required| **Integer**|The cell's section index.|
| _Row_|Required| **Integer**|The cell's row index.|
| _Column_|Required| **Integer**|The cell's column index.|
-### Return Value
+### Return value
Cell
diff --git a/api/Visio.Style.CellsSRCExists.md b/api/Visio.Style.CellsSRCExists.md
index aeae363e40f..362354b6151 100644
--- a/api/Visio.Style.CellsSRCExists.md
+++ b/api/Visio.Style.CellsSRCExists.md
@@ -27,14 +27,14 @@ Determines whether a ShapeSheet cell exists in the scope of a search. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Section_|Required| **Integer**|The cell's section index.|
| _Row_|Required| **Integer**|The cell's row index.|
| _Column_|Required| **Integer**|The cell's column index.|
| _fExistsLocally_|Required| **Integer**|The scope of the search.|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Style.CellsU.md b/api/Visio.Style.CellsU.md
index 71e271c1eb1..96c563a7d00 100644
--- a/api/Visio.Style.CellsU.md
+++ b/api/Visio.Style.CellsU.md
@@ -27,11 +27,11 @@ Returns a **Cell** object that represents a ShapeSheet cell. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeIndependentCellName_|Required| **String**|The name of a ShapeSheet cell.|
-### Return Value
+### Return value
Cell
diff --git a/api/Visio.Style.Delete.md b/api/Visio.Style.Delete.md
index 728e1e1f4a1..000a42ee199 100644
--- a/api/Visio.Style.Delete.md
+++ b/api/Visio.Style.Delete.md
@@ -23,7 +23,7 @@ Deletes an object.
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Style.Document.md b/api/Visio.Style.Document.md
index d27288281dd..4edf7efa46b 100644
--- a/api/Visio.Style.Document.md
+++ b/api/Visio.Style.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Style.EventList.md b/api/Visio.Style.EventList.md
index 6b0c926709e..fd44a397763 100644
--- a/api/Visio.Style.EventList.md
+++ b/api/Visio.Style.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Style.FillBasedOn.md b/api/Visio.Style.FillBasedOn.md
index e2de90f12c9..584a588d291 100644
--- a/api/Visio.Style.FillBasedOn.md
+++ b/api/Visio.Style.FillBasedOn.md
@@ -23,7 +23,7 @@ Gets or sets the fill style on which the **Style** object is based. Read/write.
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Style.GetFormulas.md b/api/Visio.Style.GetFormulas.md
index 63999353273..53ef7b28344 100644
--- a/api/Visio.Style.GetFormulas.md
+++ b/api/Visio.Style.GetFormulas.md
@@ -27,12 +27,12 @@ Returns the formulas of many cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**| A stream identifying cells to be queried.|
| _formulaArray()_|Required| **Variant**|Out parameter. An array that receives formulas of queried cells.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Style.GetFormulasU.md b/api/Visio.Style.GetFormulasU.md
index f0405637771..b824be35ada 100644
--- a/api/Visio.Style.GetFormulasU.md
+++ b/api/Visio.Style.GetFormulasU.md
@@ -27,12 +27,12 @@ Returns the formulas of many cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SRCStream()_|Required| **Integer**|A stream identifying cells to be queried.|
| _formulaArray()_|Required| **Variant**|Out parameter. An array that receives formulas of queried cells.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Style.GetResults.md b/api/Visio.Style.GetResults.md
index 8a9d538358a..7ba6df8d641 100644
--- a/api/Visio.Style.GetResults.md
+++ b/api/Visio.Style.GetResults.md
@@ -27,14 +27,14 @@ Gets the results or formulas of many cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**|An array identifying cells to be queried.|
| _Flags_|Required| **Integer**|Flags that influence the type of entries returned in results.|
| _UnitsNamesOrCodes()_|Required| **Variant**| An array of measurement units that results are to be returned in.|
| _resultArray()_|Required| **Variant**|Out parameter. An array that receives results or formulas of queried cells.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Style.Hidden.md b/api/Visio.Style.Hidden.md
index ef3bd17b94b..e65456280ae 100644
--- a/api/Visio.Style.Hidden.md
+++ b/api/Visio.Style.Hidden.md
@@ -23,7 +23,7 @@ Hides or shows a master on a stencil or a style in the user interface. Read/writ
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Style.ID.md b/api/Visio.Style.ID.md
index 394af8f470f..0d622ebcb2f 100644
--- a/api/Visio.Style.ID.md
+++ b/api/Visio.Style.ID.md
@@ -23,7 +23,7 @@ Gets the ID of an object. Read-only.
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Style.IncludesFill.md b/api/Visio.Style.IncludesFill.md
index 36c35ea1de3..76a1a5e07e0 100644
--- a/api/Visio.Style.IncludesFill.md
+++ b/api/Visio.Style.IncludesFill.md
@@ -23,7 +23,7 @@ Indicates whether the style includes fill attributes. Read/write.
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Style.IncludesLine.md b/api/Visio.Style.IncludesLine.md
index a40bf0bfd79..536cd40119a 100644
--- a/api/Visio.Style.IncludesLine.md
+++ b/api/Visio.Style.IncludesLine.md
@@ -23,7 +23,7 @@ Indicates whether the style includes line attributes. Read/write.
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Style.IncludesText.md b/api/Visio.Style.IncludesText.md
index 10e408dcd30..85ccf36acbe 100644
--- a/api/Visio.Style.IncludesText.md
+++ b/api/Visio.Style.IncludesText.md
@@ -23,7 +23,7 @@ Indicates whether the style includes text attributes. Read/write.
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Style.Index.md b/api/Visio.Style.Index.md
index 64b3d3009c2..cb059d5c624 100644
--- a/api/Visio.Style.Index.md
+++ b/api/Visio.Style.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of a **Style** object in the **Styles** collection. R
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Style.LineBasedOn.md b/api/Visio.Style.LineBasedOn.md
index b0a3a81bc18..154768160ed 100644
--- a/api/Visio.Style.LineBasedOn.md
+++ b/api/Visio.Style.LineBasedOn.md
@@ -23,7 +23,7 @@ Gets or sets the line style on which a **Style** object is based. Read/write.
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Style.Name.md b/api/Visio.Style.Name.md
index 7787a574f3a..935de978a2c 100644
--- a/api/Visio.Style.Name.md
+++ b/api/Visio.Style.Name.md
@@ -23,7 +23,7 @@ Specifies the name of an object. Read-only.
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Style.NameU.md b/api/Visio.Style.NameU.md
index f0d21de7d25..ff2bd82de50 100644
--- a/api/Visio.Style.NameU.md
+++ b/api/Visio.Style.NameU.md
@@ -23,7 +23,7 @@ Specifies the universal name of a **Style** object. Read/write.
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Style.ObjectType.md b/api/Visio.Style.ObjectType.md
index 1b17ac4707d..6f5e6bad7d1 100644
--- a/api/Visio.Style.ObjectType.md
+++ b/api/Visio.Style.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Style.PersistsEvents.md b/api/Visio.Style.PersistsEvents.md
index 3e13e9a3efa..d5298f27d84 100644
--- a/api/Visio.Style.PersistsEvents.md
+++ b/api/Visio.Style.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Style.QueryCancelStyleDelete.md b/api/Visio.Style.QueryCancelStyleDelete.md
index 8459c2afc7d..b8b96e11dec 100644
--- a/api/Visio.Style.QueryCancelStyleDelete.md
+++ b/api/Visio.Style.QueryCancelStyleDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelStyleDelete'(**_ByVal Style As [IVSTYLE]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _style_|Required| **[IVSTYLE]**|The style that is going to be deleted.|
diff --git a/api/Visio.Style.Section.md b/api/Visio.Style.Section.md
index ae4ca3d7356..b89edfdc442 100644
--- a/api/Visio.Style.Section.md
+++ b/api/Visio.Style.Section.md
@@ -27,11 +27,11 @@ Returns the requested **Section** object belonging to a style. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Integer**|A section index.|
-### Return Value
+### Return value
Section
diff --git a/api/Visio.Style.SetFormulas.md b/api/Visio.Style.SetFormulas.md
index 214bc59b2ab..79be6119ede 100644
--- a/api/Visio.Style.SetFormulas.md
+++ b/api/Visio.Style.SetFormulas.md
@@ -27,13 +27,13 @@ Sets the formulas of one or more cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**|Stream identifying cells to be modified.|
| _formulaArray()_|Required| **Variant**|Formulas to be assigned to identified cells.|
| _Flags_|Required| **Integer**|Flags that influence the behavior of **SetFormulas** .|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Style.SetResults.md b/api/Visio.Style.SetResults.md
index 1aae631e2fb..6f28f49ca37 100644
--- a/api/Visio.Style.SetResults.md
+++ b/api/Visio.Style.SetResults.md
@@ -27,14 +27,14 @@ Sets the results or formulas of one or more cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SID_SRCStream()_|Required| **Integer**|An array identifying cells to be modified.|
| _UnitsNamesOrCodes()_|Required| **Variant**|An array of measurement units to be attributed to entries in the results array.|
| _resultArray()_|Required| **Variant**|Results or formulas to be assigned to identified cells.|
| _Flags_|Required| **Integer**|Flags that influence the behavior of **SetResults** .|
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Style.Stat.md b/api/Visio.Style.Stat.md
index a867c6dc8c6..199d0bc4d09 100644
--- a/api/Visio.Style.Stat.md
+++ b/api/Visio.Style.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Style.StyleChanged.md b/api/Visio.Style.StyleChanged.md
index 9220cac701a..904407fd9ae 100644
--- a/api/Visio.Style.StyleChanged.md
+++ b/api/Visio.Style.StyleChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'StyleChanged'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _style_|Required| **[IVSTYLE]**|The style that changed.|
diff --git a/api/Visio.Style.StyleDeleteCanceled.md b/api/Visio.Style.StyleDeleteCanceled.md
index 3d981e215d6..51c59f51fcf 100644
--- a/api/Visio.Style.StyleDeleteCanceled.md
+++ b/api/Visio.Style.StyleDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'StyleDeleteCanceled'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that was going to be deleted.|
diff --git a/api/Visio.Style.TextBasedOn.md b/api/Visio.Style.TextBasedOn.md
index 2673b761365..93c9e3ea1c3 100644
--- a/api/Visio.Style.TextBasedOn.md
+++ b/api/Visio.Style.TextBasedOn.md
@@ -23,7 +23,7 @@ Gets or sets the text style on which a **Style** object is based. Read/write.
_expression_ A variable that represents a [Style](./Visio.Style.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Styles.Add.md b/api/Visio.Styles.Add.md
index d2ac27733ff..2fd5b1034f7 100644
--- a/api/Visio.Styles.Add.md
+++ b/api/Visio.Styles.Add.md
@@ -27,7 +27,7 @@ Adds a new **Style** object to a **Styles** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StyleName_|Required| **String**|The new style name.|
| _BasedOn_|Required| **String**|The name of the style on which to base the new style.|
@@ -35,7 +35,7 @@ Adds a new **Style** object to a **Styles** collection.
| _fIncludesLine_|Required| **Integer**|Zero to disable line attributes, or non-zero to enable them.|
| _fIncludesFill_|Required| **Integer**|Zero to disable fill attributes, or non-zero to enable them.|
-### Return Value
+### Return value
Style
diff --git a/api/Visio.Styles.Application.md b/api/Visio.Styles.Application.md
index acd76cbc76f..60d71d9043a 100644
--- a/api/Visio.Styles.Application.md
+++ b/api/Visio.Styles.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Styles](./Visio.Styles.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Styles.BeforeStyleDelete.md b/api/Visio.Styles.BeforeStyleDelete.md
index f758434a81c..82d5b320a1e 100644
--- a/api/Visio.Styles.BeforeStyleDelete.md
+++ b/api/Visio.Styles.BeforeStyleDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeStyleDelete'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that is going to be deleted.|
diff --git a/api/Visio.Styles.Count.md b/api/Visio.Styles.Count.md
index a2b0a70face..1d8fa40dc70 100644
--- a/api/Visio.Styles.Count.md
+++ b/api/Visio.Styles.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Styles](./Visio.Styles.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Styles.Document.md b/api/Visio.Styles.Document.md
index 405a6a57a1e..73065c4bbdb 100644
--- a/api/Visio.Styles.Document.md
+++ b/api/Visio.Styles.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Styles](./Visio.Styles.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Styles.EventList.md b/api/Visio.Styles.EventList.md
index 4bee503f2aa..4f9ad5dce15 100644
--- a/api/Visio.Styles.EventList.md
+++ b/api/Visio.Styles.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Styles](./Visio.Styles.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Styles.GetNames.md b/api/Visio.Styles.GetNames.md
index e0bde4986a6..e1a6b0e4d50 100644
--- a/api/Visio.Styles.GetNames.md
+++ b/api/Visio.Styles.GetNames.md
@@ -27,11 +27,11 @@ Returns the names of all items in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeSpecificNameArray()_|Required| **String**|Out parameter. An array that receives names of members of the indicated object.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Styles.GetNamesU.md b/api/Visio.Styles.GetNamesU.md
index 38dfcc4ddd8..4b79f3a320e 100644
--- a/api/Visio.Styles.GetNamesU.md
+++ b/api/Visio.Styles.GetNamesU.md
@@ -27,11 +27,11 @@ Returns the universal names of all items in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _localeIndependentNameArray()_|Required| **String**|Out parameter. An array that receives the names of members of the indicated object.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Styles.Item.md b/api/Visio.Styles.Item.md
index ffb7bdb2552..2cc9817fdd2 100644
--- a/api/Visio.Styles.Item.md
+++ b/api/Visio.Styles.Item.md
@@ -27,11 +27,11 @@ Returns an item from a collection. The **Item** property is the default propert
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|Contains the name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
Style
diff --git a/api/Visio.Styles.ItemFromID.md b/api/Visio.Styles.ItemFromID.md
index 4e714bb3624..7d10a54bd15 100644
--- a/api/Visio.Styles.ItemFromID.md
+++ b/api/Visio.Styles.ItemFromID.md
@@ -27,11 +27,11 @@ Returns an item of a collection using the ID of the item. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nID_|Required| **Long**|The ID of the object to retrieve.|
-### Return Value
+### Return value
Style
diff --git a/api/Visio.Styles.ItemU.md b/api/Visio.Styles.ItemU.md
index cae489c2342..ebf3eea3dc0 100644
--- a/api/Visio.Styles.ItemU.md
+++ b/api/Visio.Styles.ItemU.md
@@ -27,11 +27,11 @@ Returns an object from a collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameOrIndex_|Required| **Variant**|Contains the universal name, unique ID, or index of the object to retrieve.|
-### Return Value
+### Return value
Style
diff --git a/api/Visio.Styles.ObjectType.md b/api/Visio.Styles.ObjectType.md
index 053f0f43913..ba93eb65b47 100644
--- a/api/Visio.Styles.ObjectType.md
+++ b/api/Visio.Styles.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Styles](./Visio.Styles.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Styles.PersistsEvents.md b/api/Visio.Styles.PersistsEvents.md
index dfe26bb3412..69e80e0d5c4 100644
--- a/api/Visio.Styles.PersistsEvents.md
+++ b/api/Visio.Styles.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Styles](./Visio.Styles.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Styles.QueryCancelStyleDelete.md b/api/Visio.Styles.QueryCancelStyleDelete.md
index 1fe248f656f..ee242e88a45 100644
--- a/api/Visio.Styles.QueryCancelStyleDelete.md
+++ b/api/Visio.Styles.QueryCancelStyleDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelStyleDelete'(**_ByVal Style As [IVSTYLE]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _style_|Required| **[IVSTYLE]**|The style that is going to be deleted.|
diff --git a/api/Visio.Styles.Stat.md b/api/Visio.Styles.Stat.md
index 9ef5d3d2d52..0b7bbb9c6a5 100644
--- a/api/Visio.Styles.Stat.md
+++ b/api/Visio.Styles.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Styles](./Visio.Styles.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Styles.StyleAdded.md b/api/Visio.Styles.StyleAdded.md
index a2fb5772e20..549a3bedd5a 100644
--- a/api/Visio.Styles.StyleAdded.md
+++ b/api/Visio.Styles.StyleAdded.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'StyleAdded'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that was added to the document.|
diff --git a/api/Visio.Styles.StyleChanged.md b/api/Visio.Styles.StyleChanged.md
index e387563e146..1aeae598c10 100644
--- a/api/Visio.Styles.StyleChanged.md
+++ b/api/Visio.Styles.StyleChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'StyleChanged'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _style_|Required| **[IVSTYLE]**|The style that changed.|
diff --git a/api/Visio.Styles.StyleDeleteCanceled.md b/api/Visio.Styles.StyleDeleteCanceled.md
index 411c2efeed5..32493834948 100644
--- a/api/Visio.Styles.StyleDeleteCanceled.md
+++ b/api/Visio.Styles.StyleDeleteCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'StyleDeleteCanceled'(**_ByVal Style As [IVSTYLE]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **[IVSTYLE]**|The style that was going to be deleted.|
diff --git a/api/Visio.Stylesheet.md b/api/Visio.Stylesheet.md
index f673eb25674..0411d5b66b4 100644
--- a/api/Visio.Stylesheet.md
+++ b/api/Visio.Stylesheet.md
@@ -20,7 +20,7 @@ Specifies a cascading stylesheet (CSS) provided by Microsoft Visio, or one that
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.SubShapeAtPoint.md b/api/Visio.SubShapeAtPoint.md
index 040abb79fb5..da3216f2ff4 100644
--- a/api/Visio.SubShapeAtPoint.md
+++ b/api/Visio.SubShapeAtPoint.md
@@ -24,12 +24,12 @@ Gets the ID of the subshape in the drawing that is open in Microsoft Visio Viewe
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|X|Required| **Long**|The x-coordinate, in pixels, of the point.|
|Y|Required| **Long**|The y-coordinate, in pixels, of the point.|
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.TargetPath.md b/api/Visio.TargetPath.md
index 004d0fbda97..5abce374d8a 100644
--- a/api/Visio.TargetPath.md
+++ b/api/Visio.TargetPath.md
@@ -20,7 +20,7 @@ Specifies the path where the Web page and its supporting files are placed. Read/
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.ThemeName.md b/api/Visio.ThemeName.md
index f4a4f8918b2..ee807051082 100644
--- a/api/Visio.ThemeName.md
+++ b/api/Visio.ThemeName.md
@@ -20,7 +20,7 @@ Assigns a Web page theme to the page you are creating. Read/write.
_expression_An expression that returns a ** [VisWebPageSettings](./overview/Visio.md)** object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.Toolbar.BuiltIn.md b/api/Visio.Toolbar.BuiltIn.md
index 9f309f3642f..34c20e71fb5 100644
--- a/api/Visio.Toolbar.BuiltIn.md
+++ b/api/Visio.Toolbar.BuiltIn.md
@@ -23,7 +23,7 @@ Determines whether an object is a default Microsoft Visio user interface object
_expression_ A variable that represents a [Toolbar](./Visio.Toolbar.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Toolbar.Caption.md b/api/Visio.Toolbar.Caption.md
index 57feae19b28..2d7c240ea42 100644
--- a/api/Visio.Toolbar.Caption.md
+++ b/api/Visio.Toolbar.Caption.md
@@ -23,7 +23,7 @@ Gets or sets the caption for an object. Read/write.
_expression_ A variable that represents a [Toolbar](./Visio.Toolbar.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Toolbar.Delete.md b/api/Visio.Toolbar.Delete.md
index 058cb2e1ecf..125a469d48c 100644
--- a/api/Visio.Toolbar.Delete.md
+++ b/api/Visio.Toolbar.Delete.md
@@ -23,7 +23,7 @@ Deletes an object.
_expression_ A variable that represents a [Toolbar](./Visio.Toolbar.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Toolbar.Enabled.md b/api/Visio.Toolbar.Enabled.md
index 21f297706e7..0729cdc7505 100644
--- a/api/Visio.Toolbar.Enabled.md
+++ b/api/Visio.Toolbar.Enabled.md
@@ -23,7 +23,7 @@ Determines whether or not an object is currently enabled. Read/write.
_expression_ A variable that represents a [Toolbar](./Visio.Toolbar.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Toolbar.Height.md b/api/Visio.Toolbar.Height.md
index 86d842f06d0..6fbdb272b93 100644
--- a/api/Visio.Toolbar.Height.md
+++ b/api/Visio.Toolbar.Height.md
@@ -23,7 +23,7 @@ Gets or sets the height of a toolbar. Read/write.
_expression_ A variable that represents a [Toolbar](./Visio.Toolbar.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Toolbar.Index.md b/api/Visio.Toolbar.Index.md
index 72ee5e68a54..17f7b1b7286 100644
--- a/api/Visio.Toolbar.Index.md
+++ b/api/Visio.Toolbar.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of a **Toolbar** object in a **Toolbars** collection.
_expression_ A variable that represents a [Toolbar](./Visio.Toolbar.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Toolbar.Left.md b/api/Visio.Toolbar.Left.md
index 2b3eb7df692..b80ca97b8ad 100644
--- a/api/Visio.Toolbar.Left.md
+++ b/api/Visio.Toolbar.Left.md
@@ -23,7 +23,7 @@ Gets the distance in pixels between the left edge of the object and the left sid
_expression_ A variable that represents a [Toolbar](./Visio.Toolbar.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Toolbar.Parent.md b/api/Visio.Toolbar.Parent.md
index 3284141a823..04243650efd 100644
--- a/api/Visio.Toolbar.Parent.md
+++ b/api/Visio.Toolbar.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [Toolbar](./Visio.Toolbar.md) object.
-### Return Value
+### Return value
Toolbars
diff --git a/api/Visio.Toolbar.Position.md b/api/Visio.Toolbar.Position.md
index eedabe78919..32fc717d883 100644
--- a/api/Visio.Toolbar.Position.md
+++ b/api/Visio.Toolbar.Position.md
@@ -23,7 +23,7 @@ Gets or sets the position of an object. Read/write.
_expression_ A variable that represents a [Toolbar](./Visio.Toolbar.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Toolbar.Protection.md b/api/Visio.Toolbar.Protection.md
index 66e2bf0aece..5631d13af6b 100644
--- a/api/Visio.Toolbar.Protection.md
+++ b/api/Visio.Toolbar.Protection.md
@@ -23,7 +23,7 @@ Determines how a **Toolbar** object is protected from user customization. Read/
_expression_ A variable that represents a [Toolbar](./Visio.Toolbar.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Toolbar.RowIndex.md b/api/Visio.Toolbar.RowIndex.md
index 79e556972ef..67cf0d2b418 100644
--- a/api/Visio.Toolbar.RowIndex.md
+++ b/api/Visio.Toolbar.RowIndex.md
@@ -23,7 +23,7 @@ Gets or sets the docking order of a **Toolbar** object in relation to other ite
_expression_ A variable that represents a [Toolbar](./Visio.Toolbar.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Toolbar.ToolbarItems.md b/api/Visio.Toolbar.ToolbarItems.md
index bdab5021c19..3b04d90807b 100644
--- a/api/Visio.Toolbar.ToolbarItems.md
+++ b/api/Visio.Toolbar.ToolbarItems.md
@@ -23,7 +23,7 @@ Returns the **ToolbarItems** collection of a **Toolbar** object. Read-only.
_expression_ A variable that represents a [Toolbar](./Visio.Toolbar.md) object.
-### Return Value
+### Return value
ToolbarItems
diff --git a/api/Visio.Toolbar.Top.md b/api/Visio.Toolbar.Top.md
index 3585eb0c5e6..ccf813aa03b 100644
--- a/api/Visio.Toolbar.Top.md
+++ b/api/Visio.Toolbar.Top.md
@@ -23,7 +23,7 @@ Gets the distance between the top of an object and the top of the docking area o
_expression_ A variable that represents a [Toolbar](./Visio.Toolbar.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Toolbar.Visible.md b/api/Visio.Toolbar.Visible.md
index 56f7590dd3f..1170fcb86af 100644
--- a/api/Visio.Toolbar.Visible.md
+++ b/api/Visio.Toolbar.Visible.md
@@ -23,7 +23,7 @@ Determines whether an object is visible. Read/write.
_expression_ A variable that represents a [Toolbar](./Visio.Toolbar.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Toolbar.Width.md b/api/Visio.Toolbar.Width.md
index b5051c53e2e..0c71fb9dcd6 100644
--- a/api/Visio.Toolbar.Width.md
+++ b/api/Visio.Toolbar.Width.md
@@ -23,7 +23,7 @@ Gets the width of an object in pixels. Read/write.
_expression_ A variable that represents a [Toolbar](./Visio.Toolbar.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.ToolbarButtons.md b/api/Visio.ToolbarButtons.md
index 1f8897da174..8aac0df6e1c 100644
--- a/api/Visio.ToolbarButtons.md
+++ b/api/Visio.ToolbarButtons.md
@@ -20,7 +20,7 @@ Gets or sets the buttons that are available in the toolbar in Microsoft Visio Vi
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.ToolbarCustomizable.md b/api/Visio.ToolbarCustomizable.md
index 85244a62534..15ff3e3a13f 100644
--- a/api/Visio.ToolbarCustomizable.md
+++ b/api/Visio.ToolbarCustomizable.md
@@ -20,7 +20,7 @@ Gets or sets a value that indicates whether it is possible to customize the tool
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.ToolbarItem.ActionText.md b/api/Visio.ToolbarItem.ActionText.md
index 9eebbb351cc..9a2930fd698 100644
--- a/api/Visio.ToolbarItem.ActionText.md
+++ b/api/Visio.ToolbarItem.ActionText.md
@@ -23,7 +23,7 @@ Gets or sets the action text for a toolbar item. Read/write.
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.ToolbarItem.AddOnArgs.md b/api/Visio.ToolbarItem.AddOnArgs.md
index 5e7ea0b6a8a..1fab86ecb62 100644
--- a/api/Visio.ToolbarItem.AddOnArgs.md
+++ b/api/Visio.ToolbarItem.AddOnArgs.md
@@ -23,7 +23,7 @@ Gets or sets the argument string that you send to the add-on associated with a p
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.ToolbarItem.AddOnName.md b/api/Visio.ToolbarItem.AddOnName.md
index 16e39f5dedb..1b9cf85aa9f 100644
--- a/api/Visio.ToolbarItem.AddOnName.md
+++ b/api/Visio.ToolbarItem.AddOnName.md
@@ -23,7 +23,7 @@ Gets or sets the name of an add-on or procedure that is run when its associated
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.ToolbarItem.BeginGroup.md b/api/Visio.ToolbarItem.BeginGroup.md
index 2e21d7348b3..859442419e1 100644
--- a/api/Visio.ToolbarItem.BeginGroup.md
+++ b/api/Visio.ToolbarItem.BeginGroup.md
@@ -23,7 +23,7 @@ Determines whether a toolbar item appears at the beginning of a group of items o
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ToolbarItem.BuiltIn.md b/api/Visio.ToolbarItem.BuiltIn.md
index 8bed82a5acc..e95e7455d0f 100644
--- a/api/Visio.ToolbarItem.BuiltIn.md
+++ b/api/Visio.ToolbarItem.BuiltIn.md
@@ -23,7 +23,7 @@ Determines whether an object is a default Microsoft Visio user interface object
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ToolbarItem.Caption.md b/api/Visio.ToolbarItem.Caption.md
index 31084b227fe..ef4c5560ebb 100644
--- a/api/Visio.ToolbarItem.Caption.md
+++ b/api/Visio.ToolbarItem.Caption.md
@@ -23,7 +23,7 @@ Gets or sets the caption for an object. Read/write.
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.ToolbarItem.CmdNum.md b/api/Visio.ToolbarItem.CmdNum.md
index 0c63b42502d..236ab7797bc 100644
--- a/api/Visio.ToolbarItem.CmdNum.md
+++ b/api/Visio.ToolbarItem.CmdNum.md
@@ -23,7 +23,7 @@ Gets or sets the command ID associated with a toolbar item. Read/write.
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.ToolbarItem.CntrlType.md b/api/Visio.ToolbarItem.CntrlType.md
index 71b75e017ca..96d9a05cb3a 100644
--- a/api/Visio.ToolbarItem.CntrlType.md
+++ b/api/Visio.ToolbarItem.CntrlType.md
@@ -23,7 +23,7 @@ Gets or sets the control type of a menu, menu item, or toolbar item. Read/write.
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.ToolbarItem.Delete.md b/api/Visio.ToolbarItem.Delete.md
index 50957e53e32..97c408e7a94 100644
--- a/api/Visio.ToolbarItem.Delete.md
+++ b/api/Visio.ToolbarItem.Delete.md
@@ -23,7 +23,7 @@ Deletes an object.
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.ToolbarItem.Enabled.md b/api/Visio.ToolbarItem.Enabled.md
index c9859f75ff5..aaf35b8afc9 100644
--- a/api/Visio.ToolbarItem.Enabled.md
+++ b/api/Visio.ToolbarItem.Enabled.md
@@ -23,7 +23,7 @@ Determines whether or not an object is currently enabled. Read/write.
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ToolbarItem.FaceID.md b/api/Visio.ToolbarItem.FaceID.md
index e83a2e866e0..1b40c03a4df 100644
--- a/api/Visio.ToolbarItem.FaceID.md
+++ b/api/Visio.ToolbarItem.FaceID.md
@@ -23,7 +23,7 @@ Gets or sets the icon for an item. Read/write.
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.ToolbarItem.IconFileName.md b/api/Visio.ToolbarItem.IconFileName.md
index e11f43bb63f..8f369f7c985 100644
--- a/api/Visio.ToolbarItem.IconFileName.md
+++ b/api/Visio.ToolbarItem.IconFileName.md
@@ -27,11 +27,11 @@ Sets a custom icon file for a menu or toolbar item.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _IconFileName_|Required| **String**|The path and name of the ICO, EXE, DLL, or VSL file to load.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.ToolbarItem.Index.md b/api/Visio.ToolbarItem.Index.md
index 762636dbbfa..2729c6df8d9 100644
--- a/api/Visio.ToolbarItem.Index.md
+++ b/api/Visio.ToolbarItem.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of a **ToolbarItem** object in the **ToolbarItems** c
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ToolbarItem.IsHierarchical.md b/api/Visio.ToolbarItem.IsHierarchical.md
index a0fac74e38e..127a555b2c1 100644
--- a/api/Visio.ToolbarItem.IsHierarchical.md
+++ b/api/Visio.ToolbarItem.IsHierarchical.md
@@ -23,7 +23,7 @@ Indicates whether a toolbar item is hierarchical; that is, whether it contains a
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.ToolbarItem.PaletteWidth.md b/api/Visio.ToolbarItem.PaletteWidth.md
index 600c9c4ac85..2455e8d2937 100644
--- a/api/Visio.ToolbarItem.PaletteWidth.md
+++ b/api/Visio.ToolbarItem.PaletteWidth.md
@@ -23,7 +23,7 @@ Gets or sets the width of a palette in pixels. Read/write.
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.ToolbarItem.Parent.md b/api/Visio.ToolbarItem.Parent.md
index 26c8b581f73..ea52cc2e96e 100644
--- a/api/Visio.ToolbarItem.Parent.md
+++ b/api/Visio.ToolbarItem.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
ToolbarItems
diff --git a/api/Visio.ToolbarItem.State.md b/api/Visio.ToolbarItem.State.md
index 650be96699b..45d26796208 100644
--- a/api/Visio.ToolbarItem.State.md
+++ b/api/Visio.ToolbarItem.State.md
@@ -23,7 +23,7 @@ Determines a button's state, pressed or not pressed. Read/write.
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.ToolbarItem.Style.md b/api/Visio.ToolbarItem.Style.md
index f04f211eb97..f6dde145c31 100644
--- a/api/Visio.ToolbarItem.Style.md
+++ b/api/Visio.ToolbarItem.Style.md
@@ -23,7 +23,7 @@ Determines whether a toolbar button shows an icon, a caption, or some combinatio
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.ToolbarItem.ToolbarItems.md b/api/Visio.ToolbarItem.ToolbarItems.md
index 3a848207cc2..868c3e4082d 100644
--- a/api/Visio.ToolbarItem.ToolbarItems.md
+++ b/api/Visio.ToolbarItem.ToolbarItems.md
@@ -23,7 +23,7 @@ Returns the **ToolbarItems** collection of a **ToolbarItem** object. Read-only.
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
ToolbarItems
diff --git a/api/Visio.ToolbarItem.TypeSpecific1.md b/api/Visio.ToolbarItem.TypeSpecific1.md
index 04fd22165b0..fa138429d4c 100644
--- a/api/Visio.ToolbarItem.TypeSpecific1.md
+++ b/api/Visio.ToolbarItem.TypeSpecific1.md
@@ -23,7 +23,7 @@ Gets or sets the type of a toolbar item. Read/write.
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.ToolbarItem.TypeSpecific2.md b/api/Visio.ToolbarItem.TypeSpecific2.md
index 3a427d59015..da71916a36a 100644
--- a/api/Visio.ToolbarItem.TypeSpecific2.md
+++ b/api/Visio.ToolbarItem.TypeSpecific2.md
@@ -23,7 +23,7 @@ Gets or sets the type of a toolbar item. Read/write.
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.ToolbarItem.Visible.md b/api/Visio.ToolbarItem.Visible.md
index f2213ba680d..6aa28e7feaa 100644
--- a/api/Visio.ToolbarItem.Visible.md
+++ b/api/Visio.ToolbarItem.Visible.md
@@ -23,7 +23,7 @@ Determines whether an object is visible. Read/write.
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.ToolbarItem.Width.md b/api/Visio.ToolbarItem.Width.md
index 621886e806c..8d602fae86c 100644
--- a/api/Visio.ToolbarItem.Width.md
+++ b/api/Visio.ToolbarItem.Width.md
@@ -23,7 +23,7 @@ Gets the width of an object in pixels. Read/write.
_expression_ A variable that represents a [ToolbarItem](./Visio.ToolbarItem.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.ToolbarItems.Add.md b/api/Visio.ToolbarItems.Add.md
index 97da39c4ec2..670afc4ae0f 100644
--- a/api/Visio.ToolbarItems.Add.md
+++ b/api/Visio.ToolbarItems.Add.md
@@ -23,7 +23,7 @@ Adds a new object to a collection.
_expression_ A variable that represents a [ToolbarItems](./Visio.ToolbarItems.md) collection.
-### Return Value
+### Return value
ToolbarItem
diff --git a/api/Visio.ToolbarItems.AddAt.md b/api/Visio.ToolbarItems.AddAt.md
index 5cc5648134d..7c99d0c4349 100644
--- a/api/Visio.ToolbarItems.AddAt.md
+++ b/api/Visio.ToolbarItems.AddAt.md
@@ -27,11 +27,11 @@ Creates a new **ToolbarItem** object at a specified index in the **ToolbarItems
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _lIndex_|Required| **Long**|The index at which to add the object.|
-### Return Value
+### Return value
ToolbarItem
diff --git a/api/Visio.ToolbarItems.Count.md b/api/Visio.ToolbarItems.Count.md
index da6b59bcab7..6f619f59128 100644
--- a/api/Visio.ToolbarItems.Count.md
+++ b/api/Visio.ToolbarItems.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [ToolbarItems](./Visio.ToolbarItems.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ToolbarItems.Item.md b/api/Visio.ToolbarItems.Item.md
index 7b55032388e..0837ed4a25f 100644
--- a/api/Visio.ToolbarItems.Item.md
+++ b/api/Visio.ToolbarItems.Item.md
@@ -27,11 +27,11 @@ Returns an object from a collection. The **Item** property is the default prope
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Contains the index of the object to retrieve.|
-### Return Value
+### Return value
ToolbarItem
diff --git a/api/Visio.ToolbarItems.Parent.md b/api/Visio.ToolbarItems.Parent.md
index e0870233b98..0379b880d5b 100644
--- a/api/Visio.ToolbarItems.Parent.md
+++ b/api/Visio.ToolbarItems.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [ToolbarItems](./Visio.ToolbarItems.md) object.
-### Return Value
+### Return value
Toolbar
diff --git a/api/Visio.ToolbarItems.ParentItem.md b/api/Visio.ToolbarItems.ParentItem.md
index b9c7d825ba1..c3c334454e6 100644
--- a/api/Visio.ToolbarItems.ParentItem.md
+++ b/api/Visio.ToolbarItems.ParentItem.md
@@ -23,7 +23,7 @@ Returns the parent object of a hierarchical toolbar. Read-only.
_expression_ A variable that represents a [ToolbarItems](./Visio.ToolbarItems.md) object.
-### Return Value
+### Return value
ToolbarItem
diff --git a/api/Visio.ToolbarSet.Caption.md b/api/Visio.ToolbarSet.Caption.md
index 7a91f4bab91..861e89c7b21 100644
--- a/api/Visio.ToolbarSet.Caption.md
+++ b/api/Visio.ToolbarSet.Caption.md
@@ -23,7 +23,7 @@ Gets or sets the caption for an object. Read/write.
_expression_ A variable that represents a [ToolbarSet](./Visio.ToolbarSet.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.ToolbarSet.Delete.md b/api/Visio.ToolbarSet.Delete.md
index 2c13dc5c75e..acb435292f2 100644
--- a/api/Visio.ToolbarSet.Delete.md
+++ b/api/Visio.ToolbarSet.Delete.md
@@ -23,7 +23,7 @@ Deletes an object.
_expression_ A variable that represents a [ToolbarSet](./Visio.ToolbarSet.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.ToolbarSet.Parent.md b/api/Visio.ToolbarSet.Parent.md
index dce22007b91..e5c88b2a75d 100644
--- a/api/Visio.ToolbarSet.Parent.md
+++ b/api/Visio.ToolbarSet.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [ToolbarSet](./Visio.ToolbarSet.md) object.
-### Return Value
+### Return value
ToolbarSets
diff --git a/api/Visio.ToolbarSet.SetID.md b/api/Visio.ToolbarSet.SetID.md
index 3668dfba65d..bdba21128df 100644
--- a/api/Visio.ToolbarSet.SetID.md
+++ b/api/Visio.ToolbarSet.SetID.md
@@ -23,7 +23,7 @@ Returns the set ID of an **ToolbarSet** object in its collection. Read-only.
_expression_ A variable that represents a [ToolbarSet](./Visio.ToolbarSet.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ToolbarSet.Toolbars.md b/api/Visio.ToolbarSet.Toolbars.md
index b3a44c6e0b8..605f3db5a54 100644
--- a/api/Visio.ToolbarSet.Toolbars.md
+++ b/api/Visio.ToolbarSet.Toolbars.md
@@ -23,7 +23,7 @@ Returns the **Toolbars** collection of a **ToolbarSet** object. Read-only.
_expression_ A variable that represents a [ToolbarSet](./Visio.ToolbarSet.md) object.
-### Return Value
+### Return value
Toolbars
diff --git a/api/Visio.ToolbarSets.Add.md b/api/Visio.ToolbarSets.Add.md
index 7a5024b42ec..2e312a953a2 100644
--- a/api/Visio.ToolbarSets.Add.md
+++ b/api/Visio.ToolbarSets.Add.md
@@ -23,7 +23,7 @@ Adds a new object to a collection.
_expression_ A variable that represents a [ToolbarSets](./Visio.ToolbarSets.md) collection.
-### Return Value
+### Return value
ToolbarSet
diff --git a/api/Visio.ToolbarSets.AddAtID.md b/api/Visio.ToolbarSets.AddAtID.md
index 37b5d137383..19495df18e4 100644
--- a/api/Visio.ToolbarSets.AddAtID.md
+++ b/api/Visio.ToolbarSets.AddAtID.md
@@ -27,11 +27,11 @@ Creates a new object with a specified ID in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _lID_|Required| **Long**| The window context for the new object.|
-### Return Value
+### Return value
ToolbarSet
diff --git a/api/Visio.ToolbarSets.Count.md b/api/Visio.ToolbarSets.Count.md
index 951739bc3ff..4c25b521490 100644
--- a/api/Visio.ToolbarSets.Count.md
+++ b/api/Visio.ToolbarSets.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [ToolbarSets](./Visio.ToolbarSets.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.ToolbarSets.Item.md b/api/Visio.ToolbarSets.Item.md
index 21e7a161d87..398ae02c9b7 100644
--- a/api/Visio.ToolbarSets.Item.md
+++ b/api/Visio.ToolbarSets.Item.md
@@ -27,11 +27,11 @@ Returns an object from a collection. The **Item** property is the default prope
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _lIndex_|Required| **Long**|Contains the index of the object to retrieve.|
-### Return Value
+### Return value
ToolbarSet
diff --git a/api/Visio.ToolbarSets.ItemAtID.md b/api/Visio.ToolbarSets.ItemAtID.md
index 608055a776c..af854bcc4d8 100644
--- a/api/Visio.ToolbarSets.ItemAtID.md
+++ b/api/Visio.ToolbarSets.ItemAtID.md
@@ -27,11 +27,11 @@ Returns the **ToolbarSet** object for an ID within a collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _lID_|Required| **Long**|The Visio context ID of the object to retrieve.|
-### Return Value
+### Return value
ToolbarSet
diff --git a/api/Visio.ToolbarSets.Parent.md b/api/Visio.ToolbarSets.Parent.md
index 720c3a36724..7c52db4ae31 100644
--- a/api/Visio.ToolbarSets.Parent.md
+++ b/api/Visio.ToolbarSets.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [ToolbarSets](./Visio.ToolbarSets.md) object.
-### Return Value
+### Return value
UIObject
diff --git a/api/Visio.ToolbarVisible.md b/api/Visio.ToolbarVisible.md
index e7fa4bee467..8dd1f54886f 100644
--- a/api/Visio.ToolbarVisible.md
+++ b/api/Visio.ToolbarVisible.md
@@ -20,7 +20,7 @@ Gets or sets a value that indicates whether the toolbar is visible in Microsoft
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.Toolbars.Add.md b/api/Visio.Toolbars.Add.md
index f016b99853f..5c12b0ad258 100644
--- a/api/Visio.Toolbars.Add.md
+++ b/api/Visio.Toolbars.Add.md
@@ -23,7 +23,7 @@ Adds a new object to a collection.
_expression_ A variable that represents a [Toolbars](./Visio.Toolbars.md) collection.
-### Return Value
+### Return value
Toolbar
diff --git a/api/Visio.Toolbars.AddAt.md b/api/Visio.Toolbars.AddAt.md
index a472c891047..48d009bdefb 100644
--- a/api/Visio.Toolbars.AddAt.md
+++ b/api/Visio.Toolbars.AddAt.md
@@ -27,11 +27,11 @@ Creates a new **Toolbar** object at a specified index in the **Toolbars** colle
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _lIndex_|Required| **Long**|The index at which to add the object.|
-### Return Value
+### Return value
Toolbar
diff --git a/api/Visio.Toolbars.Count.md b/api/Visio.Toolbars.Count.md
index 4988cbeb275..c0d3cf7b2e2 100644
--- a/api/Visio.Toolbars.Count.md
+++ b/api/Visio.Toolbars.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Toolbars](./Visio.Toolbars.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Toolbars.Item.md b/api/Visio.Toolbars.Item.md
index f9394c6e287..dc2b221afb0 100644
--- a/api/Visio.Toolbars.Item.md
+++ b/api/Visio.Toolbars.Item.md
@@ -27,11 +27,11 @@ Returns an object from a collection. The **Item** property is the default prope
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _lIndex_|Required| **Long**|Contains the index of the object to retrieve.|
-### Return Value
+### Return value
Toolbar
diff --git a/api/Visio.Toolbars.Parent.md b/api/Visio.Toolbars.Parent.md
index 9671ed78c9b..664299d7824 100644
--- a/api/Visio.Toolbars.Parent.md
+++ b/api/Visio.Toolbars.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [Toolbars](./Visio.Toolbars.md) object.
-### Return Value
+### Return value
ToolbarSet
diff --git a/api/Visio.UIObject.AccelTables.md b/api/Visio.UIObject.AccelTables.md
index b7cc9392f18..745f90ac204 100644
--- a/api/Visio.UIObject.AccelTables.md
+++ b/api/Visio.UIObject.AccelTables.md
@@ -23,7 +23,7 @@ Returns the **AccelTables** collection of a **UIObject** object. Read-only.
_expression_ A variable that represents a [UIObject](./Visio.UIObject.md) object.
-### Return Value
+### Return value
AccelTables
diff --git a/api/Visio.UIObject.Clone.md b/api/Visio.UIObject.Clone.md
index 5085e6ad549..fd4a60b78f8 100644
--- a/api/Visio.UIObject.Clone.md
+++ b/api/Visio.UIObject.Clone.md
@@ -23,7 +23,7 @@ Returns a copy of the **UIObject** object. Read-only.
_expression_ A variable that represents a [UIObject](./Visio.UIObject.md) object.
-### Return Value
+### Return value
UIObject
diff --git a/api/Visio.UIObject.DisplayKeysInTooltips.md b/api/Visio.UIObject.DisplayKeysInTooltips.md
index 7f0e36b6d7d..fb06637c919 100644
--- a/api/Visio.UIObject.DisplayKeysInTooltips.md
+++ b/api/Visio.UIObject.DisplayKeysInTooltips.md
@@ -23,7 +23,7 @@ Determines whether ScreenTip text includes keyboard shortcuts. Read/write.
_expression_ A variable that represents a [UIObject](./Visio.UIObject.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.UIObject.DisplayTooltips.md b/api/Visio.UIObject.DisplayTooltips.md
index 91cf4e12ab4..47b12c7c29b 100644
--- a/api/Visio.UIObject.DisplayTooltips.md
+++ b/api/Visio.UIObject.DisplayTooltips.md
@@ -23,7 +23,7 @@ Determines whether feature descriptions are shown in ScreenTips. Read/write.
_expression_ A variable that represents a [UIObject](./Visio.UIObject.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.UIObject.LargeButtons.md b/api/Visio.UIObject.LargeButtons.md
index d0bbd2ce407..5872244423a 100644
--- a/api/Visio.UIObject.LargeButtons.md
+++ b/api/Visio.UIObject.LargeButtons.md
@@ -23,7 +23,7 @@ Determines whether large toolbar buttons are shown. Read/write.
_expression_ A variable that represents a [UIObject](./Visio.UIObject.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.UIObject.LoadFromFile.md b/api/Visio.UIObject.LoadFromFile.md
index a26e2c23c14..4a2785d34d0 100644
--- a/api/Visio.UIObject.LoadFromFile.md
+++ b/api/Visio.UIObject.LoadFromFile.md
@@ -27,11 +27,11 @@ Loads a Microsoft Visio application **UIObject** object from a file.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the file to load.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.UIObject.MenuAnimationStyle.md b/api/Visio.UIObject.MenuAnimationStyle.md
index 1be0297b07a..e161e03007b 100644
--- a/api/Visio.UIObject.MenuAnimationStyle.md
+++ b/api/Visio.UIObject.MenuAnimationStyle.md
@@ -23,7 +23,7 @@ Gets or sets the way in which a menu is displayed. Read/write.
_expression_ A variable that represents a [UIObject](./Visio.UIObject.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.UIObject.MenuSets.md b/api/Visio.UIObject.MenuSets.md
index eee4d980920..1165d747762 100644
--- a/api/Visio.UIObject.MenuSets.md
+++ b/api/Visio.UIObject.MenuSets.md
@@ -23,7 +23,7 @@ Returns the **MenuSets** collection of a **UIObject** object. Read-only.
_expression_ A variable that represents a [UIObject](./Visio.UIObject.md) object.
-### Return Value
+### Return value
MenuSets
diff --git a/api/Visio.UIObject.Name.md b/api/Visio.UIObject.Name.md
index 590fe9b02cc..8eb6facbe5d 100644
--- a/api/Visio.UIObject.Name.md
+++ b/api/Visio.UIObject.Name.md
@@ -23,7 +23,7 @@ Specifies the name of an object. Read-only.
_expression_ A variable that represents a [UIObject](./Visio.UIObject.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.UIObject.SaveToFile.md b/api/Visio.UIObject.SaveToFile.md
index 4710a74c517..6c2bc3320c0 100644
--- a/api/Visio.UIObject.SaveToFile.md
+++ b/api/Visio.UIObject.SaveToFile.md
@@ -27,11 +27,11 @@ Saves the user interface represented by a **UIObject** object in a file.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the file in which to save the **UIObject** object.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.UIObject.ToolbarSets.md b/api/Visio.UIObject.ToolbarSets.md
index 7f6c562df72..fe8af0a5640 100644
--- a/api/Visio.UIObject.ToolbarSets.md
+++ b/api/Visio.UIObject.ToolbarSets.md
@@ -23,7 +23,7 @@ Returns the **ToolbarSets** collection of a **UIObject** object. Read-only.
_expression_ A variable that represents a [UIObject](./Visio.UIObject.md) object.
-### Return Value
+### Return value
ToolbarSets
diff --git a/api/Visio.UIObject.UpdateUI.md b/api/Visio.UIObject.UpdateUI.md
index 626e2a58b61..af2d9796ca0 100644
--- a/api/Visio.UIObject.UpdateUI.md
+++ b/api/Visio.UIObject.UpdateUI.md
@@ -23,7 +23,7 @@ Causes Microsoft Visio to display changes to the user interface represented by a
_expression_ A variable that represents a [UIObject](./Visio.UIObject.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Unload.md b/api/Visio.Unload.md
index c3c1642685b..9a1203b5b66 100644
--- a/api/Visio.Unload.md
+++ b/api/Visio.Unload.md
@@ -20,7 +20,7 @@ Unloads the drawing file that is open in Microsoft Visio Viewer.
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Validation.Application.md b/api/Visio.Validation.Application.md
index b6fd820bedd..117daf61af7 100644
--- a/api/Visio.Validation.Application.md
+++ b/api/Visio.Validation.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a '[Validation](Visio.Validation.md)' object.
-### Return Value
+### Return value
**[Application](Visio.Application.md)**
diff --git a/api/Visio.Validation.Document.md b/api/Visio.Validation.Document.md
index 67a44e3ef6f..c0cba74689e 100644
--- a/api/Visio.Validation.Document.md
+++ b/api/Visio.Validation.Document.md
@@ -23,7 +23,7 @@ Returns the **[Document](Visio.Document.md)** object that is associated with an
_expression_ A variable that represents a '[Validation](Visio.Validation.md)' object.
-### Return Value
+### Return value
**Document**
diff --git a/api/Visio.Validation.Issues.md b/api/Visio.Validation.Issues.md
index 48c23df6e19..067e122f21c 100644
--- a/api/Visio.Validation.Issues.md
+++ b/api/Visio.Validation.Issues.md
@@ -23,7 +23,7 @@ Returns the collection of all the validation issues in the document. Read-only.
_expression_ A variable that represents a '[Validation](Visio.Validation.md)' object.
-### Return Value
+### Return value
**[ValidationIssues](Visio.ValidationIssues.md)**
diff --git a/api/Visio.Validation.ObjectType.md b/api/Visio.Validation.ObjectType.md
index 58e06ac0288..b4bc746da74 100644
--- a/api/Visio.Validation.ObjectType.md
+++ b/api/Visio.Validation.ObjectType.md
@@ -23,7 +23,7 @@ Returns **visObjTypeValidation** , the type of this object. Read-only.
_expression_ A variable that represents a '[Validation](Visio.Validation.md)' object.
-### Return Value
+### Return value
**visObjTypeValidation**
diff --git a/api/Visio.Validation.RuleSets.md b/api/Visio.Validation.RuleSets.md
index acbcd13e619..e2768091e43 100644
--- a/api/Visio.Validation.RuleSets.md
+++ b/api/Visio.Validation.RuleSets.md
@@ -23,7 +23,7 @@ Returns the collection of all the validation rule sets in the document. Read-onl
_expression_ A variable that represents a '[Validation](Visio.Validation.md)' object.
-### Return Value
+### Return value
**[ValidationRuleSets](Visio.ValidationRuleSets.md)**
diff --git a/api/Visio.Validation.ShowIgnoredIssues.md b/api/Visio.Validation.ShowIgnoredIssues.md
index c2404a2eacb..0e634b06d0d 100644
--- a/api/Visio.Validation.ShowIgnoredIssues.md
+++ b/api/Visio.Validation.ShowIgnoredIssues.md
@@ -23,7 +23,7 @@ Determines whether ignored validation issues appear in the **Issues** window. R
_expression_ A variable that represents a '[Validation](Visio.Validation.md)' object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.Validation.Stat.md b/api/Visio.Validation.Stat.md
index f95800ecf97..0697a803b4e 100644
--- a/api/Visio.Validation.Stat.md
+++ b/api/Visio.Validation.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a '[Validation](Visio.Validation.md)' object.
-### Return Value
+### Return value
**[VisStatCodes](Visio.visstatcodes.md)**
diff --git a/api/Visio.Validation.Validate.md b/api/Visio.Validation.Validate.md
index 071bac2aa5c..aa3b34da3c2 100644
--- a/api/Visio.Validation.Validate.md
+++ b/api/Visio.Validation.Validate.md
@@ -27,12 +27,12 @@ Validates the specified validation rule set.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RuleSet_|Optional| **[ValidationRuleSet](Visio.ValidationRuleSet.md)**|The rule set to validate across the entire document. |
| _Flags_|Optional| **[VisValidationFlags](Visio.VisValidationFlags.md)**|Whether to open the **Issues** window after validation.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ValidationIssue.Application.md b/api/Visio.ValidationIssue.Application.md
index 8e6934e9b3d..476ebd407f8 100644
--- a/api/Visio.ValidationIssue.Application.md
+++ b/api/Visio.ValidationIssue.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a '[ValidationIssue](Visio.ValidationIssue.md)' object.
-### Return Value
+### Return value
**[Application](Visio.Application.md)**
diff --git a/api/Visio.ValidationIssue.Delete.md b/api/Visio.ValidationIssue.Delete.md
index 527469c9adc..dde927b44d7 100644
--- a/api/Visio.ValidationIssue.Delete.md
+++ b/api/Visio.ValidationIssue.Delete.md
@@ -23,7 +23,7 @@ Deletes the **[ValidationIssue](Visio.ValidationIssue.md)** object from the doc
_expression_ A variable that represents a [ValidationIssue](./Visio.ValidationIssue.md) object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ValidationIssue.Document.md b/api/Visio.ValidationIssue.Document.md
index 57616e4bd8e..2d57d3641c8 100644
--- a/api/Visio.ValidationIssue.Document.md
+++ b/api/Visio.ValidationIssue.Document.md
@@ -23,7 +23,7 @@ Returns the **[Document](Visio.Document.md)** object that is associated with an
_expression_ A variable that represents a '[ValidationIssue](Visio.ValidationIssue.md)' object.
-### Return Value
+### Return value
**Document**
diff --git a/api/Visio.ValidationIssue.ID.md b/api/Visio.ValidationIssue.ID.md
index 841a7c4a2bc..e39f876c405 100644
--- a/api/Visio.ValidationIssue.ID.md
+++ b/api/Visio.ValidationIssue.ID.md
@@ -23,7 +23,7 @@ Gets the identifier of the **[ValidationIssue](Visio.ValidationIssue.md)** obje
_expression_ A variable that represents a [ValidationIssue](./Visio.ValidationIssue.md) object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ValidationIssue.Ignored.md b/api/Visio.ValidationIssue.Ignored.md
index 88c2a0e4ad2..ef323a5f859 100644
--- a/api/Visio.ValidationIssue.Ignored.md
+++ b/api/Visio.ValidationIssue.Ignored.md
@@ -23,7 +23,7 @@ Determines whether the validation issue is currently ignored. Read/write.
_expression_ A variable that represents a '[ValidationIssue](Visio.ValidationIssue.md)' object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.ValidationIssue.ObjectType.md b/api/Visio.ValidationIssue.ObjectType.md
index 4981c62c5bd..a3b2cf82f78 100644
--- a/api/Visio.ValidationIssue.ObjectType.md
+++ b/api/Visio.ValidationIssue.ObjectType.md
@@ -23,7 +23,7 @@ Returns **visObjTypeValidationIssue** , the type of this object. Read-only.
_expression_ A variable that represents a '[ValidationIssue](Visio.ValidationIssue.md)' object.
-### Return Value
+### Return value
**visObjTypeValidationIssue**
diff --git a/api/Visio.ValidationIssue.Rule.md b/api/Visio.ValidationIssue.Rule.md
index 26a16028dad..99b12de7f1d 100644
--- a/api/Visio.ValidationIssue.Rule.md
+++ b/api/Visio.ValidationIssue.Rule.md
@@ -23,7 +23,7 @@ Returns the **[ValidationRule](Visio.ValidationRule.md)** object that generated
_expression_ A variable that represents a '[ValidationIssue](Visio.ValidationIssue.md)' object.
-### Return Value
+### Return value
**ValidationRule**
diff --git a/api/Visio.ValidationIssue.Stat.md b/api/Visio.ValidationIssue.Stat.md
index 49da1a193a3..8546df4c96d 100644
--- a/api/Visio.ValidationIssue.Stat.md
+++ b/api/Visio.ValidationIssue.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a '[ValidationIssue](Visio.ValidationIssue.md)' object.
-### Return Value
+### Return value
**[VisStatCodes](Visio.visstatcodes.md)**
diff --git a/api/Visio.ValidationIssue.TargetPage.md b/api/Visio.ValidationIssue.TargetPage.md
index 19770d01870..03e710228d2 100644
--- a/api/Visio.ValidationIssue.TargetPage.md
+++ b/api/Visio.ValidationIssue.TargetPage.md
@@ -23,7 +23,7 @@ Returns the **[Page](Visio.Page.md)** object that is associated with the valida
_expression_ A variable that represents a '[ValidationIssue](Visio.ValidationIssue.md)' object.
-### Return Value
+### Return value
**Page**
diff --git a/api/Visio.ValidationIssue.TargetPageID.md b/api/Visio.ValidationIssue.TargetPageID.md
index dfaf7f63af9..8287ad63883 100644
--- a/api/Visio.ValidationIssue.TargetPageID.md
+++ b/api/Visio.ValidationIssue.TargetPageID.md
@@ -23,7 +23,7 @@ Returns the ID of the page that is associated with the validation issue. Read-on
_expression_ A variable that represents a '[ValidationIssue](Visio.ValidationIssue.md)' object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ValidationIssue.TargetShape.md b/api/Visio.ValidationIssue.TargetShape.md
index c41f9e0d780..f570f709037 100644
--- a/api/Visio.ValidationIssue.TargetShape.md
+++ b/api/Visio.ValidationIssue.TargetShape.md
@@ -23,7 +23,7 @@ Returns the **[Shape](Visio.Shape.md)** object that is associated with the vali
_expression_ A variable that represents a '[ValidationIssue](Visio.ValidationIssue.md)' object.
-### Return Value
+### Return value
**Shape**
diff --git a/api/Visio.ValidationIssues.Application.md b/api/Visio.ValidationIssues.Application.md
index 71824216b78..cd1196a2d36 100644
--- a/api/Visio.ValidationIssues.Application.md
+++ b/api/Visio.ValidationIssues.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a '[ValidationIssues](Visio.ValidationIssues.md)' object.
-### Return Value
+### Return value
**[Application](Visio.Application.md)**
diff --git a/api/Visio.ValidationIssues.Clear.md b/api/Visio.ValidationIssues.Clear.md
index 8b322894596..f8d0578c8ae 100644
--- a/api/Visio.ValidationIssues.Clear.md
+++ b/api/Visio.ValidationIssues.Clear.md
@@ -23,7 +23,7 @@ Removes all **[ValidationIssue](Visio.ValidationIssue.md)** objects from the **
_expression_ A variable that represents a [ValidationIssues](./Visio.ValidationIssues.md) object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ValidationIssues.Count.md b/api/Visio.ValidationIssues.Count.md
index 57fe359c53b..948c07c3f53 100644
--- a/api/Visio.ValidationIssues.Count.md
+++ b/api/Visio.ValidationIssues.Count.md
@@ -23,7 +23,7 @@ Returns the number of **[ValidationIssue](Visio.ValidationIssue.md)** objects i
_expression_ A variable that represents a '[ValidationIssues](Visio.ValidationIssues.md)' object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ValidationIssues.Document.md b/api/Visio.ValidationIssues.Document.md
index 70836af3ba6..3b6ddbf98a6 100644
--- a/api/Visio.ValidationIssues.Document.md
+++ b/api/Visio.ValidationIssues.Document.md
@@ -23,7 +23,7 @@ Returns the **[Document](Visio.Document.md)** object that is associated with an
_expression_ A variable that represents a '[ValidationIssues](Visio.ValidationIssues.md)' object.
-### Return Value
+### Return value
**Document**
diff --git a/api/Visio.ValidationIssues.Item.md b/api/Visio.ValidationIssues.Item.md
index ab0af8d592a..9a2bb9be84b 100644
--- a/api/Visio.ValidationIssues.Item.md
+++ b/api/Visio.ValidationIssues.Item.md
@@ -27,11 +27,11 @@ Returns the **[ValidationIssue](Visio.ValidationIssue.md)** object that has the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The index number of the object in its collection.|
-### Return Value
+### Return value
**ValidationIssue**
diff --git a/api/Visio.ValidationIssues.ItemFromID.md b/api/Visio.ValidationIssues.ItemFromID.md
index b0732fc04d8..250e22ef5da 100644
--- a/api/Visio.ValidationIssues.ItemFromID.md
+++ b/api/Visio.ValidationIssues.ItemFromID.md
@@ -27,11 +27,11 @@ Returns the **[ValidationIssue](Visio.ValidationIssue.md)** object that matches
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _IssueID_|Required| **Long**|The ID of the object to retrieve.|
-### Return Value
+### Return value
**ValidationIssue**
diff --git a/api/Visio.ValidationIssues.ObjectType.md b/api/Visio.ValidationIssues.ObjectType.md
index 2657b521119..7c3efd2e36b 100644
--- a/api/Visio.ValidationIssues.ObjectType.md
+++ b/api/Visio.ValidationIssues.ObjectType.md
@@ -23,7 +23,7 @@ Returns **visObjTypeValidationIssues** , the type of this object. Read-only.
_expression_ A variable that represents a '[ValidationIssues](Visio.ValidationIssues.md)' object.
-### Return Value
+### Return value
**visObjTypeValidationIssues**
diff --git a/api/Visio.ValidationRule.AddIssue.md b/api/Visio.ValidationRule.AddIssue.md
index 173e05c9dfb..2eeca3d3332 100644
--- a/api/Visio.ValidationRule.AddIssue.md
+++ b/api/Visio.ValidationRule.AddIssue.md
@@ -27,12 +27,12 @@ Creates a new validation issue that is based on the validation rule, and adds it
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TargetPage_|Optional| **[Page](Visio.Page.md)**|The page that has the issue. May be **Nothing** .|
| _TargetShape_|Optional| **[Shape](Visio.Shape.md)**|The shape that has the issue. May be **Nothing** .|
-### Return Value
+### Return value
**[ValidationIssue](Visio.ValidationIssue.md)**
diff --git a/api/Visio.ValidationRule.Application.md b/api/Visio.ValidationRule.Application.md
index d62e59b3116..a5bb5fc676f 100644
--- a/api/Visio.ValidationRule.Application.md
+++ b/api/Visio.ValidationRule.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a '[ValidationRule](Visio.ValidationRule.md)' object.
-### Return Value
+### Return value
**[Application](Visio.Application.md)**
diff --git a/api/Visio.ValidationRule.Category.md b/api/Visio.ValidationRule.Category.md
index 42f5ea66158..c6a50330e44 100644
--- a/api/Visio.ValidationRule.Category.md
+++ b/api/Visio.ValidationRule.Category.md
@@ -23,7 +23,7 @@ Represents the text displayed in the **Category** column of the **Issues** wind
_expression_ A variable that represents a '[ValidationRule](Visio.ValidationRule.md)' object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.ValidationRule.Delete.md b/api/Visio.ValidationRule.Delete.md
index 2bdbec476fe..12dde53c829 100644
--- a/api/Visio.ValidationRule.Delete.md
+++ b/api/Visio.ValidationRule.Delete.md
@@ -23,7 +23,7 @@ Deletes the **[ValidationRule](Visio.ValidationRule.md)** object from the docum
_expression_ A variable that represents a [ValidationRule](./Visio.ValidationRule.md) object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ValidationRule.Description.md b/api/Visio.ValidationRule.Description.md
index 0f82b569734..27d5b3abdac 100644
--- a/api/Visio.ValidationRule.Description.md
+++ b/api/Visio.ValidationRule.Description.md
@@ -23,7 +23,7 @@ Specifies the description of the **[ValidationRule](Visio.ValidationRule.md)**
_expression_ A variable that represents a [ValidationRule](./Visio.ValidationRule.md) object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.ValidationRule.Document.md b/api/Visio.ValidationRule.Document.md
index 587fb0ea744..587dc3a1f88 100644
--- a/api/Visio.ValidationRule.Document.md
+++ b/api/Visio.ValidationRule.Document.md
@@ -23,7 +23,7 @@ Returns the **[Document](Visio.Document.md)** object that is associated with an
_expression_ A variable that represents a '[ValidationRule](Visio.ValidationRule.md)' object.
-### Return Value
+### Return value
**Document**
diff --git a/api/Visio.ValidationRule.FilterExpression.md b/api/Visio.ValidationRule.FilterExpression.md
index b673efdcdac..d7bb77dee7d 100644
--- a/api/Visio.ValidationRule.FilterExpression.md
+++ b/api/Visio.ValidationRule.FilterExpression.md
@@ -23,7 +23,7 @@ Gets or sets the logical expression that determines whether the validation rule
_expression_ A variable that represents a '[ValidationRule](Visio.ValidationRule.md)' object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.ValidationRule.ID.md b/api/Visio.ValidationRule.ID.md
index 0ee7094e956..f2710985af1 100644
--- a/api/Visio.ValidationRule.ID.md
+++ b/api/Visio.ValidationRule.ID.md
@@ -23,7 +23,7 @@ Gets the unique identifier of the **[ValidationRule](Visio.ValidationRule.md)**
_expression_ A variable that represents a [ValidationRule](./Visio.ValidationRule.md) object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ValidationRule.Ignored.md b/api/Visio.ValidationRule.Ignored.md
index 316f18a8496..35e926d4ef8 100644
--- a/api/Visio.ValidationRule.Ignored.md
+++ b/api/Visio.ValidationRule.Ignored.md
@@ -23,7 +23,7 @@ Determines whether the validation rule is currently ignored. Read/write.
_expression_ A variable that represents a '[ValidationRule](Visio.ValidationRule.md)' object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.ValidationRule.NameU.md b/api/Visio.ValidationRule.NameU.md
index 5c80771622a..80670e1ddfd 100644
--- a/api/Visio.ValidationRule.NameU.md
+++ b/api/Visio.ValidationRule.NameU.md
@@ -23,7 +23,7 @@ Specifies the universal name of the **[ValidationRule](Visio.ValidationRule.md)
_expression_ A variable that represents a [ValidationRule](./Visio.ValidationRule.md) object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.ValidationRule.ObjectType.md b/api/Visio.ValidationRule.ObjectType.md
index 6ca81c5eadc..e4e8690921e 100644
--- a/api/Visio.ValidationRule.ObjectType.md
+++ b/api/Visio.ValidationRule.ObjectType.md
@@ -23,7 +23,7 @@ Returns **visObjTypeValidationRule** , the type of this object. Read-only.
_expression_ A variable that represents a '[ValidationRule](Visio.ValidationRule.md)' object.
-### Return Value
+### Return value
**visObjTypeValidationRule**
diff --git a/api/Visio.ValidationRule.RuleSet.md b/api/Visio.ValidationRule.RuleSet.md
index 97b72c79c87..f72209afe92 100644
--- a/api/Visio.ValidationRule.RuleSet.md
+++ b/api/Visio.ValidationRule.RuleSet.md
@@ -23,7 +23,7 @@ Returns the **[ValidationRuleSet](Visio.ValidationRuleSet.md)** object that con
_expression_ A variable that represents a '[ValidationRule](Visio.ValidationRule.md)' object.
-### Return Value
+### Return value
**ValidationRuleSet**
diff --git a/api/Visio.ValidationRule.Stat.md b/api/Visio.ValidationRule.Stat.md
index 32fbfbddd95..768e99c61eb 100644
--- a/api/Visio.ValidationRule.Stat.md
+++ b/api/Visio.ValidationRule.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a '[ValidationRule](Visio.ValidationRule.md)' object.
-### Return Value
+### Return value
**[VisStatCodes](Visio.visstatcodes.md)**
diff --git a/api/Visio.ValidationRule.TargetType.md b/api/Visio.ValidationRule.TargetType.md
index 089759a891d..1fef12acc0a 100644
--- a/api/Visio.ValidationRule.TargetType.md
+++ b/api/Visio.ValidationRule.TargetType.md
@@ -23,7 +23,7 @@ Determines the type of object to which the validation rule applies. Read/write.
_expression_ A variable that represents a '[ValidationRule](Visio.ValidationRule.md)' object.
-### Return Value
+### Return value
**[VisRuleTargets](Visio.VisRuleTargets.md)**
diff --git a/api/Visio.ValidationRule.TestExpression.md b/api/Visio.ValidationRule.TestExpression.md
index 457561f2e2b..4e51187ed28 100644
--- a/api/Visio.ValidationRule.TestExpression.md
+++ b/api/Visio.ValidationRule.TestExpression.md
@@ -23,7 +23,7 @@ Gets or sets the logical expression that determines whether the target object sa
_expression_ A variable that represents a '[ValidationRule](Visio.ValidationRule.md)' object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.ValidationRuleSet.Application.md b/api/Visio.ValidationRuleSet.Application.md
index 61a762b559d..ffa0d632249 100644
--- a/api/Visio.ValidationRuleSet.Application.md
+++ b/api/Visio.ValidationRuleSet.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a '[ValidationRuleSet](Visio.ValidationRuleSet.md)' object.
-### Return Value
+### Return value
**[Application](Visio.Application.md)**
diff --git a/api/Visio.ValidationRuleSet.Delete.md b/api/Visio.ValidationRuleSet.Delete.md
index e3db7966a70..6bc53ede4c5 100644
--- a/api/Visio.ValidationRuleSet.Delete.md
+++ b/api/Visio.ValidationRuleSet.Delete.md
@@ -23,7 +23,7 @@ Deletes the **[ValidationRuleSet](Visio.ValidationRuleSet.md)** object from the
_expression_ A variable that represents a [ValidationRuleSet](./Visio.ValidationRuleSet.md) object.
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.ValidationRuleSet.Description.md b/api/Visio.ValidationRuleSet.Description.md
index c1c0f6ea5bb..154b3ba9775 100644
--- a/api/Visio.ValidationRuleSet.Description.md
+++ b/api/Visio.ValidationRuleSet.Description.md
@@ -23,7 +23,7 @@ Specifies the description of the **[ValidationRuleSet](Visio.ValidationRuleSet.
_expression_ A variable that represents a [ValidationRuleSet](./Visio.ValidationRuleSet.md) object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.ValidationRuleSet.Document.md b/api/Visio.ValidationRuleSet.Document.md
index ea99dc8eaf8..0067367457d 100644
--- a/api/Visio.ValidationRuleSet.Document.md
+++ b/api/Visio.ValidationRuleSet.Document.md
@@ -23,7 +23,7 @@ Returns the **[Document](Visio.Document.md)** object that is associated with an
_expression_ A variable that represents a '[ValidationRuleSet](Visio.ValidationRuleSet.md)' object.
-### Return Value
+### Return value
**Document**
diff --git a/api/Visio.ValidationRuleSet.Enabled.md b/api/Visio.ValidationRuleSet.Enabled.md
index 791f0241d36..9fdb62142b1 100644
--- a/api/Visio.ValidationRuleSet.Enabled.md
+++ b/api/Visio.ValidationRuleSet.Enabled.md
@@ -23,7 +23,7 @@ Determines whether the rules in the specified validation rule set are checked wh
_expression_ A variable that represents a '[ValidationRuleSet](Visio.ValidationRuleSet.md)' object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.ValidationRuleSet.ID.md b/api/Visio.ValidationRuleSet.ID.md
index 6ec8b070947..59ffee4314b 100644
--- a/api/Visio.ValidationRuleSet.ID.md
+++ b/api/Visio.ValidationRuleSet.ID.md
@@ -23,7 +23,7 @@ Gets the unique identifier of the **[ValidationRuleSet](Visio.ValidationRuleSet
_expression_ A variable that represents a [ValidationRuleSet](./Visio.ValidationRuleSet.md) object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ValidationRuleSet.Name.md b/api/Visio.ValidationRuleSet.Name.md
index 07b01087dc8..036526c1838 100644
--- a/api/Visio.ValidationRuleSet.Name.md
+++ b/api/Visio.ValidationRuleSet.Name.md
@@ -23,7 +23,7 @@ Specifies the name of the **[ValidationRuleSet](Visio.ValidationRuleSet.md)** o
_expression_ A variable that represents a [ValidationRuleSet](./Visio.ValidationRuleSet.md) object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.ValidationRuleSet.NameU.md b/api/Visio.ValidationRuleSet.NameU.md
index afdfb9c47f9..50843a37dd3 100644
--- a/api/Visio.ValidationRuleSet.NameU.md
+++ b/api/Visio.ValidationRuleSet.NameU.md
@@ -23,7 +23,7 @@ Specifies the universal name of the **[ValidationRuleSet](Visio.ValidationRuleS
_expression_ A variable that represents a [ValidationRuleSet](./Visio.ValidationRuleSet.md) object.
-### Return Value
+### Return value
**String**
diff --git a/api/Visio.ValidationRuleSet.ObjectType.md b/api/Visio.ValidationRuleSet.ObjectType.md
index 49cc4d373b0..a053046de72 100644
--- a/api/Visio.ValidationRuleSet.ObjectType.md
+++ b/api/Visio.ValidationRuleSet.ObjectType.md
@@ -23,7 +23,7 @@ Returns **visObjTypeValidationRuleSet** , the type of this object. Read-only.
_expression_ A variable that represents a '[ValidationRuleSet](Visio.ValidationRuleSet.md)' object.
-### Return Value
+### Return value
**visObjTypeValidationRuleSet**
diff --git a/api/Visio.ValidationRuleSet.RuleSetFlags.md b/api/Visio.ValidationRuleSet.RuleSetFlags.md
index d166348fe6f..8996bcb80f1 100644
--- a/api/Visio.ValidationRuleSet.RuleSetFlags.md
+++ b/api/Visio.ValidationRuleSet.RuleSetFlags.md
@@ -23,7 +23,7 @@ Gets or sets special rule-set properties. Read/write.
_expression_ A variable that represents a '[ValidationRuleSet](Visio.ValidationRuleSet.md)' object.
-### Return Value
+### Return value
**[VisRuleSetFlags](Visio.VisRuleSetFlags.md)**
diff --git a/api/Visio.ValidationRuleSet.Rules.md b/api/Visio.ValidationRuleSet.Rules.md
index 125830e2375..6804032070a 100644
--- a/api/Visio.ValidationRuleSet.Rules.md
+++ b/api/Visio.ValidationRuleSet.Rules.md
@@ -23,7 +23,7 @@ Returns the collection of validation rules in the validation rule set. Read-only
_expression_ A variable that represents a '[ValidationRuleSet](Visio.ValidationRuleSet.md)' object.
-### Return Value
+### Return value
**[ValidationRules](Visio.ValidationRules.md)**
diff --git a/api/Visio.ValidationRuleSet.Stat.md b/api/Visio.ValidationRuleSet.Stat.md
index cfd2ace3b39..5a31cfefca3 100644
--- a/api/Visio.ValidationRuleSet.Stat.md
+++ b/api/Visio.ValidationRuleSet.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a '[ValidationRuleSet](Visio.ValidationRuleSet.md)' object.
-### Return Value
+### Return value
**[VisStatCodes](Visio.visstatcodes.md)**
diff --git a/api/Visio.ValidationRuleSets.Add.md b/api/Visio.ValidationRuleSets.Add.md
index f5138064b94..9b1ea6ffef5 100644
--- a/api/Visio.ValidationRuleSets.Add.md
+++ b/api/Visio.ValidationRuleSets.Add.md
@@ -27,11 +27,11 @@ Adds a new, empty **[ValidationRuleSet](Visio.ValidationRuleSet.md)** object to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameU_|Required| **String**|The universal name to assign to the new validation rule set.|
-### Return Value
+### Return value
**ValidationRuleSet**
diff --git a/api/Visio.ValidationRuleSets.AddCopy.md b/api/Visio.ValidationRuleSets.AddCopy.md
index 958cacce4d9..bfbb83dc544 100644
--- a/api/Visio.ValidationRuleSets.AddCopy.md
+++ b/api/Visio.ValidationRuleSets.AddCopy.md
@@ -27,12 +27,12 @@ Adds a copy of an existing **[ValidationRuleSet](Visio.ValidationRuleSet.md)**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RuleSet_|Required| **ValidationRuleSet**|The existing rule set to copy and add to the collection of rule sets.|
| _NameU_|Optional| **String**|The universal name to assign to the new validation rule set.|
-### Return Value
+### Return value
**ValidationRuleSet**
diff --git a/api/Visio.ValidationRuleSets.Application.md b/api/Visio.ValidationRuleSets.Application.md
index 39dd89fffeb..f1cd95b7957 100644
--- a/api/Visio.ValidationRuleSets.Application.md
+++ b/api/Visio.ValidationRuleSets.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a '[ValidationRuleSets](Visio.ValidationRuleSets.md)' object.
-### Return Value
+### Return value
**[Application](Visio.Application.md)**
diff --git a/api/Visio.ValidationRuleSets.Count.md b/api/Visio.ValidationRuleSets.Count.md
index d9b22b584ef..f27fc96a435 100644
--- a/api/Visio.ValidationRuleSets.Count.md
+++ b/api/Visio.ValidationRuleSets.Count.md
@@ -23,7 +23,7 @@ Returns the number of **[ValidationRuleSet](Visio.ValidationRuleSet.md)** objec
_expression_ A variable that represents a '[ValidationRuleSets](Visio.ValidationRuleSets.md)' object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ValidationRuleSets.Document.md b/api/Visio.ValidationRuleSets.Document.md
index eca993265c3..995ca5265fa 100644
--- a/api/Visio.ValidationRuleSets.Document.md
+++ b/api/Visio.ValidationRuleSets.Document.md
@@ -23,7 +23,7 @@ Returns the **[Document](Visio.Document.md)** object that is associated with an
_expression_ A variable that represents a '[ValidationRuleSets](Visio.ValidationRuleSets.md)' object.
-### Return Value
+### Return value
**Document**
diff --git a/api/Visio.ValidationRuleSets.Item.md b/api/Visio.ValidationRuleSets.Item.md
index 991bfefb6f0..951ac2a78cb 100644
--- a/api/Visio.ValidationRuleSets.Item.md
+++ b/api/Visio.ValidationRuleSets.Item.md
@@ -27,11 +27,11 @@ Returns the **[ValidationRuleSet](Visio.ValidationRuleSet.md)** object that has
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameUOrIndex_|Required| **Variant**|The universal name of the object, or the index number of the object in its collection.|
-### Return Value
+### Return value
**ValidationRuleSet**
diff --git a/api/Visio.ValidationRuleSets.ItemFromID.md b/api/Visio.ValidationRuleSets.ItemFromID.md
index 8b062070703..a68e947c048 100644
--- a/api/Visio.ValidationRuleSets.ItemFromID.md
+++ b/api/Visio.ValidationRuleSets.ItemFromID.md
@@ -27,11 +27,11 @@ Returns the **[ValidationRuleSet](Visio.ValidationRuleSet.md)** object that mat
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RuleID_|Required| **Long**|The ID of the object to retrieve.|
-### Return Value
+### Return value
**ValidationRuleSet**
diff --git a/api/Visio.ValidationRuleSets.ObjectType.md b/api/Visio.ValidationRuleSets.ObjectType.md
index 64bc0a8b32b..9fdf9e87866 100644
--- a/api/Visio.ValidationRuleSets.ObjectType.md
+++ b/api/Visio.ValidationRuleSets.ObjectType.md
@@ -23,7 +23,7 @@ Returns **visObjTypeValidationRuleSets** , the type of this object. Read-only.
_expression_ A variable that represents a '[ValidationRuleSets](Visio.ValidationRuleSets.md)' object.
-### Return Value
+### Return value
**visObjTypeValidationRuleSets**
diff --git a/api/Visio.ValidationRuleSets.Stat.md b/api/Visio.ValidationRuleSets.Stat.md
index e35aef09b81..09008e40c6f 100644
--- a/api/Visio.ValidationRuleSets.Stat.md
+++ b/api/Visio.ValidationRuleSets.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a '[ValidationRuleSets](Visio.ValidationRuleSets.md)' object.
-### Return Value
+### Return value
**[VisStatCodes](Visio.visstatcodes.md)**
diff --git a/api/Visio.ValidationRules.Add.md b/api/Visio.ValidationRules.Add.md
index 79bb041d77c..26a5b7fb6a9 100644
--- a/api/Visio.ValidationRules.Add.md
+++ b/api/Visio.ValidationRules.Add.md
@@ -27,11 +27,11 @@ Adds a new, empty **[ValidationRule](Visio.ValidationRule.md)** object to the *
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameU_|Required| **String**|The universal name to assign to the new validation rule.|
-### Return Value
+### Return value
**ValidationRule**
diff --git a/api/Visio.ValidationRules.Application.md b/api/Visio.ValidationRules.Application.md
index 827e2d9ee30..be9a65353a2 100644
--- a/api/Visio.ValidationRules.Application.md
+++ b/api/Visio.ValidationRules.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a '[ValidationRules](Visio.ValidationRules.md)' object.
-### Return Value
+### Return value
**[Application](Visio.Application.md)**
diff --git a/api/Visio.ValidationRules.Count.md b/api/Visio.ValidationRules.Count.md
index 195657e6769..f104723da0a 100644
--- a/api/Visio.ValidationRules.Count.md
+++ b/api/Visio.ValidationRules.Count.md
@@ -23,7 +23,7 @@ Returns the number of **[ValidationRule](Visio.ValidationRule.md)** objects in
_expression_ A variable that represents a '[ValidationRules](Visio.ValidationRules.md)' object.
-### Return Value
+### Return value
**Long**
diff --git a/api/Visio.ValidationRules.Document.md b/api/Visio.ValidationRules.Document.md
index 89ddd7f05ba..f6305c79969 100644
--- a/api/Visio.ValidationRules.Document.md
+++ b/api/Visio.ValidationRules.Document.md
@@ -20,7 +20,7 @@ Returns the **[Document](Visio.Document.md)** object that is associated with an
_expression_ A variable that represents a '[ValidationRules](Visio.ValidationRules.md)' object.
-### Return Value
+### Return value
**Document**
diff --git a/api/Visio.ValidationRules.Item.md b/api/Visio.ValidationRules.Item.md
index e60ed66252d..9ee98193429 100644
--- a/api/Visio.ValidationRules.Item.md
+++ b/api/Visio.ValidationRules.Item.md
@@ -27,11 +27,11 @@ Returns the **[ValidationRule](Visio.ValidationRule.md)** object that has the s
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameUOrIndex_|Required| **Variant**|The index number of the object in its collection.|
-### Return Value
+### Return value
**ValidationRule**
diff --git a/api/Visio.ValidationRules.ItemFromID.md b/api/Visio.ValidationRules.ItemFromID.md
index 603788accb5..19f163ab7aa 100644
--- a/api/Visio.ValidationRules.ItemFromID.md
+++ b/api/Visio.ValidationRules.ItemFromID.md
@@ -27,11 +27,11 @@ Returns the **[ValidationRule](Visio.ValidationRule.md)** object that matches t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RuleID_|Required| **Long**|The ID of the object to retrieve.|
-### Return Value
+### Return value
**ValidationRule**
diff --git a/api/Visio.ValidationRules.ObjectType.md b/api/Visio.ValidationRules.ObjectType.md
index 50df1cfa607..74b2c80fc76 100644
--- a/api/Visio.ValidationRules.ObjectType.md
+++ b/api/Visio.ValidationRules.ObjectType.md
@@ -20,7 +20,7 @@ Returns **visObjTypeValidationRules** , the type of this object. Read-only.
_expression_ A variable that represents a '[ValidationRules](Visio.ValidationRules.md)' object.
-### Return Value
+### Return value
**visObjTypeValidationRules**
diff --git a/api/Visio.ValidationRules.Stat.md b/api/Visio.ValidationRules.Stat.md
index 5a0e24ae067..84223652057 100644
--- a/api/Visio.ValidationRules.Stat.md
+++ b/api/Visio.ValidationRules.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a '[ValidationRules](Visio.ValidationRules.md)' object.
-### Return Value
+### Return value
**[VisStatCodes](Visio.visstatcodes.md)**
diff --git a/api/Visio.VisBuiltInStencilTypes.md b/api/Visio.VisBuiltInStencilTypes.md
index e92bc659b7e..a6e31d5791e 100644
--- a/api/Visio.VisBuiltInStencilTypes.md
+++ b/api/Visio.VisBuiltInStencilTypes.md
@@ -17,7 +17,7 @@ Specifies constants that identify the available stencils; passed to the **GetBu
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visBuiltInStencilBackgrounds**|0|The hidden stencil that contains the shapes displayed in the **Backgrounds** gallery (**Design** tab).|
| **visBuiltInStencilBorders**|1|The hidden stencil that contains the shapes displayed in the **Borders and Titles** gallery (**Design** tab).|
diff --git a/api/Visio.VisCenterViewFlags.md b/api/Visio.VisCenterViewFlags.md
index 332cf83a56d..f580f626e2a 100644
--- a/api/Visio.VisCenterViewFlags.md
+++ b/api/Visio.VisCenterViewFlags.md
@@ -17,7 +17,7 @@ Specifies constants that define the different ways to center the view; passed to
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visCenterViewDefault**|0|Display the page that contains the specified shape, and center the view on the shape.|
| **visCenterViewIfOffScreen**|1|Center the view only if the shape is currently off screen.|
diff --git a/api/Visio.VisConnectedShapesFlags.md b/api/Visio.VisConnectedShapesFlags.md
index ea98253e872..b767c36ca03 100644
--- a/api/Visio.VisConnectedShapesFlags.md
+++ b/api/Visio.VisConnectedShapesFlags.md
@@ -20,7 +20,7 @@ Specifies constants that identify shapes by the directionality of their connecto
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visConnectedShapesAllNodes**|0|The shapes that are connected by using either incoming or outgoing connections.|
| **visConnectedShapesIncomingNodes**|1|The shapes that are connected by using incoming connections.|
diff --git a/api/Visio.VisConnectorEnds.md b/api/Visio.VisConnectorEnds.md
index 69e4bf4a837..c7f59ffd28a 100644
--- a/api/Visio.VisConnectorEnds.md
+++ b/api/Visio.VisConnectorEnds.md
@@ -17,7 +17,7 @@ Specifies constants that define the end points of a connector; passed to the **
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visConnectorBeginpoint**|0|The begin point of the connector.|
| **visConnectorEndPoint**|1|The end point of the connector.|
diff --git a/api/Visio.VisContainerAutoResize.md b/api/Visio.VisContainerAutoResize.md
index f4eb3606add..6f6f4c5c54d 100644
--- a/api/Visio.VisContainerAutoResize.md
+++ b/api/Visio.VisContainerAutoResize.md
@@ -17,7 +17,7 @@ Specifies constants that define the different ways that the container boundary c
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visContainerAutoResizeNone**|0|Do not automatically resize container.|
| **visContainerAutoResizeExpand**|1|Automatically expand the container size, but do not contract.|
diff --git a/api/Visio.VisContainerFlags.md b/api/Visio.VisContainerFlags.md
index 49ec7bfb892..423f9b3fe01 100644
--- a/api/Visio.VisContainerFlags.md
+++ b/api/Visio.VisContainerFlags.md
@@ -17,7 +17,7 @@ Specifies which container member shape IDs to return; constants passed to the *
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visContainerFlagsDefault**|0|Returns all shape types and includes items in nested containers.|
| **visContainerFlagsExcludeContainers**|1|Excludes member shapes that are containers.|
diff --git a/api/Visio.VisContainerMemberState.md b/api/Visio.VisContainerMemberState.md
index 16e85844a7a..7fd12ada428 100644
--- a/api/Visio.VisContainerMemberState.md
+++ b/api/Visio.VisContainerMemberState.md
@@ -17,7 +17,7 @@ Specifies constants that denote the state of the input member shape with respect
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visContainerMemberNotAMember**|0|The shape is not a member of the container.|
| **visContainerMemberInterior**|1|The member shape is within the bounds of the container.|
diff --git a/api/Visio.VisContainerNested.md b/api/Visio.VisContainerNested.md
index fcd4f0d13fd..c8d1a409101 100644
--- a/api/Visio.VisContainerNested.md
+++ b/api/Visio.VisContainerNested.md
@@ -17,7 +17,7 @@ Specifies whether to include or exclude shapes from nested containers; constants
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visContainerIncludeNested**|0|Include shapes that are in nested containers.|
| **visContainerExcludeNested**|1|Exclude shapes that are in nested containers.|
diff --git a/api/Visio.VisContainerTypes.md b/api/Visio.VisContainerTypes.md
index 1c2c4e91c3d..9d827785ce7 100644
--- a/api/Visio.VisContainerTypes.md
+++ b/api/Visio.VisContainerTypes.md
@@ -17,7 +17,7 @@ Specifies whether member shapes are arranged in a list; value returned by the *
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visContainerTypeNormal**|0|Member shapes are not arranged in a list.|
| **visContainerTypeList**|1|Member shapes are arranged in a list.|
diff --git a/api/Visio.VisDeleteFlags.md b/api/Visio.VisDeleteFlags.md
index c26a46b58f4..d4a3bfaf354 100644
--- a/api/Visio.VisDeleteFlags.md
+++ b/api/Visio.VisDeleteFlags.md
@@ -17,7 +17,7 @@ Specifies constants that define particular sets of instruction to apply to a del
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visDeleteNormal**|0|Match the deletion behavior in the user interface.|
| **visDeleteHealConnectors**|1|Delete connectors attached to deleted shapes.|
diff --git a/api/Visio.VisEdition.md b/api/Visio.VisEdition.md
index a6fe6d3da69..e658165defc 100644
--- a/api/Visio.VisEdition.md
+++ b/api/Visio.VisEdition.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
Specifies constants that represent the installed edition of Microsoft Visio.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visEditionStandard**|0|Standard edition.|
| **visEditionProfessional**|1|Professional edition.|
diff --git a/api/Visio.VisGluedShapesFlags.md b/api/Visio.VisGluedShapesFlags.md
index 459d2303e16..d9fce60c29f 100644
--- a/api/Visio.VisGluedShapesFlags.md
+++ b/api/Visio.VisGluedShapesFlags.md
@@ -17,7 +17,7 @@ Specifies constants that identify which shapes to return, based on the dimension
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visGluedShapesAll1D**|0|Return all 1-D shapes that are glued to this shape.|
| **visGluedShapesIncoming1D**|1|Return the 1-D shapes whose end points are glued to this shape.|
diff --git a/api/Visio.VisLangFlags.md b/api/Visio.VisLangFlags.md
index 7577c6139a0..4bdc2769570 100644
--- a/api/Visio.VisLangFlags.md
+++ b/api/Visio.VisLangFlags.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
Specifies the language of the page name as local or universal; passed to the various members of the ServerPublishOptions object.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visLangLocal**|0|The page name is a local name.|
| **visLangUniversal**|1|The page name is a universal name.|
diff --git a/api/Visio.VisLayoutDirection.md b/api/Visio.VisLayoutDirection.md
index 44fc367a5a4..8d86ebb83c2 100644
--- a/api/Visio.VisLayoutDirection.md
+++ b/api/Visio.VisLayoutDirection.md
@@ -17,7 +17,7 @@ Specifies constants that define the layout directions for a diagram or selection
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visLayoutDirRotateRight**|0|Rotates the diagram or selection 90 degrees clockwise.|
| **visLayoutDirRotateLeft**|1|Rotates the diagram or selection 90 degrees counter-clockwise.|
diff --git a/api/Visio.VisLayoutHorzAlignType.md b/api/Visio.VisLayoutHorzAlignType.md
index fc66fe23b62..e8655bf7f9f 100644
--- a/api/Visio.VisLayoutHorzAlignType.md
+++ b/api/Visio.VisLayoutHorzAlignType.md
@@ -17,7 +17,7 @@ Specifies constants that define the different ways to incrementally align a shap
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visLayoutHorzAlignNone**|0|Do not align horizontally.|
| **visLayoutHorzAlignDefault**|1|Let Visio choose how to align horizontally.|
diff --git a/api/Visio.VisLayoutIncrementalType.md b/api/Visio.VisLayoutIncrementalType.md
index a90678068ae..9c58de19993 100644
--- a/api/Visio.VisLayoutIncrementalType.md
+++ b/api/Visio.VisLayoutIncrementalType.md
@@ -17,7 +17,7 @@ Specifies constants that define types of incremental layout; passed to the **[P
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visLayoutIncrAlign**|1|Align shapes.|
| **visLayoutIncrSpace**|2|Space shapes evenly.|
diff --git a/api/Visio.VisLayoutVertAlignType.md b/api/Visio.VisLayoutVertAlignType.md
index 93ee065a4f8..28daf4b1cee 100644
--- a/api/Visio.VisLayoutVertAlignType.md
+++ b/api/Visio.VisLayoutVertAlignType.md
@@ -17,7 +17,7 @@ Specifies constants that define the different ways to incrementally align a shap
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visLayoutVertAlignNone**|0|Do not align vertically.|
| **visLayoutVertAlignDefault**|1|Let Visio choose how to align vertically.|
diff --git a/api/Visio.VisLegendFlags.md b/api/Visio.VisLegendFlags.md
index 73436b0106b..2268865a159 100644
--- a/api/Visio.VisLegendFlags.md
+++ b/api/Visio.VisLegendFlags.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
Specifies contants that define whether to populate the legend; passed to the DropLegend method.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visLegendPopulate**|0|Drop the legend and populate it.|
| **visLegendNoContents**|1|Drop the legend and do not populate it.|
diff --git a/api/Visio.VisListAlignment.md b/api/Visio.VisListAlignment.md
index b078c5fb61f..9f4a07b9532 100644
--- a/api/Visio.VisListAlignment.md
+++ b/api/Visio.VisListAlignment.md
@@ -17,7 +17,7 @@ Specifies constants that define different ways to align shapes; passed to and re
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visListAlignLeftOrTop**|0|Left-align or top-align shapes.|
| **visListAlignCenterOrMiddle**|1|Center-align or middle-align shapes.|
diff --git a/api/Visio.VisListDirection.md b/api/Visio.VisListDirection.md
index 6c98d61b655..ad370417f43 100644
--- a/api/Visio.VisListDirection.md
+++ b/api/Visio.VisListDirection.md
@@ -17,7 +17,7 @@ Specifies constants that identify the list direction; passed to and returned by
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visListDirLeftToRight**|0|Shapes are arranged horizontally, from left to right.|
| **visListDirRightToLeft**|1|Shapes are arranged horizontally, from right to left.|
diff --git a/api/Visio.VisMemberAddOptions.md b/api/Visio.VisMemberAddOptions.md
index c3a21a339fa..f8a8b9563f0 100644
--- a/api/Visio.VisMemberAddOptions.md
+++ b/api/Visio.VisMemberAddOptions.md
@@ -17,7 +17,7 @@ Specifies whether to expand the container to accomodate the new member(s) or to
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visMemberAddUseResizeSetting**|0|Defer to the setting of the **[ContainerProperties.ResizeAsNeeded](Visio.ContainerProperties.ResizeAsNeeded.md)** property.|
| **visMemberAddExpandContainer**|1|Expand the container to fit the incoming shape(s).|
diff --git a/api/Visio.VisPublishDataRecordsets.md b/api/Visio.VisPublishDataRecordsets.md
index 2556125b216..0526f8c8886 100644
--- a/api/Visio.VisPublishDataRecordsets.md
+++ b/api/Visio.VisPublishDataRecordsets.md
@@ -17,7 +17,7 @@ Specifies constants that define which data recordsets to publish; passed to the
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visPublishDataRecordsetAll**|0|Publish all data recordsets in the document.|
| **visPublishDataRecordsetNone**|1|Publish none of the data recordsets in the document.|
diff --git a/api/Visio.VisPublishPages.md b/api/Visio.VisPublishPages.md
index a1e4c82bc89..c7e24e513f0 100644
--- a/api/Visio.VisPublishPages.md
+++ b/api/Visio.VisPublishPages.md
@@ -17,7 +17,7 @@ Specifies constants that define which pages to publish; passed to the **[Server
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visPublishPageAll**|0|Publish all pages.|
| **visPublishPageSelect**|1|Publish selected pages.|
diff --git a/api/Visio.VisRasterExportColorFormat.md b/api/Visio.VisRasterExportColorFormat.md
index 113c4374372..f46b9839c86 100644
--- a/api/Visio.VisRasterExportColorFormat.md
+++ b/api/Visio.VisRasterExportColorFormat.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
Specifies constants that define the raster export color formats; passed to and returned by the RasterExportColorFormat property.
-|**Name**|**Value**|**Description**|**Applicable File Formats**|
+|Name|Value|Description|**Applicable File Formats**|
|:-----|:-----|:-----|:-----|
| **visRasterBiLevel**|0|Bi-level color format|BMP, PNG, TIFF|
| **visRaster16Color**|1|16-color format|BMP, PNG, TIFF|
diff --git a/api/Visio.VisRasterExportColorReduction.md b/api/Visio.VisRasterExportColorReduction.md
index 7dd5a390ca7..3bd2aa3d8fb 100644
--- a/api/Visio.VisRasterExportColorReduction.md
+++ b/api/Visio.VisRasterExportColorReduction.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
Specifies constants that define the types of raster export color reduction; passed to and returned by the ApplicationSettings.RasterExportColorReduction property.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visRasterAdaptive**|0|Adaptive color reduction; the default for GIF files.|
| **visRasterDiffusion**|1|Diffusion color reduction.|
diff --git a/api/Visio.VisRasterExportDataCompression.md b/api/Visio.VisRasterExportDataCompression.md
index 3442f5b72c4..6282149aad1 100644
--- a/api/Visio.VisRasterExportDataCompression.md
+++ b/api/Visio.VisRasterExportDataCompression.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
Specifies constants that identify the types of raster export data compression; passed to and returned by the ApplicationSettings.RasterExportDataCompression property.
-|**Name**|**Value**|**Description**|**Applicable File Format**|
+|Name|Value|Description|**Applicable File Format**|
|:-----|:-----|:-----|:-----|
| **visRasterNone**|0|No compression; the default for BMP.|BMP|
| **visRasterRLE**|1|RLE compression.|BMP|
diff --git a/api/Visio.VisRasterExportDataFormat.md b/api/Visio.VisRasterExportDataFormat.md
index 135cb328fc4..e4ed9c6e7b2 100644
--- a/api/Visio.VisRasterExportDataFormat.md
+++ b/api/Visio.VisRasterExportDataFormat.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
Specifies constants that identify which raster export data format algorithm to use; passed to and returned by the RasterExportDataFormat property.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visRasterInterlace**|0|Interlace format; the default.|
| **visRasterNonInterlace**|1|Non-interlace format.|
diff --git a/api/Visio.VisRasterExportFlip.md b/api/Visio.VisRasterExportFlip.md
index 99d535029d4..3ee0f208f00 100644
--- a/api/Visio.VisRasterExportFlip.md
+++ b/api/Visio.VisRasterExportFlip.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
Specifies constants that define how to apply the raster export flip; passed to and returned by the ApplicationSettings.RasterExportFlip property.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visRasterNoFlip**|0|No flip, the default.|
| **visRasterFlipHorizontal**|1|Flip horizontally.|
diff --git a/api/Visio.VisRasterExportOperation.md b/api/Visio.VisRasterExportOperation.md
index 5d8d042f10d..77d8221322e 100644
--- a/api/Visio.VisRasterExportOperation.md
+++ b/api/Visio.VisRasterExportOperation.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
Specifies constants that identify the varieties of raster export operations; passed to and returned by the ApplicationSettings.RasterExportOperation property.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visRasterBaseline**|0|Baseline operation; the default.|
| **visRasterProgressive**|1|Progressive operation.|
diff --git a/api/Visio.VisRasterExportResolution.md b/api/Visio.VisRasterExportResolution.md
index 98952d4cd2b..4f66c421566 100644
--- a/api/Visio.VisRasterExportResolution.md
+++ b/api/Visio.VisRasterExportResolution.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
Specifies constants that define which type of raster export resolution to use; passed to the SetRasterExportResolution method and returned by the GetRasterExportResolution method.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visRasterUseScreenResolution**|0|Use screen resolution.|
| **visRasterUsePrinterResolution**|1|Use printer resolution.|
diff --git a/api/Visio.VisRasterExportResolutionUnits.md b/api/Visio.VisRasterExportResolutionUnits.md
index 53203dc6fc9..48bfd74ef27 100644
--- a/api/Visio.VisRasterExportResolutionUnits.md
+++ b/api/Visio.VisRasterExportResolutionUnits.md
@@ -19,7 +19,7 @@ Specifies constants that define the raster export resolution units; passed to th
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visRasterPixelsPerInch**|0|Pixels per inch.|
| **visRasterPixelsPerCm**|1|Pixels per centimeter.|
diff --git a/api/Visio.VisRasterExportRotation.md b/api/Visio.VisRasterExportRotation.md
index 54bd5a9847c..1c4b75c2aeb 100644
--- a/api/Visio.VisRasterExportRotation.md
+++ b/api/Visio.VisRasterExportRotation.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
Specifies constants that define how to apply the raster export rotation; passed to and returned by the ApplicationSettings.RasterExportRotation property.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visRasterNoRotation**|0|No rotation; the default.|
| **visRasterRotateLeft**|1|Rotate left.|
diff --git a/api/Visio.VisRasterExportSize.md b/api/Visio.VisRasterExportSize.md
index b2f53ee3d8d..5db89328010 100644
--- a/api/Visio.VisRasterExportSize.md
+++ b/api/Visio.VisRasterExportSize.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
Specifies constants that define which raster export size to use; passed to the SetRasterExportSize method and returned by the GetRasterExportSize method.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visRasterFitToScreenSize**|0|Use screen size.|
| **visRasterFitToPrinterSize**|1|Use printer size.|
diff --git a/api/Visio.VisRasterExportSizeUnits.md b/api/Visio.VisRasterExportSizeUnits.md
index 1c94b42efeb..3558cd089b7 100644
--- a/api/Visio.VisRasterExportSizeUnits.md
+++ b/api/Visio.VisRasterExportSizeUnits.md
@@ -18,7 +18,7 @@ ms.date: 06/08/2017
Specifies constants that define the raster export size units; passed to the SetRasterExportSize method and returned by the GetRasterExportSize method.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visRasterPixel**|0|Pixels|
| **visRasterCm**|1|Centimeters|
diff --git a/api/Visio.VisResizeDirection.md b/api/Visio.VisResizeDirection.md
index 1db9867c753..bdd570208f2 100644
--- a/api/Visio.VisResizeDirection.md
+++ b/api/Visio.VisResizeDirection.md
@@ -17,7 +17,7 @@ Specifies the resize directions that correspond to the shape handles to move; pa
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visResizeDirE**|0|Middle right.|
| **visResizeDirNE**|1|Top right.|
diff --git a/api/Visio.VisRibbonXModes.md b/api/Visio.VisRibbonXModes.md
index 006edd7d35c..9c4541634d5 100644
--- a/api/Visio.VisRibbonXModes.md
+++ b/api/Visio.VisRibbonXModes.md
@@ -17,7 +17,7 @@ Specifies constants that identify the various modes in which to display the cust
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visRXModeNone**|0|Display the custom user interface (UI) when no document is active.|
| **visRXModeDrawing**|1|Display the custom UI in Drawing mode.|
diff --git a/api/Visio.VisRoleSelectionTypes.md b/api/Visio.VisRoleSelectionTypes.md
index 899dafa57f4..400d1a27a46 100644
--- a/api/Visio.VisRoleSelectionTypes.md
+++ b/api/Visio.VisRoleSelectionTypes.md
@@ -17,7 +17,7 @@ Specifies selections that contain all shapes of a given role; passed to the **[
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visRoleSelConnector**|1|A selection that contains all connector shapes.|
| **visRoleSelContainer**|2|A selection that contains all container shapes.|
diff --git a/api/Visio.VisRuleSetFlags.md b/api/Visio.VisRuleSetFlags.md
index c4bbe71bc8d..bfdb652dfc8 100644
--- a/api/Visio.VisRuleSetFlags.md
+++ b/api/Visio.VisRuleSetFlags.md
@@ -17,7 +17,7 @@ Specifies constants that define special rule-set behaviors; passed to and return
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visRuleSetDefault**|0|The default rule-set property. The rule set appears in the **Rules to Check** list (click the **Check Diagram** arrow on the **Process** tab).|
| **visRuleSetHidden**|1|The rule set does not appear in the **Rules to Check** list.|
diff --git a/api/Visio.VisRuleTargets.md b/api/Visio.VisRuleTargets.md
index 71cdf6a48f3..fe714ca7424 100644
--- a/api/Visio.VisRuleTargets.md
+++ b/api/Visio.VisRuleTargets.md
@@ -17,7 +17,7 @@ Specifies contants that define the target of the validation rule; passed to and
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visRuleTargetDocument**|2|The rule applies to the document itself.|
| **visRuleTargetPage**|1|The rule applies to pages in the document.|
diff --git a/api/Visio.VisValidationFlags.md b/api/Visio.VisValidationFlags.md
index fe35dd582d6..3a9406704c6 100644
--- a/api/Visio.VisValidationFlags.md
+++ b/api/Visio.VisValidationFlags.md
@@ -17,7 +17,7 @@ Specifies constants that define special validation behaviors; passed to the **[
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visValidationDefault**|0|Validate document, and if validation issues are found, open the **Issues** window.|
| **visValidationNoOpenWindow**|1|Validate document, but do not open the **Issues** window.|
diff --git a/api/Visio.Window.Activate.md b/api/Visio.Window.Activate.md
index 17234a1416a..f855d8962d9 100644
--- a/api/Visio.Window.Activate.md
+++ b/api/Visio.Window.Activate.md
@@ -23,7 +23,7 @@ Activates a window.
_expression_ An expression that returns a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Window.AllowEditing.md b/api/Visio.Window.AllowEditing.md
index 206430392da..8d54b4351cb 100644
--- a/api/Visio.Window.AllowEditing.md
+++ b/api/Visio.Window.AllowEditing.md
@@ -23,7 +23,7 @@ Determines whether the **Edit Stencil** command is enabled or disabled in a ste
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Window.Application.md b/api/Visio.Window.Application.md
index 2e9428362ca..b396d01450b 100644
--- a/api/Visio.Window.Application.md
+++ b/api/Visio.Window.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Window.BackgroundColor.md b/api/Visio.Window.BackgroundColor.md
index 5c0ebffec6d..dcf63f0375c 100644
--- a/api/Visio.Window.BackgroundColor.md
+++ b/api/Visio.Window.BackgroundColor.md
@@ -23,7 +23,7 @@ Determines the background color of the active Microsoft Visio drawing window and
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
OLE_COLOR
diff --git a/api/Visio.Window.BackgroundColorGradient.md b/api/Visio.Window.BackgroundColorGradient.md
index fc4f4fba63b..94b8ca99fef 100644
--- a/api/Visio.Window.BackgroundColorGradient.md
+++ b/api/Visio.Window.BackgroundColorGradient.md
@@ -23,7 +23,7 @@ Determines the background gradient color of the active Microsoft Visio drawing w
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
OLE_COLOR
diff --git a/api/Visio.Window.BeforeWindowClosed.md b/api/Visio.Window.BeforeWindowClosed.md
index 3f9aac56d3f..899547cfc60 100644
--- a/api/Visio.Window.BeforeWindowClosed.md
+++ b/api/Visio.Window.BeforeWindowClosed.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeWindowClosed'(**_ByVal Window As [IVWINDOW]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that is going to be closed.|
diff --git a/api/Visio.Window.BeforeWindowPageTurn.md b/api/Visio.Window.BeforeWindowPageTurn.md
index fc53a391a5c..ff00a13f9c1 100644
--- a/api/Visio.Window.BeforeWindowPageTurn.md
+++ b/api/Visio.Window.BeforeWindowPageTurn.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeWindowPageTurn'(**_ByVal Window As [IVWINDOW]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that is going to show a different page.|
diff --git a/api/Visio.Window.BeforeWindowSelDelete.md b/api/Visio.Window.BeforeWindowSelDelete.md
index 7dd21b8117f..19fc17a9895 100644
--- a/api/Visio.Window.BeforeWindowSelDelete.md
+++ b/api/Visio.Window.BeforeWindowSelDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeWindowSelDelete'(**_ByVal Window As [IVWINDOW]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that contains the selection that is going to be deleted.|
diff --git a/api/Visio.Window.Caption.md b/api/Visio.Window.Caption.md
index ca214856b1c..8b676c3a2be 100644
--- a/api/Visio.Window.Caption.md
+++ b/api/Visio.Window.Caption.md
@@ -23,7 +23,7 @@ Gets or sets the caption for a window. Read/write.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Window.CenterViewOnShape.md b/api/Visio.Window.CenterViewOnShape.md
index 4c045cac8eb..ab0279990f8 100644
--- a/api/Visio.Window.CenterViewOnShape.md
+++ b/api/Visio.Window.CenterViewOnShape.md
@@ -27,12 +27,12 @@ Pans the Microsoft Visio drawing window to place the specified shape in the cent
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SheetObject_|Required| **[Shape](Visio.Shape.md)**|The shape to center in the view.|
| _Flags_|Required| **[VisCenterViewFlags](Visio.VisCenterViewFlags.md)**|The centering behavior to apply.|
-### Return Value
+### Return value
**Nothing**
diff --git a/api/Visio.Window.Close.md b/api/Visio.Window.Close.md
index 9fa743701eb..7a9f5cccb98 100644
--- a/api/Visio.Window.Close.md
+++ b/api/Visio.Window.Close.md
@@ -23,7 +23,7 @@ Closes a window.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Window.DeselectAll.md b/api/Visio.Window.DeselectAll.md
index cabd7b1c22f..20c87c6419a 100644
--- a/api/Visio.Window.DeselectAll.md
+++ b/api/Visio.Window.DeselectAll.md
@@ -23,7 +23,7 @@ Deselects all shapes in a window or selection.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Window.DockedStencils.md b/api/Visio.Window.DockedStencils.md
index d191206f0d5..3fa2108bc59 100644
--- a/api/Visio.Window.DockedStencils.md
+++ b/api/Visio.Window.DockedStencils.md
@@ -27,11 +27,11 @@ Returns the names of all stencils docked in a Microsoft Visio drawing window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NameArray()_|Required| **String**|Out parameter. An array that receives the names of stencils docked in a window.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Window.Document.md b/api/Visio.Window.Document.md
index 947a2939425..57c3a07a9e3 100644
--- a/api/Visio.Window.Document.md
+++ b/api/Visio.Window.Document.md
@@ -23,7 +23,7 @@ Gets the **Document** object that is associated with an object. Read-only.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Document
diff --git a/api/Visio.Window.EventList.md b/api/Visio.Window.EventList.md
index 5f5ab79c3d8..c9deae84fba 100644
--- a/api/Visio.Window.EventList.md
+++ b/api/Visio.Window.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Window.GetViewRect.md b/api/Visio.Window.GetViewRect.md
index ceafc20c702..ee07ed032b9 100644
--- a/api/Visio.Window.GetViewRect.md
+++ b/api/Visio.Window.GetViewRect.md
@@ -27,14 +27,14 @@ Returns the page coordinates of a window's borders.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pdLeft_|Required| **Double**|The coordinate in page units of the left side of the window.|
| _pdTop_|Required| **Double**|The coordinate in page units of the top of the window.|
| _pdWidth_|Required| **Double**|The distance in page units from the left side to the right side of the window.|
| _pdHeight_|Required| **Double**|The distance in page units from the top to the bottom of the window.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Window.GetWindowRect.md b/api/Visio.Window.GetWindowRect.md
index b33d49cbd8d..5e4e8213335 100644
--- a/api/Visio.Window.GetWindowRect.md
+++ b/api/Visio.Window.GetWindowRect.md
@@ -27,14 +27,14 @@ Gets the size and position of the client area of a window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pnLeft_|Required| **Long**|The coordinate of the left side of the window.|
| _pnTop_|Required| **Long**|The coordinate of the top of the window.|
| _pnWidth_|Required| **Long**|The distance in pixels from the left side to the right side of the window.|
| _pnHeight_|Required| **Long**|The distance in pixels from the top to the bottom of the window.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Window.ID.md b/api/Visio.Window.ID.md
index 1bf5bf755e1..fd370674f14 100644
--- a/api/Visio.Window.ID.md
+++ b/api/Visio.Window.ID.md
@@ -23,7 +23,7 @@ Gets the ID of an object. Read-only.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Window.InPlace.md b/api/Visio.Window.InPlace.md
index 6876bf44b48..f4a96323c2b 100644
--- a/api/Visio.Window.InPlace.md
+++ b/api/Visio.Window.InPlace.md
@@ -23,7 +23,7 @@ Specifies whether a window is open in place, or whether a document is being view
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Window.Index.md b/api/Visio.Window.Index.md
index 14f05559f09..2b00770c86b 100644
--- a/api/Visio.Window.Index.md
+++ b/api/Visio.Window.Index.md
@@ -23,7 +23,7 @@ Gets the ordinal position of a **Window** object in the **Windows** collection.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Window.IsEditingOLE.md b/api/Visio.Window.IsEditingOLE.md
index c0492b95bc4..0880b35cca7 100644
--- a/api/Visio.Window.IsEditingOLE.md
+++ b/api/Visio.Window.IsEditingOLE.md
@@ -23,7 +23,7 @@ Determines whether a drawing window contains an ActiveX control that has focus o
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Window.IsEditingText.md b/api/Visio.Window.IsEditingText.md
index 9f46058e8a0..4f7221e0a63 100644
--- a/api/Visio.Window.IsEditingText.md
+++ b/api/Visio.Window.IsEditingText.md
@@ -23,7 +23,7 @@ Determines whether a text editing session is active in the drawing window. Read-
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Window.KeyDown.md b/api/Visio.Window.KeyDown.md
index 974982b8b48..c89a5828e49 100644
--- a/api/Visio.Window.KeyDown.md
+++ b/api/Visio.Window.KeyDown.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'KeyDown'(**_ByVal KeyCode As Long_** , **_ByVal KeyB
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCode_|Required| **Long**|The key that was pressed. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.Window.KeyPress.md b/api/Visio.Window.KeyPress.md
index 13881f13512..ab06f0b0cf8 100644
--- a/api/Visio.Window.KeyPress.md
+++ b/api/Visio.Window.KeyPress.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'KeyPress'(**_ByVal KeyAscii As Long_** , **_ByVal Ca
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyAscii_|Required| **Long**|The ASCII value of the key that was pressed. See Remarks for possible values.|
| _CancelDefault_|Required| **Boolean**| **False** if Microsoft Visio should process the message it receives from this event; otherwise, **True** .|
diff --git a/api/Visio.Window.KeyUp.md b/api/Visio.Window.KeyUp.md
index 30c93ec622d..e77b5ab7f04 100644
--- a/api/Visio.Window.KeyUp.md
+++ b/api/Visio.Window.KeyUp.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'KeyUp'(**_ByVal KeyCode As Long_** , **_ByVal KeyBut
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCode_|Required| **Long**|The key that was released. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.Window.Master.md b/api/Visio.Window.Master.md
index 4e9dbde8e65..53095dabef9 100644
--- a/api/Visio.Window.Master.md
+++ b/api/Visio.Window.Master.md
@@ -23,7 +23,7 @@ Gets the master that is displayed in a window. Read-only.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Variant
diff --git a/api/Visio.Window.MasterShortcut.md b/api/Visio.Window.MasterShortcut.md
index 5a33d8c1998..8319dff14d5 100644
--- a/api/Visio.Window.MasterShortcut.md
+++ b/api/Visio.Window.MasterShortcut.md
@@ -23,7 +23,7 @@ Gets the master shortcut that is displayed in a window. Read-only.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
MasterShortcut
diff --git a/api/Visio.Window.MergeCaption.md b/api/Visio.Window.MergeCaption.md
index b09aced97f4..177639cc0a5 100644
--- a/api/Visio.Window.MergeCaption.md
+++ b/api/Visio.Window.MergeCaption.md
@@ -23,7 +23,7 @@ Gets or sets the abbreviated caption that appears on the page tab when the windo
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Window.MergeClass.md b/api/Visio.Window.MergeClass.md
index fee5a3c6fb0..2789d414b2d 100644
--- a/api/Visio.Window.MergeClass.md
+++ b/api/Visio.Window.MergeClass.md
@@ -23,7 +23,7 @@ Specifies a list of window classes that this anchored window can merge with. Rea
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Window.MergeID.md b/api/Visio.Window.MergeID.md
index afe7e491377..ff5cb0aebff 100644
--- a/api/Visio.Window.MergeID.md
+++ b/api/Visio.Window.MergeID.md
@@ -23,7 +23,7 @@ Specifies the string version of a merged window's globally unique identifier (GU
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.Window.MergePosition.md b/api/Visio.Window.MergePosition.md
index 144205be436..5d8a3f4190f 100644
--- a/api/Visio.Window.MergePosition.md
+++ b/api/Visio.Window.MergePosition.md
@@ -23,7 +23,7 @@ Specifies the left-to-right tab position of a merged anchored window. Read/write
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Window.MouseDown.md b/api/Visio.Window.MouseDown.md
index 9bb36edd1e5..47221370bac 100644
--- a/api/Visio.Window.MouseDown.md
+++ b/api/Visio.Window.MouseDown.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MouseDown'(**_ByVal Button As Long_** , **_ByVal Key
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Button_|Required| **Long**|The mouse button that was pressed. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the mouse buttons and the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.Window.MouseMove.md b/api/Visio.Window.MouseMove.md
index 4df8d284f01..186261581a9 100644
--- a/api/Visio.Window.MouseMove.md
+++ b/api/Visio.Window.MouseMove.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MouseMove'(**_ByVal Button As Long_** , **_ByVal Key
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Button_|Required| **Long**|The mouse button that was clicked. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the mouse buttons and the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.Window.MouseUp.md b/api/Visio.Window.MouseUp.md
index 2446a00bcee..bf771bf4ffb 100644
--- a/api/Visio.Window.MouseUp.md
+++ b/api/Visio.Window.MouseUp.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MouseUp'(**_ByVal Button As Long_** , **_ByVal KeyBu
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Button_|Required| **Long**|The mouse button that was released. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the mouse buttons and the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.Window.NewWindow.md b/api/Visio.Window.NewWindow.md
index 613f686d841..8206373be0b 100644
--- a/api/Visio.Window.NewWindow.md
+++ b/api/Visio.Window.NewWindow.md
@@ -23,7 +23,7 @@ Opens a new Microsoft Visio window.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.Window.ObjectType.md b/api/Visio.Window.ObjectType.md
index 566fbeb341d..59e92514ca4 100644
--- a/api/Visio.Window.ObjectType.md
+++ b/api/Visio.Window.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Window.OnKeystrokeMessageForAddon.md b/api/Visio.Window.OnKeystrokeMessageForAddon.md
index 933b71610cd..3b9988c560d 100644
--- a/api/Visio.Window.OnKeystrokeMessageForAddon.md
+++ b/api/Visio.Window.OnKeystrokeMessageForAddon.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'OnKeystrokeMessageForAddon'(**_ByVal MSG As [IVMSGWR
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MSG_|Required| **[IVMSGWRAP]**|The message that Visio receives.|
diff --git a/api/Visio.Window.Page.md b/api/Visio.Window.Page.md
index 55e485d7bf3..2f80539edbf 100644
--- a/api/Visio.Window.Page.md
+++ b/api/Visio.Window.Page.md
@@ -23,7 +23,7 @@ Gets or sets the page that is displayed in a window. Read/write.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Variant
diff --git a/api/Visio.Window.PageTabWidth.md b/api/Visio.Window.PageTabWidth.md
index 3cbda472c7e..a186c23d18f 100644
--- a/api/Visio.Window.PageTabWidth.md
+++ b/api/Visio.Window.PageTabWidth.md
@@ -23,7 +23,7 @@ Gets or sets the width of the page tab control in a drawing window. Read/write.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Window.Parent.md b/api/Visio.Window.Parent.md
index 5f123597f32..b64c05debb5 100644
--- a/api/Visio.Window.Parent.md
+++ b/api/Visio.Window.Parent.md
@@ -23,7 +23,7 @@ Determines the parent of an object. Read-only.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Windows
diff --git a/api/Visio.Window.ParentWindow.md b/api/Visio.Window.ParentWindow.md
index 1444098bef2..b2f1e140cb3 100644
--- a/api/Visio.Window.ParentWindow.md
+++ b/api/Visio.Window.ParentWindow.md
@@ -23,7 +23,7 @@ Returns the **Window** object that is the parent of another **Window** object.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Window
diff --git a/api/Visio.Window.PersistsEvents.md b/api/Visio.Window.PersistsEvents.md
index 105a9deff71..f42c8730464 100644
--- a/api/Visio.Window.PersistsEvents.md
+++ b/api/Visio.Window.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Window.QueryCancelWindowClose.md b/api/Visio.Window.QueryCancelWindowClose.md
index d2f8f597578..803c5ece320 100644
--- a/api/Visio.Window.QueryCancelWindowClose.md
+++ b/api/Visio.Window.QueryCancelWindowClose.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelWindowClose'(**_ByVal Window As [IVWINDOW
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that is going to be closed.|
diff --git a/api/Visio.Window.ReviewerMarkupVisible.md b/api/Visio.Window.ReviewerMarkupVisible.md
index 95e6f63ccb7..86f89127e36 100644
--- a/api/Visio.Window.ReviewerMarkupVisible.md
+++ b/api/Visio.Window.ReviewerMarkupVisible.md
@@ -27,11 +27,11 @@ Determines whether reviewer markup, for a particular reviewer or all reviewers,
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ReviewerID_|Optional| **Long**|The ID of a particular reviewer. If you do not pass a reviewer ID, the **ReviewerMarkupVisible** property value specifies visibility for all reviewers.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Window.Scroll.md b/api/Visio.Window.Scroll.md
index e1309664424..f404f75ea69 100644
--- a/api/Visio.Window.Scroll.md
+++ b/api/Visio.Window.Scroll.md
@@ -27,12 +27,12 @@ Scrolls the contents of a window vertically, horizontally, or both.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nxFlags_|Required| **Long**|Indicates how to scroll horizontally.|
| _nyFlags_|Required| **Long**|Indicates how to scroll vertically.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Window.ScrollLock.md b/api/Visio.Window.ScrollLock.md
index 00cb94e3efe..14e1d44fea3 100644
--- a/api/Visio.Window.ScrollLock.md
+++ b/api/Visio.Window.ScrollLock.md
@@ -23,7 +23,7 @@ Determines whether scrolling is disabled in a Microsoft Visio window. Read/write
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Window.ScrollViewTo.md b/api/Visio.Window.ScrollViewTo.md
index 3c40371ff3b..06cde04fee0 100644
--- a/api/Visio.Window.ScrollViewTo.md
+++ b/api/Visio.Window.ScrollViewTo.md
@@ -27,12 +27,12 @@ Scrolls a window to a particular page coordinate.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _x_|Required| **Double**|The x-coordinate to which to scroll.|
| _y_|Required| **Double**|The y-coordinate to which to scroll.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Window.Select.md b/api/Visio.Window.Select.md
index f0080c05dea..d131cc665a8 100644
--- a/api/Visio.Window.Select.md
+++ b/api/Visio.Window.Select.md
@@ -27,12 +27,12 @@ Selects or clears an object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SheetObject_|Required| **[IVSHAPE]**|An expression that returns a **Shape** object to select or clear.|
| _SelectAction_|Required| **Integer**|The type of selection action to take.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Window.SelectAll.md b/api/Visio.Window.SelectAll.md
index b5e65213dbf..c8d217f915b 100644
--- a/api/Visio.Window.SelectAll.md
+++ b/api/Visio.Window.SelectAll.md
@@ -23,7 +23,7 @@ Selects all possible shapes in a window or selection.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Window.SelectedCell.md b/api/Visio.Window.SelectedCell.md
index d77887ae27c..e9ed24bef1c 100644
--- a/api/Visio.Window.SelectedCell.md
+++ b/api/Visio.Window.SelectedCell.md
@@ -23,7 +23,7 @@ Returns the selected cell in the ShapeSheet window. Read-only.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Cell
diff --git a/api/Visio.Window.SelectedDataRecordset.md b/api/Visio.Window.SelectedDataRecordset.md
index 9e69f150524..7ce6f66bab5 100644
--- a/api/Visio.Window.SelectedDataRecordset.md
+++ b/api/Visio.Window.SelectedDataRecordset.md
@@ -26,7 +26,7 @@ Gets or sets the data recordset that is displayed on the active tab of the **Ex
_expression_ An expression that returns a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
DataRecordset
diff --git a/api/Visio.Window.SelectedDataRowID.md b/api/Visio.Window.SelectedDataRowID.md
index 833e801c385..1e6f434a73e 100644
--- a/api/Visio.Window.SelectedDataRowID.md
+++ b/api/Visio.Window.SelectedDataRowID.md
@@ -26,7 +26,7 @@ Gets or sets the ID of the data row that is selected (or that is the primary row
_expression_ An expression that returns a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Window.SelectedMasters.md b/api/Visio.Window.SelectedMasters.md
index 23048272ed2..705536a6751 100644
--- a/api/Visio.Window.SelectedMasters.md
+++ b/api/Visio.Window.SelectedMasters.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Object()
diff --git a/api/Visio.Window.SelectedText.md b/api/Visio.Window.SelectedText.md
index 4e9eaa76718..9989256f2b8 100644
--- a/api/Visio.Window.SelectedText.md
+++ b/api/Visio.Window.SelectedText.md
@@ -23,7 +23,7 @@ Returns the selected text in the Microsoft Visio drawing window as a **Characte
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Characters
diff --git a/api/Visio.Window.SelectedValidationIssue.md b/api/Visio.Window.SelectedValidationIssue.md
index 5d88afb2996..ce6c61accdf 100644
--- a/api/Visio.Window.SelectedValidationIssue.md
+++ b/api/Visio.Window.SelectedValidationIssue.md
@@ -23,7 +23,7 @@ Gets or sets the validation issue that is selected in the **Issues** window. Re
_expression_ A variable that represents a '[Window](Visio.Window.md)' object.
-### Return Value
+### Return value
[ValidationIssue](Visio.ValidationIssue.md)
diff --git a/api/Visio.Window.Selection.md b/api/Visio.Window.Selection.md
index 42e9989538c..631859ec9ba 100644
--- a/api/Visio.Window.Selection.md
+++ b/api/Visio.Window.Selection.md
@@ -23,7 +23,7 @@ Returns a **Selection** object that represents what is presently selected in th
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Selection
diff --git a/api/Visio.Window.SelectionChanged.md b/api/Visio.Window.SelectionChanged.md
index 87ad92af4d6..3bbfa9de015 100644
--- a/api/Visio.Window.SelectionChanged.md
+++ b/api/Visio.Window.SelectionChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'SelectionChanged'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window in which the selection changed.|
diff --git a/api/Visio.Window.SelectionForDragCopy.md b/api/Visio.Window.SelectionForDragCopy.md
index e16b1b666aa..ea6ea59ac7c 100644
--- a/api/Visio.Window.SelectionForDragCopy.md
+++ b/api/Visio.Window.SelectionForDragCopy.md
@@ -23,7 +23,7 @@ Returns the **[Selection](Visio.Selection.md)** object that represents the coll
_expression_ A variable that represents a '[Window](Visio.Window.md)' object.
-### Return Value
+### Return value
**Selection**
diff --git a/api/Visio.Window.SetViewRect.md b/api/Visio.Window.SetViewRect.md
index 56f3bfe4da1..e8cbbfcf6eb 100644
--- a/api/Visio.Window.SetViewRect.md
+++ b/api/Visio.Window.SetViewRect.md
@@ -27,14 +27,14 @@ Sets the page coordinates of a window's borders by adjusting the zoom level and
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _dLeft_|Required| **Double**|The page coordinate of the left side of the window.|
| _dTop_|Required| **Double**|The page coordinate of the top of the window.|
| _dWidth_|Required| **Double**|The distance in page units from the left side to the right side of the window.|
| _dHeight_|Required| **Double**|The distance in page units from the top to the bottom of the window.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Window.SetWindowRect.md b/api/Visio.Window.SetWindowRect.md
index 8de087a680c..2431e63ac72 100644
--- a/api/Visio.Window.SetWindowRect.md
+++ b/api/Visio.Window.SetWindowRect.md
@@ -27,14 +27,14 @@ Sets the size and position of the client area of a window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nLeft_|Required| **Long**|The coordinate of the left side of the window.|
| _nTop_|Required| **Long**|The coordinate of the top of the window.|
| _nWidth_|Required| **Long**|The distance in pixels from the left side to the right side of the window.|
| _nHeight_|Required| **Long**|The distance in pixels from the top to the bottom of the window.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Window.Shape.md b/api/Visio.Window.Shape.md
index 84fa2062137..1eb5e43eeda 100644
--- a/api/Visio.Window.Shape.md
+++ b/api/Visio.Window.Shape.md
@@ -23,7 +23,7 @@ Returns the **Shape** object that owns a **Cell** , **Characters** , **Row** ,
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Shape
diff --git a/api/Visio.Window.ShowConnectPoints.md b/api/Visio.Window.ShowConnectPoints.md
index 8a8c18a4bb2..29a944419ab 100644
--- a/api/Visio.Window.ShowConnectPoints.md
+++ b/api/Visio.Window.ShowConnectPoints.md
@@ -23,7 +23,7 @@ Determines whether connection points are shown in a window. Read/write.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Window.ShowGrid.md b/api/Visio.Window.ShowGrid.md
index a7188312cc5..722bebfb665 100644
--- a/api/Visio.Window.ShowGrid.md
+++ b/api/Visio.Window.ShowGrid.md
@@ -23,7 +23,7 @@ Determines whether a grid is shown in a window. Read/write.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Window.ShowGuides.md b/api/Visio.Window.ShowGuides.md
index e4ec0bf8d55..f00fc78fb90 100644
--- a/api/Visio.Window.ShowGuides.md
+++ b/api/Visio.Window.ShowGuides.md
@@ -23,7 +23,7 @@ Determines whether guides are shown in a window. Read/write.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Window.ShowPageBreaks.md b/api/Visio.Window.ShowPageBreaks.md
index 5d9c4aa02e9..968085da95b 100644
--- a/api/Visio.Window.ShowPageBreaks.md
+++ b/api/Visio.Window.ShowPageBreaks.md
@@ -23,7 +23,7 @@ Determines whether page breaks are shown in a window. Read/write.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Window.ShowPageOutline.md b/api/Visio.Window.ShowPageOutline.md
index 40da89f5310..6c877bb8929 100644
--- a/api/Visio.Window.ShowPageOutline.md
+++ b/api/Visio.Window.ShowPageOutline.md
@@ -23,7 +23,7 @@ Determines whether the drawing page outline is displayed in the Microsoft Visio
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Window.ShowPageTabs.md b/api/Visio.Window.ShowPageTabs.md
index af0abc1fd4f..91238b17240 100644
--- a/api/Visio.Window.ShowPageTabs.md
+++ b/api/Visio.Window.ShowPageTabs.md
@@ -23,7 +23,7 @@ Determines whether page tab controls are shown in the drawing window. Read/write
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Window.ShowRulers.md b/api/Visio.Window.ShowRulers.md
index 9a7ef8f2292..94fb74db7e2 100644
--- a/api/Visio.Window.ShowRulers.md
+++ b/api/Visio.Window.ShowRulers.md
@@ -23,7 +23,7 @@ Determines whether rulers are shown in the drawing window. Read/write.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Window.ShowScrollBars.md b/api/Visio.Window.ShowScrollBars.md
index 9b6c99b6a48..711efdda899 100644
--- a/api/Visio.Window.ShowScrollBars.md
+++ b/api/Visio.Window.ShowScrollBars.md
@@ -23,7 +23,7 @@ Determines whether scroll bars are shown in the drawing window. Read/write.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Window.Stat.md b/api/Visio.Window.Stat.md
index 4c3bfd36864..9b95065b087 100644
--- a/api/Visio.Window.Stat.md
+++ b/api/Visio.Window.Stat.md
@@ -23,7 +23,7 @@ Returns status information for an object. Read-only.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Window.SubType.md b/api/Visio.Window.SubType.md
index fd729ab4452..03971d74d0a 100644
--- a/api/Visio.Window.SubType.md
+++ b/api/Visio.Window.SubType.md
@@ -23,7 +23,7 @@ Returns the subtype of a **Window** object that represents a drawing window. Re
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Window.Type.md b/api/Visio.Window.Type.md
index b980fb24292..792c6b466ea 100644
--- a/api/Visio.Window.Type.md
+++ b/api/Visio.Window.Type.md
@@ -23,7 +23,7 @@ Returns the type of the object. Read-only.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Window.ViewChanged.md b/api/Visio.Window.ViewChanged.md
index 37567fdbbf5..d2d2500e3ce 100644
--- a/api/Visio.Window.ViewChanged.md
+++ b/api/Visio.Window.ViewChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ViewChanged'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window whose zoom level or scroll position changed.|
diff --git a/api/Visio.Window.ViewFit.md b/api/Visio.Window.ViewFit.md
index fad4d1ecd55..3b5ac66c86b 100644
--- a/api/Visio.Window.ViewFit.md
+++ b/api/Visio.Window.ViewFit.md
@@ -23,7 +23,7 @@ Determines which auto-fit mode a window is in, if any. Read/write.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Window.Visible.md b/api/Visio.Window.Visible.md
index 91d83e15eec..ab24688846f 100644
--- a/api/Visio.Window.Visible.md
+++ b/api/Visio.Window.Visible.md
@@ -23,7 +23,7 @@ Determines whether a window is visible. Read/write.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Window.WindowActivated.md b/api/Visio.Window.WindowActivated.md
index 28acdbd3d64..1870c541cd9 100644
--- a/api/Visio.Window.WindowActivated.md
+++ b/api/Visio.Window.WindowActivated.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'WindowActivated'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that was activated.|
diff --git a/api/Visio.Window.WindowChanged.md b/api/Visio.Window.WindowChanged.md
index 411a2e80279..2c0f8720e57 100644
--- a/api/Visio.Window.WindowChanged.md
+++ b/api/Visio.Window.WindowChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'WindowChanged'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window whose size or position has changed.|
diff --git a/api/Visio.Window.WindowCloseCanceled.md b/api/Visio.Window.WindowCloseCanceled.md
index d9ea3247cf1..16510edfaa7 100644
--- a/api/Visio.Window.WindowCloseCanceled.md
+++ b/api/Visio.Window.WindowCloseCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'WindowCloseCanceled'(**_ByVal Window As [IVWINDOW]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that was going to be closed.|
diff --git a/api/Visio.Window.WindowHandle32.md b/api/Visio.Window.WindowHandle32.md
index b684420eeb6..73407c02cd1 100644
--- a/api/Visio.Window.WindowHandle32.md
+++ b/api/Visio.Window.WindowHandle32.md
@@ -23,7 +23,7 @@ Returns the 32-bit handle of a Microsoft Visio window. Read-only.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Window.WindowState.md b/api/Visio.Window.WindowState.md
index a897d7bcdea..c2bdcccd334 100644
--- a/api/Visio.Window.WindowState.md
+++ b/api/Visio.Window.WindowState.md
@@ -23,7 +23,7 @@ Gets or sets the state of a window. Read/write.
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Long
diff --git a/api/Visio.Window.WindowTurnedToPage.md b/api/Visio.Window.WindowTurnedToPage.md
index 42629e40b3c..90bed0d75db 100644
--- a/api/Visio.Window.WindowTurnedToPage.md
+++ b/api/Visio.Window.WindowTurnedToPage.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'WindowTurnedToPage'(**_ByVal Window As [IVWINDOW]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that shows a different page.|
diff --git a/api/Visio.Window.Windows.md b/api/Visio.Window.Windows.md
index e821365bcbf..c288b4be50c 100644
--- a/api/Visio.Window.Windows.md
+++ b/api/Visio.Window.Windows.md
@@ -23,7 +23,7 @@ Returns the **Windows** collection for a Microsoft Visio instance or window. Re
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Windows
diff --git a/api/Visio.Window.Zoom.md b/api/Visio.Window.Zoom.md
index e029958cc96..801b83f633b 100644
--- a/api/Visio.Window.Zoom.md
+++ b/api/Visio.Window.Zoom.md
@@ -23,7 +23,7 @@ Gets or sets the current display size (magnification factor) for a page in a win
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Double
diff --git a/api/Visio.Window.ZoomBehavior.md b/api/Visio.Window.ZoomBehavior.md
index 6a2c90bb67a..07405dadd16 100644
--- a/api/Visio.Window.ZoomBehavior.md
+++ b/api/Visio.Window.ZoomBehavior.md
@@ -23,7 +23,7 @@ Determines the zoom behavior for a Microsoft Visio document or window. Read/writ
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
VisZoomBehavior
diff --git a/api/Visio.Window.ZoomLock.md b/api/Visio.Window.ZoomLock.md
index 6f2927f39b1..43f44a825ed 100644
--- a/api/Visio.Window.ZoomLock.md
+++ b/api/Visio.Window.ZoomLock.md
@@ -23,7 +23,7 @@ Determines whether zooming is disabled in a Microsoft Visio drawing window. Read
_expression_ A variable that represents a [Window](./Visio.Window.md) object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Visio.Windows.Add.md b/api/Visio.Windows.Add.md
index 09ecf488d17..d6ff6933fe4 100644
--- a/api/Visio.Windows.Add.md
+++ b/api/Visio.Windows.Add.md
@@ -27,7 +27,7 @@ Adds a new **Window** object to the **Windows** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _bstrCaption_|Optional| **Variant**|The title of window; default is "Untitled".|
| _nFlags_|Optional| **Variant**| Initial window state. Can contain any combination of **[VisWindowStates](Visio.viswindowstates.md)** constants declared in the Visio type library; default varies based on the _nType_.|
@@ -40,7 +40,7 @@ Adds a new **Window** object to the **Windows** collection.
| _bstrMergeClass_|Optional| **Variant**|Merge class of the window.|
| _nMergePosition_|Optional| **Variant**|Merge position of the window.|
-### Return Value
+### Return value
Window
diff --git a/api/Visio.Windows.Application.md b/api/Visio.Windows.Application.md
index b8c9f4ebc60..e82c254530a 100644
--- a/api/Visio.Windows.Application.md
+++ b/api/Visio.Windows.Application.md
@@ -23,7 +23,7 @@ Returns the instance of Microsoft Visio that is associated with an object. Read-
_expression_ A variable that represents a [Windows](./Visio.Windows.md) object.
-### Return Value
+### Return value
Application
diff --git a/api/Visio.Windows.Arrange.md b/api/Visio.Windows.Arrange.md
index 9c3fea91609..1d3ddef05c0 100644
--- a/api/Visio.Windows.Arrange.md
+++ b/api/Visio.Windows.Arrange.md
@@ -27,11 +27,11 @@ Arranges the windows in a **Windows** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nArrangeFlags_|Optional| **Variant**|A flag that specifies how to arrange the windows; by default, the windows are arranged vertically.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.Windows.BeforeWindowClosed.md b/api/Visio.Windows.BeforeWindowClosed.md
index 69f2692fc65..e567efb19f0 100644
--- a/api/Visio.Windows.BeforeWindowClosed.md
+++ b/api/Visio.Windows.BeforeWindowClosed.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeWindowClosed'(**_ByVal Window As [IVWINDOW]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that is going to be closed.|
diff --git a/api/Visio.Windows.BeforeWindowPageTurn.md b/api/Visio.Windows.BeforeWindowPageTurn.md
index 1f9383911c8..f25567509eb 100644
--- a/api/Visio.Windows.BeforeWindowPageTurn.md
+++ b/api/Visio.Windows.BeforeWindowPageTurn.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeWindowPageTurn'(**_ByVal Window As [IVWINDOW]_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that is going to show a different page.|
diff --git a/api/Visio.Windows.BeforeWindowSelDelete.md b/api/Visio.Windows.BeforeWindowSelDelete.md
index 8d049ca8cf9..284338aaf2e 100644
--- a/api/Visio.Windows.BeforeWindowSelDelete.md
+++ b/api/Visio.Windows.BeforeWindowSelDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BeforeWindowSelDelete'(**_ByVal Window As [IVWINDOW]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that contains the selection that is going to be deleted.|
diff --git a/api/Visio.Windows.Count.md b/api/Visio.Windows.Count.md
index 5816e7f756b..2e92361da57 100644
--- a/api/Visio.Windows.Count.md
+++ b/api/Visio.Windows.Count.md
@@ -23,7 +23,7 @@ Returns the number of objects in a collection. Read-only.
_expression_ A variable that represents a [Windows](./Visio.Windows.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Windows.EventList.md b/api/Visio.Windows.EventList.md
index 671ea0e9d46..1429b5b8630 100644
--- a/api/Visio.Windows.EventList.md
+++ b/api/Visio.Windows.EventList.md
@@ -23,7 +23,7 @@ Returns the **EventList** collection of an object or the **EventList** collecti
_expression_ A variable that represents a [Windows](./Visio.Windows.md) object.
-### Return Value
+### Return value
EventList
diff --git a/api/Visio.Windows.Item.md b/api/Visio.Windows.Item.md
index c8b7aa983fb..967ba91869e 100644
--- a/api/Visio.Windows.Item.md
+++ b/api/Visio.Windows.Item.md
@@ -27,11 +27,11 @@ Returns an item from a collection. The **Item** property is the default propert
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Integer**|The index number of the object in its collection.|
-### Return Value
+### Return value
Window
diff --git a/api/Visio.Windows.ItemEx.md b/api/Visio.Windows.ItemEx.md
index c5add87885a..ca2cea8344f 100644
--- a/api/Visio.Windows.ItemEx.md
+++ b/api/Visio.Windows.ItemEx.md
@@ -27,11 +27,11 @@ Returns a **Window** object from a collection. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CaptionOrIndex_|Required| **Variant**|Contains the caption or index of the window to retrieve. See Remarks for details.|
-### Return Value
+### Return value
Window
diff --git a/api/Visio.Windows.ItemFromID.md b/api/Visio.Windows.ItemFromID.md
index d2e52716e48..f1832875eaa 100644
--- a/api/Visio.Windows.ItemFromID.md
+++ b/api/Visio.Windows.ItemFromID.md
@@ -27,11 +27,11 @@ Returns an item of a collection using the ID of the item. Read-only.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _nID_|Required| **Long**|The ID of the object to retrieve.|
-### Return Value
+### Return value
Window
diff --git a/api/Visio.Windows.KeyDown.md b/api/Visio.Windows.KeyDown.md
index 706164a281a..241c7bfcf06 100644
--- a/api/Visio.Windows.KeyDown.md
+++ b/api/Visio.Windows.KeyDown.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'KeyDown'(**_ByVal KeyCode As Long_** , **_ByVal KeyB
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCode_|Required| **Long**|The key that was pressed. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.Windows.KeyPress.md b/api/Visio.Windows.KeyPress.md
index c7b926faa65..d9343f2bf26 100644
--- a/api/Visio.Windows.KeyPress.md
+++ b/api/Visio.Windows.KeyPress.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'KeyPress'(**_ByVal KeyAscii As Long_** , **_ByVal Ca
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyAscii_|Required| **Long**|The ASCII value of the key that was pressed. See Remarks for possible values.|
| _CancelDefault_|Required| **Boolean**| **False** if Microsoft Visio should process the message it receives from this event; otherwise, **True** .|
diff --git a/api/Visio.Windows.KeyUp.md b/api/Visio.Windows.KeyUp.md
index b0551b61f6f..c64da44173c 100644
--- a/api/Visio.Windows.KeyUp.md
+++ b/api/Visio.Windows.KeyUp.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'KeyUp'(**_ByVal KeyCode As Long_** , **_ByVal KeyBut
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCode_|Required| **Long**|The key that was released. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.Windows.MouseDown.md b/api/Visio.Windows.MouseDown.md
index bd8334871aa..a512755c858 100644
--- a/api/Visio.Windows.MouseDown.md
+++ b/api/Visio.Windows.MouseDown.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MouseDown'(**_ByVal Button As Long_** , **_ByVal Key
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Button_|Required| **Long**|The mouse button that was pressed. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the mouse buttons and the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.Windows.MouseMove.md b/api/Visio.Windows.MouseMove.md
index 94fe621cde6..db665ef0cec 100644
--- a/api/Visio.Windows.MouseMove.md
+++ b/api/Visio.Windows.MouseMove.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MouseMove'(**_ByVal Button As Long_** , **_ByVal Key
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Button_|Required| **Long**|The mouse button that was clicked. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the mouse buttons and the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.Windows.MouseUp.md b/api/Visio.Windows.MouseUp.md
index 50d965f29c8..d98d5df13aa 100644
--- a/api/Visio.Windows.MouseUp.md
+++ b/api/Visio.Windows.MouseUp.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MouseUp'(**_ByVal Button As Long_** , **_ByVal KeyBu
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Button_|Required| **Long**|The mouse button that was released. See Remarks for possible values.|
| _KeyButtonState_|Required| **Long**|The state of the mouse buttons and the SHIFT and CTRL keys for the event. See Remarks for possible values.|
diff --git a/api/Visio.Windows.ObjectType.md b/api/Visio.Windows.ObjectType.md
index 04af45e8a62..6b4c5628aa3 100644
--- a/api/Visio.Windows.ObjectType.md
+++ b/api/Visio.Windows.ObjectType.md
@@ -23,7 +23,7 @@ Returns an object's type. Read-only.
_expression_ A variable that represents a [Windows](./Visio.Windows.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Windows.OnKeystrokeMessageForAddon.md b/api/Visio.Windows.OnKeystrokeMessageForAddon.md
index 853a1f65fa8..1c34fd8602a 100644
--- a/api/Visio.Windows.OnKeystrokeMessageForAddon.md
+++ b/api/Visio.Windows.OnKeystrokeMessageForAddon.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'OnKeystrokeMessageForAddon'(**_ByVal MSG As [IVMSGWR
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MSG_|Required| **[IVMSGWRAP]**|The message that Visio receives.|
diff --git a/api/Visio.Windows.PersistsEvents.md b/api/Visio.Windows.PersistsEvents.md
index 12681e190bf..95f434c7306 100644
--- a/api/Visio.Windows.PersistsEvents.md
+++ b/api/Visio.Windows.PersistsEvents.md
@@ -23,7 +23,7 @@ Indicates whether an object is capable of containing persistent events in its *
_expression_ A variable that represents a [Windows](./Visio.Windows.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.Windows.QueryCancelWindowClose.md b/api/Visio.Windows.QueryCancelWindowClose.md
index d0d70ae48fd..6e7c05d93af 100644
--- a/api/Visio.Windows.QueryCancelWindowClose.md
+++ b/api/Visio.Windows.QueryCancelWindowClose.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'QueryCancelWindowClose'(**_ByVal Window As [IVWINDOW
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that is going to be closed.|
diff --git a/api/Visio.Windows.SelectionChanged.md b/api/Visio.Windows.SelectionChanged.md
index fe31e86e4c3..32076b81ae8 100644
--- a/api/Visio.Windows.SelectionChanged.md
+++ b/api/Visio.Windows.SelectionChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'SelectionChanged'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window in which the selection changed.|
diff --git a/api/Visio.Windows.ViewChanged.md b/api/Visio.Windows.ViewChanged.md
index 193b1b72063..458a2d7d946 100644
--- a/api/Visio.Windows.ViewChanged.md
+++ b/api/Visio.Windows.ViewChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ViewChanged'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window whose zoom level or scroll position changed.|
diff --git a/api/Visio.Windows.WindowActivated.md b/api/Visio.Windows.WindowActivated.md
index bb511da3bf9..c18ad3f76dd 100644
--- a/api/Visio.Windows.WindowActivated.md
+++ b/api/Visio.Windows.WindowActivated.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'WindowActivated'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that was activated.|
diff --git a/api/Visio.Windows.WindowChanged.md b/api/Visio.Windows.WindowChanged.md
index 7cbc550d12e..7bcd997f3b1 100644
--- a/api/Visio.Windows.WindowChanged.md
+++ b/api/Visio.Windows.WindowChanged.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'WindowChanged'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window whose size or position has changed.|
diff --git a/api/Visio.Windows.WindowCloseCanceled.md b/api/Visio.Windows.WindowCloseCanceled.md
index 192ad57d331..51e9713af2b 100644
--- a/api/Visio.Windows.WindowCloseCanceled.md
+++ b/api/Visio.Windows.WindowCloseCanceled.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'WindowCloseCanceled'(**_ByVal Window As [IVWINDOW]_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that was going to be closed.|
diff --git a/api/Visio.Windows.WindowOpened.md b/api/Visio.Windows.WindowOpened.md
index 2e919903bad..ef61eb69bf6 100644
--- a/api/Visio.Windows.WindowOpened.md
+++ b/api/Visio.Windows.WindowOpened.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'WindowOpened'(**_ByVal Window As [IVWINDOW]_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that opened.|
diff --git a/api/Visio.Windows.WindowTurnedToPage.md b/api/Visio.Windows.WindowTurnedToPage.md
index cb670840acb..6895079b420 100644
--- a/api/Visio.Windows.WindowTurnedToPage.md
+++ b/api/Visio.Windows.WindowTurnedToPage.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'WindowTurnedToPage'(**_ByVal Window As [IVWINDOW]_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Required| **[IVWINDOW]**|The window that shows a different page.|
diff --git a/api/Visio.ZoomToPoint.md b/api/Visio.ZoomToPoint.md
index 8a7ec35430a..2668e6f8066 100644
--- a/api/Visio.ZoomToPoint.md
+++ b/api/Visio.ZoomToPoint.md
@@ -24,13 +24,13 @@ Resizes the drawing that is open in Microsoft Visio Viewer to the specified perc
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|X|Required| **Long**|The x-coordinate, in pixels in the coordinate system of the Visio Viewer window, of the point to place the upper left corner of the drawing.|
|Y|Required| **Long**|The y-coordinate, in pixels in the coordinate system of the Visio Viewer window, of the point to place the upper left corner of the drawing.|
|Percentage|Required| **Double**|The percentage of zoom.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.ZoomToRect.md b/api/Visio.ZoomToRect.md
index a1478dc9db0..12f6ff9d092 100644
--- a/api/Visio.ZoomToRect.md
+++ b/api/Visio.ZoomToRect.md
@@ -24,14 +24,14 @@ Zooms to display a rectanglular section, specified by the parameters, of the dra
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Left|Required| **Long**|The x-coordinate of the top left corner of the rectangle to zoom to.|
|Top|Required| **Long**|The y-coordinate of the top left corner of the rectangle to zoom to.|
|Right|Required| **Long**|The x-coordinate of the bottom right corner of the rectangle to zoom to.|
|Bottom|Required| **Long**|The y-coordinate of the bottom right corner of the rectangle to zoom to.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.applicationsettings.getrasterexportresolution.md b/api/Visio.applicationsettings.getrasterexportresolution.md
index a14f6d9a6de..9baab28e44b 100644
--- a/api/Visio.applicationsettings.getrasterexportresolution.md
+++ b/api/Visio.applicationsettings.getrasterexportresolution.md
@@ -25,7 +25,7 @@ Returns the raster export resolution settings.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pResolution_|Required| **VisRasterExportResolution**|Out parameter. The raster export resolution. See Remarks for possible values.|
| _pWidth_|Required| **Double**|Out parameter. The raster export resolution width.|
@@ -37,7 +37,7 @@ Returns the raster export resolution settings.
| _pResolutionUnits_|Required|VISRASTEREXPORTRESOLUTIONUNITS||
|Name|Required/Optional|Data type|Description|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.applicationsettings.getrasterexportsize.md b/api/Visio.applicationsettings.getrasterexportsize.md
index f5f02830a0a..e04bd921bfb 100644
--- a/api/Visio.applicationsettings.getrasterexportsize.md
+++ b/api/Visio.applicationsettings.getrasterexportsize.md
@@ -25,7 +25,7 @@ Gets the raster export size.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _pSize_|Required| **VisRasterExportSize**|Out parameter. The raster export size. See Remarks for possible values.|
| _pWidth_|Required| **Double**|Out parameter. The raster export size width. |
@@ -37,7 +37,7 @@ Gets the raster export size.
| _pSizeUnits_|Required|VISRASTEREXPORTSIZEUNITS||
|Name|Required/Optional|Data type|Description|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.applicationsettings.setrasterexportresolution.md b/api/Visio.applicationsettings.setrasterexportresolution.md
index 544f5fc0e64..7e19b4da224 100644
--- a/api/Visio.applicationsettings.setrasterexportresolution.md
+++ b/api/Visio.applicationsettings.setrasterexportresolution.md
@@ -21,7 +21,7 @@ _expression_ An expression that returns an **[ApplicationSettings](Visio.Applica
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _resolution_|Required|**VisRasterExportResolution**|The raster export resolution. For possible values, see [Remarks](#remarks).|
| _Width_|Optional|**Double**|The raster export resolution width. Must be greater than or equal to 1.|
diff --git a/api/Visio.applicationsettings.setrasterexportsize.md b/api/Visio.applicationsettings.setrasterexportsize.md
index f2c1d2413e1..40c9992ad6d 100644
--- a/api/Visio.applicationsettings.setrasterexportsize.md
+++ b/api/Visio.applicationsettings.setrasterexportsize.md
@@ -25,7 +25,7 @@ Sets the raster export size.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _size_|Required| **VisRasterExportSize**|The raster export size. See Remarks for possible values.|
| _Width_|Optional| **Double**|The raster export size width. Must be greater than or equal to 1.|
@@ -37,7 +37,7 @@ Sets the raster export size.
| _sizeUnits_|Optional|VISRASTEREXPORTSIZEUNITS||
|Name|Required/Optional|Data type|Description|
-### Return Value
+### Return value
Nothing
diff --git a/api/Visio.comments.item.md b/api/Visio.comments.item.md
index 1e5ca0599ca..88a6dcffcbc 100644
--- a/api/Visio.comments.item.md
+++ b/api/Visio.comments.item.md
@@ -22,11 +22,11 @@ Returns an object from a collection. The **Item** property is the default prope
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Contains the index of the object to retrieve.|
-### Return Value
+### Return value
**Comment**
diff --git a/api/Visio.containerproperties.document.md b/api/Visio.containerproperties.document.md
index bd8f67483cc..a64c0c2126f 100644
--- a/api/Visio.containerproperties.document.md
+++ b/api/Visio.containerproperties.document.md
@@ -21,7 +21,7 @@ Gets the **[Document](Visio.Document.md)** object that is associated with the *
_expression_ An expression that returns a [ContainerProperties](./Visio.ContainerProperties.md) object.
-### Return Value
+### Return value
**Document**
diff --git a/api/Visio.invisibleapp.isvisio32.md b/api/Visio.invisibleapp.isvisio32.md
index ee65f5ae25b..87308572231 100644
--- a/api/Visio.invisibleapp.isvisio32.md
+++ b/api/Visio.invisibleapp.isvisio32.md
@@ -21,7 +21,7 @@ Returns **True** if the current instance of Visio is 32-bit. Returns **False**
_expression_ An expression that returns a [InvisibleApp](./Visio.InvisibleApp.md) object.
-### Return Value
+### Return value
Integer
diff --git a/api/Visio.master.visualboundingbox.md b/api/Visio.master.visualboundingbox.md
index 1a3265031b4..073035ee291 100644
--- a/api/Visio.master.visualboundingbox.md
+++ b/api/Visio.master.visualboundingbox.md
@@ -30,7 +30,7 @@ Returns the bounding rectangle of the virtual container that has all the shapes
| _lpr8Right_|Required|DOUBLE|Right position values for the virtual bounding box.|
| _lpr8Top_|Required|DOUBLE|Top position values for the virtual bounding box.|
-### Return Value
+### Return value
**VOID**
diff --git a/api/Visio.page.autosize.md b/api/Visio.page.autosize.md
index fa173543f2f..f6e2add0946 100644
--- a/api/Visio.page.autosize.md
+++ b/api/Visio.page.autosize.md
@@ -21,7 +21,7 @@ Determines whether Microsoft Visio automatically resizes the drawing page by add
_expression_ An expression that returns a '[Page](Visio.Page.md)' object.
-### Return Value
+### Return value
**Boolean**
diff --git a/api/Visio.page.visualboundingbox.md b/api/Visio.page.visualboundingbox.md
index 556e5987624..8e43b2b2083 100644
--- a/api/Visio.page.visualboundingbox.md
+++ b/api/Visio.page.visualboundingbox.md
@@ -30,7 +30,7 @@ Returns the bounding rectangle of the virtual container that has all the shapes
| _lpr8Right_|Required|DOUBLE|Right position values for the virtual bounding box.|
| _lpr8Top_|Required|DOUBLE|Top position values for the virtual bounding box.|
-### Return Value
+### Return value
**VOID**
diff --git a/api/Visio.selection.visualboundingbox.md b/api/Visio.selection.visualboundingbox.md
index 5d84709cba1..7e6f36e3a4b 100644
--- a/api/Visio.selection.visualboundingbox.md
+++ b/api/Visio.selection.visualboundingbox.md
@@ -30,7 +30,7 @@ Returns the bounding rectangle of the virtual container that has all the shapes
| _lpr8Right_|Required|DOUBLE|Right position values for the virtual bounding box.|
| _lpr8Top_|Required|DOUBLE|Top position values for the virtual bounding box.|
-### Return Value
+### Return value
**VOID**
diff --git a/api/Visio.shape.visualboundingbox.md b/api/Visio.shape.visualboundingbox.md
index c756bc6da5d..3bd6114c9e3 100644
--- a/api/Visio.shape.visualboundingbox.md
+++ b/api/Visio.shape.visualboundingbox.md
@@ -30,7 +30,7 @@ Returns the bounding rectangle of the given shape. Introduced in Office 2016.
| _lpr8Right_|Required|DOUBLE|Right position values for the virtual bounding box.|
| _lpr8Top_|Required|DOUBLE|Top position values for the virtual bounding box.|
-### Return Value
+### Return value
**VOID**
diff --git a/api/Visio.viewer.backcolor.property.md b/api/Visio.viewer.backcolor.property.md
index 5bd30752021..8c388daa7b2 100644
--- a/api/Visio.viewer.backcolor.property.md
+++ b/api/Visio.viewer.backcolor.property.md
@@ -18,7 +18,7 @@ Gets or sets the background color of Microsoft Visio Viewer. Read/write.
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**[OLE_COLOR]**
diff --git a/api/Visio.viewer.src.property.md b/api/Visio.viewer.src.property.md
index 66c86f39cc4..3f8adbe1aff 100644
--- a/api/Visio.viewer.src.property.md
+++ b/api/Visio.viewer.src.property.md
@@ -18,7 +18,7 @@ Gets or sets the path to the source file for the drawing in Microsoft Visio View
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
String
diff --git a/api/Visio.viewer.zoom.property.md b/api/Visio.viewer.zoom.property.md
index 73ac8540bbd..f05ee2f19ff 100644
--- a/api/Visio.viewer.zoom.property.md
+++ b/api/Visio.viewer.zoom.property.md
@@ -18,7 +18,7 @@ Gets or sets the percentage of zoom for Microsoft Visio Viewer. Read/write.
_expression_An expression that returns a **Viewer** object.
-### Return Value
+### Return value
**Double**
diff --git a/api/Visio.visautoconnectdir.md b/api/Visio.visautoconnectdir.md
index f096dba8168..e60323221fc 100644
--- a/api/Visio.visautoconnectdir.md
+++ b/api/Visio.visautoconnectdir.md
@@ -15,7 +15,7 @@ Auto-connect direction constants passed to the **Shape.AutoConnect** method.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visAutoConnectDirDown**|2|Place shape below.|
| **visAutoConnectDirLeft**|3|Place shape to the left.|
diff --git a/api/Visio.visautolinkbehaviors.md b/api/Visio.visautolinkbehaviors.md
index e1e8f4fb9a8..e9b88446c94 100644
--- a/api/Visio.visautolinkbehaviors.md
+++ b/api/Visio.visautolinkbehaviors.md
@@ -18,7 +18,7 @@ Linking behavior constants passed to the **[Selection.AutomaticLink](Visio.Sele
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visAutoLinkDontReplaceExistingLinks**|16|Do not replace existing links.|
| **visAutoLinkGenericProgressBar**|2|Show generic progress bar instead of more detailed one.|
diff --git a/api/Visio.visautolinkfieldtypes.md b/api/Visio.visautolinkfieldtypes.md
index e328e24c040..6931b59ee2a 100644
--- a/api/Visio.visautolinkfieldtypes.md
+++ b/api/Visio.visautolinkfieldtypes.md
@@ -18,7 +18,7 @@ Constants passed to the **Selection.AutomaticLink** method, specifying the shap
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visAutoLinkCustPropsLabel**|2|Field is label for shape data (custom property); field name is label and is required.|
| ** visAutoLinkGeometryAngle**|4|Field is angle in shape geometry.|
diff --git a/api/Visio.visdatacolumnproperties.md b/api/Visio.visdatacolumnproperties.md
index d9fb7a9764a..2919acf5e13 100644
--- a/api/Visio.visdatacolumnproperties.md
+++ b/api/Visio.visdatacolumnproperties.md
@@ -18,7 +18,7 @@ Data-column-property constants passed to the **[DataColumn.SetProperty](Visio.D
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visDataColumnPropertyCalendar**|3|Calendar property of the data column.|
| **visDataColumnPropertyCurrency**|5|Currency property of the data column.|
diff --git a/api/Visio.visdatarecordsetaddoptions.md b/api/Visio.visdatarecordsetaddoptions.md
index c5d9f247d4a..192071ec7b8 100644
--- a/api/Visio.visdatarecordsetaddoptions.md
+++ b/api/Visio.visdatarecordsetaddoptions.md
@@ -18,7 +18,7 @@ Constants passed to the **DataRecordsets.Add** method, specifying characteristi
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visDataRecordsetNoExternalDataUI**|1|Prevents data in the new data recordset from being displayed in the **External Data** window.|
| **visDataRecordsetNoRefreshUI**|2|Prevents the data recordset from being displayed in the **Refresh Data** dialog box.|
diff --git a/api/Visio.visdocexintent.md b/api/Visio.visdocexintent.md
index 0a5ee0cff07..f00d9e0a502 100644
--- a/api/Visio.visdocexintent.md
+++ b/api/Visio.visdocexintent.md
@@ -12,7 +12,7 @@ Export intent constants passed to the **[Document.ExportAsFixedFormat](Visio.Do
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visDocExIntentPrint**|1|Intent is to publish online and to print.|
| **visDocExIntentScreen**|0|Intent is to publish online.|
diff --git a/api/Visio.visdrawregionflags.md b/api/Visio.visdrawregionflags.md
index 5d3a525673e..e378c252d22 100644
--- a/api/Visio.visdrawregionflags.md
+++ b/api/Visio.visdrawregionflags.md
@@ -15,7 +15,7 @@ Flags to pass to the **Selection.DrawRegion** method.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visDrawRegionDeleteInput**|&;H4|Delete items in selection.|
| **visDrawRegionIgnoreVisible**|&;H20|Exclude visible geometry.|
diff --git a/api/Visio.visfilteractions.md b/api/Visio.visfilteractions.md
index 22a098e5ed3..5eba6907a75 100644
--- a/api/Visio.visfilteractions.md
+++ b/api/Visio.visfilteractions.md
@@ -12,7 +12,7 @@ Drag-state extensions of the **MouseMove** event to filter, corresponding to us
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visFilterMouseMoveDragBegin**|1|Filter the **DragBegin** extension of the **MouseMove** event.|
| **visFilterMouseMoveDragDrop**|5|Filter the **DragDrop** extension of the **MouseMove** event.|
diff --git a/api/Visio.visfixedformattypes.md b/api/Visio.visfixedformattypes.md
index b076dd11e49..e8cfdab8937 100644
--- a/api/Visio.visfixedformattypes.md
+++ b/api/Visio.visfixedformattypes.md
@@ -15,7 +15,7 @@ File format types passed to the **Document.ExportAsFixedFormat** method.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visFixedFormatPDF**|1|PDF format.|
| **visFixedFormatXPS**|2|XPS format.|
diff --git a/api/Visio.visgraphicfield.md b/api/Visio.visgraphicfield.md
index b9e5066f5f7..06d09f09e51 100644
--- a/api/Visio.visgraphicfield.md
+++ b/api/Visio.visgraphicfield.md
@@ -18,7 +18,7 @@ Graphic item primary-data-field constants passed to the **[GraphicItem.SetExpre
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visGraphicExpression**|2|The ShapeSheet formula of a shape data item.|
| **visGraphicPropertyLabel**|1|The label of a shape data item.|
diff --git a/api/Visio.visgraphicitemtypes.md b/api/Visio.visgraphicitemtypes.md
index fa12ef3533a..3519f6b0cb8 100644
--- a/api/Visio.visgraphicitemtypes.md
+++ b/api/Visio.visgraphicitemtypes.md
@@ -18,7 +18,7 @@ Represent the types of graphic items that can be added to data graphics. Returne
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visTypeIconSet**|2|Represents an **Icon Set** graphic item.|
| **visTypeTextCallout**|3|Represents a **Text** graphic item.|
diff --git a/api/Visio.visgraphicpositionhorizontal.md b/api/Visio.visgraphicpositionhorizontal.md
index 2ff2e4a039e..6ee6e8f1ca9 100644
--- a/api/Visio.visgraphicpositionhorizontal.md
+++ b/api/Visio.visgraphicpositionhorizontal.md
@@ -18,7 +18,7 @@ Constants passed to and returned by the **GraphicItem.HorizontalPosition** prop
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visGraphicFarLeft**|0|The right edge of the graphic item's alignment box is aligned with the left edge of the shape or container's alignment box.|
| **visGraphicLeftEdge**|1|The vertical centerline of the graphic item's alignment box is aligned with the left edge of the shape or container's alignment box.|
diff --git a/api/Visio.visgraphicpositionvertical.md b/api/Visio.visgraphicpositionvertical.md
index 48fd938d8db..e11f2de1ab4 100644
--- a/api/Visio.visgraphicpositionvertical.md
+++ b/api/Visio.visgraphicpositionvertical.md
@@ -18,7 +18,7 @@ Constants passed to and returned by the **GraphicItem.VerticalPosition** proper
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visGraphicBelow**|0|The top edge of the graphic item's alignment box is aligned with the bottom edge of the shape or container's alignment box.|
| **visGraphicBottomEdge**|1|The horizontal centerline of the graphic item's alignment box is aligned with the bottom edge of the shape or container's alignment box.|
diff --git a/api/Visio.vislinkreplacebehavior.md b/api/Visio.vislinkreplacebehavior.md
index 0f322dfe538..65540310c7f 100644
--- a/api/Visio.vislinkreplacebehavior.md
+++ b/api/Visio.vislinkreplacebehavior.md
@@ -18,7 +18,7 @@ Link replacement behavior constants passed to and returned by the **[DataRecord
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visLinkReplaceAlways**|1|Always replace links when linking to a shape that has existing links.|
| **visLinkReplaceNever**|0|Never replace links when linking to a shape that has existing links.|
diff --git a/api/Visio.vismastertypes.md b/api/Visio.vismastertypes.md
index f8b41d369a7..1053b3eec41 100644
--- a/api/Visio.vismastertypes.md
+++ b/api/Visio.vismastertypes.md
@@ -15,7 +15,7 @@ Master-type constants passed to the **[Masters.AddEx](Visio.Masters.AddEx.md)**
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visTypeDataGraphic**|5|Data graphic master.|
| **visTypeFillPattern**|2|Fill pattern master.|
diff --git a/api/Visio.vismousemovedragstates.md b/api/Visio.vismousemovedragstates.md
index e98ef9e994d..3459a7d7616 100644
--- a/api/Visio.vismousemovedragstates.md
+++ b/api/Visio.vismousemovedragstates.md
@@ -15,7 +15,7 @@ Constants returned by the **MouseEvent.DragState** property.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visMouseMoveDragStatesBegin**|1|User is beginning to drag an object with the mouse.|
| **visMouseMoveDragStatesDrop**|5|User dropped the dragged object in the drop-target window.|
diff --git a/api/Visio.visprimarykeysettings.md b/api/Visio.visprimarykeysettings.md
index 8bce7bf6406..afb03fbd541 100644
--- a/api/Visio.visprimarykeysettings.md
+++ b/api/Visio.visprimarykeysettings.md
@@ -18,7 +18,7 @@ Primary key settings constants passed to the **[DataRecordset.SetPrimaryKey](Vi
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| ** visKeyComposite**|3|Use multiple columns as primary key columns.|
| **visKeyRowOrder**|1|Use row order as the primary key.|
diff --git a/api/Visio.visquickstylecolors.md b/api/Visio.visquickstylecolors.md
index d0367c60f48..ccbb0ed0b9a 100644
--- a/api/Visio.visquickstylecolors.md
+++ b/api/Visio.visquickstylecolors.md
@@ -15,7 +15,7 @@ Quick style color constants passed to the [Selection.SetQuickStyle](Visio.select
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
||||
| **visQuickStyleColorAccent1**| **2**|Color accent 1|
diff --git a/api/Visio.visquickstylematrixindices.md b/api/Visio.visquickstylematrixindices.md
index dab1a47ba7d..46670eef5fd 100644
--- a/api/Visio.visquickstylematrixindices.md
+++ b/api/Visio.visquickstylematrixindices.md
@@ -15,7 +15,7 @@ Quick Style shape-style constants passed to the [Selection.SetQuickStyle](Visio.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
||||
| **visQuickStyleMatrixNone**| **0**|No matrix theme|
diff --git a/api/Visio.visrefreshsettings.md b/api/Visio.visrefreshsettings.md
index efbd6a56197..70b6affbdf3 100644
--- a/api/Visio.visrefreshsettings.md
+++ b/api/Visio.visrefreshsettings.md
@@ -18,7 +18,7 @@ Data recordset refresh constants passed to and returned by the **[DataRecordset
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visRefreshNoReconcilationUI**|2|Disables display of the **Refresh Conflicts** task pane in the Microsoft Visio user interface after data is refreshed.|
| **visRefreshOverwriteAll**|1|When data is refreshed, overwrites all user changes made since the previous refresh operation.|
diff --git a/api/Visio.visremovehiddeninfoitems.md b/api/Visio.visremovehiddeninfoitems.md
index dd81a2bfb4f..f15baa0f1a9 100644
--- a/api/Visio.visremovehiddeninfoitems.md
+++ b/api/Visio.visremovehiddeninfoitems.md
@@ -15,7 +15,7 @@ Document information constants passed to the **Document.RemoveHiddenInformation
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visRHIDataRecordsets**|16|Data recordsets.|
| **visRHIMasters**|4|Unused masters|
diff --git a/api/Visio.visreplaceflags.md b/api/Visio.visreplaceflags.md
index db36973aca0..fe3ab869c35 100644
--- a/api/Visio.visreplaceflags.md
+++ b/api/Visio.visreplaceflags.md
@@ -15,7 +15,7 @@ Shape-replacement flags sent to the [Shape.ReplaceShape](Visio.shape.replaceshap
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
||||
| **visReplaceShapeDefault**| **0**|Use the behavior specified by the ShapeSheet cells ReplaceLockText, ReplaceLockShapeData, and ReplaceLockFormat, all in the Change Shape Behavior section.|
diff --git a/api/Visio.vissvgexportformat.md b/api/Visio.vissvgexportformat.md
index 97cd7ed7a85..a01a7c3bd56 100644
--- a/api/Visio.vissvgexportformat.md
+++ b/api/Visio.vissvgexportformat.md
@@ -15,7 +15,7 @@ Constants passed to and returned by the [ApplicationSettings.SVGExportFormat](Vi
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
||||
| **visSVGExcludeVisioElements**| **1**|Include SVG elements only.|
diff --git a/api/Visio.visthemecolors.md b/api/Visio.visthemecolors.md
index 3fc884303a0..ed5dfa50933 100644
--- a/api/Visio.visthemecolors.md
+++ b/api/Visio.visthemecolors.md
@@ -15,7 +15,7 @@ Specifies theme color constants that are passed to and returned by the **[Page.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visThemeColorsNone**|0|No theme colors|
| **visThemeColorsMonochrome**|1|Monochrome|
diff --git a/api/Visio.visthemeeffects.md b/api/Visio.visthemeeffects.md
index 740dbe579e3..9399c8c0d55 100644
--- a/api/Visio.visthemeeffects.md
+++ b/api/Visio.visthemeeffects.md
@@ -15,7 +15,7 @@ Theme effects constants passed to and returned by the **Page.ThemeEffects** pro
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visThemeEffectsNone**|0|No theme effect.|
| **visThemeEffectsSubdued**|1|Subdued.|
diff --git a/api/Visio.visthemetypes.md b/api/Visio.visthemetypes.md
index ad5c8beb3a5..e28360e1e13 100644
--- a/api/Visio.visthemetypes.md
+++ b/api/Visio.visthemetypes.md
@@ -15,7 +15,7 @@ Theme types passed to the **Document.GetThemeNames** and **Document.GetThemeNam
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **visThemeTypeColor**|1|Theme colors.|
| **visThemeTypeConnector**|3|Theme connectors.|
diff --git a/api/Word.AddIns.Add.md b/api/Word.AddIns.Add.md
index a91e52cff5d..696b087c153 100644
--- a/api/Word.AddIns.Add.md
+++ b/api/Word.AddIns.Add.md
@@ -27,7 +27,7 @@ Returns an **[AddIn](Word.AddIn.md)** object that represents an add-in added to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The path for the template or WLL.|
| _Install_|Optional| **Variant**| **True** to install the add-in. **False** to add the add-in to the list of add-ins but not install it. The default value is **True** .|
diff --git a/api/Word.AddIns.Item.md b/api/Word.AddIns.Item.md
index f7b7e1226ba..a35b6d2917a 100644
--- a/api/Word.AddIns.Item.md
+++ b/api/Word.AddIns.Item.md
@@ -27,7 +27,7 @@ Returns an individual object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual add-in to be returned. Index can be an **Long** indicating the ordinal position of the add-in in the collection or a **String** representing the name of the individual add-in.|
diff --git a/api/Word.AddIns.Unload.md b/api/Word.AddIns.Unload.md
index f9e2cb97b7c..d56a638734b 100644
--- a/api/Word.AddIns.Unload.md
+++ b/api/Word.AddIns.Unload.md
@@ -27,7 +27,7 @@ Unloads all loaded add-ins and, depending on the value of the _RemoveFromList_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RemoveFromList_|Required| **Boolean**| **True** to remove the unloaded add-ins from the **AddIns** collection (the names are removed from the **Templates and Add-ins** dialog box). **False** to leave the unloaded add-ins in the collection. If the **Autoload** property for an unloaded add-in returns **True** , **Unload** cannot remove that add-in from the **AddIns** collection, regardless of the value of RemoveFromList.|
diff --git a/api/Word.Adjustments.Item.md b/api/Word.Adjustments.Item.md
index e1c5b9c4e0c..89e5fde9f13 100644
--- a/api/Word.Adjustments.Item.md
+++ b/api/Word.Adjustments.Item.md
@@ -27,7 +27,7 @@ Returns or sets the adjustment value specified by the _Index_ argument. Read/wr
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The index number of the adjustment.|
diff --git a/api/Word.Application.AddAddress.md b/api/Word.Application.AddAddress.md
index 530cc7d9fa0..3944fbe9941 100644
--- a/api/Word.Application.AddAddress.md
+++ b/api/Word.Application.AddAddress.md
@@ -24,7 +24,7 @@ _expression_ Required. A variable that represents an **[Application](Word.Applic
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TagID_|Required|**String array**|The tag ID values for the new address entry. Each element in the array can contain one of the strings listed in the [following table](#tag-ids). Only the display name is required; the remaining entries are optional.|
| _Value_|Required|**String array**|The values for the new address entry. Each element corresponds to an element in the TagID array. For more information, see the [example](#example).|
diff --git a/api/Word.Application.BuildKeyCode.md b/api/Word.Application.BuildKeyCode.md
index fd681cbbdc0..3672c3ffdb1 100644
--- a/api/Word.Application.BuildKeyCode.md
+++ b/api/Word.Application.BuildKeyCode.md
@@ -27,7 +27,7 @@ Returns a unique number for the specified key combination.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Arg1_|Required| **[WdKey](Word.WdKey.md)**|A key you specify by using one of the **WdKey** constants.|
| _Arg2 - Arg4_|Optional| **[WdKey](Word.WdKey.md)**|A key you specify by using one of the **WdKey** constants.|
diff --git a/api/Word.Application.CentimetersToPoints.md b/api/Word.Application.CentimetersToPoints.md
index 4fdd574632b..600cf57f61b 100644
--- a/api/Word.Application.CentimetersToPoints.md
+++ b/api/Word.Application.CentimetersToPoints.md
@@ -27,7 +27,7 @@ Converts a measurement from centimeters to points (1 cm = 28.35 points). Returns
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Centimeters_|Required| **Single**|The centimeter value to be converted to points.|
diff --git a/api/Word.Application.ChangeFileOpenDirectory.md b/api/Word.Application.ChangeFileOpenDirectory.md
index a2fc97be115..537ed5fd1a9 100644
--- a/api/Word.Application.ChangeFileOpenDirectory.md
+++ b/api/Word.Application.ChangeFileOpenDirectory.md
@@ -27,7 +27,7 @@ Sets the folder in which Word searches for documents.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Path_|Required| **String**|The path to the folder in which Word searches for documents.|
diff --git a/api/Word.Application.CheckGrammar.md b/api/Word.Application.CheckGrammar.md
index 2f0a93c991c..fb181eeef78 100644
--- a/api/Word.Application.CheckGrammar.md
+++ b/api/Word.Application.CheckGrammar.md
@@ -27,11 +27,11 @@ Checks a string for grammatical errors. Returns a **Boolean** to indicate wheth
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _String_|Required| **String**|The string you want to check for grammatical errors.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Application.CheckSpelling.md b/api/Word.Application.CheckSpelling.md
index b6654b2ab72..3ae545356cb 100644
--- a/api/Word.Application.CheckSpelling.md
+++ b/api/Word.Application.CheckSpelling.md
@@ -27,7 +27,7 @@ Checks a string for spelling errors. Returns a **Boolean** to indicate whether
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Word_|Required| **String**|The text whose spelling is to be checked.|
| _CustomDictionary_|Optional| **Variant**| Either an expression that returns a Dictionary object or the file name of the custom dictionary.|
@@ -43,7 +43,7 @@ Checks a string for spelling errors. Returns a **Boolean** to indicate whether
| _CustomDictionary9_|Optional| **Variant**|Either an expression that returns a **Dictionary** object or the file name of an additional custom dictionary.|
| _CustomDictionary10_|Optional| **Variant**|Either an expression that returns a **Dictionary** object or the file name of an additional custom dictionary.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Application.CleanString.md b/api/Word.Application.CleanString.md
index 7093166e6ce..28218b478ae 100644
--- a/api/Word.Application.CleanString.md
+++ b/api/Word.Application.CleanString.md
@@ -27,7 +27,7 @@ Removes nonprinting characters (character codes 1 ? 29) and special Word charact
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _String_|Required| **String**|The source string.|
diff --git a/api/Word.Application.CompareDocuments.md b/api/Word.Application.CompareDocuments.md
index ce6d97ebf8d..dbd25a86bb2 100644
--- a/api/Word.Application.CompareDocuments.md
+++ b/api/Word.Application.CompareDocuments.md
@@ -27,7 +27,7 @@ Compares two documents and returns a **Document** object that represents the do
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _OriginalDocument_|Required| **Document**|Specifies the path and file name of the original document.|
| _RevisedDocument_|Required| **Document**|Specifies the path and file name of the revised document to which to compare the original document.|
@@ -45,7 +45,7 @@ Compares two documents and returns a **Document** object that represents the do
| _RevisedAuthor_|Optional| **String**|Specifies the name of the person to whom to attribute changes when comparing the two documents.|
| _IgnoreAllComparisonWarnings_|Optional| **Boolean**|Specifies whether to ignore warnings when comparing the two documents.|
-### Return Value
+### Return value
Document
diff --git a/api/Word.Application.DDEExecute.md b/api/Word.Application.DDEExecute.md
index e60cd18903f..d7fdaced040 100644
--- a/api/Word.Application.DDEExecute.md
+++ b/api/Word.Application.DDEExecute.md
@@ -27,7 +27,7 @@ Sends a command or series of commands to an application through the specified dy
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Channel_|Required| **Long**|The channel number returned by the **DDEInitiate** method.|
| _Command_|Required| **String**|A command or series of commands recognized by the receiving application (the DDE server). If the receiving application cannot perform the specified command, an error occurs.|
diff --git a/api/Word.Application.DDEInitiate.md b/api/Word.Application.DDEInitiate.md
index d8a71c95a26..ca02712e43d 100644
--- a/api/Word.Application.DDEInitiate.md
+++ b/api/Word.Application.DDEInitiate.md
@@ -27,7 +27,7 @@ Opens a dynamic data exchange (DDE) channel to another application, and returns
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _App_|Required| **String**|The name of the application.|
| _Topic_|Required| **String**|The name of a DDE topic?for example, the name of an open document?recognized by the application to which you are opening a channel.|
diff --git a/api/Word.Application.DDEPoke.md b/api/Word.Application.DDEPoke.md
index 53e2b267abb..030eee0f596 100644
--- a/api/Word.Application.DDEPoke.md
+++ b/api/Word.Application.DDEPoke.md
@@ -27,7 +27,7 @@ Uses an open dynamic data exchange (DDE) channel to send data to an application.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Channel_|Required| **Long**|The channel number returned by the **DDEInitiate** method.|
| _Item_|Required| **String**|The item within a DDE topic to which the specified data is to be sent.|
diff --git a/api/Word.Application.DDERequest.md b/api/Word.Application.DDERequest.md
index 4742ddd6bcb..b58be580057 100644
--- a/api/Word.Application.DDERequest.md
+++ b/api/Word.Application.DDERequest.md
@@ -27,7 +27,7 @@ Uses an open dynamic data exchange (DDE) channel to request information from the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Channel_|Required| **Long**|The channel number returned by the **DDEInitiate** method.|
| _Item_|Required| **String**|The item to be requested.|
diff --git a/api/Word.Application.DDETerminate.md b/api/Word.Application.DDETerminate.md
index ce53cd4810f..cf0e8860a50 100644
--- a/api/Word.Application.DDETerminate.md
+++ b/api/Word.Application.DDETerminate.md
@@ -27,7 +27,7 @@ Closes the specified dynamic data exchange (DDE) channel to another application.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Channel_|Required| **Long**|The channel number returned by the **DDEInitiate** method.|
diff --git a/api/Word.Application.DefaultWebOptions.md b/api/Word.Application.DefaultWebOptions.md
index d97a0bc6b03..b4f37e6e175 100644
--- a/api/Word.Application.DefaultWebOptions.md
+++ b/api/Word.Application.DefaultWebOptions.md
@@ -23,7 +23,7 @@ Returns the **[DefaultWebOptions](Word.DefaultWebOptions.md)** object that cont
_expression_ Required. A variable that represents an '[Application](Word.Application.md)' object.
-### Return Value
+### Return value
DefaultWebOptions
diff --git a/api/Word.Application.DocumentBeforeClose.md b/api/Word.Application.DocumentBeforeClose.md
index 1ba03527d65..f8223c87b00 100644
--- a/api/Word.Application.DocumentBeforeClose.md
+++ b/api/Word.Application.DocumentBeforeClose.md
@@ -28,7 +28,7 @@ _expression_ A variable that represents an [Application](Word.Application.md) ob
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **[Document](Word.Document.md)**|The document that's being closed.|
| _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True**, the document doesn't close when the procedure is finished.|
diff --git a/api/Word.Application.DocumentBeforePrint.md b/api/Word.Application.DocumentBeforePrint.md
index 26f83abf601..763dbd21d5c 100644
--- a/api/Word.Application.DocumentBeforePrint.md
+++ b/api/Word.Application.DocumentBeforePrint.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DocumentBeforePrint'(**_ByVal Doc As Document_** , *
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The document that's being printed.|
| _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the document isn't printed when the procedure is finished.|
diff --git a/api/Word.Application.DocumentBeforeSave.md b/api/Word.Application.DocumentBeforeSave.md
index 66593512a83..6b3d8631507 100644
--- a/api/Word.Application.DocumentBeforeSave.md
+++ b/api/Word.Application.DocumentBeforeSave.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DocumentBeforeSave'(**_ByVal DocAs Document_** , **_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The document that is being saved.|
| _SaveAsUI_|Required| **Boolean**| **True** if the **Save As** dialog box is displayed, whether to save a new document, in response to the **Save** command; or in response to the **Save As** command; or in response to the **SaveAs** or **SaveAs2** method.|
diff --git a/api/Word.Application.DocumentOpen.md b/api/Word.Application.DocumentOpen.md
index 91cb9135b4f..77f541e8e10 100644
--- a/api/Word.Application.DocumentOpen.md
+++ b/api/Word.Application.DocumentOpen.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'DocumentOpen'(**_ByVal Doc As Document_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The document that's being opened.|
diff --git a/api/Word.Application.DocumentSync.md b/api/Word.Application.DocumentSync.md
index 8d3c8dcc205..b8b6ea84334 100644
--- a/api/Word.Application.DocumentSync.md
+++ b/api/Word.Application.DocumentSync.md
@@ -27,7 +27,7 @@ Private Sub_**DocumentSync**(**_Doc_** , **_SyncEventType_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The document being synchronized.|
| _SyncEventType_|Required| **MsoSyncEventType**|The status of the document synchronization.|
diff --git a/api/Word.Application.EPostageInsert.md b/api/Word.Application.EPostageInsert.md
index 87a1e31eb7d..0b68db25957 100644
--- a/api/Word.Application.EPostageInsert.md
+++ b/api/Word.Application.EPostageInsert.md
@@ -27,7 +27,7 @@ Occurs when a user inserts electronic postage into a document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The name of the document to which to add electronic postage.|
diff --git a/api/Word.Application.EPostageInsertEx.md b/api/Word.Application.EPostageInsertEx.md
index 526d652cde3..7bd3820acc1 100644
--- a/api/Word.Application.EPostageInsertEx.md
+++ b/api/Word.Application.EPostageInsertEx.md
@@ -27,7 +27,7 @@ Occurs when a user inserts electronic postage into a document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The document to which electronic postage is being added.|
| _cpDeliveryAddrStart_|Required| **Long**|The starting position in the document for the delivery address. Positioning corresponds to the value of the **Start** property for a **Range** object.|
diff --git a/api/Word.Application.EPostagePropertyDialog.md b/api/Word.Application.EPostagePropertyDialog.md
index 8843ed1586c..1ef81304163 100644
--- a/api/Word.Application.EPostagePropertyDialog.md
+++ b/api/Word.Application.EPostagePropertyDialog.md
@@ -27,7 +27,7 @@ Occurs when a user clicks the **E-postage Properties** (**Labels and Envelopes*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The name of the document to which to add electronic postage.|
diff --git a/api/Word.Application.FileDialog.md b/api/Word.Application.FileDialog.md
index 2b2446c0420..bf4f6126b87 100644
--- a/api/Word.Application.FileDialog.md
+++ b/api/Word.Application.FileDialog.md
@@ -27,7 +27,7 @@ Returns a **FileDialog** object which represents a single instance of a file di
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileDialogType_|Required| **MsoFileDialogType**|The type of dialog.|
diff --git a/api/Word.Application.FileValidation.md b/api/Word.Application.FileValidation.md
index 4045c7f7f56..6048ebf3653 100644
--- a/api/Word.Application.FileValidation.md
+++ b/api/Word.Application.FileValidation.md
@@ -23,7 +23,7 @@ Returns or sets how Word will validate files before opening them. Read/write [Ms
_expression_ A variable that represents an '[Application](Word.Application.md)' object.
-### Return Value
+### Return value
[MsoFileValidationMode](./Office.MsoFileValidationMode.md)
diff --git a/api/Word.Application.FindKey.md b/api/Word.Application.FindKey.md
index e2ae13f4ab5..10aa1a7c55f 100644
--- a/api/Word.Application.FindKey.md
+++ b/api/Word.Application.FindKey.md
@@ -27,7 +27,7 @@ Returns a **[KeyBinding](Word.KeyBinding.md)** object that represents the speci
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCode_|Required| **Long**|A key you specify by using one of the **WdKey** constants.|
| _KeyCode2_|Optional| **Variant**|A second key you specify by using one of the **WdKey** constants.|
diff --git a/api/Word.Application.GetAddress.md b/api/Word.Application.GetAddress.md
index 0b7a0550614..f57123085c0 100644
--- a/api/Word.Application.GetAddress.md
+++ b/api/Word.Application.GetAddress.md
@@ -25,7 +25,7 @@ _expression_ Required. A variable that represents an **[Application](Word.Applic
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional|**Variant**|The name of the addressee, as specified in the **Search Name** dialog box in the address book.|
| _AddressProperties_|Optional|**Variant**|If _UseAutoText_ is **True**, this argument denotes the name of an AutoText entry that defines a sequence of address book properties. If _UseAutoText_ is **False** or omitted, this argument defines a custom layout.
Valid address book property names or sets of property names are surrounded by angle brackets (`"<" and ">"`) and separated by a space or a paragraph mark (for example, `"
If the _AddressProperties_ parameter is omitted, a default AutoText entry named "AddressLayout" is used. If "AddressLayout" hasn't been defined, the following address layout definition is used: `"
For a list of the valid address book property names, see the **AddAddress** method.|
diff --git a/api/Word.Application.GetDefaultTheme.md b/api/Word.Application.GetDefaultTheme.md
index 3ad17d19540..4d2638e9ef8 100644
--- a/api/Word.Application.GetDefaultTheme.md
+++ b/api/Word.Application.GetDefaultTheme.md
@@ -27,7 +27,7 @@ Returns a **String** that represents the name of the default theme plus the the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DocumentType_|Required| **WdDocumentMedium**|The type of new document for which you want to retrieve the default theme name.|
diff --git a/api/Word.Application.GetSpellingSuggestions.md b/api/Word.Application.GetSpellingSuggestions.md
index 0e6aa9b5729..24be5e74204 100644
--- a/api/Word.Application.GetSpellingSuggestions.md
+++ b/api/Word.Application.GetSpellingSuggestions.md
@@ -27,7 +27,7 @@ Returns a **[SpellingSuggestions](Word.spellingsuggestions.md)** collection tha
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Word_|Required| **String**|The word whose spelling is to be checked.|
| _IgnoreUppercase_|Optional| **Variant**| **True** to ignore words in all uppercase letters. If this argument is omitted, the current value of the **[IgnoreUppercase](Word.Options.IgnoreUppercase.md)** property is used.|
diff --git a/api/Word.Application.Help.md b/api/Word.Application.Help.md
index a99030c7764..4c51b319de8 100644
--- a/api/Word.Application.Help.md
+++ b/api/Word.Application.Help.md
@@ -27,7 +27,7 @@ Displays installed Help information.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _HelpType_|Required| **Variant**|The on-line Help topic or window. Can be any of these **[WdHelpType](Word.WdHelpType.md)** constants: **wdHelp** , **wdHelpAbout** , **wdHelpActiveWindow** , **wdHelpContents** , **wdHelpHWP** , **wdHelpIchitaro** , **wdHelpIndex** , **wdHelpPE2** , **wdHelpPSSHelp** , **wdHelpSearch** , **wdHelpUsingHelp** . (Some of the constants listed here may not be available to you, depending on the language that you have selected or installed.)|
diff --git a/api/Word.Application.InchesToPoints.md b/api/Word.Application.InchesToPoints.md
index 268a830dbc2..c4824a5c5e8 100644
--- a/api/Word.Application.InchesToPoints.md
+++ b/api/Word.Application.InchesToPoints.md
@@ -27,7 +27,7 @@ Converts a measurement from inches to points (1 inch = 72 points). Returns the c
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Inches_|Required| **Single**|The inch value to be converted to points.|
diff --git a/api/Word.Application.International.md b/api/Word.Application.International.md
index 4457bb9b7df..9218100de47 100644
--- a/api/Word.Application.International.md
+++ b/api/Word.Application.International.md
@@ -27,7 +27,7 @@ Returns information about the current country/region and international settings.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **WdInternationalIndex**|The current country/region and/or international setting.|
diff --git a/api/Word.Application.KeyString.md b/api/Word.Application.KeyString.md
index 0428d45e71f..261d761a2fb 100644
--- a/api/Word.Application.KeyString.md
+++ b/api/Word.Application.KeyString.md
@@ -27,12 +27,12 @@ Returns the key combination string for the specified keys (for example, CTRL+SHI
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCode_|Required| **Long**|A key you specify by using one of the **WdKey** constants.|
| _KeyCode2_|Optional| **Variant**|A second key you specify by using one of the **WdKey** constants.|
-### Return Value
+### Return value
String
diff --git a/api/Word.Application.Keyboard.md b/api/Word.Application.Keyboard.md
index d9351148092..a42f301785e 100644
--- a/api/Word.Application.Keyboard.md
+++ b/api/Word.Application.Keyboard.md
@@ -27,7 +27,7 @@ Returns or sets the keyboard language and layout settings.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _LangId_|Optional| **Long**|The language and layout combination to which Microsoft Word sets the keyboard. If this argument is omitted, the method returns the current language and layout setting.|
diff --git a/api/Word.Application.KeysBoundTo.md b/api/Word.Application.KeysBoundTo.md
index cd5bc400b7b..c4d93f5433b 100644
--- a/api/Word.Application.KeysBoundTo.md
+++ b/api/Word.Application.KeysBoundTo.md
@@ -27,7 +27,7 @@ Returns a **[KeysBoundTo](Word.keysboundto.md)** object that represents all the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCategory_|Required| **WdKeyCategory**|The category of the key combination.|
| _Command_|Required| **String**|The name of the command.|
diff --git a/api/Word.Application.LinesToPoints.md b/api/Word.Application.LinesToPoints.md
index 67e99b75b07..d7b6957a9bb 100644
--- a/api/Word.Application.LinesToPoints.md
+++ b/api/Word.Application.LinesToPoints.md
@@ -27,11 +27,11 @@ Converts a measurement from lines to points (1 line = 12 points). Returns the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Lines_|Required| **Single**|The line value to be converted to points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Application.ListCommands.md b/api/Word.Application.ListCommands.md
index 2c5abe1592c..4a7f38f406c 100644
--- a/api/Word.Application.ListCommands.md
+++ b/api/Word.Application.ListCommands.md
@@ -27,7 +27,7 @@ Creates a new document and then inserts a table of Word commands along with thei
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ListAllCommands_|Required| **Boolean**| **True** to include all Word commands and their assignments (whether customized or built-in). **False** to include only commands with customized assignments.|
diff --git a/api/Word.Application.LoadMasterList.md b/api/Word.Application.LoadMasterList.md
index 1b49ca93306..1e5d085ff07 100644
--- a/api/Word.Application.LoadMasterList.md
+++ b/api/Word.Application.LoadMasterList.md
@@ -27,7 +27,7 @@ Loads a bibliography source file.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The path and file name of the bibliography source file.|
diff --git a/api/Word.Application.LookupNameProperties.md b/api/Word.Application.LookupNameProperties.md
index 958eb19ffad..cf4f8b21925 100644
--- a/api/Word.Application.LookupNameProperties.md
+++ b/api/Word.Application.LookupNameProperties.md
@@ -27,7 +27,7 @@ Looks up a name in the global address book list and displays the **Properties**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|A name in the global address book.|
diff --git a/api/Word.Application.MailMergeAfterMerge.md b/api/Word.Application.MailMergeAfterMerge.md
index dbed8649617..846d3ca5b9d 100644
--- a/api/Word.Application.MailMergeAfterMerge.md
+++ b/api/Word.Application.MailMergeAfterMerge.md
@@ -27,7 +27,7 @@ Occurs after all records in a mail merge have merged successfully.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The mail merge main document.|
| _DocResult_|Required| **Document**|The document created from the mail merge|
diff --git a/api/Word.Application.MailMergeAfterRecordMerge.md b/api/Word.Application.MailMergeAfterRecordMerge.md
index d62f5530b96..53519c04e1d 100644
--- a/api/Word.Application.MailMergeAfterRecordMerge.md
+++ b/api/Word.Application.MailMergeAfterRecordMerge.md
@@ -27,7 +27,7 @@ Occurs after each record in the data source successfully merges in a mail merge.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The mail merge main document.|
diff --git a/api/Word.Application.MailMergeBeforeMerge.md b/api/Word.Application.MailMergeBeforeMerge.md
index 63529ce024d..16013384a42 100644
--- a/api/Word.Application.MailMergeBeforeMerge.md
+++ b/api/Word.Application.MailMergeBeforeMerge.md
@@ -27,7 +27,7 @@ Occurs when a merge is executed before any records merge.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The mail merge main document.|
| _StartRecord_|Required| **Long**|The first record in the data source to include in the mail merge.|
diff --git a/api/Word.Application.MailMergeBeforeRecordMerge.md b/api/Word.Application.MailMergeBeforeRecordMerge.md
index ffb57d54830..911860de655 100644
--- a/api/Word.Application.MailMergeBeforeRecordMerge.md
+++ b/api/Word.Application.MailMergeBeforeRecordMerge.md
@@ -27,7 +27,7 @@ Occurs as a merge is executed for the individual records in a merge.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The mail merge main document.|
| _Cancel_|Required| **Boolean**| **True** stops the mail merge process, for the current record only, before it starts.|
diff --git a/api/Word.Application.MailMergeDataSourceLoad.md b/api/Word.Application.MailMergeDataSourceLoad.md
index 7a623e1b6a4..bd3fdf571da 100644
--- a/api/Word.Application.MailMergeDataSourceLoad.md
+++ b/api/Word.Application.MailMergeDataSourceLoad.md
@@ -27,7 +27,7 @@ Occurs when the data source is loaded for a mail merge.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The mail merge main document.|
diff --git a/api/Word.Application.MailMergeDataSourceValidate.md b/api/Word.Application.MailMergeDataSourceValidate.md
index ea7896d737d..0cc7b5e19f4 100644
--- a/api/Word.Application.MailMergeDataSourceValidate.md
+++ b/api/Word.Application.MailMergeDataSourceValidate.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MailMergeDataSourceValidate'(**_ByVal Doc As Documen
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The mail merge main document.|
| _Handled_|Required| **Boolean**| **True** if the add-in has handled the validation event. This is a forward-only parameter and cannot be set in code. To set this value, you must use the **[MailMergeDataSourceValidate2](Word.Application.MailMergeDataSourceValidate2.md)** event.|
diff --git a/api/Word.Application.MailMergeDataSourceValidate2.md b/api/Word.Application.MailMergeDataSourceValidate2.md
index f387697526e..b31a8d45851 100644
--- a/api/Word.Application.MailMergeDataSourceValidate2.md
+++ b/api/Word.Application.MailMergeDataSourceValidate2.md
@@ -27,7 +27,7 @@ Occurs when a user validates mail merge recipients by clicking the **Validate a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The mail merge main document.|
| _Handled_|Required| **Boolean**| **True** if the add-in has handled the validation event.|
diff --git a/api/Word.Application.MailMergeWizardSendToCustom.md b/api/Word.Application.MailMergeWizardSendToCustom.md
index a560b9a76a7..b11cd5b29f7 100644
--- a/api/Word.Application.MailMergeWizardSendToCustom.md
+++ b/api/Word.Application.MailMergeWizardSendToCustom.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'MailMergeWizardSendToCustom'(**_ByVal Doc As Documen
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The mail merge main document.|
diff --git a/api/Word.Application.MailMergeWizardStateChange.md b/api/Word.Application.MailMergeWizardStateChange.md
index 098fa9bf2a3..3ff84414b43 100644
--- a/api/Word.Application.MailMergeWizardStateChange.md
+++ b/api/Word.Application.MailMergeWizardStateChange.md
@@ -27,7 +27,7 @@ Occurs when a user changes from a specified step to a specified step in the Mail
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The mail merge main document.|
| _FromState_|Required| **Long**|The Mail Merge Wizard step from which a user is moving.|
diff --git a/api/Word.Application.MergeDocuments.md b/api/Word.Application.MergeDocuments.md
index 5644d1f1892..84fc4084d33 100644
--- a/api/Word.Application.MergeDocuments.md
+++ b/api/Word.Application.MergeDocuments.md
@@ -27,7 +27,7 @@ Compares two documents and returns a **Document** object that represents the do
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _OriginalDocument_|Required| **Document**|Specifies the path and file name of the original document.|
| _RevisedDocument_|Required| **Document**|Specifies the path and file name of the revised document to which to compare the original document.|
@@ -46,7 +46,7 @@ Compares two documents and returns a **Document** object that represents the do
| _RevisedAuthor_|Optional| **String**|Specifies the name of the person to use for unattributed changes after merging two documents.|
| _FormatFrom_|Optional| **WdMergeFormatFrom**|Specifies the document from which to retain formatting.|
-### Return Value
+### Return value
Document
diff --git a/api/Word.Application.MillimetersToPoints.md b/api/Word.Application.MillimetersToPoints.md
index 3dccf5fd637..e4dd4d27a21 100644
--- a/api/Word.Application.MillimetersToPoints.md
+++ b/api/Word.Application.MillimetersToPoints.md
@@ -27,11 +27,11 @@ Converts a measurement from millimeters to points (1 mm = 2.85 points). Returns
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Millimeters_|Required| **Single**|The millimeter value to be converted to points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Application.Move.md b/api/Word.Application.Move.md
index 52c60a59e19..6af47d26f81 100644
--- a/api/Word.Application.Move.md
+++ b/api/Word.Application.Move.md
@@ -27,7 +27,7 @@ Positions a task window or the active document window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Left_|Required| **Long**|The horizontal screen position of the specified window.|
| _Top_|Required| **Long**|The vertical screen position of the specified window.|
diff --git a/api/Word.Application.NewDocument(even).md b/api/Word.Application.NewDocument(even).md
index 10901869500..d695b8b80fb 100644
--- a/api/Word.Application.NewDocument(even).md
+++ b/api/Word.Application.NewDocument(even).md
@@ -27,7 +27,7 @@ _expression_ A variable that represents an [Application](Word.Application.md) ob
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The new document.|
diff --git a/api/Word.Application.NewWindow.md b/api/Word.Application.NewWindow.md
index 8b1888c3854..d36659ac73b 100644
--- a/api/Word.Application.NewWindow.md
+++ b/api/Word.Application.NewWindow.md
@@ -23,7 +23,7 @@ Opens a new window with the same document as the specified window. Returns a **
_expression_ Required. A variable that represents an '[Application](Word.Application.md)' object.
-### Return Value
+### Return value
Window
diff --git a/api/Word.Application.OMathAutoCorrect.md b/api/Word.Application.OMathAutoCorrect.md
index f843825f574..4447c93c6b7 100644
--- a/api/Word.Application.OMathAutoCorrect.md
+++ b/api/Word.Application.OMathAutoCorrect.md
@@ -23,7 +23,7 @@ Returns an **OMathAutoCorrect** object that represents the auto correct entries
_expression_ An expression that returns an '[Application](Word.Application.md)' object.
-### Return Value
+### Return value
OMathAutoCorrect
diff --git a/api/Word.Application.OnTime.md b/api/Word.Application.OnTime.md
index b431ef9b7a3..063a9a14674 100644
--- a/api/Word.Application.OnTime.md
+++ b/api/Word.Application.OnTime.md
@@ -27,7 +27,7 @@ Starts a background timer that runs a macro at a specified time.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _When_|Required| **Variant**|The time at which the macro is to be run. |
| _Name_|Required| **String**|The name of the macro to be run. |
diff --git a/api/Word.Application.OrganizerCopy.md b/api/Word.Application.OrganizerCopy.md
index 30f77fc22f7..fb0bb3eaa83 100644
--- a/api/Word.Application.OrganizerCopy.md
+++ b/api/Word.Application.OrganizerCopy.md
@@ -27,7 +27,7 @@ Copies the specified AutoText entry, toolbar, style, or macro project item from
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Source_|Required| **String**|The document or template file name that contains the item you want to copy.|
| _Destination_|Required| **String**|The document or template file name to which you want to copy an item.|
diff --git a/api/Word.Application.OrganizerDelete.md b/api/Word.Application.OrganizerDelete.md
index 8890867bd8a..597753552cd 100644
--- a/api/Word.Application.OrganizerDelete.md
+++ b/api/Word.Application.OrganizerDelete.md
@@ -27,7 +27,7 @@ Deletes the specified style, AutoText entry, toolbar, or macro project item from
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Source_|Required| **String**|The file name of the document or template that contains the item you want to delete.|
| _Name_|Required| **String**|The name of the style, AutoText entry, toolbar, or macro you want to delete.|
diff --git a/api/Word.Application.OrganizerRename.md b/api/Word.Application.OrganizerRename.md
index c58e4134501..4029be83204 100644
--- a/api/Word.Application.OrganizerRename.md
+++ b/api/Word.Application.OrganizerRename.md
@@ -27,7 +27,7 @@ Renames the specified style, AutoText entry, toolbar, or macro project item in a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Source_|Required| **String**|The file name of the document or template that contains the item you want to rename.|
| _Name_|Required| **String**|The name of the style, AutoText entry, toolbar, or macro you want to rename.|
diff --git a/api/Word.Application.PicasToPoints.md b/api/Word.Application.PicasToPoints.md
index 554d245717f..7361d514b60 100644
--- a/api/Word.Application.PicasToPoints.md
+++ b/api/Word.Application.PicasToPoints.md
@@ -27,11 +27,11 @@ Converts a measurement from picas to points (1 pica = 12 points). Returns the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Picas_|Required| **Single**|The pica value to be converted to points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Application.PixelsToPoints.md b/api/Word.Application.PixelsToPoints.md
index 31110189baf..978fb894b1c 100644
--- a/api/Word.Application.PixelsToPoints.md
+++ b/api/Word.Application.PixelsToPoints.md
@@ -27,12 +27,12 @@ Converts a measurement from pixels to points. Returns the converted measurement
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Pixels_|Required| **Single**|The pixel value to be converted to points.|
| _fVertical_|Optional| **Variant**| **True** to convert vertical pixels; **False** to convert horizontal pixels.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Application.PointsToCentimeters.md b/api/Word.Application.PointsToCentimeters.md
index 2397c72432e..a0ea9bedef3 100644
--- a/api/Word.Application.PointsToCentimeters.md
+++ b/api/Word.Application.PointsToCentimeters.md
@@ -27,11 +27,11 @@ Converts a measurement from points to centimeters (1 centimeter = 28.35 points).
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Points_|Required| **Single**|The measurement, in points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Application.PointsToInches.md b/api/Word.Application.PointsToInches.md
index 952bb982ce2..14687c6c7a9 100644
--- a/api/Word.Application.PointsToInches.md
+++ b/api/Word.Application.PointsToInches.md
@@ -27,11 +27,11 @@ Converts a measurement from points to inches (1 inch = 72 points). Returns the c
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Points_|Required| **Single**|The measurement, in points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Application.PointsToLines.md b/api/Word.Application.PointsToLines.md
index 714dbe21286..7da055da687 100644
--- a/api/Word.Application.PointsToLines.md
+++ b/api/Word.Application.PointsToLines.md
@@ -27,11 +27,11 @@ Converts a measurement from points to lines (1 line = 12 points). Returns the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Points_|Required| **Single**|The measurement, in points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Application.PointsToMillimeters.md b/api/Word.Application.PointsToMillimeters.md
index b5002aaf686..45a923de605 100644
--- a/api/Word.Application.PointsToMillimeters.md
+++ b/api/Word.Application.PointsToMillimeters.md
@@ -27,11 +27,11 @@ Converts a measurement from points to millimeters (1 millimeter = 2.835 points).
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Points_|Required| **Single**|The measurement, in points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Application.PointsToPicas.md b/api/Word.Application.PointsToPicas.md
index 02de0f10ef9..b8603b2692a 100644
--- a/api/Word.Application.PointsToPicas.md
+++ b/api/Word.Application.PointsToPicas.md
@@ -27,11 +27,11 @@ Converts a measurement from points to picas (1 pica = 12 points). Returns the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Points_|Required| **Single**|The measurement, in points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Application.PointsToPixels.md b/api/Word.Application.PointsToPixels.md
index d3578cb5031..2e3c4058389 100644
--- a/api/Word.Application.PointsToPixels.md
+++ b/api/Word.Application.PointsToPixels.md
@@ -27,12 +27,12 @@ Converts a measurement from points to pixels. Returns the converted measurement
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Points_|Required| **Single**|The point value to be converted to pixels.|
| _fVertical_|Optional| **Variant**| **True** to return the result as vertical pixels; **False** to return the result as horizontal pixels.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Application.PrintOut.md b/api/Word.Application.PrintOut.md
index 9fa56aa53c3..b10d0e98ae4 100644
--- a/api/Word.Application.PrintOut.md
+++ b/api/Word.Application.PrintOut.md
@@ -27,7 +27,7 @@ Prints all or part of the specified document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Background_|Optional| **Variant**|Set to **True** to have the macro continue while Microsoft Word prints the document.|
| _Append_|Optional| **Variant**|Set to **True** to append the specified document to the file name specified by the OutputFileName argument. **False** to overwrite the contents of OutputFileName.|
diff --git a/api/Word.Application.ProductCode.md b/api/Word.Application.ProductCode.md
index da9ebf64caa..501e9d0e9fc 100644
--- a/api/Word.Application.ProductCode.md
+++ b/api/Word.Application.ProductCode.md
@@ -23,7 +23,7 @@ Returns the Microsoft Word globally unique identifier (GUID) as a **String** .
_expression_ Required. A variable that represents an '[Application](Word.Application.md)' object.
-### Return Value
+### Return value
String
diff --git a/api/Word.Application.ProtectedViewWindowActivate.md b/api/Word.Application.ProtectedViewWindowActivate.md
index f0cf90af59f..07f3cf025bc 100644
--- a/api/Word.Application.ProtectedViewWindowActivate.md
+++ b/api/Word.Application.ProtectedViewWindowActivate.md
@@ -24,7 +24,7 @@ Occurs when any protected view window is activated.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PvWindow_|Required| **[ProtectedViewWindow](Word.ProtectedViewWindow.md)**|The protected view window that is activated.|
diff --git a/api/Word.Application.ProtectedViewWindowBeforeClose.md b/api/Word.Application.ProtectedViewWindowBeforeClose.md
index db0399efa28..e805fdac47a 100644
--- a/api/Word.Application.ProtectedViewWindowBeforeClose.md
+++ b/api/Word.Application.ProtectedViewWindowBeforeClose.md
@@ -27,7 +27,7 @@ Occurs immediately before a protected view window or a document in a protected v
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PvWindow_|Required| **ProtectedViewWindow**|The protected view window that is closed.|
| _CloseReason_|Required| **[INT]**|A constant in the [WdProtectedViewCloseReason](Word.WdProtectedViewCloseReason.md) enumeration that specifies the reason the protected view window is closed.|
diff --git a/api/Word.Application.ProtectedViewWindowBeforeEdit.md b/api/Word.Application.ProtectedViewWindowBeforeEdit.md
index bdb0afdc3e1..c32f667a326 100644
--- a/api/Word.Application.ProtectedViewWindowBeforeEdit.md
+++ b/api/Word.Application.ProtectedViewWindowBeforeEdit.md
@@ -27,7 +27,7 @@ Occurs immediately before editing is enabled on the document in the specified pr
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PvWindow_|Required| **[ProtectedViewWindow](Word.ProtectedViewWindow.md)**|The protected view window that contains the document that is enabled for editing.|
| _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , editing is not enabled on the document.|
diff --git a/api/Word.Application.ProtectedViewWindowDeactivate.md b/api/Word.Application.ProtectedViewWindowDeactivate.md
index 514cd0a4766..4a0840e9862 100644
--- a/api/Word.Application.ProtectedViewWindowDeactivate.md
+++ b/api/Word.Application.ProtectedViewWindowDeactivate.md
@@ -27,7 +27,7 @@ Occurs when a protected view window is deactivated.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PvWindow_|Required| **[ProtectedViewWindow](Word.ProtectedViewWindow.md)**|The deactivated protected view window.|
diff --git a/api/Word.Application.ProtectedViewWindowOpen.md b/api/Word.Application.ProtectedViewWindowOpen.md
index 10dba5f819b..4bde836c5ec 100644
--- a/api/Word.Application.ProtectedViewWindowOpen.md
+++ b/api/Word.Application.ProtectedViewWindowOpen.md
@@ -27,7 +27,7 @@ Occurs when a protected view window is opened.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PvWindow_|Required| **[ProtectedViewWindow](Word.ProtectedViewWindow.md)**|The protected view window that is opened.|
diff --git a/api/Word.Application.ProtectedViewWindowSize.md b/api/Word.Application.ProtectedViewWindowSize.md
index c54863747a4..ef1f030503d 100644
--- a/api/Word.Application.ProtectedViewWindowSize.md
+++ b/api/Word.Application.ProtectedViewWindowSize.md
@@ -24,7 +24,7 @@ ms.date: 06/08/2017
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PvWindow_|Required| **[ProtectedViewWindow](Word.ProtectedViewWindow.md)**|The protected view window that is sized.|
diff --git a/api/Word.Application.Quit(method).md b/api/Word.Application.Quit(method).md
index 8377b10e824..1e38ee4b402 100644
--- a/api/Word.Application.Quit(method).md
+++ b/api/Word.Application.Quit(method).md
@@ -27,7 +27,7 @@ Quits Microsoft Word and optionally saves or routes the open documents.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SaveChanges_|Optional| **Variant**|Specifies whether Word saves changed documents before closing. Can be one of the **WdSaveOptions** constants.|
| _OriginalFormat_|Optional| **Variant**|Specifies the way Word saves documents whose original format was not Word Document format. Can be one of the **WdOriginalFormat** constants.|
diff --git a/api/Word.Application.Repeat.md b/api/Word.Application.Repeat.md
index 30b40b013d3..194522ed4a6 100644
--- a/api/Word.Application.Repeat.md
+++ b/api/Word.Application.Repeat.md
@@ -27,11 +27,11 @@ Repeats the most recent editing action one or more times. Returns **True** if t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Times_|Optional| **Variant**|The number of times you want to repeat the last command.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Application.Resize.md b/api/Word.Application.Resize.md
index ada9220989d..4f880b191d6 100644
--- a/api/Word.Application.Resize.md
+++ b/api/Word.Application.Resize.md
@@ -27,7 +27,7 @@ Sizes the Word application window or the specified task window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Width_|Required| **Long**|The width of the window, in points.|
| _Height_|Required| **Long**|The height of the window, in points.|
diff --git a/api/Word.Application.Run.md b/api/Word.Application.Run.md
index a414e02a6eb..63e1f83cb70 100644
--- a/api/Word.Application.Run.md
+++ b/api/Word.Application.Run.md
@@ -27,7 +27,7 @@ Runs a Visual Basic macro.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MacroName_|Required| **String**|The name of the macro.|
| _varg1...varg30_|Optional| **Variant**|Macro parameter values. You can pass up to 30 parameter values to the specified macro.|
diff --git a/api/Word.Application.SetDefaultTheme.md b/api/Word.Application.SetDefaultTheme.md
index 803f8b463ac..0da6ee09bae 100644
--- a/api/Word.Application.SetDefaultTheme.md
+++ b/api/Word.Application.SetDefaultTheme.md
@@ -24,7 +24,7 @@ _expression_ Required. A variable that represents an **[Application](Word.Applic
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required|**String**|The name of the theme you want to assign as the default theme plus any theme formatting options you want to apply. The format of this string is "themennn" where _theme_ and _nnn_ are defined in the [Themes](#themes) table.|
| _DocumentType_|Required|**WdDocumentMedium**|The type of new document to which you are assigning a default theme.|
diff --git a/api/Word.Application.SubstituteFont.md b/api/Word.Application.SubstituteFont.md
index 3d915e2eeaf..6ed7cedb654 100644
--- a/api/Word.Application.SubstituteFont.md
+++ b/api/Word.Application.SubstituteFont.md
@@ -27,7 +27,7 @@ Sets font-mapping options.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _UnavailableFont_|Required| **String**|The name of a font not available on your computer that you want to map to a different font for display and printing.|
| _SubstituteFont_|Required| **String**|The name of a font available on your computer that you want to substitute for the unavailable font.|
diff --git a/api/Word.Application.SynonymInfo.md b/api/Word.Application.SynonymInfo.md
index e7400dae613..f6f8ecbeb02 100644
--- a/api/Word.Application.SynonymInfo.md
+++ b/api/Word.Application.SynonymInfo.md
@@ -27,7 +27,7 @@ Returns a **[SynonymInfo](Word.SynonymInfo.md)** object that contains informati
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Word_|Required| **String**|The specified word or phrase.|
| _LanguageID_|Optional| **Variant**|The language used for the thesaurus. Can be one of the **WdLanguageID** constants (although some of the constants may not be available to you, depending on the language support (U.S. English, for example) that you have selected or installed).|
diff --git a/api/Word.Application.WindowActivate.md b/api/Word.Application.WindowActivate.md
index 023696ba6fd..e05f21ea345 100644
--- a/api/Word.Application.WindowActivate.md
+++ b/api/Word.Application.WindowActivate.md
@@ -27,7 +27,7 @@ Occurs when any document window is activated.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The document displayed in the activated window.|
| _Wn_|Required| **Window**|The window that's being activated.|
diff --git a/api/Word.Application.WindowBeforeDoubleClick.md b/api/Word.Application.WindowBeforeDoubleClick.md
index 677a16408de..f17954e7172 100644
--- a/api/Word.Application.WindowBeforeDoubleClick.md
+++ b/api/Word.Application.WindowBeforeDoubleClick.md
@@ -27,7 +27,7 @@ Occurs when the editing area of a document window is double-clicked, before the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Sel_|Required| **Selection**|The current selection.|
| _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the default double-click action does not occur when the procedure is finished.|
diff --git a/api/Word.Application.WindowBeforeRightClick.md b/api/Word.Application.WindowBeforeRightClick.md
index c0cf72c2b73..8f18a968436 100644
--- a/api/Word.Application.WindowBeforeRightClick.md
+++ b/api/Word.Application.WindowBeforeRightClick.md
@@ -27,7 +27,7 @@ Private Sub _expression_ ._'WindowBeforeRightClick'(**_ByVal Sel As Selection_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Sel_|Required| **Selection**|The current selection.|
| _Cancel_|Required| **Boolean**| **False** when the event occurs. If the event procedure sets this argument to **True** , the default right-click action does not occur when the procedure is finished.|
diff --git a/api/Word.Application.WindowDeactivate.md b/api/Word.Application.WindowDeactivate.md
index 41f376787c1..08819bb173f 100644
--- a/api/Word.Application.WindowDeactivate.md
+++ b/api/Word.Application.WindowDeactivate.md
@@ -27,7 +27,7 @@ _expression_ A variable that represents an [Application](Word.Application.md) ob
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The document displayed in the deactivated window.|
| _Wn_|Required| **Window**|The deactivated window.|
diff --git a/api/Word.Application.WindowSelectionChange.md b/api/Word.Application.WindowSelectionChange.md
index ef35a8da479..a7cf83c9bcd 100644
--- a/api/Word.Application.WindowSelectionChange.md
+++ b/api/Word.Application.WindowSelectionChange.md
@@ -27,7 +27,7 @@ _expression_ A variable that represents an [Application](Word.Application.md) ob
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Sel_|Required| **Selection**|The text selected. If no text is selected, the Sel parameter returns either nothing or the first character to the right of the insertion point.|
diff --git a/api/Word.Application.WindowSize.md b/api/Word.Application.WindowSize.md
index 7e8991b21a3..6196bea4826 100644
--- a/api/Word.Application.WindowSize.md
+++ b/api/Word.Application.WindowSize.md
@@ -27,7 +27,7 @@ Occurs when the application window is resized or moved.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Doc_|Required| **Document**|The document in the window being sized.|
| _Wn_|Required| **Window**|The window being sized.|
diff --git a/api/Word.Application.XMLSelectionChange.md b/api/Word.Application.XMLSelectionChange.md
index 76f315192b5..4092acc5c27 100644
--- a/api/Word.Application.XMLSelectionChange.md
+++ b/api/Word.Application.XMLSelectionChange.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'XMLSelectionChange'(**_Sel_** , **_OldXMLNode_** , *
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Sel_|Required| **Selection**|The text selected, including XML elements. If no text is selected, the Sel parameter returns either nothing or the first character to the right of the insertion point.|
| _OldXMLNode_|Required| **XMLNode**|The XML node from which the insertion point is moving.|
diff --git a/api/Word.Application.XMLValidationError.md b/api/Word.Application.XMLValidationError.md
index 53ef4755a9b..bc7ac0b1948 100644
--- a/api/Word.Application.XMLValidationError.md
+++ b/api/Word.Application.XMLValidationError.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'XMLValidationError'(**_XMLNode As XMLNode_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _XMLNode_|Required| **XMLNode**|The XML element that is invalid.|
diff --git a/api/Word.ApplyDocumentTheme.md b/api/Word.ApplyDocumentTheme.md
index bd04c6eeb3e..e967dbc0aad 100644
--- a/api/Word.ApplyDocumentTheme.md
+++ b/api/Word.ApplyDocumentTheme.md
@@ -27,7 +27,7 @@ Applies a document theme to a document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The path and file name of the theme to apply.|
diff --git a/api/Word.AutoCaptions.Item.md b/api/Word.AutoCaptions.Item.md
index 1cc49eca229..ceb54dcb4cb 100644
--- a/api/Word.AutoCaptions.Item.md
+++ b/api/Word.AutoCaptions.Item.md
@@ -27,11 +27,11 @@ Returns an individual **AutoCaption** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
AutoCaption
diff --git a/api/Word.AutoCorrectEntries.Add.md b/api/Word.AutoCorrectEntries.Add.md
index 14561263e61..a3acdae28e5 100644
--- a/api/Word.AutoCorrectEntries.Add.md
+++ b/api/Word.AutoCorrectEntries.Add.md
@@ -27,7 +27,7 @@ Returns an **AutoCorrectEntry** object that represents a plain-text AutoCorrect
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The text you want to have automatically replaced with the text specified by Value.|
| _Value_|Required| **String**|The text you want to have automatically inserted whenever the text specified by Name is typed.|
diff --git a/api/Word.AutoCorrectEntries.AddRichText.md b/api/Word.AutoCorrectEntries.AddRichText.md
index fbcb88b0858..9e9118bd3ab 100644
--- a/api/Word.AutoCorrectEntries.AddRichText.md
+++ b/api/Word.AutoCorrectEntries.AddRichText.md
@@ -27,12 +27,12 @@ Creates a formatted AutoCorrect entry, preserving all text attributes of the spe
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The text to replace automatically with Range.|
| _Range_|Required| **Range**|The formatted text that Word will insert automatically whenever Name is typed.|
-### Return Value
+### Return value
AutoCorrectEntry
diff --git a/api/Word.AutoCorrectEntries.Item.md b/api/Word.AutoCorrectEntries.Item.md
index e9795b9b35f..daf02d34b82 100644
--- a/api/Word.AutoCorrectEntries.Item.md
+++ b/api/Word.AutoCorrectEntries.Item.md
@@ -27,11 +27,11 @@ Returns an individual **AutoCorrectEntry** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
AutoCorrectEntry
diff --git a/api/Word.AutoCorrectEntry.Apply.md b/api/Word.AutoCorrectEntry.Apply.md
index e65060a1e12..bdaee0c9d76 100644
--- a/api/Word.AutoCorrectEntry.Apply.md
+++ b/api/Word.AutoCorrectEntry.Apply.md
@@ -27,7 +27,7 @@ Replaces a range with the value of the specified AutoCorrect entry.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **[Range](Word.Range.md)**|The range to which to apply the AutoCorrect entry.|
diff --git a/api/Word.AutoTextEntries.Add.md b/api/Word.AutoTextEntries.Add.md
index b81f9285d05..ec006d41737 100644
--- a/api/Word.AutoTextEntries.Add.md
+++ b/api/Word.AutoTextEntries.Add.md
@@ -27,7 +27,7 @@ Returns an **AutoTextEntry** object that represents an AutoText entry added to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The text that, when typed, initiates an AutoText entry.|
| _Range_|Required| **Range**|A range of text that will be inserted whenever Name is typed.|
diff --git a/api/Word.AutoTextEntries.AppendToSpike.md b/api/Word.AutoTextEntries.AppendToSpike.md
index 5128c19362d..08e2342b6f7 100644
--- a/api/Word.AutoTextEntries.AppendToSpike.md
+++ b/api/Word.AutoTextEntries.AppendToSpike.md
@@ -27,11 +27,11 @@ Deletes the specified range and adds the contents of the range to the Spike (a b
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range**|The range that's deleted and appended to the Spike.|
-### Return Value
+### Return value
AutoTextEntry
diff --git a/api/Word.AutoTextEntries.Item.md b/api/Word.AutoTextEntries.Item.md
index 5be2dd0ef34..a66f8a199f0 100644
--- a/api/Word.AutoTextEntries.Item.md
+++ b/api/Word.AutoTextEntries.Item.md
@@ -27,11 +27,11 @@ Returns an individual **AutoTextEntry** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
AutoTextEntry
diff --git a/api/Word.AutoTextEntry.Insert.md b/api/Word.AutoTextEntry.Insert.md
index d759d140960..321b7b6485b 100644
--- a/api/Word.AutoTextEntry.Insert.md
+++ b/api/Word.AutoTextEntry.Insert.md
@@ -27,12 +27,12 @@ Inserts the AutoText entry in place of the specified range. Returns a **Range**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Where_|Required| **Range**|The location for the AutoText entry.|
| _RichText_|Optional| **Variant**| **True** to insert the AutoText entry with its original formatting.|
-### Return Value
+### Return value
Range
diff --git a/api/Word.Axes.Item.md b/api/Word.Axes.Item.md
index 9efc0e4d19d..a0345b0e44c 100644
--- a/api/Word.Axes.Item.md
+++ b/api/Word.Axes.Item.md
@@ -24,7 +24,7 @@ Returns a single **[Axis](Word.Axis.md)** object from an **Axes** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **[XlAxisType](Word.xlaxistype.md)**|One of the enumeration values that specifies the axis type.|
| _AxisGroup_|Optional| **[XlAxisGroup](Word.xlaxisgroup.md)**|One of the enumeration values that specifies the axis.|
diff --git a/api/Word.AxisTitle.Characters.md b/api/Word.AxisTitle.Characters.md
index 3257737a181..152e0d427fb 100644
--- a/api/Word.AxisTitle.Characters.md
+++ b/api/Word.AxisTitle.Characters.md
@@ -27,7 +27,7 @@ Returns a **[ChartCharacters](Word.ChartCharacters.md)** object that represents
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Start_|Optional| **Variant**|The first character to be returned. If this argument is either 1 or omitted, this property returns a range of characters starting with the first character.|
| _Length_|Optional| **Variant**|The number of characters to be returned. If this argument is omitted, this property returns the remainder of the string (everything after the Start character).|
diff --git a/api/Word.AxisTitle.Formula.md b/api/Word.AxisTitle.Formula.md
index 64ded6068bc..81aa111ee20 100644
--- a/api/Word.AxisTitle.Formula.md
+++ b/api/Word.AxisTitle.Formula.md
@@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using
_expression_ A variable that represents an '[AxisTitle](Word.AxisTitle.md)' object.
-### Return Value
+### Return value
String
diff --git a/api/Word.AxisTitle.Height.md b/api/Word.AxisTitle.Height.md
index cc1c3d137e9..46197f9e20c 100644
--- a/api/Word.AxisTitle.Height.md
+++ b/api/Word.AxisTitle.Height.md
@@ -23,7 +23,7 @@ Returns the height, in points, of the object. Read-only.
_expression_ A variable that represents an '[AxisTitle](Word.AxisTitle.md)' object.
-### Return Value
+### Return value
Double
diff --git a/api/Word.Bibliography.GenerateUniqueTag.md b/api/Word.Bibliography.GenerateUniqueTag.md
index 155edc7e3fa..e206b751e00 100644
--- a/api/Word.Bibliography.GenerateUniqueTag.md
+++ b/api/Word.Bibliography.GenerateUniqueTag.md
@@ -23,7 +23,7 @@ Generates a unique identification tag for a bibliography source and returns a *
_expression_ An expression that returns a [Bibliography](./Word.Bibliography.md) object.
-### Return Value
+### Return value
String
diff --git a/api/Word.Bookmark.Copy.md b/api/Word.Bookmark.Copy.md
index 7b253331c0c..2fff2d13060 100644
--- a/api/Word.Bookmark.Copy.md
+++ b/api/Word.Bookmark.Copy.md
@@ -27,7 +27,7 @@ Copies a bookmark to the new bookmark specified in the Name argument, and return
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The name of the new bookmark.|
diff --git a/api/Word.Bookmarks.Add.md b/api/Word.Bookmarks.Add.md
index eba80238be8..2e2dc22fcab 100644
--- a/api/Word.Bookmarks.Add.md
+++ b/api/Word.Bookmarks.Add.md
@@ -27,12 +27,12 @@ Returns a **Bookmark** object that represents a bookmark added to a range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The name of the bookmark. The name cannot be more than 40 characters or include more than one word.|
| _Range_|Optional| **Variant**|The range of text marked by the bookmark. A bookmark can be set to a collapsed range (the insertion point).|
-### Return Value
+### Return value
Bookmark
diff --git a/api/Word.Bookmarks.Exists.md b/api/Word.Bookmarks.Exists.md
index 32331817736..c4a1cacde72 100644
--- a/api/Word.Bookmarks.Exists.md
+++ b/api/Word.Bookmarks.Exists.md
@@ -27,7 +27,7 @@ Determines whether the specified bookmark exists. Returns **True** if the bookm
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|A bookmark name than can not include more than 40 characters or more than one word.|
diff --git a/api/Word.Bookmarks.Item.md b/api/Word.Bookmarks.Item.md
index 590e6ac1539..82252095ef8 100644
--- a/api/Word.Bookmarks.Item.md
+++ b/api/Word.Bookmarks.Item.md
@@ -24,11 +24,11 @@ Returns an individual **Bookmark** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
Bookmark
diff --git a/api/Word.Borders.Item.md b/api/Word.Borders.Item.md
index 87931017202..0f000b81bb9 100644
--- a/api/Word.Borders.Item.md
+++ b/api/Word.Borders.Item.md
@@ -27,11 +27,11 @@ Returns a border in a range or selection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **WdBorderType**|The border to be returned.|
-### Return Value
+### Return value
Border
diff --git a/api/Word.Breaks.Item.md b/api/Word.Breaks.Item.md
index 84ec7c8d765..1683bdf5e14 100644
--- a/api/Word.Breaks.Item.md
+++ b/api/Word.Breaks.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Break** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Break
diff --git a/api/Word.BuildingBlock.Insert.md b/api/Word.BuildingBlock.Insert.md
index 3c186fc6549..e95f14ad3ab 100644
--- a/api/Word.BuildingBlock.Insert.md
+++ b/api/Word.BuildingBlock.Insert.md
@@ -27,12 +27,12 @@ Inserts the value of a building block into a document and returns a **[Range](W
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Where_|Required| **Range**|The location of where to place the contents of the building block.|
| _RichText_|Optional| **Variant**| **True** inserts the building block as rich, formatted text. **False** inserts the building block as plain text.|
-### Return Value
+### Return value
Range
diff --git a/api/Word.BuildingBlockEntries.Add.md b/api/Word.BuildingBlockEntries.Add.md
index 2838bf48e6a..a4fc190a647 100644
--- a/api/Word.BuildingBlockEntries.Add.md
+++ b/api/Word.BuildingBlockEntries.Add.md
@@ -27,7 +27,7 @@ Creates a new building block entry in a template and returns a **[BuildingBlock
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|Specifies the name of the building block entry. Corresponds to the **[Name](Word.BuildingBlock.Name.md)** property of the **BuildingBlock** object.|
| _Type_|Required| **[WdBuildingBlockTypes](Word.WdBuildingBlockTypes.md)**|Specifies the type of building block to create. Corresponds to the **[Type](Word.BuildingBlock.Type.md)** property of the **BuildingBlock** object.|
@@ -36,7 +36,7 @@ Creates a new building block entry in a template and returns a **[BuildingBlock
| _Description_|Optional| **Variant**|Specifies the description of the buildling block entry. Corresponds to the **[Description](Word.BuildingBlock.Description.md)** property of the **BuildingBlock** object.|
| _InsertOptions_|Optional| **[WdDocPartInsertOptions](Word.WdDocPartInsertOptions.md)**|Specifies whether the building block entry is inserted as a page, a paragraph, or inline. If omitted, the default value is **wdInsertContent** . Corresponds to the **[InsertOptions](Word.BuildingBlock.InsertOptions.md)** property for the **BuildingBlock** object.|
-### Return Value
+### Return value
BuildingBlock
diff --git a/api/Word.BuildingBlockEntries.Item.md b/api/Word.BuildingBlockEntries.Item.md
index a2b78c9b5b9..48e8c38c9c7 100644
--- a/api/Word.BuildingBlockEntries.Item.md
+++ b/api/Word.BuildingBlockEntries.Item.md
@@ -27,11 +27,11 @@ Returns a **BuildingBlock** object that represents the specified item in the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|Specifies a **String** or **Integer** that represents the name or ordinal position of the object in the collection.|
-### Return Value
+### Return value
BuildingBlock
diff --git a/api/Word.BuildingBlockTypes.Item.md b/api/Word.BuildingBlockTypes.Item.md
index 3c5c2f1d6eb..084dfd3ab1b 100644
--- a/api/Word.BuildingBlockTypes.Item.md
+++ b/api/Word.BuildingBlockTypes.Item.md
@@ -27,11 +27,11 @@ Returns a **BuildingBlockType** object that represents the specified item in th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **WdBuildingBlockTypes**|Specifies the building block type of the item in the collection.|
-### Return Value
+### Return value
BuildingBlockType
diff --git a/api/Word.BuildingBlocks.Add.md b/api/Word.BuildingBlocks.Add.md
index e7ecc33a9d9..5cc5a3ad8fc 100644
--- a/api/Word.BuildingBlocks.Add.md
+++ b/api/Word.BuildingBlocks.Add.md
@@ -24,14 +24,14 @@ Creates a new building block and returns a **BuildingBlock** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|Specifies the name of the building block entry. Corresponds to the **[Name](Word.BuildingBlock.Name.md)** property of the **BuildingBlock** object.|
| _Range_|Required| **Range**|Specifies the value of the buildling block entry. Corresponds to the **[Value](Word.BuildingBlock.Value.md)** property of the **BuildingBlock** object.|
| _Description_|Optional| **Variant**|Specifies the description of the buildling block entry. Corresponds to the **[Description](Word.BuildingBlock.Description.md)** property of the **BuildingBlock** object.|
| _InsertOptions_|Optional| **[WdDocPartInsertOptions](Word.WdDocPartInsertOptions.md)**|Specifies whether the building block entry is inserted as a page, a paragraph, or inline. If omitted, the default value is **wdInsertContent** . Corresponds to the **[InsertOptions](Word.BuildingBlock.InsertOptions.md)** property for the **BuildingBlock** object.|
-### Return Value
+### Return value
BuildingBlock
diff --git a/api/Word.BuildingBlocks.Item.md b/api/Word.BuildingBlocks.Item.md
index f936e246fad..4b3c5a8d899 100644
--- a/api/Word.BuildingBlocks.Item.md
+++ b/api/Word.BuildingBlocks.Item.md
@@ -27,11 +27,11 @@ Returns a **BuildingBlock** object that represents the specified item in the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|Specifies a **String** or **Integer** that represents the name or ordinal position of the object in the collection.|
-### Return Value
+### Return value
BuildingBlock
diff --git a/api/Word.CalloutFormat.CustomDrop.md b/api/Word.CalloutFormat.CustomDrop.md
index 5220e9fd563..872ebf04f3a 100644
--- a/api/Word.CalloutFormat.CustomDrop.md
+++ b/api/Word.CalloutFormat.CustomDrop.md
@@ -27,7 +27,7 @@ Sets the vertical distance (in points) from the edge of the text bounding box to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Drop_|Required| **Single**|The drop distance, in points.|
diff --git a/api/Word.CalloutFormat.CustomLength.md b/api/Word.CalloutFormat.CustomLength.md
index 704fd74feca..95a85b9e01f 100644
--- a/api/Word.CalloutFormat.CustomLength.md
+++ b/api/Word.CalloutFormat.CustomLength.md
@@ -27,7 +27,7 @@ Specifies that the first segment of the callout line (the segment attached to th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Length_|Required| **Single**|The length of the first segment of the callout, in points.|
diff --git a/api/Word.CalloutFormat.PresetDrop.md b/api/Word.CalloutFormat.PresetDrop.md
index 450eb89a380..d5aafade537 100644
--- a/api/Word.CalloutFormat.PresetDrop.md
+++ b/api/Word.CalloutFormat.PresetDrop.md
@@ -27,7 +27,7 @@ Specifies whether the callout line attaches to the top, bottom, or center of the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DropType_|Required| **MsoCalloutDropType**|The starting position of the callout line relative to the text bounding box. If you specify **msoCalloutDropCustom** , the values of the **Drop** and **AutoAttach** properties and the relative positions of the callout text box and callout line origin (the place that the callout points to) are used to determine where the callout line attaches to the text box.|
diff --git a/api/Word.CanvasShapes.AddCallout.md b/api/Word.CanvasShapes.AddCallout.md
index a4474c21782..60e710306b5 100644
--- a/api/Word.CanvasShapes.AddCallout.md
+++ b/api/Word.CanvasShapes.AddCallout.md
@@ -27,7 +27,7 @@ Adds a borderless line callout to a drawing canvas. Returns a **[Shape](Word.Sh
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **MsoCallout**|The type of callout.|
| _Left_|Required| **Single**|The position, in points, of the left edge of the callout's bounding box.|
diff --git a/api/Word.CanvasShapes.AddConnector.md b/api/Word.CanvasShapes.AddConnector.md
index 8abbaa613f8..5d9977ce17c 100644
--- a/api/Word.CanvasShapes.AddConnector.md
+++ b/api/Word.CanvasShapes.AddConnector.md
@@ -27,7 +27,7 @@ Returns a **[Shape](Word.Shape.md)** object that represents a connecting line b
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **MsoConnectorType**|The type of connector.|
| _BeginX_|Required| **Single**|The horizontal position that marks the beginning of the connector.|
diff --git a/api/Word.CanvasShapes.AddCurve.md b/api/Word.CanvasShapes.AddCurve.md
index 680166dafe0..c6fdda5a1b5 100644
--- a/api/Word.CanvasShapes.AddCurve.md
+++ b/api/Word.CanvasShapes.AddCurve.md
@@ -27,7 +27,7 @@ Returns a **[Shape](Word.Shape.md)** object that represents a B?zier curve in a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SafeArrayOfPoints_|Required| **Variant**|An array of coordinate pairs that specifies the vertices and control points of the curve. The first point you specify is the starting vertex, and the next two points are control points for the first B?zier segment. Then, for each additional segment of the curve, you specify a vertex and two control points. The last point you specify is the ending vertex for the curve. Note that you must always specify 3n + 1 points, where n is the number of segments in the curve.|
diff --git a/api/Word.CanvasShapes.AddLabel.md b/api/Word.CanvasShapes.AddLabel.md
index 33a25387b5c..d839d7b2e05 100644
--- a/api/Word.CanvasShapes.AddLabel.md
+++ b/api/Word.CanvasShapes.AddLabel.md
@@ -27,7 +27,7 @@ Adds a text label to a drawing canvas. Returns a **[Shapes](Word.shapes.md)** o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Orientation_|Required| **MsoText**|The orientation of the text.|
| _Left_|Required| **Single**|The position, measured in points, of the left edge of the label relative to the left edge of the drawing canvas.|
diff --git a/api/Word.CanvasShapes.AddLine.md b/api/Word.CanvasShapes.AddLine.md
index 3888a42700e..ad7737bee42 100644
--- a/api/Word.CanvasShapes.AddLine.md
+++ b/api/Word.CanvasShapes.AddLine.md
@@ -27,7 +27,7 @@ Adds a line to a drawing canvas. Returns a **[Shape](Word.Shape.md)** object th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _BeginX_|Required| **Single**|The horizontal position, measured in points, of the line's starting point, relative to the drawing canvas.|
| _BeginY_|Required| **Single**|The vertical position, measured in points, of the line's starting point, relative to the drawing canvas.|
diff --git a/api/Word.CanvasShapes.AddPicture.md b/api/Word.CanvasShapes.AddPicture.md
index 630f683c96c..3e161f16cdb 100644
--- a/api/Word.CanvasShapes.AddPicture.md
+++ b/api/Word.CanvasShapes.AddPicture.md
@@ -27,7 +27,7 @@ Adds a picture to a drawing canvas. Returns a **Shape** object that represents
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The path and file name of the picture.|
| _LinkToFile_|Optional| **Variant**| **True** to link the picture to the file from which it was created. **False** to make the picture an independent copy of the file. The default value is **False** .|
diff --git a/api/Word.CanvasShapes.AddPolyline.md b/api/Word.CanvasShapes.AddPolyline.md
index 2afcb1e9bfe..b2686de832d 100644
--- a/api/Word.CanvasShapes.AddPolyline.md
+++ b/api/Word.CanvasShapes.AddPolyline.md
@@ -27,7 +27,7 @@ Adds an open or closed polygon to a drawing canvas. Returns a **Shape** object
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SafeArrayOfPoints_|Required| **Variant**|An array of coordinate pairs that specifies the polyline drawing's vertices.|
diff --git a/api/Word.CanvasShapes.AddShape.md b/api/Word.CanvasShapes.AddShape.md
index 95464139d42..40df0e6a6dc 100644
--- a/api/Word.CanvasShapes.AddShape.md
+++ b/api/Word.CanvasShapes.AddShape.md
@@ -27,7 +27,7 @@ Adds an AutoShape to a drawing canvas. Returns a **[Shape](Word.Shape.md)** obj
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **Long**|The type of shape to be returned. Can be any **MsoAutoShape** constant.|
| _Left_|Required| **Single**|The position, measured in points, of the left edge of the AutoShape.|
diff --git a/api/Word.CanvasShapes.AddTextEffect.md b/api/Word.CanvasShapes.AddTextEffect.md
index 8a629f9baf3..7a29088bb3d 100644
--- a/api/Word.CanvasShapes.AddTextEffect.md
+++ b/api/Word.CanvasShapes.AddTextEffect.md
@@ -27,7 +27,7 @@ Adds a WordArt shape to a drawing canvas. Returns a **[Shape](Word.Shape.md)**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PresetTextEffect_|Required| **Mso**|A preset text effect. The values of the **MsoPresetTextEffect** constants correspond to the formats listed in the **WordArt Gallery** dialog box (numbered from left to right and from top to bottom).|
| _Text_|Required| **String**|The text in the WordArt.|
diff --git a/api/Word.CanvasShapes.AddTextbox.md b/api/Word.CanvasShapes.AddTextbox.md
index a6607330abe..fc450f086bc 100644
--- a/api/Word.CanvasShapes.AddTextbox.md
+++ b/api/Word.CanvasShapes.AddTextbox.md
@@ -27,7 +27,7 @@ Adds a text box to a drawing canvas. Returns a **Shape** object that represents
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Orientation_|Required| **MsoTextOrientation**|The orientation of the text. Some of the **MsoTextOrientation** constants may not be available to you, depending on the language support (U.S. English, for example) that you?ve selected or installed.|
| _Left_|Required| **Single**|The position, measured in points, of the left edge of the text box.|
diff --git a/api/Word.CanvasShapes.BuildFreeform.md b/api/Word.CanvasShapes.BuildFreeform.md
index 6a341372825..dea7a6595ad 100644
--- a/api/Word.CanvasShapes.BuildFreeform.md
+++ b/api/Word.CanvasShapes.BuildFreeform.md
@@ -27,7 +27,7 @@ Builds a freeform object. Returns a **[FreeformBuilder](Word.FreeformBuilder.md
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _EditingType_|Required| **MsoEditingType**|The EditingType parameter can be either **msoEditingAuto** or **msoEditingCorner** ; cannot be **msoEditingSmooth** or **msoEditingSymmetric** .|
| _X1_|Required| **Single**|The position (in points) of the first node in the freeform drawing relative to the left edge of the document.|
diff --git a/api/Word.CanvasShapes.Item.md b/api/Word.CanvasShapes.Item.md
index f6c4bae1b85..2447b1cd9f3 100644
--- a/api/Word.CanvasShapes.Item.md
+++ b/api/Word.CanvasShapes.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Shape** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
Shape
diff --git a/api/Word.CanvasShapes.Range.md b/api/Word.CanvasShapes.Range.md
index 8ef5dcc83f9..9900c697aac 100644
--- a/api/Word.CanvasShapes.Range.md
+++ b/api/Word.CanvasShapes.Range.md
@@ -27,11 +27,11 @@ Returns a **ShapeRange** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|Specifies which shapes are to be included in the specified range. Can be an integer that specifies the index number of a shape within the **Shapes** collection, a string that specifies the name of a shape, or a array that contains integers or strings.|
-### Return Value
+### Return value
ShapeRange
diff --git a/api/Word.CaptionLabels.Add.md b/api/Word.CaptionLabels.Add.md
index 69ab33dba07..1a0543148a2 100644
--- a/api/Word.CaptionLabels.Add.md
+++ b/api/Word.CaptionLabels.Add.md
@@ -27,11 +27,11 @@ Returns a **CaptionLabel** object that represents a custom caption label.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The name of the custom caption label.|
-### Return Value
+### Return value
CaptionLabel
diff --git a/api/Word.CaptionLabels.Item.md b/api/Word.CaptionLabels.Item.md
index 6a41fefbbd3..a11c1eda70f 100644
--- a/api/Word.CaptionLabels.Item.md
+++ b/api/Word.CaptionLabels.Item.md
@@ -27,11 +27,11 @@ Returns an individual **CaptionLabel** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
CaptionLabel
diff --git a/api/Word.Categories.Item.md b/api/Word.Categories.Item.md
index 2f0817e57a4..d77cc8357c6 100644
--- a/api/Word.Categories.Item.md
+++ b/api/Word.Categories.Item.md
@@ -27,11 +27,11 @@ Returns a **Category** object that represents the specified item in the collect
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|Specifies a **String** or **Integer** that represents the name or ordinal position of the object in the collection.|
-### Return Value
+### Return value
Category
diff --git a/api/Word.Cell.Delete.md b/api/Word.Cell.Delete.md
index 8ad85d9f09b..6dea2aff545 100644
--- a/api/Word.Cell.Delete.md
+++ b/api/Word.Cell.Delete.md
@@ -27,7 +27,7 @@ Deletes a table cell or cells and optionally controls how the remaining cells ar
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShiftCells_|Optional| **Variant**|The direction in which the remaining cells are to be shifted. Can be any **[WdDeleteCells](Word.WdDeleteCells.md)** constant. If omitted, cells to the right of the last deleted cell are shifted left.|
diff --git a/api/Word.Cell.Formula.md b/api/Word.Cell.Formula.md
index a0477ddb7c5..abcd9f7cd22 100644
--- a/api/Word.Cell.Formula.md
+++ b/api/Word.Cell.Formula.md
@@ -27,7 +27,7 @@ Inserts an = (Formula) field that contains the specified formula into a table ce
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Formula_|Optional| **Variant**|The mathematical formula you want the = (Formula) field to evaluate. Spreadsheet-type references to table cells are valid. For example, "=SUM(A4:C4)" specifies the first three values in the fourth row. For more information about the = (Formula) field, see Field codes:= (Formula) field.|
| _NumFormat_|Optional| **Variant**|A format for the result of the = (Formula) field. For information about the types of formats you can apply, see Numeric Picture (\#) field switch.|
diff --git a/api/Word.Cell.Merge.md b/api/Word.Cell.Merge.md
index e35d3b20021..b1e281e437d 100644
--- a/api/Word.Cell.Merge.md
+++ b/api/Word.Cell.Merge.md
@@ -27,7 +27,7 @@ Merges the specified table cell with another table cell. The result is a single
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _MergeTo_|Required| **Cell object**|The cell to be merged with.|
diff --git a/api/Word.Cell.SetHeight.md b/api/Word.Cell.SetHeight.md
index 14ee593f913..4f6e1dc8e43 100644
--- a/api/Word.Cell.SetHeight.md
+++ b/api/Word.Cell.SetHeight.md
@@ -27,7 +27,7 @@ Sets the height of table cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RowHeight_|Required| **Variant**|The height of the row or rows, in points.|
| _HeightRule_|Required| **WdRowHeightRule**|The rule for determining the height of the specified cells.|
diff --git a/api/Word.Cell.SetWidth.md b/api/Word.Cell.SetWidth.md
index 5a9f8dab051..2640c541f6e 100644
--- a/api/Word.Cell.SetWidth.md
+++ b/api/Word.Cell.SetWidth.md
@@ -27,7 +27,7 @@ Sets the width of columns or cells in a table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ColumnWidth_|Required| **Single**|The width of the specified column or columns, in points.|
| _RulerStyle_|Required| **WdRulerStyle**|Controls the way Word adjusts cell widths.|
diff --git a/api/Word.Cell.Split.md b/api/Word.Cell.Split.md
index d253b564f0d..e404efc5fe9 100644
--- a/api/Word.Cell.Split.md
+++ b/api/Word.Cell.Split.md
@@ -27,7 +27,7 @@ Splits a single table cell into multiple cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NumRows_|Optional| **Variant**|The number of rows that the cell or group of cells is to be split into.|
| _NumColumns_|Optional| **Variant**|The number of columns that the cell or group of cells is to be split into.|
diff --git a/api/Word.Cells.Add.md b/api/Word.Cells.Add.md
index ae0119e2a99..306d5e4a28f 100644
--- a/api/Word.Cells.Add.md
+++ b/api/Word.Cells.Add.md
@@ -27,11 +27,11 @@ Returns a **Cell** object that represents a cell added to a table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _BeforeCell_|Optional| **Variant**|A **Cell** object that represents the cell that will appear immediately to the right of the new cell or cells.|
-### Return Value
+### Return value
Cell
diff --git a/api/Word.Cells.Delete.md b/api/Word.Cells.Delete.md
index c890f9d22dd..46145f2aa33 100644
--- a/api/Word.Cells.Delete.md
+++ b/api/Word.Cells.Delete.md
@@ -27,7 +27,7 @@ Deletes a table cell or cells and optionally controls how the remaining cells ar
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShiftCells_|Optional| **Variant**|The direction in which the remaining cells are to be shifted. Can be any **[WdDeleteCells](Word.WdDeleteCells.md)** constant. If omitted, cells to the right of the last deleted cell are shifted left.|
diff --git a/api/Word.Cells.Item.md b/api/Word.Cells.Item.md
index 04963fe36b9..f267540edfd 100644
--- a/api/Word.Cells.Item.md
+++ b/api/Word.Cells.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Cell** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Cell
diff --git a/api/Word.Cells.SetHeight.md b/api/Word.Cells.SetHeight.md
index 694122e1f2d..742386bfc27 100644
--- a/api/Word.Cells.SetHeight.md
+++ b/api/Word.Cells.SetHeight.md
@@ -27,7 +27,7 @@ Sets the height of table cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RowHeight_|Required| **Variant**|The height of the row or rows, in points.|
| _HeightRule_|Required| **WdRowHeightRule**|The rule for determining the height of the specified cells.|
diff --git a/api/Word.Cells.SetWidth.md b/api/Word.Cells.SetWidth.md
index f7187e8ea5b..eede7246c21 100644
--- a/api/Word.Cells.SetWidth.md
+++ b/api/Word.Cells.SetWidth.md
@@ -27,7 +27,7 @@ Sets the width of columns or cells in a table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ColumnWidth_|Required| **Single**|The width of the specified column or columns, in points.|
| _RulerStyle_|Required| **WdRulerStyle**|Controls the way Word adjusts cell widths.|
diff --git a/api/Word.Cells.Split.md b/api/Word.Cells.Split.md
index 5b0072e510d..5b56ba21699 100644
--- a/api/Word.Cells.Split.md
+++ b/api/Word.Cells.Split.md
@@ -27,7 +27,7 @@ Splits a range of table cells.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NumRows_|Optional| **Variant**|The number of rows that the cell or group of cells is to be split into.|
| _NumColumns_|Optional| **Variant**|The number of columns that the cell or group of cells is to be split into.|
diff --git a/api/Word.Characters.Item.md b/api/Word.Characters.Item.md
index b1bfd5ab982..7580bcd23c3 100644
--- a/api/Word.Characters.Item.md
+++ b/api/Word.Characters.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Range** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Range
diff --git a/api/Word.Chart.ApplyChartTemplate.md b/api/Word.Chart.ApplyChartTemplate.md
index ec0e45e677d..10281882b45 100644
--- a/api/Word.Chart.ApplyChartTemplate.md
+++ b/api/Word.Chart.ApplyChartTemplate.md
@@ -27,7 +27,7 @@ Applies a standard or custom chart type to a chart.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The file name for a chart template.|
diff --git a/api/Word.Chart.ApplyDataLabels.md b/api/Word.Chart.ApplyDataLabels.md
index 120802d5a3a..3d98c7f9538 100644
--- a/api/Word.Chart.ApplyDataLabels.md
+++ b/api/Word.Chart.ApplyDataLabels.md
@@ -27,7 +27,7 @@ Applies data labels to all the series in a chart.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Optional| **[XlDataLabelsType](Word.xldatalabelstype.md)**|One of the enumeration values that specifies the type of data label to apply.|
| _LegendKey_|Optional| **Variant**| **True** to show the legend key next to the point. The default is **False** .|
diff --git a/api/Word.Chart.ApplyLayout.md b/api/Word.Chart.ApplyLayout.md
index 026ac19b444..19a3d1f1694 100644
--- a/api/Word.Chart.ApplyLayout.md
+++ b/api/Word.Chart.ApplyLayout.md
@@ -27,7 +27,7 @@ Applies the layouts shown in the ribbon.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Layout_|Required| **Long**|The type of layout. The type of layout is denoted by a number from 1 to 10.|
| _ChartType_|Optional| **Variant**|An **[XlChartType](./Excel.XlChartType.md)** constant that represents the type of chart.|
diff --git a/api/Word.Chart.Axes.md b/api/Word.Chart.Axes.md
index 632eee1bb07..58f19c6be5f 100644
--- a/api/Word.Chart.Axes.md
+++ b/api/Word.Chart.Axes.md
@@ -24,7 +24,7 @@ Returns a collection of axes on the chart.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Optional| **Variant**|The axis to return. Can be one of the following **[XlAxisType](Word.xlaxistype.md)** constants: **xlValue** , **xlCategory** , or **xlSeriesAxis** (**xlSeriesAxis** is valid only for 3-D charts).|
| _AxisGroup_|Optional| **[XlAxisGroup](Word.xlaxisgroup.md)**|One of the enumeration values that specifies the axis group. The default is **xlPrimary** .
@@ -32,7 +32,7 @@ Returns a collection of axes on the chart.
|
-### Return Value
+### Return value
An [Axes](Word.Axes.md) object that contains the selected axes from the chart.
diff --git a/api/Word.Chart.ChartGroups.md b/api/Word.Chart.ChartGroups.md
index 6781df47627..f1a6c2b4144 100644
--- a/api/Word.Chart.ChartGroups.md
+++ b/api/Word.Chart.ChartGroups.md
@@ -24,7 +24,7 @@ Returns an object that represents either a single chart group or a collection of
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Optional| **Variant**|The chart group number. If specified, a single **[ChartGroup](Word.ChartGroup.md)** object is returned. If omitted, a **[ChartGroups](Word.ChartGroups.md)** object, which contains a collection of every **ChartGroup** object for that chart, is returned.|
diff --git a/api/Word.Chart.ChartWizard.md b/api/Word.Chart.ChartWizard.md
index 46e67ae1a0a..2f21633415e 100644
--- a/api/Word.Chart.ChartWizard.md
+++ b/api/Word.Chart.ChartWizard.md
@@ -24,7 +24,7 @@ _expression_ A variable that represents a **[Chart](Word.Chart.md)** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Source_|Optional|**Variant**|The range that contains the source data for the new chart. If this argument is omitted, Word edits the active chart sheet or the selected chart on the active worksheet.|
| _Gallery_|Optional|**Variant**|One of the **[XlChartType](./Excel.XlChartType.md)** constants that specifies the chart type.|
diff --git a/api/Word.Chart.Copy.md b/api/Word.Chart.Copy.md
index 25a9838ea0a..57c58761955 100644
--- a/api/Word.Chart.Copy.md
+++ b/api/Word.Chart.Copy.md
@@ -27,7 +27,7 @@ Not supported for this object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Before_|Optional| **Variant**|Not supported for this object.|
| _After_|Optional| **Variant**|Not supported for this object.|
diff --git a/api/Word.Chart.CopyPicture.md b/api/Word.Chart.CopyPicture.md
index d6a6a7f9875..8ee2a5b5f4a 100644
--- a/api/Word.Chart.CopyPicture.md
+++ b/api/Word.Chart.CopyPicture.md
@@ -27,7 +27,7 @@ Copies the selected object to the Clipboard as a picture.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Appearance_|Optional| **[XlPictureAppearance](Word.xlpictureappearance.md)**|One of the enumeration values that specifies how the picture should be copied. The default is **xlScreen** .|
| _Format_|Optional| **[XlCopyPictureFormat](Word.xlcopypictureformat.md)**|One of the enumeration values that specifies the format of the picture. The default is **xlPicture** .|
diff --git a/api/Word.Chart.Export.md b/api/Word.Chart.Export.md
index f717129bf64..c13b46375ea 100644
--- a/api/Word.Chart.Export.md
+++ b/api/Word.Chart.Export.md
@@ -27,13 +27,13 @@ Exports the chart in a graphic format.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the exported file.|
| _FilterName_|Optional| **Variant**|The language-independent name of the graphic filter as it appears in the registry.|
| _Interactive_|Optional| **Variant**| **True** to display the dialog box that contains the filter-specific options. **False** to indicate that Word should use the default values for the filter. The default is **False** .|
-### Return Value
+### Return value
A **Boolean** value that indicates whether the export was successful.
diff --git a/api/Word.Chart.GetChartElement.md b/api/Word.Chart.GetChartElement.md
index 41c6a5e4bc8..e9e43461502 100644
--- a/api/Word.Chart.GetChartElement.md
+++ b/api/Word.Chart.GetChartElement.md
@@ -27,7 +27,7 @@ Returns information about the chart element at the specified x-coordinate and y-
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _x_|Required| **Long**|The x-coordinate of the chart element.|
| _y_|Required| **Long**|The y-coordinate of the chart element.|
diff --git a/api/Word.Chart.HasAxis.md b/api/Word.Chart.HasAxis.md
index ae50ce05baa..fca6cd47dd5 100644
--- a/api/Word.Chart.HasAxis.md
+++ b/api/Word.Chart.HasAxis.md
@@ -27,7 +27,7 @@ Returns or sets which axes exist on the chart. Read/write **Variant** .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index1_|Optional| **Variant**|The axis type. Series axes apply only to 3-D charts. Can be one of the **[XlAxisType](Word.xlaxistype.md)** constants.|
| _Index2_|Optional| **Variant**|The axis group. 3-D charts have only one set of axes. Can be one of the **[XlAxisGroup](Word.xlaxisgroup.md)** constants.|
diff --git a/api/Word.Chart.Paste.md b/api/Word.Chart.Paste.md
index 48418485ef0..efbcc406108 100644
--- a/api/Word.Chart.Paste.md
+++ b/api/Word.Chart.Paste.md
@@ -27,7 +27,7 @@ Pastes chart data from the Clipboard into the chart.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Optional| **Variant**|Specifies the chart information to paste if a chart is on the Clipboard. Can be one of the following values:
diff --git a/api/Word.Chart.SaveChartTemplate.md b/api/Word.Chart.SaveChartTemplate.md
index 0daa1921762..c0d343a8202 100644
--- a/api/Word.Chart.SaveChartTemplate.md
+++ b/api/Word.Chart.SaveChartTemplate.md
@@ -27,7 +27,7 @@ Saves a custom chart template to the list of available chart templates.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the chart template.|
diff --git a/api/Word.Chart.Select.md b/api/Word.Chart.Select.md
index dfca008dde2..92b362e1c4c 100644
--- a/api/Word.Chart.Select.md
+++ b/api/Word.Chart.Select.md
@@ -27,7 +27,7 @@ Selects the object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Replace_|Optional| **Variant**| **True** to replace the current selection with the specified object. **False** to extend the current selection to include any previously selected objects and the specified object. This parameter is used only with sheets.|
diff --git a/api/Word.Chart.SeriesCollection.md b/api/Word.Chart.SeriesCollection.md
index c644c63f6cb..da78820ebb6 100644
--- a/api/Word.Chart.SeriesCollection.md
+++ b/api/Word.Chart.SeriesCollection.md
@@ -20,7 +20,7 @@ Returns all the series in the chart.
_expression_ A variable that represents a '[Chart](Word.Chart.md)' object.
-### Return Value
+### Return value
A **[SeriesCollection](Word.SeriesCollection.md)** object that represents all the series in the chart.
diff --git a/api/Word.Chart.SetBackgroundPicture.md b/api/Word.Chart.SetBackgroundPicture.md
index f338dc2b43e..beafc11c4f5 100644
--- a/api/Word.Chart.SetBackgroundPicture.md
+++ b/api/Word.Chart.SetBackgroundPicture.md
@@ -27,7 +27,7 @@ Sets the background graphic for a chart.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the file for the graphic.|
diff --git a/api/Word.Chart.SetDefaultChart.md b/api/Word.Chart.SetDefaultChart.md
index fb9ab514a0f..a237c80d4e3 100644
--- a/api/Word.Chart.SetDefaultChart.md
+++ b/api/Word.Chart.SetDefaultChart.md
@@ -27,7 +27,7 @@ Specifies the name of the chart template that Microsoft Word uses when it create
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **Variant**|Specifies the name of the default chart template that Word uses when it creates new charts. This name can be set to either the name of a user-defined chart template in the gallery or a special **[XlChartGallery](Word.xlchartgallery.md)** constant, **xlBuiltIn** , to specify a built-in chart template.|
diff --git a/api/Word.Chart.SetElement.md b/api/Word.Chart.SetElement.md
index 5c2c35ddcb5..b4bc12ff7e0 100644
--- a/api/Word.Chart.SetElement.md
+++ b/api/Word.Chart.SetElement.md
@@ -24,7 +24,7 @@ Sets chart elements on a chart. Read/write **MsoChartElementType** .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Element_|Required| **MsoChartElementType**|One of the enumeration values that specifies the chart element type.|
diff --git a/api/Word.Chart.SetSourceData.md b/api/Word.Chart.SetSourceData.md
index 746050a16e1..7fdd990d4e2 100644
--- a/api/Word.Chart.SetSourceData.md
+++ b/api/Word.Chart.SetSourceData.md
@@ -27,7 +27,7 @@ Sets the source data range for the chart.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Source_|Required| **String**|The address of the chart data range that contains the source data.|
| _PlotBy_|Optional| **Variant**|Specifies the way the data will be plotted. Can be either of the following **[XlRowCol](Word.xlrowcol.md)** constants: **xlColumns** or **xlRows** .|
diff --git a/api/Word.Chart.ShowAllFieldButtons.md b/api/Word.Chart.ShowAllFieldButtons.md
index 99b9e07ab1e..cc9c165f34a 100644
--- a/api/Word.Chart.ShowAllFieldButtons.md
+++ b/api/Word.Chart.ShowAllFieldButtons.md
@@ -23,7 +23,7 @@ Returns or sets whether to display all field buttons on a PivotChart. Read/write
_expression_ A variable that represents a '[Chart](Word.Chart.md)' object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.ChartCharacters.Insert.md b/api/Word.ChartCharacters.Insert.md
index 5272c748ef9..0a057238f5e 100644
--- a/api/Word.ChartCharacters.Insert.md
+++ b/api/Word.ChartCharacters.Insert.md
@@ -27,7 +27,7 @@ Inserts a string preceding the selected characters.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _String_|Required| **String**|The string to insert.|
diff --git a/api/Word.ChartGroup.SeriesCollection.md b/api/Word.ChartGroup.SeriesCollection.md
index 52916cf0eb0..03d0d0cf603 100644
--- a/api/Word.ChartGroup.SeriesCollection.md
+++ b/api/Word.ChartGroup.SeriesCollection.md
@@ -23,7 +23,7 @@ Returns all the series in the chart group.
_expression_ A variable that represents a '[ChartGroup](Word.ChartGroup.md)' object.
-### Return Value
+### Return value
A **[SeriesCollection](Word.SeriesCollection.md)** object that represents all the series in the chart group.
diff --git a/api/Word.ChartGroups.Item.md b/api/Word.ChartGroups.Item.md
index de689ce2609..ed9cfdab006 100644
--- a/api/Word.ChartGroups.Item.md
+++ b/api/Word.ChartGroups.Item.md
@@ -27,11 +27,11 @@ Returns a single object from a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The index number for the object.|
-### Return Value
+### Return value
A **[ChartGroup](Word.ChartGroup.md)** object contained by the collection.
diff --git a/api/Word.ChartTitle.Characters.md b/api/Word.ChartTitle.Characters.md
index 978f26aaffe..bcbb25f6ffc 100644
--- a/api/Word.ChartTitle.Characters.md
+++ b/api/Word.ChartTitle.Characters.md
@@ -27,7 +27,7 @@ Returns a **[ChartCharacters](Word.ChartCharacters.md)** object that represents
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Start_|Optional| **Variant**|The first character to be returned. If this argument is either 1 or omitted, this property returns a range of characters starting with the first character.|
| _Length_|Optional| **Variant**|The number of characters to be returned. If this argument is omitted, this property returns the remainder of the string (everything after the Start character).|
diff --git a/api/Word.ChartTitle.Formula.md b/api/Word.ChartTitle.Formula.md
index 0fb8a807a67..29111557dc8 100644
--- a/api/Word.ChartTitle.Formula.md
+++ b/api/Word.ChartTitle.Formula.md
@@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using
_expression_ A variable that represents a '[ChartTitle](Word.ChartTitle.md)' object.
-### Return Value
+### Return value
String
diff --git a/api/Word.ChartTitle.Height.md b/api/Word.ChartTitle.Height.md
index ae8857dcb94..96a8278b979 100644
--- a/api/Word.ChartTitle.Height.md
+++ b/api/Word.ChartTitle.Height.md
@@ -23,7 +23,7 @@ Returns the height, in points, of the object. Read-only.
_expression_ A variable that represents a '[ChartTitle](Word.ChartTitle.md)' object.
-### Return Value
+### Return value
Double
diff --git a/api/Word.CoAuthLock.Unlock.md b/api/Word.CoAuthLock.Unlock.md
index 4fba13d752a..59f0fed5ec5 100644
--- a/api/Word.CoAuthLock.Unlock.md
+++ b/api/Word.CoAuthLock.Unlock.md
@@ -23,7 +23,7 @@ Unlocks the specified lock.
_expression_ An expression that returns a '[CoAuthLock](Word.CoAuthLock.md)' object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.CoAuthLocks.Add.md b/api/Word.CoAuthLocks.Add.md
index f5022652bb1..618b7b36ad5 100644
--- a/api/Word.CoAuthLocks.Add.md
+++ b/api/Word.CoAuthLocks.Add.md
@@ -27,12 +27,12 @@ Returns a **[CoAuthLock](Word.CoAuthLock.md)** object that represents a lock ad
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Optional| **Variant**|Specifies the document range locked by the **[CoAuthLock](Word.CoAuthLock.md)** object. This parameter may be a **Paragraph** , **Column** , **Cell** , **Row** , **Table** , **Range** , or **Selection** object.|
| _Type_|Optional| **[WdLockType](Word.WdLockType.md)**|Specifies the type of lock. The **WdLockType** specified can only be **wdLockEphemeral** or **WdLockReservation**|
-### Return Value
+### Return value
**CoAuthLock**
diff --git a/api/Word.CoAuthLocks.Item.md b/api/Word.CoAuthLocks.Item.md
index 521dd6fed3d..3214dcf2e3f 100644
--- a/api/Word.CoAuthLocks.Item.md
+++ b/api/Word.CoAuthLocks.Item.md
@@ -27,11 +27,11 @@ Returns an individual **[CoAuthLock](Word.CoAuthLock.md)** object in a collecti
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned.|
-### Return Value
+### Return value
**[CoAuthLock](Word.CoAuthLock.md)**
diff --git a/api/Word.CoAuthLocks.RemoveEphemeralLocks.md b/api/Word.CoAuthLocks.RemoveEphemeralLocks.md
index 90bee216a8f..8ecc5548e24 100644
--- a/api/Word.CoAuthLocks.RemoveEphemeralLocks.md
+++ b/api/Word.CoAuthLocks.RemoveEphemeralLocks.md
@@ -23,7 +23,7 @@ Removes ephemeral locks from the document.
_expression_ An expression that returns a '[CoAuthLocks](Word.CoAuthLocks.md)' object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.CoAuthUpdates.Item.md b/api/Word.CoAuthUpdates.Item.md
index 738f229c8da..b1f8ff226ba 100644
--- a/api/Word.CoAuthUpdates.Item.md
+++ b/api/Word.CoAuthUpdates.Item.md
@@ -27,11 +27,11 @@ Returns an individual **CoAuthUpdates** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned.|
-### Return Value
+### Return value
CoAuthUpdate
diff --git a/api/Word.CoAuthors.Item.md b/api/Word.CoAuthors.Item.md
index 968e6805b38..785893a747e 100644
--- a/api/Word.CoAuthors.Item.md
+++ b/api/Word.CoAuthors.Item.md
@@ -27,11 +27,11 @@ Returns an individual **CoAuthor** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned.|
-### Return Value
+### Return value
CoAuthor
diff --git a/api/Word.Column.SetWidth.md b/api/Word.Column.SetWidth.md
index 1f6083a01fd..ee64e6191f9 100644
--- a/api/Word.Column.SetWidth.md
+++ b/api/Word.Column.SetWidth.md
@@ -27,7 +27,7 @@ Sets the width of a column in a table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ColumnWidth_|Required| **Single**|The width of the specified column or columns, in points.|
| _RulerStyle_|Required| **WdRulerStyle**|Controls the way Word adjusts cell widths.|
diff --git a/api/Word.Column.Sort.md b/api/Word.Column.Sort.md
index 006f258a17b..bd61c3fb9a8 100644
--- a/api/Word.Column.Sort.md
+++ b/api/Word.Column.Sort.md
@@ -27,7 +27,7 @@ Sorts the specified table column.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ExcludeHeader_|Optional| **Variant**| **True** to exclude the first row or paragraph header from the sort operation. The default value is **False** .|
| _SortFieldType_|Optional| **Variant**|The sort type for the column. Can be one of the **[WdSortFieldType](Word.WdSortFieldType.md)** constants.|
diff --git a/api/Word.Columns.Add.md b/api/Word.Columns.Add.md
index 3dff2a3252f..5f921a184f3 100644
--- a/api/Word.Columns.Add.md
+++ b/api/Word.Columns.Add.md
@@ -27,11 +27,11 @@ Returns a **Column** object that represents a column added to a table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _BeforeColumn_|Optional| **Variant**|A **Column** object that represents the column that will appear immediately to the right of the new column.|
-### Return Value
+### Return value
Column
diff --git a/api/Word.Columns.Item.md b/api/Word.Columns.Item.md
index 8c46e8a3965..f3c88d69a0b 100644
--- a/api/Word.Columns.Item.md
+++ b/api/Word.Columns.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Column** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Column
diff --git a/api/Word.Columns.SetWidth.md b/api/Word.Columns.SetWidth.md
index 93d7009f970..77b86cc8ba9 100644
--- a/api/Word.Columns.SetWidth.md
+++ b/api/Word.Columns.SetWidth.md
@@ -27,7 +27,7 @@ Sets the width of columns in a table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ColumnWidth_|Required| **Single**|The width of the specified column or columns, in points.|
| _RulerStyle_|Required| **[WdRulerStyle](Word.WdRulerStyle.md)**|Controls the way Word adjusts cell widths.|
diff --git a/api/Word.Comments.Add.md b/api/Word.Comments.Add.md
index d22be5993b1..31016eb32eb 100644
--- a/api/Word.Comments.Add.md
+++ b/api/Word.Comments.Add.md
@@ -27,12 +27,12 @@ Returns a **Comment** object that represents a comment added to a range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The range to have a comment added to it.|
| _Text_|Optional| **Variant**|The text of the comment.|
-### Return Value
+### Return value
Comment
diff --git a/api/Word.Comments.Item.md b/api/Word.Comments.Item.md
index 5a6817b70c9..1e9a1548465 100644
--- a/api/Word.Comments.Item.md
+++ b/api/Word.Comments.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Comment** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Comment
diff --git a/api/Word.Conflict.Accept.md b/api/Word.Conflict.Accept.md
index 6f38a6440d1..c019d8dc8d6 100644
--- a/api/Word.Conflict.Accept.md
+++ b/api/Word.Conflict.Accept.md
@@ -23,7 +23,7 @@ Accepts the user specified conflict change, and removes the conflict.
_expression_ An expression that returns a [Conflict](./Word.Conflict.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.Conflict.Reject.md b/api/Word.Conflict.Reject.md
index 1d9bc596666..b8a2aa64ccd 100644
--- a/api/Word.Conflict.Reject.md
+++ b/api/Word.Conflict.Reject.md
@@ -23,7 +23,7 @@ Rejects the user change, removes the conflict, and accepts the server copy of th
_expression_ An expression that returns a [Conflict](./Word.Conflict.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.Conflicts.AcceptAll.md b/api/Word.Conflicts.AcceptAll.md
index 2542482ab06..655d65f117b 100644
--- a/api/Word.Conflicts.AcceptAll.md
+++ b/api/Word.Conflicts.AcceptAll.md
@@ -23,7 +23,7 @@ Accepts all of the user's changes, removes the conflicts, and merges the changes
_expression_ An expression that returns a [Conflicts](./Word.Conflicts.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.Conflicts.Item.md b/api/Word.Conflicts.Item.md
index 639b56ed54e..ddd7eceffa7 100644
--- a/api/Word.Conflicts.Item.md
+++ b/api/Word.Conflicts.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Conflicts** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned.|
-### Return Value
+### Return value
Conflict
diff --git a/api/Word.Conflicts.RejectAll.md b/api/Word.Conflicts.RejectAll.md
index 96b75d507f3..c8ba8b55620 100644
--- a/api/Word.Conflicts.RejectAll.md
+++ b/api/Word.Conflicts.RejectAll.md
@@ -23,7 +23,7 @@ Rejects all of the user's changes and retains the server copy of the document.
_expression_ An expression that returns a [Conflicts](./Word.Conflicts.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.ContentControl.Delete.md b/api/Word.ContentControl.Delete.md
index 9f3f2017349..7d7c49cbc87 100644
--- a/api/Word.ContentControl.Delete.md
+++ b/api/Word.ContentControl.Delete.md
@@ -27,7 +27,7 @@ Deletes the specified content control and the contents of the content control.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DeleteContents_|Optional| **Boolean**|Specifies whether to delete the contents of the content control. **True** removes both the content control and its contents. **False** removes the control but leaves the contents of the content control in the active document. The default value is **False** .|
diff --git a/api/Word.ContentControl.SetCheckedSymbol.md b/api/Word.ContentControl.SetCheckedSymbol.md
index 7e9a34bbfd2..9d8390d1a72 100644
--- a/api/Word.ContentControl.SetCheckedSymbol.md
+++ b/api/Word.ContentControl.SetCheckedSymbol.md
@@ -27,7 +27,7 @@ Sets the symbol used to represent the checked state of a check box content contr
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CharacterNumber_|Required| **Long**|The Unicode character number for the specified symbol. This value will always be the sum of 31 (the number of control symbols at the beginning of the font) and the number that corresponds to the position of the symbol in the table of symbols (counting from left to right). For example, to specify a delta character at position 37 in the table of symbols in the Symbol font, set CharacterNumber to 68.|
| _Font_|Optional| **String**|The name of the font that contains the symbol.|
diff --git a/api/Word.ContentControl.SetPlaceholderText.md b/api/Word.ContentControl.SetPlaceholderText.md
index b012e153e2d..d82810632f0 100644
--- a/api/Word.ContentControl.SetPlaceholderText.md
+++ b/api/Word.ContentControl.SetPlaceholderText.md
@@ -27,7 +27,7 @@ Sets the placeholder text that displays in the content control until a user ente
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _BuildingBlock_|Optional| **BuildingBlock**|Specifies a **BuildingBlock** object that contains the contents of the placeholder text.|
| _Range_|Optional| **Range**|Specifies a **Range** object that contains the contents of the placeholder text.|
diff --git a/api/Word.ContentControl.SetUncheckedSymbol.md b/api/Word.ContentControl.SetUncheckedSymbol.md
index 4ac5d8191b5..43e00613b35 100644
--- a/api/Word.ContentControl.SetUncheckedSymbol.md
+++ b/api/Word.ContentControl.SetUncheckedSymbol.md
@@ -27,7 +27,7 @@ Sets the symbol used to represent the unchecked state of a check box content con
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CharacterNumber_|Required| **Long**|The Unicode character number for the specified symbol. This value will always be the sum of 31 (the number of control symbols at the beginning of the font) and the number that corresponds to the position of the symbol in the table of symbols (counting from left to right). For example, to specify a delta character at position 37 in the table of symbols in the Symbol font, set CharacterNumber to 68.|
| _Font_|Optional| **String**|The name of the font that contains the symbol.|
diff --git a/api/Word.ContentControlListEntries.Add.md b/api/Word.ContentControlListEntries.Add.md
index a28b19dd4a7..73403d4a6ca 100644
--- a/api/Word.ContentControlListEntries.Add.md
+++ b/api/Word.ContentControlListEntries.Add.md
@@ -27,13 +27,13 @@ Adds a new list item to a drop-down list or combo box content control and return
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Text_|Required| **String**|Specifies the display text for the list item. Corresponds to the **[Text](Word.ContentControlListEntry.Text.md)** property for a **ContentControlListEntry** object.|
| _Value_|Optional| **String**|Specifies the value of the list item. Corresponds to the **[Value](Word.ContentControlListEntry.Value.md)** property for a **ContentControlListEntry** object. If omitted, the **Value** property is equal to the **Text** property.|
| _Index_|Optional| **Long**|Specifies the ordinal position of the new item in the list. If an item exists at the position specified, the existing item is pushed down in the list. If omitted, the new item is added to the end of the list.|
-### Return Value
+### Return value
ContentControlListEntry
diff --git a/api/Word.ContentControlListEntries.Item.md b/api/Word.ContentControlListEntries.Item.md
index 1e88e66aaa9..8097d758367 100644
--- a/api/Word.ContentControlListEntries.Item.md
+++ b/api/Word.ContentControlListEntries.Item.md
@@ -27,11 +27,11 @@ Returns a **ContentControlListEntry** object that represents the specified item
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Specifies the ordinal position of the object within the collection.|
-### Return Value
+### Return value
ContentControlListEntry
diff --git a/api/Word.ContentControls.Add.md b/api/Word.ContentControls.Add.md
index 55c5f35c745..742e7a0eb45 100644
--- a/api/Word.ContentControls.Add.md
+++ b/api/Word.ContentControls.Add.md
@@ -27,12 +27,12 @@ Adds a new content control, of the type specified, into the active document and
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Optional| **[WdContentControlType](Word.WdContentControlType.md)**|Specifies the type of content control to insert into the active document. If omitted, Microsoft Word inserts a rich-text content control.|
| _Range_|Optional| **Variant**|Specifies where in the active document to place the content control. If omitted, Word places the content control at the position of the insertion point or replaces the current selection.|
-### Return Value
+### Return value
ContentControl
diff --git a/api/Word.ContentControls.Item.md b/api/Word.ContentControls.Item.md
index 7905f2deb91..6c4ddbf1220 100644
--- a/api/Word.ContentControls.Item.md
+++ b/api/Word.ContentControls.Item.md
@@ -24,11 +24,11 @@ Returns a **[ContentControl](Word.ContentControl.md)** object that represents t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|Specifies the ordinal position of the content control to return.|
-### Return Value
+### Return value
ContentControl
diff --git a/api/Word.CustomLabels.Add.md b/api/Word.CustomLabels.Add.md
index cbf9706f653..9b323752297 100644
--- a/api/Word.CustomLabels.Add.md
+++ b/api/Word.CustomLabels.Add.md
@@ -27,12 +27,12 @@ Adds a custom mailing label to the **CustomLabels** collection. Returns a **Cus
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The name for the custom mailing labels.|
| _DotMatrix_|Optional| **Variant**| **True** to have the mailing labels printed on a dot-matrix printer.|
-### Return Value
+### Return value
CustomLabel
diff --git a/api/Word.CustomLabels.Item.md b/api/Word.CustomLabels.Item.md
index e2559af368c..6185c082822 100644
--- a/api/Word.CustomLabels.Item.md
+++ b/api/Word.CustomLabels.Item.md
@@ -27,11 +27,11 @@ Returns a **CustomLabel** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
CustomLabel
diff --git a/api/Word.CustomProperties.Add.md b/api/Word.CustomProperties.Add.md
index c866fc57035..48592619860 100644
--- a/api/Word.CustomProperties.Add.md
+++ b/api/Word.CustomProperties.Add.md
@@ -27,12 +27,12 @@ Returns a **CustomProperty** object that represents s custom property added to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The name of the custom smart tag property.|
| _Value_|Required| **String**|The value of the custom smart tag property|
-### Return Value
+### Return value
CustomProperty
diff --git a/api/Word.CustomProperties.Item.md b/api/Word.CustomProperties.Item.md
index 7d4f9816e4b..702822829b5 100644
--- a/api/Word.CustomProperties.Item.md
+++ b/api/Word.CustomProperties.Item.md
@@ -27,11 +27,11 @@ Returns a **CustomProperty** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
CustomProperty
diff --git a/api/Word.DataLabel.Characters.md b/api/Word.DataLabel.Characters.md
index 9240cc8783a..3600784db50 100644
--- a/api/Word.DataLabel.Characters.md
+++ b/api/Word.DataLabel.Characters.md
@@ -27,7 +27,7 @@ Returns a **[ChartCharacters](Word.ChartCharacters.md)** object that represents
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Start_|Optional| **Variant**|The first character to be returned. If this argument is either 1 or omitted, this property returns a range of characters starting with the first character.|
| _Length_|Optional| **Variant**|The number of characters to be returned. If this argument is omitted, this property returns the remainder of the string (everything after the Start character).|
diff --git a/api/Word.DataLabel.Formula.md b/api/Word.DataLabel.Formula.md
index 6bf107431ec..3f7d6ba36dc 100644
--- a/api/Word.DataLabel.Formula.md
+++ b/api/Word.DataLabel.Formula.md
@@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using
_expression_ A variable that represents a '[DataLabel](Word.DataLabel.md)' object.
-### Return Value
+### Return value
String
diff --git a/api/Word.DataLabel.FormulaR1C1.md b/api/Word.DataLabel.FormulaR1C1.md
index 2ed9d53933b..657f1dc482c 100644
--- a/api/Word.DataLabel.FormulaR1C1.md
+++ b/api/Word.DataLabel.FormulaR1C1.md
@@ -23,7 +23,7 @@ Returns or sets the formula for the object, using R1C1-style notation in the lan
_expression_ A variable that represents a '[DataLabel](Word.DataLabel.md)' object.
-### Return Value
+### Return value
String
diff --git a/api/Word.DataLabel.Height.md b/api/Word.DataLabel.Height.md
index b1ed8ed561d..05780d24575 100644
--- a/api/Word.DataLabel.Height.md
+++ b/api/Word.DataLabel.Height.md
@@ -23,7 +23,7 @@ Gets or sets the height, in points, of the object. Read/write **Double**.
_expression_ A variable that represents a '[DataLabel](Word.DataLabel.md)' object.
-### Return Value
+### Return value
Double
diff --git a/api/Word.DataLabels.Item.md b/api/Word.DataLabels.Item.md
index ee8714f94ec..eeab9c913b5 100644
--- a/api/Word.DataLabels.Item.md
+++ b/api/Word.DataLabels.Item.md
@@ -27,11 +27,11 @@ Returns a single object from a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The index number for the object.|
-### Return Value
+### Return value
A **[DataLabel](Word.DataLabel.md)** object contained by the collection.
diff --git a/api/Word.Dialog.Display.md b/api/Word.Dialog.Display.md
index 6c38ab04416..b1f3bd60ad1 100644
--- a/api/Word.Dialog.Display.md
+++ b/api/Word.Dialog.Display.md
@@ -27,11 +27,11 @@ Displays the specified built-in Word dialog box until either the user closes it
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TimeOut_|Optional| **Variant**|The amount of time that Word will wait before closing the dialog box automatically. One unit is approximately 0.001 second. Concurrent system activity may increase the effective time value. If this argument is omitted, the dialog box is closed when the user closes it.|
-### Return Value
+### Return value
Long
diff --git a/api/Word.Dialog.Show.md b/api/Word.Dialog.Show.md
index 65603067e0b..d24a60ccff2 100644
--- a/api/Word.Dialog.Show.md
+++ b/api/Word.Dialog.Show.md
@@ -27,11 +27,11 @@ Displays and carries out actions initiated in the specified built-in Word dialog
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TimeOut_|Optional| **Variant**|The amount of time that Word will wait before closing the dialog box automatically. One unit is approximately 0.001 second. Concurrent system activity may increase the effective time value. If this argument is omitted, the dialog box is closed when the user dismisses it.|
-### Return Value
+### Return value
Long
diff --git a/api/Word.Dialogs.Item.md b/api/Word.Dialogs.Item.md
index 07e451c12f7..3757bfc7a3a 100644
--- a/api/Word.Dialogs.Item.md
+++ b/api/Word.Dialogs.Item.md
@@ -27,11 +27,11 @@ Returns a dialog in Microsoft Word.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **WdWordDialog**|A constant that specifies the dialog.|
-### Return Value
+### Return value
Dialog
diff --git a/api/Word.Dictionaries.Add.md b/api/Word.Dictionaries.Add.md
index 8e660c3d539..0ececbad61e 100644
--- a/api/Word.Dictionaries.Add.md
+++ b/api/Word.Dictionaries.Add.md
@@ -27,11 +27,11 @@ Returns a **Dictionary** object that represents a new custom spelling or conver
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The string name of the dictionary file. If no path is specified in the string, the proofing tools path is used.|
-### Return Value
+### Return value
Dictionary
diff --git a/api/Word.Dictionaries.Item.md b/api/Word.Dictionaries.Item.md
index a26d8e45c50..8554604db5e 100644
--- a/api/Word.Dictionaries.Item.md
+++ b/api/Word.Dictionaries.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Dictionary** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
Dictionary
diff --git a/api/Word.DisplayUnitLabel.Characters.md b/api/Word.DisplayUnitLabel.Characters.md
index 1bd10b43628..8901296fc04 100644
--- a/api/Word.DisplayUnitLabel.Characters.md
+++ b/api/Word.DisplayUnitLabel.Characters.md
@@ -27,7 +27,7 @@ Returns a **[ChartCharacters](Word.ChartCharacters.md)** object that represents
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Start_|Optional| **Variant**|The first character to be returned. If this argument is either 1 or omitted, this property returns a range of characters starting with the first character.|
| _Length_|Optional| **Variant**|The number of characters to be returned. If this argument is omitted, this property returns the remainder of the string (everything after the Start character).|
diff --git a/api/Word.DisplayUnitLabel.Formula.md b/api/Word.DisplayUnitLabel.Formula.md
index 59dcae4e4a8..de9a381ad1f 100644
--- a/api/Word.DisplayUnitLabel.Formula.md
+++ b/api/Word.DisplayUnitLabel.Formula.md
@@ -23,7 +23,7 @@ Gets or sets a **String** value that represents the formula of the object using
_expression_ A variable that represents a '[DisplayUnitLabel](Word.DisplayUnitLabel.md)' object.
-### Return Value
+### Return value
String
diff --git a/api/Word.DisplayUnitLabel.Height.md b/api/Word.DisplayUnitLabel.Height.md
index 2e775e345a7..3e08a5f8503 100644
--- a/api/Word.DisplayUnitLabel.Height.md
+++ b/api/Word.DisplayUnitLabel.Height.md
@@ -23,7 +23,7 @@ Returns the height, in points, of the object. Read-only.
_expression_ A variable that represents a '[DisplayUnitLabel](Word.DisplayUnitLabel.md)' object.
-### Return Value
+### Return value
Double
diff --git a/api/Word.Document.ActiveWritingStyle.md b/api/Word.Document.ActiveWritingStyle.md
index 59aa2d5b31d..87fa20ca350 100644
--- a/api/Word.Document.ActiveWritingStyle.md
+++ b/api/Word.Document.ActiveWritingStyle.md
@@ -27,7 +27,7 @@ Returns or sets the writing style for a specified language in the specified docu
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _LanguageID_|Required| **Variant**|The language to set the writing style for in the specified document. Can be either a string or one of the following **WdLanguageID** constants. Some of the **WdLanguageID** constants may not be available to you, depending on the language support (U.S. English, for example) that you have selected or installed.|
diff --git a/api/Word.Document.ApplyQuickStyleSet2.md b/api/Word.Document.ApplyQuickStyleSet2.md
index 22a826b3c5c..3438b3b65b8 100644
--- a/api/Word.Document.ApplyQuickStyleSet2.md
+++ b/api/Word.Document.ApplyQuickStyleSet2.md
@@ -27,7 +27,7 @@ Applies the specified Quick Style set to the document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **Variant**|Can be either a **String** that specifies the name of the set to use (corresponds to the name listed in the **Style Set** list) or a constant from the [WdApplyQuickStyleSets](Word.WdApplyQuickStyleSets.md) enumeration.|
diff --git a/api/Word.Document.ApplyTheme.md b/api/Word.Document.ApplyTheme.md
index 8572939a3c4..c8914f4792c 100644
--- a/api/Word.Document.ApplyTheme.md
+++ b/api/Word.Document.ApplyTheme.md
@@ -27,7 +27,7 @@ Applies a theme to an open document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The name of the theme plus any theme formatting options you want to apply. The format of this string is "themennn" where theme and nnn are defined as follows:
diff --git a/api/Word.Document.BuildingBlockInsert.md b/api/Word.Document.BuildingBlockInsert.md
index b6abcbd1103..1fca8a21205 100644
--- a/api/Word.Document.BuildingBlockInsert.md
+++ b/api/Word.Document.BuildingBlockInsert.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'BuildingBlockInsert'(**_Range_** , **_Name_** , **_C
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range**|Specifies the position where the building block is inserted.|
| _Name_|Required| **String**|Specifies the name of the building block.|
diff --git a/api/Word.Document.CanCheckin.md b/api/Word.Document.CanCheckin.md
index 74c369265e9..bc5819e7c5c 100644
--- a/api/Word.Document.CanCheckin.md
+++ b/api/Word.Document.CanCheckin.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ Required. A variable that represents a '[Document](Word.Document.md)' object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Document.CheckIn.md b/api/Word.Document.CheckIn.md
index 595528cdda9..30d6a890a20 100644
--- a/api/Word.Document.CheckIn.md
+++ b/api/Word.Document.CheckIn.md
@@ -27,7 +27,7 @@ Returns a document from a local computer to a server, and sets the local documen
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SaveChanges_|Optional| **Boolean**| **True** saves the document to the server location. The default is **True** .|
| _Comments_|Optional| **Variant**|Comments for the revision of the document being checked in (only applies if SaveChanges equals **True**).|
diff --git a/api/Word.Document.CheckInWithVersion.md b/api/Word.Document.CheckInWithVersion.md
index 04d12641e84..4e1f2a13349 100644
--- a/api/Word.Document.CheckInWithVersion.md
+++ b/api/Word.Document.CheckInWithVersion.md
@@ -27,7 +27,7 @@ Saves a document to a server from a local computer, and sets the local document
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SaveChanges_|Optional| **Boolean**| **True** to save the document to the server location. The default is **True** .|
| _Comments_|Optional| **Variant**|Comments for the revision of the document being checked in (applies only if SaveChanges is set to **True**).|
diff --git a/api/Word.Document.CheckSpelling.md b/api/Word.Document.CheckSpelling.md
index f5095c4dbee..20b338c3f43 100644
--- a/api/Word.Document.CheckSpelling.md
+++ b/api/Word.Document.CheckSpelling.md
@@ -27,7 +27,7 @@ Begins a spelling check for the specified document or range. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _IgnoreUppercase_|Optional| **Variant**| **True** if capitalization is ignored. If this argument is omitted, the current value of the **IgnoreUppercase** property is used.|
| _AlwaysSuggest_|Optional| **Variant**| **True** for Microsoft Word to always suggest alternative spellings. If this argument is omitted, the current value of the **SuggestSpellingCorrections** property is used.|
diff --git a/api/Word.Document.Close(method).md b/api/Word.Document.Close(method).md
index 4879e57bd64..048125d83d3 100644
--- a/api/Word.Document.Close(method).md
+++ b/api/Word.Document.Close(method).md
@@ -27,7 +27,7 @@ Closes the specified document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SaveChanges_|Optional| **Variant**|Specifies the save action for the document. Can be one of the following **[WdSaveOptions](Word.WdSaveOptions.md)** constants: **wdDoNotSaveChanges** , **wdPromptToSaveChanges** , or **wdSaveChanges** .|
| _OriginalFormat_|Optional| **Variant**|Specifies the save format for the document. Can be one of the following **[WdOriginalFormat](Word.WdOriginalFormat.md)** constants: **wdOriginalDocumentFormat** , **wdPromptUser** , or **wdWordDocument** .|
diff --git a/api/Word.Document.Compare.md b/api/Word.Document.Compare.md
index 1bbcbe2624d..8945cd84242 100644
--- a/api/Word.Document.Compare.md
+++ b/api/Word.Document.Compare.md
@@ -27,7 +27,7 @@ Displays revision marks that indicate where the specified document differs from
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The name of the document with which the specified document is compared.|
| _AuthorName_|Optional| **Variant**|The reviewer name associated with the differences generated by the comparison. If unspecified, the value defaults to the author name of the revised document or the string "Comparison" if no author information is present.|
diff --git a/api/Word.Document.Compatibility.md b/api/Word.Document.Compatibility.md
index 7ccbafab287..9975292576a 100644
--- a/api/Word.Document.Compatibility.md
+++ b/api/Word.Document.Compatibility.md
@@ -27,7 +27,7 @@ ms.date: 06/08/2017
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **WdCompatibility**|The compatibility option.|
diff --git a/api/Word.Document.ComputeStatistics.md b/api/Word.Document.ComputeStatistics.md
index af1a1b79e08..c108f8f8cae 100644
--- a/api/Word.Document.ComputeStatistics.md
+++ b/api/Word.Document.ComputeStatistics.md
@@ -27,7 +27,7 @@ Returns a statistic based on the contents of the specified document. **Long** .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Statistic_|Required| **[WdStatistic](Word.WdStatistic.md)**|The statistic to compute.|
| _IncludeFootnotesAndEndnotes_|Optional| **Variant**| **True** to include footnotes and endnotes when computing statistics. If this argument is omitted, the default value is **False** .|
diff --git a/api/Word.Document.ContentControlAfterAdd.md b/api/Word.Document.ContentControlAfterAdd.md
index 37663b79204..3a7d0976ef5 100644
--- a/api/Word.Document.ContentControlAfterAdd.md
+++ b/api/Word.Document.ContentControlAfterAdd.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ContentControlAfterAdd'(**_NewContentControl_** , **
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NewContentControl_|Required| **ContentControl**|The content control being added.|
| _InUndoRedo_|Required| **Boolean**|Specifies whether the addition is taking place as part an undo or redo action.|
diff --git a/api/Word.Document.ContentControlBeforeContentUpdate.md b/api/Word.Document.ContentControlBeforeContentUpdate.md
index 9e1cdb0a39e..e77dfd8b4ff 100644
--- a/api/Word.Document.ContentControlBeforeContentUpdate.md
+++ b/api/Word.Document.ContentControlBeforeContentUpdate.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ContentControlBeforeContentUpdate'(**_ContentControl
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ContentControl_|Required| **ContentControl**|The content control being updated.|
| _Content_|Required| **String**|The updated content for a control. Use this parameter to change the contents of the XML data and format it for display.|
diff --git a/api/Word.Document.ContentControlBeforeDelete.md b/api/Word.Document.ContentControlBeforeDelete.md
index a2b8e894131..67bdf778acf 100644
--- a/api/Word.Document.ContentControlBeforeDelete.md
+++ b/api/Word.Document.ContentControlBeforeDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ContentControlBeforeDelete'(**_OldContentControl_**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _OldContentControl_|Required| **ContentControl**|The content control being deleted.|
| _InUndoRedo_|Required| **Boolean**| Specifies whether the removal is taking place as part an undo or redo action.|
diff --git a/api/Word.Document.ContentControlBeforeStoreUpdate.md b/api/Word.Document.ContentControlBeforeStoreUpdate.md
index 24ed887cca9..b5ba2c9fe5d 100644
--- a/api/Word.Document.ContentControlBeforeStoreUpdate.md
+++ b/api/Word.Document.ContentControlBeforeStoreUpdate.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ContentControlBeforeStoreUpdate'(**_ContentControl_*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ContentControl_|Required| **ContentControl**|The content control being updated.|
| _Content_|Required| **String**|The content being stored for a control in the document data store. Use this parameter to change the XML data before sending the value to the XML data store.|
diff --git a/api/Word.Document.ContentControlOnEnter.md b/api/Word.Document.ContentControlOnEnter.md
index a9f82977b93..6365d4f36fc 100644
--- a/api/Word.Document.ContentControlOnEnter.md
+++ b/api/Word.Document.ContentControlOnEnter.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ContentControlOnEnter'(**_ContentControl_** , )
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ContentControl_|Required| **ContentControl**|The content control that the user is entering.|
diff --git a/api/Word.Document.ContentControlOnExit.md b/api/Word.Document.ContentControlOnExit.md
index ab08c5c5934..62617d56512 100644
--- a/api/Word.Document.ContentControlOnExit.md
+++ b/api/Word.Document.ContentControlOnExit.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'ContentControlOnExit'(**_ContentControl_** , **_Canc
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ContentControl_|Required| **ContentControl**|The content control that the user is leaving.|
| _Cancel_|Required| **Boolean**|Specifies whether to cancel the event. **True** cancels the event and does not allow the user to leave the control.|
diff --git a/api/Word.Document.ConvertVietDoc.md b/api/Word.Document.ConvertVietDoc.md
index 6fd4ab6183e..58f90e8a336 100644
--- a/api/Word.Document.ConvertVietDoc.md
+++ b/api/Word.Document.ConvertVietDoc.md
@@ -27,7 +27,7 @@ Reconverts a Vietnamese document to Unicode using a code page other than the def
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CodePageOrigin_|Required| **Long**|The original code page used to encode the document.|
diff --git a/api/Word.Document.CopyStylesFromTemplate.md b/api/Word.Document.CopyStylesFromTemplate.md
index d9870a30753..9fd8c749ffc 100644
--- a/api/Word.Document.CopyStylesFromTemplate.md
+++ b/api/Word.Document.CopyStylesFromTemplate.md
@@ -27,7 +27,7 @@ Copies styles from the specified template to a document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Template_|Required| **String**|The template file name.|
diff --git a/api/Word.Document.CountNumberedItems.md b/api/Word.Document.CountNumberedItems.md
index 2b48fc45db7..256016fe2be 100644
--- a/api/Word.Document.CountNumberedItems.md
+++ b/api/Word.Document.CountNumberedItems.md
@@ -27,7 +27,7 @@ Returns the number of bulleted or numbered items and LISTNUM fields in the speci
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NumberType_|Optional| **Variant**|The type of numbers to be counted. Can be one of the **WdNumberType** constants. The default value is **wdNumberAllNumbers** .|
| _Level_|Optional| **Variant**|A number that corresponds to the numbering level you want to count. If this argument is omitted, all levels are counted.|
diff --git a/api/Word.Document.CreateLetterContent.md b/api/Word.Document.CreateLetterContent.md
index 10763cba204..1886f9e4cf4 100644
--- a/api/Word.Document.CreateLetterContent.md
+++ b/api/Word.Document.CreateLetterContent.md
@@ -27,7 +27,7 @@ Creates and returns a **LetterContent** object based on the specified letter el
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DateFormat_|Required| **String**|The date for the letter.|
| _IncludeHeaderFooter_|Required| **Boolean**| **True** to include the header and footer from the page design template.|
@@ -61,7 +61,7 @@ Creates and returns a **LetterContent** object based on the specified letter el
| _SenderGender_|Optional| **Variant**|This argument may not be available to you, depending on the language support (U.S. English, for example) that you?ve selected or installed.|
| _SenderReference_|Optional| **Variant**|This argument may not be available to you, depending on the language support (U.S. English, for example) that you?ve selected or installed.|
-### Return Value
+### Return value
LetterContent
diff --git a/api/Word.Document.DeleteAllEditableRanges.md b/api/Word.Document.DeleteAllEditableRanges.md
index 47acd73202f..5fb228b554d 100644
--- a/api/Word.Document.DeleteAllEditableRanges.md
+++ b/api/Word.Document.DeleteAllEditableRanges.md
@@ -27,7 +27,7 @@ Deletes permissions in all ranges for which the specified user or group of users
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _EditorID_|Optional| **Variant**|Can be either a **String** that represents the user's e-mail alias (if in the same domain), an e-mail address, or a **WdEditorType** constant that represents a group of users. If omitted, no permissions are deleted from a document.|
diff --git a/api/Word.Document.ExportAsFixedFormat.md b/api/Word.Document.ExportAsFixedFormat.md
index 5eedb468e63..d3444b5dbd9 100644
--- a/api/Word.Document.ExportAsFixedFormat.md
+++ b/api/Word.Document.ExportAsFixedFormat.md
@@ -27,7 +27,7 @@ Saves a document as PDF or XPS format.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _OutputFileName_|Required| **String**|The path and file name name of the new PDF or XPS file.|
| _ExportFormat_|Required| **[WdExportFormat](Word.WdExportFormat.md)**|Specifies either PDF or XPS format.|
diff --git a/api/Word.Document.FollowHyperlink.md b/api/Word.Document.FollowHyperlink.md
index fa0db4de288..3082114d413 100644
--- a/api/Word.Document.FollowHyperlink.md
+++ b/api/Word.Document.FollowHyperlink.md
@@ -27,7 +27,7 @@ Displays a cached document, if it has already been downloaded. Otherwise, this m
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Address_|Required| **String**|The address of the target document.|
| _SubAddress_|Optional| **Variant**|The location within the target document. The default value is an empty string.|
diff --git a/api/Word.Document.GetCrossReferenceItems.md b/api/Word.Document.GetCrossReferenceItems.md
index 756db33f26b..4515624dcf1 100644
--- a/api/Word.Document.GetCrossReferenceItems.md
+++ b/api/Word.Document.GetCrossReferenceItems.md
@@ -27,7 +27,7 @@ Returns an array of items that can be cross-referenced based on the specified cr
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ReferenceType_|Required| **Variant**|The type of item you want to insert a cross-reference to. Can be any **[WdReferenceType](Word.WdReferenceType.md)** constant.|
diff --git a/api/Word.Document.GetLetterContent.md b/api/Word.Document.GetLetterContent.md
index 4b6a79e4dab..08d0dfb91d1 100644
--- a/api/Word.Document.GetLetterContent.md
+++ b/api/Word.Document.GetLetterContent.md
@@ -23,7 +23,7 @@ Retrieves letter elements from the specified document and returns a **[LetterCo
_expression_ Required. A variable that represents a '[Document](Word.Document.md)' object.
-### Return Value
+### Return value
LetterContent
diff --git a/api/Word.Document.GetWorkflowTasks.md b/api/Word.Document.GetWorkflowTasks.md
index 0319559eafe..47a79411463 100644
--- a/api/Word.Document.GetWorkflowTasks.md
+++ b/api/Word.Document.GetWorkflowTasks.md
@@ -23,7 +23,7 @@ Returns a **WorkflowTasks** collection that represents the workflow tasks assign
_expression_ An expression that returns a '[Document](Word.Document.md)' object.
-### Return Value
+### Return value
WorkflowTasks
diff --git a/api/Word.Document.GetWorkflowTemplates.md b/api/Word.Document.GetWorkflowTemplates.md
index 41e67e3d7c4..87d161cd0ec 100644
--- a/api/Word.Document.GetWorkflowTemplates.md
+++ b/api/Word.Document.GetWorkflowTemplates.md
@@ -23,7 +23,7 @@ Returns a **WorkflowTemplates** collection that represents the workflow templat
_expression_ An expression that returns a '[Document](Word.Document.md)' object.
-### Return Value
+### Return value
WorkflowTemplates
diff --git a/api/Word.Document.GoTo.md b/api/Word.Document.GoTo.md
index 2fbe9559642..0db9c077129 100644
--- a/api/Word.Document.GoTo.md
+++ b/api/Word.Document.GoTo.md
@@ -27,7 +27,7 @@ Returns a **Range** object that represents the start position of the specified
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _What_|Optional| **Variant**|The kind of item to which the range or selection is moved. Can be one of the **[WdGoToItem](Word.WdGoToItem.md)** constants.|
| _Which_|Optional| **Variant**|The item to which the range or selection is moved. Can be one of the **[WdGoToDirection](Word.WdGoToDirection.md)** constants.|
diff --git a/api/Word.Document.Merge.md b/api/Word.Document.Merge.md
index 2a15d8faab3..20486b2fb80 100644
--- a/api/Word.Document.Merge.md
+++ b/api/Word.Document.Merge.md
@@ -27,7 +27,7 @@ Merges the changes marked with revision marks from one document to another.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The path and file name of the document with which to merge.|
| _MergeTarget_|Optional| **WdMergeTarget**|Specifies where to place the final merged content.|
diff --git a/api/Word.Document.PrintOut.md b/api/Word.Document.PrintOut.md
index 6e4545d9aae..c30513963cf 100644
--- a/api/Word.Document.PrintOut.md
+++ b/api/Word.Document.PrintOut.md
@@ -27,7 +27,7 @@ Prints all or part of the specified document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Background_|Optional| **Variant**|Set to **True** to have the macro continue while Microsoft Word prints the document.|
| _Append_|Optional| **Variant**|Set to **True** to append the specified document to the file name specified by the OutputFileName argument. **False** to overwrite the contents of OutputFileName.|
diff --git a/api/Word.Document.Range.md b/api/Word.Document.Range.md
index 2738535ec23..76e840561d5 100644
--- a/api/Word.Document.Range.md
+++ b/api/Word.Document.Range.md
@@ -27,12 +27,12 @@ Returns a **Range** object by using the specified starting and ending character
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Start_|Optional| **Variant**|The starting character position.|
| _End_|Optional| **Variant**|The ending character position.|
-### Return Value
+### Return value
Range
diff --git a/api/Word.Document.Redo.md b/api/Word.Document.Redo.md
index c2fb50cc3e1..7bf93ea01be 100644
--- a/api/Word.Document.Redo.md
+++ b/api/Word.Document.Redo.md
@@ -27,11 +27,11 @@ Redoes the last action that was undone (reverses the **Undo** method). Returns
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Times_|Optional| **Variant**|The number of actions to be redone.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Document.ReloadAs.md b/api/Word.Document.ReloadAs.md
index bceb66b0acc..5a9ea274bdb 100644
--- a/api/Word.Document.ReloadAs.md
+++ b/api/Word.Document.ReloadAs.md
@@ -27,7 +27,7 @@ Reloads a document based on an HTML document, using the specified document encod
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Encoding_|Required| **MsoEncoding**|Specifies the encoding to use when reloading the document.|
diff --git a/api/Word.Document.RemoveDocumentInformation.md b/api/Word.Document.RemoveDocumentInformation.md
index f8c113a636b..449101845ce 100644
--- a/api/Word.Document.RemoveDocumentInformation.md
+++ b/api/Word.Document.RemoveDocumentInformation.md
@@ -27,7 +27,7 @@ Removes sensitive information, properties, comments, and other metadata from a d
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RemoveDocInfoType_|Required| **WdRemoveDocInfoType**|Specifies what to remove.|
diff --git a/api/Word.Document.RemoveNumbers.md b/api/Word.Document.RemoveNumbers.md
index 0336e0721a4..21845c2d2f2 100644
--- a/api/Word.Document.RemoveNumbers.md
+++ b/api/Word.Document.RemoveNumbers.md
@@ -27,7 +27,7 @@ Removes numbers or bullets from the specified document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NumberType_|Optional| **WdNumberType**|The type of number to be removed.|
diff --git a/api/Word.Document.ReplyWithChanges.md b/api/Word.Document.ReplyWithChanges.md
index 77b79a138af..fd829428169 100644
--- a/api/Word.Document.ReplyWithChanges.md
+++ b/api/Word.Document.ReplyWithChanges.md
@@ -27,7 +27,7 @@ Sends an e-mail message to the author of a document that has been sent out for r
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShowMessage_|Optional| **Variant**| **True** to display the message prior to sending. **False** to automatically send the message without displaying it first. The default value is **True** .|
diff --git a/api/Word.Document.RunAutoMacro.md b/api/Word.Document.RunAutoMacro.md
index c2629fc31fb..b8484425c9a 100644
--- a/api/Word.Document.RunAutoMacro.md
+++ b/api/Word.Document.RunAutoMacro.md
@@ -27,7 +27,7 @@ Runs an auto macro that's stored in the specified document. If the specified aut
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Which_|Required| **WdAutoMacros**|The auto macro to run.|
diff --git a/api/Word.Document.RunLetterWizard.md b/api/Word.Document.RunLetterWizard.md
index 74d05844560..0928610a52c 100644
--- a/api/Word.Document.RunLetterWizard.md
+++ b/api/Word.Document.RunLetterWizard.md
@@ -27,7 +27,7 @@ Runs the Letter Wizard on the specified document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _LetterContent_|Optional| **Variant**|A **[LetterContent](Word.LetterContent.md)** object. Any filled properties in the **LetterContent** object show up as prefilled elements in the Letter Wizard dialog boxes. If this argument is omitted, the **GetLetterContent** method is automatically used to get a **LetterContent** object from the specified document.|
| _WizardMode_|Optional| **Variant**| **True** to display the **Letter Wizard** dialog box as a series of steps with a **Next**, **Back**, and **Finish** button. **False** to display the **Letter Wizard** dialog box as if it were opened from the **Tools** menu (a properties dialog box with an **OK** button and a **Cancel** button). The default value is **True** .|
diff --git a/api/Word.Document.SaveAsQuickStyleSet.md b/api/Word.Document.SaveAsQuickStyleSet.md
index 7b38fafd6ae..d6aa5d5cf12 100644
--- a/api/Word.Document.SaveAsQuickStyleSet.md
+++ b/api/Word.Document.SaveAsQuickStyleSet.md
@@ -27,7 +27,7 @@ Saves the group of quick styles currently in use.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The path and file name for the quick style set file.|
diff --git a/api/Word.Document.SelectAllEditableRanges.md b/api/Word.Document.SelectAllEditableRanges.md
index 450836e6616..87a8fd2c1fa 100644
--- a/api/Word.Document.SelectAllEditableRanges.md
+++ b/api/Word.Document.SelectAllEditableRanges.md
@@ -27,7 +27,7 @@ Selects all ranges for which the specified user or group of users has permission
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _EditorID_|Optional| **Variant**|Can be either a **String** that represents the user's e-mail alias (if in the same domain), an e-mail address, or a **WdEditorType** constant that represents a group of users. If omitted, only ranges for which all users have permissions will be selected.|
diff --git a/api/Word.Document.SelectContentControlsByTag.md b/api/Word.Document.SelectContentControlsByTag.md
index 21258d4cc3f..b27b0e59ed6 100644
--- a/api/Word.Document.SelectContentControlsByTag.md
+++ b/api/Word.Document.SelectContentControlsByTag.md
@@ -27,11 +27,11 @@ Returns a **[ContentControls](Word.ContentControls.md)** collection that repres
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Tag_|Required| **String**|The tag value of the content controls to return.|
-### Return Value
+### Return value
ContentControls
diff --git a/api/Word.Document.SelectContentControlsByTitle.md b/api/Word.Document.SelectContentControlsByTitle.md
index a3b7c46b284..76e78f2f3dd 100644
--- a/api/Word.Document.SelectContentControlsByTitle.md
+++ b/api/Word.Document.SelectContentControlsByTitle.md
@@ -27,11 +27,11 @@ Returns a **[ContentControls](Word.ContentControls.md)** collection that repres
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **Title**|The title of the content controls to return.|
-### Return Value
+### Return value
ContentControls
diff --git a/api/Word.Document.SelectLinkedControls.md b/api/Word.Document.SelectLinkedControls.md
index a2df75a030e..7762f8c2e83 100644
--- a/api/Word.Document.SelectLinkedControls.md
+++ b/api/Word.Document.SelectLinkedControls.md
@@ -27,11 +27,11 @@ Returns a **[ContentControls](Word.ContentControls.md)** collection that repres
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Node_|Required| **CustomXMLNode**|The XML node in the document's data store to which the content controls are linked.|
-### Return Value
+### Return value
ContentControls
diff --git a/api/Word.Document.SelectNodes.md b/api/Word.Document.SelectNodes.md
index 0444be37557..32972581c7d 100644
--- a/api/Word.Document.SelectNodes.md
+++ b/api/Word.Document.SelectNodes.md
@@ -27,13 +27,13 @@ Returns an **XMLNodes** collection that represents all the nodes that match the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _XPath_|Required| **String**|A valid XPath string. For more information on XPath, see the XPath reference documentation on the Microsoft Developer Network (MSDN) Web site.|
| _PrefixMapping_|Optional| **Variant**|Provides the prefix in the schema against which to perform the search. Use the PrefixMapping parameter if your XPath parameter uses names to search for elements.|
| _FastSearchSkippingTextNodes_|Optional| **Boolean**| **True** skips all text nodes while searching for the specified node. **False** includes text nodes in the search. Default value is **False** .|
-### Return Value
+### Return value
XMLNodes
diff --git a/api/Word.Document.SelectSingleNode.md b/api/Word.Document.SelectSingleNode.md
index 645f32be754..2493c216f8b 100644
--- a/api/Word.Document.SelectSingleNode.md
+++ b/api/Word.Document.SelectSingleNode.md
@@ -27,13 +27,13 @@ Returns an **XMLNode** object that represents the first node that matches the X
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _XPath_|Required| **String**|A valid XPath string. For more information on XPath, see the XPath reference documentation on the Microsoft Developer Network (MSDN) Web site.|
| _PrefixMapping_|Optional| **Variant**|Provides the prefix in the schema against which to perform the search. Use the PrefixMapping parameter if your XPath parameter uses names to search for elements.|
| _FastSearchSkippingTextNodes_|Optional| **Boolean**| **True** skips all text nodes while searching for the specified node. **False** includes text nodes in the search. Default value is **True** .|
-### Return Value
+### Return value
XMLNode
diff --git a/api/Word.Document.SelectUnlinkedControls.md b/api/Word.Document.SelectUnlinkedControls.md
index bfe63cab5eb..54871f13bc5 100644
--- a/api/Word.Document.SelectUnlinkedControls.md
+++ b/api/Word.Document.SelectUnlinkedControls.md
@@ -27,11 +27,11 @@ Returns a **[ContentControls](Word.ContentControls.md)** collection that repres
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Stream_|Optional| **CustomXMLPart**|A custom XML part reference. Setting this parameter filters the returned content controls to include only content controls that reference this **CustomXMLPart** in their **XMLMapping** definition.|
-### Return Value
+### Return value
ContentControls
diff --git a/api/Word.Document.SendFax.md b/api/Word.Document.SendFax.md
index c5e3a0659a3..9341666fc4c 100644
--- a/api/Word.Document.SendFax.md
+++ b/api/Word.Document.SendFax.md
@@ -27,7 +27,7 @@ Sends the specified document as a fax, without any user interaction.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Address_|Required| **String**|The recipient's fax number.|
| _Subject_|Optional| **Variant**|The text for the subject line. The character limit is 255.|
diff --git a/api/Word.Document.SendFaxOverInternet.md b/api/Word.Document.SendFaxOverInternet.md
index cf079caf625..a44156954f9 100644
--- a/api/Word.Document.SendFaxOverInternet.md
+++ b/api/Word.Document.SendFaxOverInternet.md
@@ -27,7 +27,7 @@ Sends a document to a fax service provider, who faxes the document to one or mor
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Recipients_|Optional| **Variant**|A **String** that represents the fax numbers and e-mail addresses of the people to whom to send the fax. Separate multiple recipients with a semicolon.|
| _Subject_|Optional| **Variant**|A **String** that represents the subject line for the faxed document.|
diff --git a/api/Word.Document.SendForReview.md b/api/Word.Document.SendForReview.md
index 7ac48df2d2d..c23d2537e23 100644
--- a/api/Word.Document.SendForReview.md
+++ b/api/Word.Document.SendForReview.md
@@ -27,7 +27,7 @@ Sends a document in an e-mail message for review by the specified recipients.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Recipients_|Optional| **Variant**|A string that lists the people to whom to send the message. These can be unresolved names and aliases in an e-mail phone book or full e-mail addresses. Separate multiple recipients with a semicolon (;). If left blank and ShowMessage is **False** , you will receive an error message and the message will not be sent.|
| _Subject_|Optional| **Variant**|A string for the subject of the message. If left blank, the subject will be: Please review "file name".|
diff --git a/api/Word.Document.SetDefaultTableStyle.md b/api/Word.Document.SetDefaultTableStyle.md
index bc429ac25ac..23588364afe 100644
--- a/api/Word.Document.SetDefaultTableStyle.md
+++ b/api/Word.Document.SetDefaultTableStyle.md
@@ -27,7 +27,7 @@ Specifies the table style to use for newly created tables in a document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **Variant**|A string specifying the name of the style.|
| _SetInTemplate_|Required| **Boolean**| **True** to save the table style in the template attached to the document.|
diff --git a/api/Word.Document.SetLetterContent.md b/api/Word.Document.SetLetterContent.md
index 30c89d09474..841beb60988 100644
--- a/api/Word.Document.SetLetterContent.md
+++ b/api/Word.Document.SetLetterContent.md
@@ -27,7 +27,7 @@ Inserts the contents of the specified **LetterContent** object into a document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _LetterContent_|Required| **[LetterContent](Word.LetterContent.md)**|The that includes the various elements of the letter.|
diff --git a/api/Word.Document.SetPasswordEncryptionOptions.md b/api/Word.Document.SetPasswordEncryptionOptions.md
index 7682ec0f662..16d3e91ae22 100644
--- a/api/Word.Document.SetPasswordEncryptionOptions.md
+++ b/api/Word.Document.SetPasswordEncryptionOptions.md
@@ -27,7 +27,7 @@ Sets the options Microsoft Word uses for encrypting documents with passwords.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PasswordEncryptionProvider_|Required| **String**|The name of the encryption provider.|
| _PasswordEncryptionAlgorithm_|Required| **String**|The name of the encryption algorithm. Word supports stream-encrypted algorithms.|
diff --git a/api/Word.Document.Sync(even).md b/api/Word.Document.Sync(even).md
index 4cdad7b5ed5..6c03840b28e 100644
--- a/api/Word.Document.Sync(even).md
+++ b/api/Word.Document.Sync(even).md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'Sync'(**_SyncEventType_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SyncEventType_|Required| **MsoSyncEventType**|The status of the document synchronization.|
diff --git a/api/Word.Document.TransformDocument.md b/api/Word.Document.TransformDocument.md
index eab47d3c716..b2d99360040 100644
--- a/api/Word.Document.TransformDocument.md
+++ b/api/Word.Document.TransformDocument.md
@@ -27,7 +27,7 @@ Applies the specified Extensible Stylesheet Language Transformation (XSLT) file
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Path_|Required| **String**|The path for the XSLT to use.|
| _DataOnly_|Optional| **Boolean**| **True** applies the transformation only to the data in the document, excluding Microsoft Word XML. **False** applies the transform to the entire document, including Word XML. Default value is **True** .|
diff --git a/api/Word.Document.Undo.md b/api/Word.Document.Undo.md
index 186d9eaf334..2dc37f6b73a 100644
--- a/api/Word.Document.Undo.md
+++ b/api/Word.Document.Undo.md
@@ -27,11 +27,11 @@ Undoes the last action or a sequence of actions, which are displayed in the **U
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Times_|Optional| **Variant**|The number of actions to be undone.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Document.Unprotect.md b/api/Word.Document.Unprotect.md
index 068787bdc86..847a1addef7 100644
--- a/api/Word.Document.Unprotect.md
+++ b/api/Word.Document.Unprotect.md
@@ -27,7 +27,7 @@ Removes protection from the specified document. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Password_|Optional| **Variant**|The password string used to protect the document. Passwords are case-sensitive. If the document is protected with a password and the correct password isn't supplied, a dialog box prompts the user for the password.|
diff --git a/api/Word.Document.XMLAfterInsert.md b/api/Word.Document.XMLAfterInsert.md
index b26fa023712..37f09397863 100644
--- a/api/Word.Document.XMLAfterInsert.md
+++ b/api/Word.Document.XMLAfterInsert.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'XMLAfterInsert'(**_NewXMLNode_** , **_InUndoRedo_**)
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NewXMLNode_|Required| **[XMLNode](Word.XMLNode.md)**|The newly added XML node.|
| _InUndoRedo_|Required| **Boolean**| **True** indicates the action was performed using the **Undo** or **Redo** feature in Microsoft Word.|
diff --git a/api/Word.Document.XMLBeforeDelete.md b/api/Word.Document.XMLBeforeDelete.md
index b3f7937c296..2bb040039de 100644
--- a/api/Word.Document.XMLBeforeDelete.md
+++ b/api/Word.Document.XMLBeforeDelete.md
@@ -27,7 +27,7 @@ Private Sub _expression_ _'XMLBeforeDelete'(**_DeletedRange_** , **_OldXMLNode_
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DeletedRange_|Required| **[Range](Word.Range.md)**|The contents of the XML element being deleted. If only an element is deleted and not associated text, the DeletedRange parameter will not exist and will, therefore, be set to **Nothing** .|
| _OldXMLNode_|Required| **[XMLNode](Word.XMLNode.md)**|The node that is being deleted.|
diff --git a/api/Word.Documents.Add.md b/api/Word.Documents.Add.md
index b83e4973038..0f52ff20762 100644
--- a/api/Word.Documents.Add.md
+++ b/api/Word.Documents.Add.md
@@ -27,14 +27,14 @@ Returns a **Document** object that represents a new, empty document added to th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Template_|Optional| **Variant**|The name of the template to be used for the new document. If this argument is omitted, the Normal template is used.|
| _NewTemplate_|Optional| **Variant**| **True** to open the document as a template. The default value is **False** .|
| _DocumentType_|Optional| **Variant**|Can be one of the following **WdNewDocumentType** constants: **wdNewBlankDocument** , **wdNewEmailMessage** , **wdNewFrameset** , or **wdNewWebPage** . The default constant is **wdNewBlankDocument** .|
| _Visible_|Optional| **Variant**| **True** to open the document in a visible window. If this value is **False** , Microsoft Word opens the document but sets the **Visible** property of the document window to **False** . The default value is **True** .|
-### Return Value
+### Return value
Document
diff --git a/api/Word.Documents.AddBlogDocument.md b/api/Word.Documents.AddBlogDocument.md
index 809e1f41fcd..65885372ce8 100644
--- a/api/Word.Documents.AddBlogDocument.md
+++ b/api/Word.Documents.AddBlogDocument.md
@@ -27,7 +27,7 @@ Returns a **Document** object that represents a new blog document that Microsof
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ProviderID_|Required| **String**|A GUID that is the unique value a provider uses when they register themselves with Word.|
| _PostURL_|Required| **String**|The URL that is used to add posts to the blog.|
diff --git a/api/Word.Documents.CanCheckOut.md b/api/Word.Documents.CanCheckOut.md
index 66cf3d7095b..c47cf9cfc34 100644
--- a/api/Word.Documents.CanCheckOut.md
+++ b/api/Word.Documents.CanCheckOut.md
@@ -27,11 +27,11 @@ ms.date: 06/08/2017
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The server path and name of the document.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Documents.CheckOut.md b/api/Word.Documents.CheckOut.md
index 295f79b9f2a..8e58de15359 100644
--- a/api/Word.Documents.CheckOut.md
+++ b/api/Word.Documents.CheckOut.md
@@ -27,7 +27,7 @@ Copies a specified document from a server to a local computer for editing.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The name of the file to check out.|
diff --git a/api/Word.Documents.Close.md b/api/Word.Documents.Close.md
index a5695ceaa5a..f07f15eb489 100644
--- a/api/Word.Documents.Close.md
+++ b/api/Word.Documents.Close.md
@@ -27,7 +27,7 @@ Closes the specified documents.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SaveChanges_|Optional| **Variant**|Specifies the save action for the document. Can be one of the following **[WdSaveOptions](Word.WdSaveOptions.md)** constants: **wdDoNotSaveChanges** , **wdPromptToSaveChanges** , or **wdSaveChanges** .|
| _OriginalFormat_|Optional| **Variant**|Specifies the save format for the document. Can be one of the following **[WdOriginalFormat](Word.WdOriginalFormat.md)** constants: **wdOriginalDocumentFormat** , **wdPromptUser** , or **wdWordDocument** .|
diff --git a/api/Word.Documents.Item.md b/api/Word.Documents.Item.md
index 50c1756e934..044bef04e12 100644
--- a/api/Word.Documents.Item.md
+++ b/api/Word.Documents.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Document** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long** or **String**|The position within the collection of the object to be returned (**Long**), or the name of the object (**String**).|
-### Return Value
+### Return value
Document
diff --git a/api/Word.Documents.Open.md b/api/Word.Documents.Open.md
index cd251dde42d..377aeaae3a1 100644
--- a/api/Word.Documents.Open.md
+++ b/api/Word.Documents.Open.md
@@ -27,7 +27,7 @@ Opens the specified document and adds it to the **Documents** collection. Retur
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **Variant**|The name of the document (paths are accepted).|
| _ConfirmConversions_|Optional| **Variant**| **True** to display the **Convert File** dialog box if the file isn't in Microsoft Word format.|
@@ -46,7 +46,7 @@ Opens the specified document and adds it to the **Documents** collection. Retur
| _DocumentDirection_|Optional| **WdDocumentDirection**|Indicates the horizontal flow of text in a document. The default value is **wdLeftToRight** .|
| _NoEncodingDialog_|Optional| **Variant**| **True** to skip displaying the Encoding dialog box that Word displays if the text encoding cannot be recognized. The default value is **False** .|
-### Return Value
+### Return value
Document
diff --git a/api/Word.Documents.OpenNoRepairDialog.md b/api/Word.Documents.OpenNoRepairDialog.md
index ed557f36cb4..f31632a7214 100644
--- a/api/Word.Documents.OpenNoRepairDialog.md
+++ b/api/Word.Documents.OpenNoRepairDialog.md
@@ -27,7 +27,7 @@ Opens the specified document and adds it to the [Documents](Word.documents.md) c
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **Variant**|The name of the document (paths are accepted).|
| _ConfirmConversions_|Optional| **Variant**| **True** to display the **Convert File** dialog box if the file is not in Microsoft Word format.|
@@ -46,7 +46,7 @@ Opens the specified document and adds it to the [Documents](Word.documents.md) c
| _NoEncodingDialog_|Optional| **Variant**| **True** to skip displaying the **Encoding** dialog box that Word displays if the text encoding cannot be recognized. The default is **False** .|
| _XMLTransform_|Optional| **Variant**|Specifies a transform to use.|
-### Return Value
+### Return value
A **[Document](Word.Document.md)** object that represents the specified document.
diff --git a/api/Word.Documents.Save.md b/api/Word.Documents.Save.md
index 3ab3f5abe06..a759b518d0d 100644
--- a/api/Word.Documents.Save.md
+++ b/api/Word.Documents.Save.md
@@ -27,7 +27,7 @@ Saves all the documents in the **Documents** collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NoPrompt_|Optional| **Variant**| **True** to have Word automatically save all documents. **False** to have Word prompt the user to save each document that has changed since it was last saved.|
| _OriginalFormat_|Optional| **Variant**|Specifies the way the documents are saved. Can be one of the **WdOriginalFormat** constants.|
diff --git a/api/Word.Editors.Add.md b/api/Word.Editors.Add.md
index 3dcbb41984f..c4a810d9059 100644
--- a/api/Word.Editors.Add.md
+++ b/api/Word.Editors.Add.md
@@ -27,7 +27,7 @@ Returns an **Editor** object that represents a new permission for a specified u
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _EditorID_|Optional| **Variant**|Can be either a **String** that represents the user's e-mail alias (if in the same domain), an e-mail address, or a **WdEditorType** that represents a group of users.|
diff --git a/api/Word.Editors.Item.md b/api/Word.Editors.Item.md
index e2e1a0f31f1..2f1483b8b6c 100644
--- a/api/Word.Editors.Item.md
+++ b/api/Word.Editors.Item.md
@@ -27,11 +27,11 @@ Returns an **Editor** object that represents a specific user or a group of user
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**| Can be either a **String** that represents the user's e-mail alias (if in the same domain), an e-mail address, or a **WdEditorType** constant that represents a group of users.|
-### Return Value
+### Return value
Editor
diff --git a/api/Word.EmailSignatureEntries.Add.md b/api/Word.EmailSignatureEntries.Add.md
index 6ebbbd89e13..bf194127495 100644
--- a/api/Word.EmailSignatureEntries.Add.md
+++ b/api/Word.EmailSignatureEntries.Add.md
@@ -27,12 +27,12 @@ Returns an **[EmailSignatureEntry](Word.EmailSignatureEntry.md)** object that r
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The name of the e-mail entry.|
| _Range_|Required| **Range**|The range in the document that will be added as the signature.|
-### Return Value
+### Return value
EmailSignatureEntry
diff --git a/api/Word.EmailSignatureEntries.Item.md b/api/Word.EmailSignatureEntries.Item.md
index 2bb37cdb45b..33eef0b1457 100644
--- a/api/Word.EmailSignatureEntries.Item.md
+++ b/api/Word.EmailSignatureEntries.Item.md
@@ -27,11 +27,11 @@ Returns an individual **EmailSignatureEntry** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
EmailSignatureEntry
diff --git a/api/Word.Endnotes.Add.md b/api/Word.Endnotes.Add.md
index fa30eedd485..2d73949ccf0 100644
--- a/api/Word.Endnotes.Add.md
+++ b/api/Word.Endnotes.Add.md
@@ -27,7 +27,7 @@ Returns an **Endnote** object that represents an endnote added to a range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The range marked for the endnote or footnote. This can be a collapsed range.|
| _Reference_|Optional| **Variant**|The text for the custom reference mark. If this argument is omitted, Microsoft Word inserts an automatically-numbered reference mark.|
diff --git a/api/Word.Endnotes.Item.md b/api/Word.Endnotes.Item.md
index 57bb892022a..14c799b5186 100644
--- a/api/Word.Endnotes.Item.md
+++ b/api/Word.Endnotes.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Endnote** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Endnote
diff --git a/api/Word.Envelope.Insert.md b/api/Word.Envelope.Insert.md
index 7808a9c292a..e1f838e1db4 100644
--- a/api/Word.Envelope.Insert.md
+++ b/api/Word.Envelope.Insert.md
@@ -27,7 +27,7 @@ Inserts an envelope as a separate section at the beginning of the specified docu
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ExtractAddress_|Optional| **Variant**| **True** to use the text marked by the EnvelopeAddress bookmark (a user-defined bookmark) as the recipient's address.|
| _Address_|Optional| **Variant**|A string that specifies the recipient's address (ignored if ExtractAddress is **True**).|
diff --git a/api/Word.Envelope.PrintOut.md b/api/Word.Envelope.PrintOut.md
index 4f575e02187..5252841fa1d 100644
--- a/api/Word.Envelope.PrintOut.md
+++ b/api/Word.Envelope.PrintOut.md
@@ -27,7 +27,7 @@ Prints an envelope without adding the envelope to the active document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ExtractAddress_|Optional| **Variant**| **True** to use the text marked by the "EnvelopeAddress" bookmark (a user-defined bookmark) as the recipient's address.|
| _Address_|Optional| **Variant**|A string that specifies the recipient's address (ignored if ExtractAddress is **True**).|
diff --git a/api/Word.Field.Update.md b/api/Word.Field.Update.md
index 58515a97a17..4a6d671b14a 100644
--- a/api/Word.Field.Update.md
+++ b/api/Word.Field.Update.md
@@ -23,7 +23,7 @@ Updates the result of the field. Returns **True** if the field is updated succe
_expression_ Required. A variable that represents a '[Field](Word.Field.md)' object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Fields.Add.md b/api/Word.Fields.Add.md
index 4256fd222d1..1e1be4adf3c 100644
--- a/api/Word.Fields.Add.md
+++ b/api/Word.Fields.Add.md
@@ -27,14 +27,14 @@ Adds a **[Field](Word.Field.md)** object to the **Fields** collection. Returns
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The range where you want to add the field. If the range isn't collapsed, the field replaces the range.|
| _Type_|Optional| **Variant**|Can be any **WdFieldType** constant. For a list of valid constants, consult the Object Browser. The default value is **wdFieldEmpty** .|
| _Text_|Optional| **Variant**|Additional text needed for the field. For example, if you want to specify a switch for the field, you would add it here.|
| _PreserveFormatting_|Optional| **Variant**| **True** to have the formatting that's applied to the field preserved during updates.|
-### Return Value
+### Return value
Field
diff --git a/api/Word.Fields.Item.md b/api/Word.Fields.Item.md
index f63a640c5c7..8647cebff95 100644
--- a/api/Word.Fields.Item.md
+++ b/api/Word.Fields.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Field** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Field
diff --git a/api/Word.Fields.Update.md b/api/Word.Fields.Update.md
index 42fd88fc997..4b98e1a61a6 100644
--- a/api/Word.Fields.Update.md
+++ b/api/Word.Fields.Update.md
@@ -23,7 +23,7 @@ Updates the result of the fields object.
_expression_ Required. A variable that represents a '[Fields](Word.fields.md)' collection.
-### Return Value
+### Return value
Long
diff --git a/api/Word.FileConverters.Item.md b/api/Word.FileConverters.Item.md
index 794d4ae9de6..e4234025b61 100644
--- a/api/Word.FileConverters.Item.md
+++ b/api/Word.FileConverters.Item.md
@@ -27,11 +27,11 @@ Returns an individual **FileConverter** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
FileConverter
diff --git a/api/Word.FillFormat.GradientAngle.md b/api/Word.FillFormat.GradientAngle.md
index efbbc1a8d9a..b5a78e7c795 100644
--- a/api/Word.FillFormat.GradientAngle.md
+++ b/api/Word.FillFormat.GradientAngle.md
@@ -23,7 +23,7 @@ Returns or sets the angle of the gradient fill for the specified fill format. Re
_expression_ An expression that returns a '[FillFormat](Word.FillFormat.md)' object.
-### Return Value
+### Return value
Single
diff --git a/api/Word.FillFormat.OneColorGradient.md b/api/Word.FillFormat.OneColorGradient.md
index 41f3217de0a..7df12dcba54 100644
--- a/api/Word.FillFormat.OneColorGradient.md
+++ b/api/Word.FillFormat.OneColorGradient.md
@@ -27,7 +27,7 @@ Sets the specified fill to a one-color gradient.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **MsoGradientStyle**|The gradient style. Can be any **MsoGradientStyle** constant except **msoGradientFromTitle** which applies only to Microsoft PowerPoint.|
| _Variant_|Required| **Long**|The gradient variant. Can be a value from 1 to 4, corresponding to the four variants on the **Gradient** tab in the **Fill Effects** dialog box. If Style is **msoGradientFromCenter** , this argument can be either 1 or 2.|
diff --git a/api/Word.FillFormat.Patterned.md b/api/Word.FillFormat.Patterned.md
index 722dadf3e5f..1c2ba6cbbbb 100644
--- a/api/Word.FillFormat.Patterned.md
+++ b/api/Word.FillFormat.Patterned.md
@@ -27,7 +27,7 @@ Sets the specified fill to a pattern.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Pattern_|Required| **MsoPatternType**|The pattern to be used for the specified fill.|
diff --git a/api/Word.FillFormat.PresetGradient.md b/api/Word.FillFormat.PresetGradient.md
index a305d570d41..e2ceee0cc89 100644
--- a/api/Word.FillFormat.PresetGradient.md
+++ b/api/Word.FillFormat.PresetGradient.md
@@ -27,7 +27,7 @@ Sets the specified fill to a preset gradient.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **MsoGradientStyle**|The gradient style. Can be any **MsoGradientStyle** constant except **msoGradientFromTitle** which applies only to Microsoft PowerPoint.|
| _Variant_|Required| **Long**|The gradient variant. Can be a value from 1 to 4, corresponding to the four variants on the **Gradient** tab in the **Fill Effects** dialog box. If Style is **msoGradientFromCenter** , this argument can be either 1 or 2.|
diff --git a/api/Word.FillFormat.PresetTextured.md b/api/Word.FillFormat.PresetTextured.md
index 2d7a581fb4c..f31e084a2aa 100644
--- a/api/Word.FillFormat.PresetTextured.md
+++ b/api/Word.FillFormat.PresetTextured.md
@@ -27,7 +27,7 @@ Sets the specified fill to a preset texture.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PresetTexture_|Required| **MsoPresetTexture**|The preset texture.|
diff --git a/api/Word.FillFormat.TextureAlignment.md b/api/Word.FillFormat.TextureAlignment.md
index c019bb198aa..5769f927f1b 100644
--- a/api/Word.FillFormat.TextureAlignment.md
+++ b/api/Word.FillFormat.TextureAlignment.md
@@ -23,7 +23,7 @@ Returns or sets the alignment (the origin of the coordinate grid) for the tiling
_expression_ An expression that returns a [FillFormat](./Word.FillFormat.md) object.
-### Return Value
+### Return value
**MsoTextureAlignment**
diff --git a/api/Word.FillFormat.TwoColorGradient.md b/api/Word.FillFormat.TwoColorGradient.md
index 8d836d9b0e5..5356b459d4b 100644
--- a/api/Word.FillFormat.TwoColorGradient.md
+++ b/api/Word.FillFormat.TwoColorGradient.md
@@ -27,7 +27,7 @@ Sets the specified fill to a two-color gradient.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **MsoGradientStyle**|The gradient style. Can be any **MsoGradientStyle** constant except **msoGradientFromTitle** which applies only to Microsoft PowerPoint.|
| _Variant_|Required| **Long**|The gradient variant. Can be a value from 1 to 4, corresponding to the four variants on the **Gradient** tab in the **Fill Effects** dialog box. If Style is **msoGradientFromCenter** , this argument can be either 1 or 2.|
diff --git a/api/Word.FillFormat.UserPicture.md b/api/Word.FillFormat.UserPicture.md
index 252a21dbaf0..5b2ba1c791c 100644
--- a/api/Word.FillFormat.UserPicture.md
+++ b/api/Word.FillFormat.UserPicture.md
@@ -27,7 +27,7 @@ Fills the specified shape with one large image. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PictureFile_|Required| **String**|The name of the picture file.|
diff --git a/api/Word.Find.ClearHitHighlight.md b/api/Word.Find.ClearHitHighlight.md
index 9e7194b40e1..a4365ac6202 100644
--- a/api/Word.Find.ClearHitHighlight.md
+++ b/api/Word.Find.ClearHitHighlight.md
@@ -23,7 +23,7 @@ Removes the highlighting for all text located in a hit highlighting find operati
_expression_ An expression that returns a '[Find](Word.Find.md)' object.
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Find.Execute.md b/api/Word.Find.Execute.md
index b6f43ce5e7a..1fd6de86359 100644
--- a/api/Word.Find.Execute.md
+++ b/api/Word.Find.Execute.md
@@ -27,7 +27,7 @@ Runs the specified find operation. Returns **True** if the find operation is su
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FindText_|Optional| **Variant**|The text to be searched for. Use an empty string ("") to search for formatting only. You can search for special characters by specifying appropriate character codes. For example, "^p" corresponds to a paragraph mark and "^t" corresponds to a tab character.|
| _MatchCase_|Optional| **Variant**| **True** to specify that the find text be case sensitive. Corresponds to the **Match case** check box in the **Find and Replace** dialog box (**Edit** menu).|
@@ -50,7 +50,7 @@ Runs the specified find operation. Returns **True** if the find operation is su
| _IgnoreSpace_|Optional| **Variant**| **True** ignores all white space between words. Corresponds to the **Ignore white-space characters** check box in the **Find and Replace** dialog box.|
| _IgnorePunct_|Optional| **Variant**| **True** ignores all punctuation characters between words. Corresponds to the **Ignore punctuation** check box in the **Find and Replace** dialog box.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Find.Execute2007.md b/api/Word.Find.Execute2007.md
index d26d60dc456..775f93f6e21 100644
--- a/api/Word.Find.Execute2007.md
+++ b/api/Word.Find.Execute2007.md
@@ -27,7 +27,7 @@ Runs the specified find operation. Returns **True** if the find operation is su
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FindText_|Optional| **Variant**|The text to be searched for. Use an empty string ("") to search for formatting only. You can search for special characters by specifying appropriate character codes. For example, "^p" corresponds to a paragraph mark and "^t" corresponds to a tab character.|
| _MatchCase_|Optional| **Variant**| **True** to specify that the text to find should be case-sensitive. Corresponds to the **Match case** check box in the **Find and Replace** dialog box (on the **Home** tab in the **Editing** group).|
@@ -50,7 +50,7 @@ Runs the specified find operation. Returns **True** if the find operation is su
| _IgnoreSpace_|Optional| **Variant**| **True** to ignore all white space between words. Corresponds to the **Ignore white-space characters** check box in the **Find and Replace** dialog box.|
| _IgnorePunct_|Optional| **Variant**| **True** to ignore all punctuation characters between words. Corresponds to the **Ignore punctuation** check box in the **Find and Replace** dialog box.|
-### Return Value
+### Return value
A **Boolean** value that indicates whether the find operation was successful.
diff --git a/api/Word.Find.HitHighlight.md b/api/Word.Find.HitHighlight.md
index 34a0e35f218..af1b20e1893 100644
--- a/api/Word.Find.HitHighlight.md
+++ b/api/Word.Find.HitHighlight.md
@@ -24,7 +24,7 @@ _expression_ An expression that returns a **Find** object.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FindText_|Required| **Variant**|Specifies the text to find. Use an empty string ("") to search for formatting only. You can search for special characters by specifying appropriate character codes. For example, `"^p"` corresponds to a paragraph mark and `"^t"` corresponds to a tab character.|
| _HighlightColor_|Optional| **Variant**|Specifies the highlight color for the text. Can be any RGB color or one of the **[WdColor](Word.WdColor.md)** constants.|
diff --git a/api/Word.FirstLetterExceptions.Add.md b/api/Word.FirstLetterExceptions.Add.md
index 426cf83d870..920b25991fc 100644
--- a/api/Word.FirstLetterExceptions.Add.md
+++ b/api/Word.FirstLetterExceptions.Add.md
@@ -27,11 +27,11 @@ Returns a **FirstLetterException** object that represents a new exception added
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The word with two initial capital letters that you want Microsoft Word to overlook.|
-### Return Value
+### Return value
FirstLetterException
diff --git a/api/Word.FirstLetterExceptions.Item.md b/api/Word.FirstLetterExceptions.Item.md
index 09e4db6e1ae..afaf343d03c 100644
--- a/api/Word.FirstLetterExceptions.Item.md
+++ b/api/Word.FirstLetterExceptions.Item.md
@@ -27,11 +27,11 @@ Returns an individual **FirstLetterException** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
FirstLetterException
diff --git a/api/Word.FontNames.Item.md b/api/Word.FontNames.Item.md
index 5cc36dbd437..8be3570dcfd 100644
--- a/api/Word.FontNames.Item.md
+++ b/api/Word.FontNames.Item.md
@@ -27,11 +27,11 @@ Returns a **String** that represents the name of a font.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
String
diff --git a/api/Word.Footnotes.Add.md b/api/Word.Footnotes.Add.md
index a3ce28e3673..74861216f3a 100644
--- a/api/Word.Footnotes.Add.md
+++ b/api/Word.Footnotes.Add.md
@@ -27,13 +27,13 @@ Returns a **Footnote** object that represents a footnote added to a range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The range marked for the endnote or footnote. This can be a collapsed range.|
| _Reference_|Optional| **Variant**|The text for the custom reference mark. If this argument is omitted, Microsoft Word inserts an automatically-numbered reference mark.|
| _Text_|Optional| **Variant**|The text of the endnote or footnote.|
-### Return Value
+### Return value
Footnote
diff --git a/api/Word.Footnotes.Item.md b/api/Word.Footnotes.Item.md
index 39c62ccddbd..7adb9c6b096 100644
--- a/api/Word.Footnotes.Item.md
+++ b/api/Word.Footnotes.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Footnote** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Footnote
diff --git a/api/Word.FormFields.Add.md b/api/Word.FormFields.Add.md
index 38f7f0b91a7..c3788f0b180 100644
--- a/api/Word.FormFields.Add.md
+++ b/api/Word.FormFields.Add.md
@@ -27,12 +27,12 @@ Returns a **FormField** object that represents a new form field added at a rang
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The range where you want to add the form field. If the range isn't collapsed, the form field replaces the range.|
| _Type_|Required| **WdFieldType**|The type of form field to add.|
-### Return Value
+### Return value
FormField
diff --git a/api/Word.FormFields.Item.md b/api/Word.FormFields.Item.md
index a2632e62331..beea8f79787 100644
--- a/api/Word.FormFields.Item.md
+++ b/api/Word.FormFields.Item.md
@@ -27,11 +27,11 @@ Returns an individual **FormField** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
FormField
diff --git a/api/Word.Frames.Add.md b/api/Word.Frames.Add.md
index 7476e67b462..32f656492ab 100644
--- a/api/Word.Frames.Add.md
+++ b/api/Word.Frames.Add.md
@@ -27,11 +27,11 @@ Returns a Frame object that represents a new frame added to a range, selection,
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **[RANGE]**|The range that you want the frame to surround.|
-### Return Value
+### Return value
Frame
diff --git a/api/Word.Frames.Delete.md b/api/Word.Frames.Delete.md
index fe479c78d68..60fc5a3a2b6 100644
--- a/api/Word.Frames.Delete.md
+++ b/api/Word.Frames.Delete.md
@@ -23,7 +23,7 @@ Deletes the specified Frames collection.
_expression_ An expression that returns a '[Frames](Word.Frames.md)' object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.Frames.Item.md b/api/Word.Frames.Item.md
index d6cd7a6f2de..182e6c73a68 100644
--- a/api/Word.Frames.Item.md
+++ b/api/Word.Frames.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Frames** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned.|
-### Return Value
+### Return value
Frame
diff --git a/api/Word.Frameset.AddNewFrame.md b/api/Word.Frameset.AddNewFrame.md
index 2aa53059cd7..ca1692d7079 100644
--- a/api/Word.Frameset.AddNewFrame.md
+++ b/api/Word.Frameset.AddNewFrame.md
@@ -27,7 +27,7 @@ Adds a new frame to a frames page.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Where_|Required| **WdFramesetNewFrameLocation**|Sets the location where the new frame is to be added in relation to the specified frame.|
diff --git a/api/Word.Frameset.ChildFramesetItem.md b/api/Word.Frameset.ChildFramesetItem.md
index 12008579deb..b487c4245a9 100644
--- a/api/Word.Frameset.ChildFramesetItem.md
+++ b/api/Word.Frameset.ChildFramesetItem.md
@@ -27,7 +27,7 @@ Returns the **Frameset** object that represents the child **Frameset** object s
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The index number of the specified frame.|
diff --git a/api/Word.FreeformBuilder.AddNodes.md b/api/Word.FreeformBuilder.AddNodes.md
index 357846cabc5..86117981d57 100644
--- a/api/Word.FreeformBuilder.AddNodes.md
+++ b/api/Word.FreeformBuilder.AddNodes.md
@@ -27,7 +27,7 @@ Inserts a new segment at the end of the freeform that's being created, and adds
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SegmentType_|Required| **MsoSegmentType**|The type of segment to be added.|
| _EditingType_|Required| **MsoEditingType**|The editing property of the vertex. If SegmentType is **msoSegmentLine** , EditingType must be **msoEditingAuto** .|
diff --git a/api/Word.FreeformBuilder.ConvertToShape.md b/api/Word.FreeformBuilder.ConvertToShape.md
index 91b5b38d55f..2e703442c10 100644
--- a/api/Word.FreeformBuilder.ConvertToShape.md
+++ b/api/Word.FreeformBuilder.ConvertToShape.md
@@ -27,7 +27,7 @@ Creates a shape that has the geometric characteristics of the specified object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Anchor_|Optional| **Variant**|A **[Range](Word.Range.md)** object that represents the text to which the shape is bound. If Anchor is specified, the anchor is positioned at the beginning of the first paragraph in the anchoring range. If this argument is omitted, the anchoring range is selected automatically and the shape is positioned relative to the top and left edges of the page.|
diff --git a/api/Word.Global.BuildKeyCode.md b/api/Word.Global.BuildKeyCode.md
index 8b81f8d9bb4..1d5b828462e 100644
--- a/api/Word.Global.BuildKeyCode.md
+++ b/api/Word.Global.BuildKeyCode.md
@@ -27,7 +27,7 @@ Returns a unique number for the specified key combination.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Arg1_|Required| **[WdKey](Word.WdKey.md)**|A key you specify by using one of the **WdKey** constants.|
| _Arg2_|Optional| **[WdKey](Word.WdKey.md)**|A key you specify by using one of the **WdKey** constants.|
diff --git a/api/Word.Global.CentimetersToPoints.md b/api/Word.Global.CentimetersToPoints.md
index b65dcb39b0b..bcb4f3c6e22 100644
--- a/api/Word.Global.CentimetersToPoints.md
+++ b/api/Word.Global.CentimetersToPoints.md
@@ -27,7 +27,7 @@ Converts a measurement from centimeters to points (1 cm = 28.35 points). Returns
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Centimeters_|Required| **Single**|The centimeter value to be converted to points.|
diff --git a/api/Word.Global.ChangeFileOpenDirectory.md b/api/Word.Global.ChangeFileOpenDirectory.md
index 9bac1953452..f91f58417a3 100644
--- a/api/Word.Global.ChangeFileOpenDirectory.md
+++ b/api/Word.Global.ChangeFileOpenDirectory.md
@@ -27,7 +27,7 @@ Sets the folder in which Word searches for documents. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Path_|Required| **String**|The path to the folder in which Word searches for documents.|
diff --git a/api/Word.Global.CheckSpelling.md b/api/Word.Global.CheckSpelling.md
index a1fb5d7c867..92f0a15b510 100644
--- a/api/Word.Global.CheckSpelling.md
+++ b/api/Word.Global.CheckSpelling.md
@@ -27,7 +27,7 @@ Checks a string for spelling errors. Returns a **Boolean** to indicate whether
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Word_|Required| **String**|The text whose spelling is to be checked.|
| _CustomDictionary_|Optional| **Variant**| Either an expression that returns a Dictionary object or the file name of the custom dictionary.|
@@ -43,7 +43,7 @@ Checks a string for spelling errors. Returns a **Boolean** to indicate whether
| _CustomDictionary9_|Optional| **Variant**|Either an expression that returns a **Dictionary** object or the file name of an additional custom dictionary.|
| _CustomDictionary10_|Optional| **Variant**|Either an expression that returns a **Dictionary** object or the file name of an additional custom dictionary.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Global.CleanString.md b/api/Word.Global.CleanString.md
index 13d9808789f..e68bde622e7 100644
--- a/api/Word.Global.CleanString.md
+++ b/api/Word.Global.CleanString.md
@@ -27,7 +27,7 @@ Removes nonprinting characters (character codes 1 ? 29) and special Word charact
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _String_|Required| **String**|The source string.|
diff --git a/api/Word.Global.DDEExecute.md b/api/Word.Global.DDEExecute.md
index 30301264bf0..3d4b6caf5a5 100644
--- a/api/Word.Global.DDEExecute.md
+++ b/api/Word.Global.DDEExecute.md
@@ -27,7 +27,7 @@ Sends a command or series of commands to an application through the specified dy
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Channel_|Required| **Long**|The channel number returned by the **DDEInitiate** method.|
| _Command_|Required| **String**|A command or series of commands recognized by the receiving application (the DDE server). If the receiving application cannot perform the specified command, an error occurs.|
diff --git a/api/Word.Global.DDEInitiate.md b/api/Word.Global.DDEInitiate.md
index 8ba1b1e136d..d05226faee5 100644
--- a/api/Word.Global.DDEInitiate.md
+++ b/api/Word.Global.DDEInitiate.md
@@ -27,7 +27,7 @@ Opens a dynamic data exchange (DDE) channel to another application, and returns
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _App_|Required| **String**|The name of the application.|
| _Topic_|Required| **String**|The name of a DDE topic?for example, the name of an open document?recognized by the application to which you are opening a channel.|
diff --git a/api/Word.Global.DDEPoke.md b/api/Word.Global.DDEPoke.md
index 72cfec08bd9..542b919aaca 100644
--- a/api/Word.Global.DDEPoke.md
+++ b/api/Word.Global.DDEPoke.md
@@ -27,7 +27,7 @@ Uses an open dynamic data exchange (DDE) channel to send data to an application.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Channel_|Required| **Long**|The channel number returned by the **DDEInitiate** method.|
| _Item_|Required| **String**|The item within a DDE topic to which the specified data is to be sent.|
diff --git a/api/Word.Global.DDERequest.md b/api/Word.Global.DDERequest.md
index 6ac8afb5075..2ffcacb5ca7 100644
--- a/api/Word.Global.DDERequest.md
+++ b/api/Word.Global.DDERequest.md
@@ -27,7 +27,7 @@ Uses an open dynamic data exchange (DDE) channel to request information from the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Channel_|Required| **Long**|The channel number returned by the **DDEInitiate** method.|
| _Item_|Required| **String**|The item to be requested.|
diff --git a/api/Word.Global.DDETerminate.md b/api/Word.Global.DDETerminate.md
index e89c38f95ba..85669e0f3a5 100644
--- a/api/Word.Global.DDETerminate.md
+++ b/api/Word.Global.DDETerminate.md
@@ -27,7 +27,7 @@ Closes the specified dynamic data exchange (DDE) channel to another application.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Channel_|Required| **Long**|The channel number returned by the **DDEInitiate** method.|
diff --git a/api/Word.Global.FindKey.md b/api/Word.Global.FindKey.md
index ab68de8be45..a9e837a2554 100644
--- a/api/Word.Global.FindKey.md
+++ b/api/Word.Global.FindKey.md
@@ -27,7 +27,7 @@ Returns a **[KeyBinding](Word.KeyBinding.md)** object that represents the speci
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCode_|Required| **Long**|A key you specify by using one of the **WdKey** constants.|
| _KeyCode2_|Optional| **Variant**|A second key you specify by using one of the **WdKey** constants.|
diff --git a/api/Word.Global.GetSpellingSuggestions.md b/api/Word.Global.GetSpellingSuggestions.md
index cae211b3d9a..df7cca5f108 100644
--- a/api/Word.Global.GetSpellingSuggestions.md
+++ b/api/Word.Global.GetSpellingSuggestions.md
@@ -27,7 +27,7 @@ Returns a **[SpellingSuggestions](Word.spellingsuggestions.md)** collection tha
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Word_|Required| **String**|The word whose spelling is to be checked.|
| _IgnoreUppercase_|Optional| **Variant**| **True** to ignore words in all uppercase letters. If this argument is omitted, the current value of the **[IgnoreUppercase](Word.Options.IgnoreUppercase.md)** property is used.|
diff --git a/api/Word.Global.Help.md b/api/Word.Global.Help.md
index 18c6a8ba000..1deb5cd5555 100644
--- a/api/Word.Global.Help.md
+++ b/api/Word.Global.Help.md
@@ -27,7 +27,7 @@ Displays on-line Help information.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _HelpType_|Required| **Variant**|The on-line Help topic or window. Can be any of these **[WdHelpType](Word.WdHelpType.md)** constants.|
diff --git a/api/Word.Global.InchesToPoints.md b/api/Word.Global.InchesToPoints.md
index 2159a830b20..3f6b4a66cda 100644
--- a/api/Word.Global.InchesToPoints.md
+++ b/api/Word.Global.InchesToPoints.md
@@ -27,11 +27,11 @@ Converts a measurement from inches to points (1 inch = 72 points). Returns the c
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Inches_|Required| **Single**|The inch value to be converted to points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Global.IsObjectValid.md b/api/Word.Global.IsObjectValid.md
index b4419aec36e..2a461086147 100644
--- a/api/Word.Global.IsObjectValid.md
+++ b/api/Word.Global.IsObjectValid.md
@@ -27,7 +27,7 @@ ms.date: 06/08/2017
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Object_|Required| **Object**|A variable that references an object.|
diff --git a/api/Word.Global.KeyString.md b/api/Word.Global.KeyString.md
index d8824a19c70..9ea960989bd 100644
--- a/api/Word.Global.KeyString.md
+++ b/api/Word.Global.KeyString.md
@@ -27,12 +27,12 @@ Returns the key combination string for the specified keys (for example, CTRL+SHI
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCode_|Required| **Long**|A key you specify by using one of the **WdKey** constants.|
| _KeyCode2_|Optional| **Variant**|A second key you specify by using one of the **WdKey** constants.|
-### Return Value
+### Return value
String
diff --git a/api/Word.Global.KeysBoundTo.md b/api/Word.Global.KeysBoundTo.md
index 16cb9548b15..0d245b15615 100644
--- a/api/Word.Global.KeysBoundTo.md
+++ b/api/Word.Global.KeysBoundTo.md
@@ -27,7 +27,7 @@ Returns a **KeysBoundTo** object that represents all the key combinations assig
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCategory_|Required| **WdKeyCategory**|The category of the key combination.|
| _Command_|Required| **String**|The name of the command.|
diff --git a/api/Word.Global.LinesToPoints.md b/api/Word.Global.LinesToPoints.md
index db8c2ee5358..60b2afd023c 100644
--- a/api/Word.Global.LinesToPoints.md
+++ b/api/Word.Global.LinesToPoints.md
@@ -27,11 +27,11 @@ Converts a measurement from lines to points (1 line = 12 points). Returns the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Lines_|Required| **Single**|The line value to be converted to points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Global.MillimetersToPoints.md b/api/Word.Global.MillimetersToPoints.md
index bc5977e215c..519f37b8417 100644
--- a/api/Word.Global.MillimetersToPoints.md
+++ b/api/Word.Global.MillimetersToPoints.md
@@ -27,11 +27,11 @@ Converts a measurement from millimeters to points (1 mm = 2.85 points). Returns
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Millimeters_|Required| **Single**|The millimeter value to be converted to points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Global.NewWindow.md b/api/Word.Global.NewWindow.md
index 77c55c9d694..d8fc59597f4 100644
--- a/api/Word.Global.NewWindow.md
+++ b/api/Word.Global.NewWindow.md
@@ -23,7 +23,7 @@ Opens a new window with the same document as the specified window. Returns a **
_expression_ Required. A variable that represents a '[Global](Word.Global.md)' object.
-### Return Value
+### Return value
Window
diff --git a/api/Word.Global.PicasToPoints.md b/api/Word.Global.PicasToPoints.md
index 264c5f8c23f..7c29d9ecfd8 100644
--- a/api/Word.Global.PicasToPoints.md
+++ b/api/Word.Global.PicasToPoints.md
@@ -27,11 +27,11 @@ Converts a measurement from picas to points (1 pica = 12 points). Returns the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Picas_|Required| **Single**|The pica value to be converted to points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Global.PixelsToPoints.md b/api/Word.Global.PixelsToPoints.md
index 2f41dab3e10..5654bddeed6 100644
--- a/api/Word.Global.PixelsToPoints.md
+++ b/api/Word.Global.PixelsToPoints.md
@@ -27,12 +27,12 @@ Converts a measurement from pixels to points. Returns the converted measurement
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Pixels_|Required| **Single**|The pixel value to be converted to points.|
| _fVertical_|Optional| **Variant**| **True** to convert vertical pixels; **False** to convert horizontal pixels.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Global.PointsToCentimeters.md b/api/Word.Global.PointsToCentimeters.md
index 171048b28de..44656676dd6 100644
--- a/api/Word.Global.PointsToCentimeters.md
+++ b/api/Word.Global.PointsToCentimeters.md
@@ -27,11 +27,11 @@ Converts a measurement from points to centimeters (1 centimeter = 28.35 points).
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Points_|Required| **Single**|The measurement, in points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Global.PointsToInches.md b/api/Word.Global.PointsToInches.md
index 2d508032038..0efd1977d4f 100644
--- a/api/Word.Global.PointsToInches.md
+++ b/api/Word.Global.PointsToInches.md
@@ -27,11 +27,11 @@ Converts a measurement from points to inches (1 inch = 72 points). Returns the c
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Points_|Required| **Single**|The measurement, in points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Global.PointsToLines.md b/api/Word.Global.PointsToLines.md
index 96908bf9bad..0185f8c8e4b 100644
--- a/api/Word.Global.PointsToLines.md
+++ b/api/Word.Global.PointsToLines.md
@@ -27,11 +27,11 @@ Converts a measurement from points to lines (1 line = 12 points). Returns the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Points_|Required| **Single**|The measurement, in points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Global.PointsToMillimeters.md b/api/Word.Global.PointsToMillimeters.md
index 961038cfb70..4652340f3e0 100644
--- a/api/Word.Global.PointsToMillimeters.md
+++ b/api/Word.Global.PointsToMillimeters.md
@@ -27,11 +27,11 @@ Converts a measurement from points to millimeters (1 millimeter = 2.835 points).
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Points_|Required| **Single**|The measurement, in points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Global.PointsToPicas.md b/api/Word.Global.PointsToPicas.md
index 9f850ced8ce..fbcd352c26b 100644
--- a/api/Word.Global.PointsToPicas.md
+++ b/api/Word.Global.PointsToPicas.md
@@ -27,11 +27,11 @@ Converts a measurement from points to picas (1 pica = 12 points). Returns the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Points_|Required| **Single**|The measurement, in points.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Global.PointsToPixels.md b/api/Word.Global.PointsToPixels.md
index fa1094ce530..d2f3416e9e9 100644
--- a/api/Word.Global.PointsToPixels.md
+++ b/api/Word.Global.PointsToPixels.md
@@ -27,12 +27,12 @@ Converts a measurement from points to pixels. Returns the converted measurement
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Points_|Required| **Single**|The point value to be converted to pixels.|
| _fVertical_|Optional| **Variant**| **True** to return the result as vertical pixels; **False** to return the result as horizontal pixels.|
-### Return Value
+### Return value
Single
diff --git a/api/Word.Global.Repeat.md b/api/Word.Global.Repeat.md
index 4d8b1d97fd0..285648feb5e 100644
--- a/api/Word.Global.Repeat.md
+++ b/api/Word.Global.Repeat.md
@@ -27,11 +27,11 @@ Repeats the most recent editing action one or more times. Returns **True** if t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Times_|Optional| **Variant**|The number of times you want to repeat the last command.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Global.SynonymInfo.md b/api/Word.Global.SynonymInfo.md
index 1b16227f419..55e9e109345 100644
--- a/api/Word.Global.SynonymInfo.md
+++ b/api/Word.Global.SynonymInfo.md
@@ -27,7 +27,7 @@ Returns a **SynonymInfo** object that contains information from the thesaurus o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Word_|Required| **String**|The specified word or phrase.|
| _LanguageID_|Optional| **Variant**|The language used for the thesaurus. Can be one of the **[WdLanguageID](Word.WdLanguageID.md)** constants (although some of the constants may not be available to you, depending on the language support (U.S. English, for example) that you?ve selected or installed).|
diff --git a/api/Word.GroupShapes.Item.md b/api/Word.GroupShapes.Item.md
index ab914c1fdc0..71cf30e7452 100644
--- a/api/Word.GroupShapes.Item.md
+++ b/api/Word.GroupShapes.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Shape** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
Shape
diff --git a/api/Word.GroupShapes.Range.md b/api/Word.GroupShapes.Range.md
index 4055c299574..54df96df2cc 100644
--- a/api/Word.GroupShapes.Range.md
+++ b/api/Word.GroupShapes.Range.md
@@ -27,11 +27,11 @@ Returns a **ShapeRange** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|Specifies which shapes are to be included in the specified range. Can be an integer that specifies the index number of a shape within the **Shapes** collection, a string that specifies the name of a shape, or a array that contains integers or strings.|
-### Return Value
+### Return value
ShapeRange
diff --git a/api/Word.HTMLDivision.HTMLDivisionParent.md b/api/Word.HTMLDivision.HTMLDivisionParent.md
index 2a2663db901..c36b086b7bc 100644
--- a/api/Word.HTMLDivision.HTMLDivisionParent.md
+++ b/api/Word.HTMLDivision.HTMLDivisionParent.md
@@ -27,11 +27,11 @@ Returns an **HTMLDivision** object that represents a parent division of the cur
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _LevelsUp_|Optional| **Long**|The number of parent divisions to count back to return the desired division. If the LevelsUp argument is omitted, the HTML division returned is one level up from the current HTML division.|
-### Return Value
+### Return value
HTMLDivision
diff --git a/api/Word.HTMLDivisions.Add.md b/api/Word.HTMLDivisions.Add.md
index b1312cd1305..5c3a3e7e0c0 100644
--- a/api/Word.HTMLDivisions.Add.md
+++ b/api/Word.HTMLDivisions.Add.md
@@ -27,11 +27,11 @@ Returns an **HTMLDivision** object that represents a new HTML division added to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Optional| **Variant**|An existing HTML division around which to place the new HTML division.|
-### Return Value
+### Return value
HTMLDivision
diff --git a/api/Word.HTMLDivisions.Item.md b/api/Word.HTMLDivisions.Item.md
index b2de04131ac..8f0e581654b 100644
--- a/api/Word.HTMLDivisions.Item.md
+++ b/api/Word.HTMLDivisions.Item.md
@@ -27,11 +27,11 @@ Returns an individual **HTMLDivision** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
HTMLDivision
diff --git a/api/Word.HangulAndAlphabetExceptions.Add.md b/api/Word.HangulAndAlphabetExceptions.Add.md
index 309417ad7aa..2deaadad15d 100644
--- a/api/Word.HangulAndAlphabetExceptions.Add.md
+++ b/api/Word.HangulAndAlphabetExceptions.Add.md
@@ -27,11 +27,11 @@ Returns a **HangulAndAlphabetException** object that represents a new exception
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The word that you don't want Microsoft Word to correct automatically.|
-### Return Value
+### Return value
HangulAndAlphabetException
diff --git a/api/Word.HangulAndAlphabetExceptions.Item.md b/api/Word.HangulAndAlphabetExceptions.Item.md
index e580b83d6a2..765adce6e26 100644
--- a/api/Word.HangulAndAlphabetExceptions.Item.md
+++ b/api/Word.HangulAndAlphabetExceptions.Item.md
@@ -27,11 +27,11 @@ Returns an individual **HangulAndAlphabetException** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
HangulAndAlphabetException
diff --git a/api/Word.HangulHanjaConversionDictionaries.Add.md b/api/Word.HangulHanjaConversionDictionaries.Add.md
index 06b1bd7857c..b0fe945b452 100644
--- a/api/Word.HangulHanjaConversionDictionaries.Add.md
+++ b/api/Word.HangulHanjaConversionDictionaries.Add.md
@@ -27,11 +27,11 @@ Returns a **Dictionary** object that represents a new custom spelling or conver
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The string name of the dictionary file. If no path is specified in the string, the proofing tools path is used.|
-### Return Value
+### Return value
Dictionary
diff --git a/api/Word.HangulHanjaConversionDictionaries.Item.md b/api/Word.HangulHanjaConversionDictionaries.Item.md
index 371daeb1ca8..994b445e284 100644
--- a/api/Word.HangulHanjaConversionDictionaries.Item.md
+++ b/api/Word.HangulHanjaConversionDictionaries.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Dictionary** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
Dictionary
diff --git a/api/Word.HeadersFooters.Item.md b/api/Word.HeadersFooters.Item.md
index a39ffb39140..50301e921fe 100644
--- a/api/Word.HeadersFooters.Item.md
+++ b/api/Word.HeadersFooters.Item.md
@@ -27,11 +27,11 @@ Returns a **HeaderFooter** object that represents a header or footer in a range
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **WdHeaderFooterIndex**|A constant that specifies the header or footer in the range or section.|
-### Return Value
+### Return value
HeaderFooter
diff --git a/api/Word.HeadingStyles.Add.md b/api/Word.HeadingStyles.Add.md
index f3c15b25fe4..108bcd49aed 100644
--- a/api/Word.HeadingStyles.Add.md
+++ b/api/Word.HeadingStyles.Add.md
@@ -27,12 +27,12 @@ Returns a **HeadingStyle** object that represents a new heading style added to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **Variant**|The style you want to add. You can specify this argument by using either the string name for the style or a **Style** object.|
| _Level_|Required| **Integer**|A number that represents the level of the heading.|
-### Return Value
+### Return value
HeadingStyle
diff --git a/api/Word.HeadingStyles.Item.md b/api/Word.HeadingStyles.Item.md
index 5dfc380e0d6..1cf812afc81 100644
--- a/api/Word.HeadingStyles.Item.md
+++ b/api/Word.HeadingStyles.Item.md
@@ -27,11 +27,11 @@ Returns an individual **HeadingStyle** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
HeadingStyle
diff --git a/api/Word.Hyperlink.CreateNewDocument.md b/api/Word.Hyperlink.CreateNewDocument.md
index 28c6a9c231f..9edeef66944 100644
--- a/api/Word.Hyperlink.CreateNewDocument.md
+++ b/api/Word.Hyperlink.CreateNewDocument.md
@@ -27,7 +27,7 @@ Creates a new document linked to the specified hyperlink.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The file name of the specified document.|
| _EditNow_|Required| **Boolean**| **True** to have the specified document open immediately in its associated editing environment. The default value is **True** .|
diff --git a/api/Word.Hyperlink.Follow.md b/api/Word.Hyperlink.Follow.md
index 1953e658b6a..ee610e94dc1 100644
--- a/api/Word.Hyperlink.Follow.md
+++ b/api/Word.Hyperlink.Follow.md
@@ -27,7 +27,7 @@ Displays a cached document associated with the specified **Hyperlink** object,
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NewWindow_|Optional| **Variant**| **True** to display the target document in a new window. The default value is **False** .|
| _AddHistory_|Optional| **Variant**|This argument is reserved for future use.|
diff --git a/api/Word.Hyperlinks.Add.md b/api/Word.Hyperlinks.Add.md
index c876dbdb904..dc5336973a0 100644
--- a/api/Word.Hyperlinks.Add.md
+++ b/api/Word.Hyperlinks.Add.md
@@ -27,7 +27,7 @@ Returns a **Hyperlink** object that represents a new hyperlink added to a range
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Anchor_|Required| **Object**|The text or graphic that you want turned into a hyperlink.|
| _Address_|Optional| **Variant**|The address for the specified link. The address can be an e-mail address, an Internet address, or a file name. Note that Microsoft Word doesn't check the accuracy of the address.|
@@ -36,7 +36,7 @@ Returns a **Hyperlink** object that represents a new hyperlink added to a range
| _TextToDisplay_|Optional| **Variant**|The display text of the specified hyperlink. The value of this argument replaces the text or graphic specified by Anchor.|
| _Target_|Optional| **Variant**|The name of the frame or window in which you want to load the specified hyperlink.|
-### Return Value
+### Return value
Hyperlink
diff --git a/api/Word.Hyperlinks.Item.md b/api/Word.Hyperlinks.Item.md
index 67c13746512..d52e15427eb 100644
--- a/api/Word.Hyperlinks.Item.md
+++ b/api/Word.Hyperlinks.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Hyperlink** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
Hyperlink
diff --git a/api/Word.Indexes.Add.md b/api/Word.Indexes.Add.md
index a2fd8bff57f..8264a14b08a 100644
--- a/api/Word.Indexes.Add.md
+++ b/api/Word.Indexes.Add.md
@@ -27,7 +27,7 @@ Returns an **Index** object that represents a new index added to a document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range**|The range where you want the index to appear. The index replaces the range, if the range is not collapsed.|
| _HeadingSeparator_|Optional| **Variant**|The text between alphabetical groups (entries that start with the same letter) in the index. Can be one of the **WdHeadingSeparator** constants.|
@@ -38,7 +38,7 @@ Returns an **Index** object that represents a new index added to a document.
| _SortBy_|Optional| **Variant**|The sorting criteria to be used for the specified index. Can be either of the following **WdIndexSortBy** constants: **wdIndexSortByStroke** or **wdIndexSortBySyllable** .|
| _IndexLanguage_|Optional| **Variant**|The sorting language to be used for the specified index. Can be any of the **WdLanguageID** constants. For the list of valid **WdLanguageID** constants, see the Object Browser in the Visual Basic Editor.|
-### Return Value
+### Return value
Index
diff --git a/api/Word.Indexes.AutoMarkEntries.md b/api/Word.Indexes.AutoMarkEntries.md
index 3865d2ed60a..465174e9516 100644
--- a/api/Word.Indexes.AutoMarkEntries.md
+++ b/api/Word.Indexes.AutoMarkEntries.md
@@ -27,7 +27,7 @@ Automatically adds XE (Index Entry) fields to the specified document, using the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ConcordanceFileName_|Required| **String**|The concordance file name that includes a list of items to be indexed.|
diff --git a/api/Word.Indexes.Item.md b/api/Word.Indexes.Item.md
index 5754dee8cc7..f4d96595a7a 100644
--- a/api/Word.Indexes.Item.md
+++ b/api/Word.Indexes.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Index** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Index
diff --git a/api/Word.Indexes.MarkAllEntries.md b/api/Word.Indexes.MarkAllEntries.md
index d012dd260f7..1a0aef3ccea 100644
--- a/api/Word.Indexes.MarkAllEntries.md
+++ b/api/Word.Indexes.MarkAllEntries.md
@@ -27,7 +27,7 @@ Inserts an XE (Index Entry) field after all instances of the text in **Range**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The range whose text is marked with an XE field throughout the document.|
| _Entry_|Optional| **Variant**|The text you want to appear in the index, in the form MainEntry[:Subentry].|
diff --git a/api/Word.Indexes.MarkEntry.md b/api/Word.Indexes.MarkEntry.md
index 7f282e58f75..a9fcae5ea6d 100644
--- a/api/Word.Indexes.MarkEntry.md
+++ b/api/Word.Indexes.MarkEntry.md
@@ -27,7 +27,7 @@ Inserts an XE (Index Entry) field after the specified range. The method returns
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The location of the entry. The XE field is inserted after Range.|
| _Entry_|Optional| **Variant**|The text that appears in the index. To indicate a subentry, include the main entry text and the subentry text, separated by a colon (:) (for example, "Introduction:The Product").|
@@ -39,7 +39,7 @@ Inserts an XE (Index Entry) field after the specified range. The method returns
| _Italic_|Optional| **Variant**| **True** to add italic formatting to the entry page numbers in the index.|
| _Reading_|Optional| **Variant**| **True** shows an index entry in the right location when indexes are sorted phonetically (East Asian languages only).|
-### Return Value
+### Return value
Field
diff --git a/api/Word.InlineShapes.AddHorizontalLine.md b/api/Word.InlineShapes.AddHorizontalLine.md
index 9eb49338161..a74a0e24439 100644
--- a/api/Word.InlineShapes.AddHorizontalLine.md
+++ b/api/Word.InlineShapes.AddHorizontalLine.md
@@ -27,7 +27,7 @@ Adds a horizontal line based on an image file to the current document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The file name of the image you want to use for the horizontal line.|
| _Range_|Optional| **Variant**|The range above which Microsoft Word places the horizontal line. If this argument is omitted, Word places the horizontal line above the current selection.|
diff --git a/api/Word.InlineShapes.AddHorizontalLineStandard.md b/api/Word.InlineShapes.AddHorizontalLineStandard.md
index 6b3764008c6..8143eaefb43 100644
--- a/api/Word.InlineShapes.AddHorizontalLineStandard.md
+++ b/api/Word.InlineShapes.AddHorizontalLineStandard.md
@@ -27,7 +27,7 @@ Adds a horizontal line to the current document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Optional| **Variant**|The range above which Microsoft Word places the horizontal line. If this argument is omitted, Word places the horizontal line above the current selection.|
diff --git a/api/Word.InlineShapes.AddOLEControl.md b/api/Word.InlineShapes.AddOLEControl.md
index 98c02cda96d..54af63a48de 100644
--- a/api/Word.InlineShapes.AddOLEControl.md
+++ b/api/Word.InlineShapes.AddOLEControl.md
@@ -27,7 +27,7 @@ Creates an ActiveX control (formerly known as an OLE control). Returns the **[I
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ClassType_|Optional| **Variant**|The programmatic identifier for the ActiveX control to be created.|
| _Range_|Optional| **Variant**|The range where the ActiveX control will be placed in the text. The ActiveX control replaces the range, if the range isn't collapsed. If this argument is omitted, the Active X control is placed automatically.|
diff --git a/api/Word.InlineShapes.AddOLEObject.md b/api/Word.InlineShapes.AddOLEObject.md
index f44270bb4d2..f297b0832a4 100644
--- a/api/Word.InlineShapes.AddOLEObject.md
+++ b/api/Word.InlineShapes.AddOLEObject.md
@@ -27,7 +27,7 @@ Creates an OLE object. Returns the **[InlineShape](Word.InlineShape.md)** objec
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ClassType_|Optional| **Variant**|The name of the application used to activate the specified OLE object.|
| _FileName_|Optional| **Variant**|The file from which the object is to be created. If this argument is omitted, the current folder is used. You must specify either the ClassType or FileName argument for the object, but not both.|
diff --git a/api/Word.InlineShapes.AddPicture.md b/api/Word.InlineShapes.AddPicture.md
index b8450c21c1f..27f7350c687 100644
--- a/api/Word.InlineShapes.AddPicture.md
+++ b/api/Word.InlineShapes.AddPicture.md
@@ -27,7 +27,7 @@ Adds a picture to a document. Returns an **[InlineShape](Word.InlineShape.md)**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The path and file name of the picture.|
| _LinkToFile_|Optional| **Variant**| **True** to link the picture to the file from which it was created. **False** to make the picture an independent copy of the file. The default value is **False** .|
diff --git a/api/Word.InlineShapes.AddPictureBullet.md b/api/Word.InlineShapes.AddPictureBullet.md
index e858b8cf09d..f60c545dfac 100644
--- a/api/Word.InlineShapes.AddPictureBullet.md
+++ b/api/Word.InlineShapes.AddPictureBullet.md
@@ -27,12 +27,12 @@ Adds a picture bullet based on an image file to the current document. Returns an
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The file name of the image you want to use for the picture bullet.|
| _Range_|Optional| **Variant**|The range to which Microsoft Word adds the picture bullet. Word adds the picture bullet to each paragraph in the range. If this argument is omitted, Word adds the picture bullet to each paragraph in the current selection.|
-### Return Value
+### Return value
InlineShape
diff --git a/api/Word.InlineShapes.AddSmartArt.md b/api/Word.InlineShapes.AddSmartArt.md
index 65f9f211409..e0a3bb07544 100644
--- a/api/Word.InlineShapes.AddSmartArt.md
+++ b/api/Word.InlineShapes.AddSmartArt.md
@@ -27,12 +27,12 @@ Inserts a SmartArt graphic as an inline shape into the active document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Layout_|Required| **[SMARTARTLAYOUT]**|A [SmartArtLayout](./Office.SmartArtLayout.md)object that specifies the layout for the SmartArt graphic.|
| _Range_|Optional| **Variant**|Specifies the text to which the SmartArt graphic is bound. If [Range](Word.Range.md) is specified, the SmartArt graphic is positioned at the beginning of the first paragraph in the range. If this argument is omitted, the range is selected automatically, and the SmartArt graphic is positioned relative to the top and left edges of the page.|
-### Return Value
+### Return value
InlineShape
diff --git a/api/Word.InlineShapes.Item.md b/api/Word.InlineShapes.Item.md
index dcd7629909b..ba8a697ca7c 100644
--- a/api/Word.InlineShapes.Item.md
+++ b/api/Word.InlineShapes.Item.md
@@ -27,11 +27,11 @@ Returns an individual **InlineShape** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
InlineShape
diff --git a/api/Word.InlineShapes.New.md b/api/Word.InlineShapes.New.md
index 1ab6c00c2ca..72eb0e5b411 100644
--- a/api/Word.InlineShapes.New.md
+++ b/api/Word.InlineShapes.New.md
@@ -27,11 +27,11 @@ Inserts an empty, 1-inch-square Word picture object surrounded by a border. This
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The location of the new graphic.|
-### Return Value
+### Return value
InlineShape
diff --git a/api/Word.KeyBinding.Rebind.md b/api/Word.KeyBinding.Rebind.md
index f2b1bc8cabc..cec00b0fe0c 100644
--- a/api/Word.KeyBinding.Rebind.md
+++ b/api/Word.KeyBinding.Rebind.md
@@ -27,7 +27,7 @@ Changes the command assigned to the specified key binding.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCategory_|Required| **WdKeyCategory**|The key category of the specified key binding.|
| _Command_|Required| **String**|The name of the specified command.|
diff --git a/api/Word.KeyBindings.Add.md b/api/Word.KeyBindings.Add.md
index e9fde2faaa5..b0027caef93 100644
--- a/api/Word.KeyBindings.Add.md
+++ b/api/Word.KeyBindings.Add.md
@@ -27,7 +27,7 @@ Returns a **KeyBinding** object that represents a new shortcut key for a macro,
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCategory_|Required| **WdKeyCategory**|The category of the key assignment.|
| _Command_|Required| **String**|The command that the specified key combination executes.|
@@ -35,7 +35,7 @@ Returns a **KeyBinding** object that represents a new shortcut key for a macro,
| _KeyCode2_|Optional| **Variant**|A second key you specify by using one of the **WdKey** constants.|
| _CommandParameter_|Optional| **Variant**|Additional text, if any, required for the command specified by Command. For details, see the Remarks section below.|
-### Return Value
+### Return value
KeyBinding
diff --git a/api/Word.KeyBindings.Item.md b/api/Word.KeyBindings.Item.md
index 5411a4fbbb3..ae95efc7617 100644
--- a/api/Word.KeyBindings.Item.md
+++ b/api/Word.KeyBindings.Item.md
@@ -27,11 +27,11 @@ Returns an individual **KeyBinding** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
KeyBinding
diff --git a/api/Word.KeyBindings.Key.md b/api/Word.KeyBindings.Key.md
index c8bf40f9895..b80de61a82b 100644
--- a/api/Word.KeyBindings.Key.md
+++ b/api/Word.KeyBindings.Key.md
@@ -27,12 +27,12 @@ Returns a **KeyBinding** object that represents the specified custom key combin
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCode_|Required| **Long**|A key you specify by using one of the **WdKey** constants.|
| _KeyCode2_|Optional| **Variant**|A second key you specify by using one of the **WdKey** constants.|
-### Return Value
+### Return value
KeyBinding
diff --git a/api/Word.KeysBoundTo.Item.md b/api/Word.KeysBoundTo.Item.md
index 12f9bad92de..9991e46d2ec 100644
--- a/api/Word.KeysBoundTo.Item.md
+++ b/api/Word.KeysBoundTo.Item.md
@@ -27,11 +27,11 @@ Returns an individual **KeyBinding** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
KeyBinding
diff --git a/api/Word.KeysBoundTo.Key.md b/api/Word.KeysBoundTo.Key.md
index 2f2e6fd213d..5cab3475541 100644
--- a/api/Word.KeysBoundTo.Key.md
+++ b/api/Word.KeysBoundTo.Key.md
@@ -27,12 +27,12 @@ Returns a **KeyBinding** object that represents the specified custom key combin
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _KeyCode_|Required| **Long**|A key you specify by using one of the **WdKey** constants.|
| _KeyCode2_|Optional| **Variant**|A second key you specify by using one of the **WdKey** constants.|
-### Return Value
+### Return value
KeyBinding
diff --git a/api/Word.Languages.Item.md b/api/Word.Languages.Item.md
index 166bef277ea..2a8821303fe 100644
--- a/api/Word.Languages.Item.md
+++ b/api/Word.Languages.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Language** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
Language
diff --git a/api/Word.Legend.LegendEntries.md b/api/Word.Legend.LegendEntries.md
index 231d85aa8fa..4cb3e6554b8 100644
--- a/api/Word.Legend.LegendEntries.md
+++ b/api/Word.Legend.LegendEntries.md
@@ -23,7 +23,7 @@ Returns a collection of legend entries for the legend.
_expression_ A variable that represents a '[Legend](Word.Legend.md)' object.
-### Return Value
+### Return value
A **[LegendEntries](Word.LegendEntries.md)** object that represents the legend entries for the legend.
diff --git a/api/Word.LegendEntries.Item.md b/api/Word.LegendEntries.Item.md
index 35dc5192b5b..cdb24224648 100644
--- a/api/Word.LegendEntries.Item.md
+++ b/api/Word.LegendEntries.Item.md
@@ -27,11 +27,11 @@ Returns a single object from a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The index number for the object.|
-### Return Value
+### Return value
A **[LegendEntry](Word.LegendEntry.md)** object that the collection contains.
diff --git a/api/Word.Lines.Item.md b/api/Word.Lines.Item.md
index 652136b9929..67b707b23c9 100644
--- a/api/Word.Lines.Item.md
+++ b/api/Word.Lines.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Line** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Line
diff --git a/api/Word.List.ApplyListTemplate.md b/api/Word.List.ApplyListTemplate.md
index 02e0b244d5f..f2b5adca83a 100644
--- a/api/Word.List.ApplyListTemplate.md
+++ b/api/Word.List.ApplyListTemplate.md
@@ -27,7 +27,7 @@ Applies a set of list-formatting characteristics to the specified **ListFormat*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ListTemplate_|Required| **[ListTemplate](Word.ListTemplate.md)**|The list template to be applied.|
| _ContinuePreviousList_|Optional| **Variant**| **True** to continue the numbering from the previous list; **False** to start a new list.|
diff --git a/api/Word.List.ApplyListTemplateWithLevel.md b/api/Word.List.ApplyListTemplateWithLevel.md
index b16ae4d60ba..1458ad7e2a0 100644
--- a/api/Word.List.ApplyListTemplateWithLevel.md
+++ b/api/Word.List.ApplyListTemplateWithLevel.md
@@ -27,7 +27,7 @@ Applies a set of list-formatting characteristics, optionally for a specified lev
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ListTemplate_|Required| **[ListTemplate](Word.ListTemplate.md)**|The list template to be applied.|
| _ContinuePreviousList_|Optional| **Variant**| **True** to continue the numbering from the previous list; **False** to start a new list.|
diff --git a/api/Word.List.CanContinuePreviousList.md b/api/Word.List.CanContinuePreviousList.md
index 46fe51bd0ad..70c91086884 100644
--- a/api/Word.List.CanContinuePreviousList.md
+++ b/api/Word.List.CanContinuePreviousList.md
@@ -27,7 +27,7 @@ Returns a **[WdContinue](Word.WdContinue.md)** constant (**wdContinueDisabled**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ListTemplate_|Required| **[ListTemplate](Word.ListTemplate.md)**|A list template that's been applied to previous paragraphs in the document.|
diff --git a/api/Word.List.RemoveNumbers.md b/api/Word.List.RemoveNumbers.md
index 3d31ea87a00..9a8a57e0291 100644
--- a/api/Word.List.RemoveNumbers.md
+++ b/api/Word.List.RemoveNumbers.md
@@ -27,7 +27,7 @@ Removes numbers or bullets from the specified list.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NumberType_|Optional| **[WdNumberType](Word.WdNumberType.md)**| The type of number to be removed.|
diff --git a/api/Word.ListEntries.Add.md b/api/Word.ListEntries.Add.md
index 7aeb4eb90b1..1a580f5ec25 100644
--- a/api/Word.ListEntries.Add.md
+++ b/api/Word.ListEntries.Add.md
@@ -27,12 +27,12 @@ Returns a **ListEntry** object that represents an item added to a drop-down for
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The name of the drop-down form field item.|
| _Index_|Optional| **Variant**|A number that represents the position of the item in the list.|
-### Return Value
+### Return value
ListEntry
diff --git a/api/Word.ListEntries.Item.md b/api/Word.ListEntries.Item.md
index f755b2680a5..444c46f3ca9 100644
--- a/api/Word.ListEntries.Item.md
+++ b/api/Word.ListEntries.Item.md
@@ -27,11 +27,11 @@ Returns an individual **ListEntry** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
ListEntry
diff --git a/api/Word.ListFormat.ApplyBulletDefault.md b/api/Word.ListFormat.ApplyBulletDefault.md
index d3eb58b0bbc..96b912c7143 100644
--- a/api/Word.ListFormat.ApplyBulletDefault.md
+++ b/api/Word.ListFormat.ApplyBulletDefault.md
@@ -27,7 +27,7 @@ Adds bullets and formatting to the paragraphs in the range for the specified **
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DefaultListBehavior_|Optional| **Variant**|Sets a value that specifies whether Microsoft Word uses new Web-oriented formatting for better list display. Can be either of the following constants: **wdWord8ListBehavior** (use formatting compatible with Microsoft Word 97) or **wdWord9ListBehavior** (use Web-oriented formatting). For compatibility reasons, the default constant is **wdWord8ListBehavior** , but in new procedures you should use **wdWord9ListBehavior** to take advantage of improved Web-oriented formatting with respect to indenting and multilevel lists.|
diff --git a/api/Word.ListFormat.ApplyListTemplate.md b/api/Word.ListFormat.ApplyListTemplate.md
index e4abe278d6a..baeb8b267fc 100644
--- a/api/Word.ListFormat.ApplyListTemplate.md
+++ b/api/Word.ListFormat.ApplyListTemplate.md
@@ -27,7 +27,7 @@ Applies a set of list-formatting characteristics to the specified **ListFormat*
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ListTemplate_|Required| **[ListTemplate](Word.ListTemplate.md)**|The list template to be applied.|
| _ContinuePreviousList_|Optional| **Variant**| **True** to continue the numbering from the previous list; **False** to start a new list.|
diff --git a/api/Word.ListFormat.ApplyListTemplateWithLevel.md b/api/Word.ListFormat.ApplyListTemplateWithLevel.md
index 7153fe36fdb..6c1324e6c88 100644
--- a/api/Word.ListFormat.ApplyListTemplateWithLevel.md
+++ b/api/Word.ListFormat.ApplyListTemplateWithLevel.md
@@ -27,7 +27,7 @@ Applies a set of list-formatting characteristics, optionally for a specified lev
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ListTemplate_|Required| **[ListTemplate](Word.ListTemplate.md)**|The list template to be applied.|
| _ContinuePreviousList_|Optional| **Variant**| **True** to continue the numbering from the previous list; **False** to start a new list.|
diff --git a/api/Word.ListFormat.ApplyNumberDefault.md b/api/Word.ListFormat.ApplyNumberDefault.md
index 85feb907fad..de12eea4dfe 100644
--- a/api/Word.ListFormat.ApplyNumberDefault.md
+++ b/api/Word.ListFormat.ApplyNumberDefault.md
@@ -27,7 +27,7 @@ Adds the default numbering scheme to the paragraphs in the range for the specifi
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DefaultListBehavior_|Optional| **Variant**|Sets a value that specifies whether Microsoft Word uses new Web-oriented formatting for better list display. Can be either of the following constants: **wdWord8ListBehavior** (use formatting compatible with Microsoft Word 97) or **wdWord9ListBehavior** (use Web-oriented formatting). For compatibility reasons, the default constant is **wdWord8ListBehavior** , but in new procedures you should use **wdWord9ListBehavior** to take advantage of improved Web-oriented formatting with respect to indenting and multilevel lists.|
diff --git a/api/Word.ListFormat.ApplyOutlineNumberDefault.md b/api/Word.ListFormat.ApplyOutlineNumberDefault.md
index 61d7ea6c05e..6f4dceb76ec 100644
--- a/api/Word.ListFormat.ApplyOutlineNumberDefault.md
+++ b/api/Word.ListFormat.ApplyOutlineNumberDefault.md
@@ -27,7 +27,7 @@ Adds the default outline-numbering scheme to the paragraphs in the range for the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DefaultListBehavior_|Optional| **Variant**|Sets a value that specifies whether Microsoft Word uses new Web-oriented formatting for better list display. Can be either of the following constants: **wdWord8ListBehavior** (use formatting compatible with Microsoft Word 97) or **wdWord9ListBehavior** (use Web-oriented formatting). For compatibility reasons, the default constant is **wdWord8ListBehavior** , but in new procedures you should use **wdWord9ListBehavior** to take advantage of improved Web-oriented formatting with respect to indenting and multilevel lists.|
diff --git a/api/Word.ListFormat.CanContinuePreviousList.md b/api/Word.ListFormat.CanContinuePreviousList.md
index 87f48e24f25..7b8b59025c3 100644
--- a/api/Word.ListFormat.CanContinuePreviousList.md
+++ b/api/Word.ListFormat.CanContinuePreviousList.md
@@ -27,7 +27,7 @@ Returns a **WdContinue** constant (**wdContinueDisabled** , **wdResetList** , o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ListTemplate_|Required| **[ListTemplate](Word.ListTemplate.md)**|A list template that's been applied to previous paragraphs in the document.|
diff --git a/api/Word.ListFormat.RemoveNumbers.md b/api/Word.ListFormat.RemoveNumbers.md
index dde880aa0ad..e747bc5656e 100644
--- a/api/Word.ListFormat.RemoveNumbers.md
+++ b/api/Word.ListFormat.RemoveNumbers.md
@@ -27,7 +27,7 @@ Removes numbers or bullets from the specified list.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NumberType_|Optional| **[WdNumberType](Word.WdNumberType.md)**| The type of number to be removed.|
diff --git a/api/Word.ListGalleries.Item.md b/api/Word.ListGalleries.Item.md
index afdbb67f130..03e0a5711d4 100644
--- a/api/Word.ListGalleries.Item.md
+++ b/api/Word.ListGalleries.Item.md
@@ -27,11 +27,11 @@ Returns an individual **ListGalleries** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **WDLISTGALLERYTYPE**|The individual object to be returned.|
-### Return Value
+### Return value
ListGallery
diff --git a/api/Word.ListGallery.Reset.md b/api/Word.ListGallery.Reset.md
index 812f58da9ad..3f48bd93814 100644
--- a/api/Word.ListGallery.Reset.md
+++ b/api/Word.ListGallery.Reset.md
@@ -27,7 +27,7 @@ Resets the list template specified by Index for the specified list gallery to th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The template to reset.|
diff --git a/api/Word.ListLevel.ApplyPictureBullet.md b/api/Word.ListLevel.ApplyPictureBullet.md
index 3dbe464706a..ad1fb9e5d44 100644
--- a/api/Word.ListLevel.ApplyPictureBullet.md
+++ b/api/Word.ListLevel.ApplyPictureBullet.md
@@ -27,7 +27,7 @@ Formats a paragraph or range of paragraphs with a picture bullet.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The path and file name of the picture file.|
diff --git a/api/Word.ListLevels.Item.md b/api/Word.ListLevels.Item.md
index 946934c8cbc..892df02f40c 100644
--- a/api/Word.ListLevels.Item.md
+++ b/api/Word.ListLevels.Item.md
@@ -27,11 +27,11 @@ Returns an individual **ListLevel** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
ListLevel
diff --git a/api/Word.ListParagraphs.Item.md b/api/Word.ListParagraphs.Item.md
index 1874736e539..44551a701db 100644
--- a/api/Word.ListParagraphs.Item.md
+++ b/api/Word.ListParagraphs.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Paragraph** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Paragraph
diff --git a/api/Word.ListTemplate.Convert.md b/api/Word.ListTemplate.Convert.md
index f7328f6d743..59086095942 100644
--- a/api/Word.ListTemplate.Convert.md
+++ b/api/Word.ListTemplate.Convert.md
@@ -27,7 +27,7 @@ Converts a multiple-level list to a single-level list, or vice versa.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Level_|Optional| **Variant**|The level to use for formatting the new list. When converting a multiple-level list to a single-level list, this argument can be a number from 1 through 9. When converting a single-level list to a multiple-level list, 1 is the only valid value. If this argument is omitted, 1 is the default value.|
diff --git a/api/Word.ListTemplates.Add.md b/api/Word.ListTemplates.Add.md
index 2be699d281b..c4971022dbc 100644
--- a/api/Word.ListTemplates.Add.md
+++ b/api/Word.ListTemplates.Add.md
@@ -27,12 +27,12 @@ Returns a **ListTemplate** object that represents a new list template.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _OutlineNumbered_|Optional| **Variant**| **True** to apply outline numbering to the new list template.|
| _Name_|Optional| **Variant**|An optional name used for linking the list template to a LISTNUM field. You can use this name to index the list template in the collection.|
-### Return Value
+### Return value
ListTemplate
diff --git a/api/Word.ListTemplates.Item.md b/api/Word.ListTemplates.Item.md
index d36925a2a2b..8b4d4faeafa 100644
--- a/api/Word.ListTemplates.Item.md
+++ b/api/Word.ListTemplates.Item.md
@@ -27,11 +27,11 @@ Returns an individual **ListTemplate** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
ListTemplate
diff --git a/api/Word.Lists.Item.md b/api/Word.Lists.Item.md
index 349d5d90dcf..14c36033cc2 100644
--- a/api/Word.Lists.Item.md
+++ b/api/Word.Lists.Item.md
@@ -27,11 +27,11 @@ Returns an individual **List** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
List
diff --git a/api/Word.MailMerge.CreateDataSource.md b/api/Word.MailMerge.CreateDataSource.md
index 7828b8022a3..8a5091f6741 100644
--- a/api/Word.MailMerge.CreateDataSource.md
+++ b/api/Word.MailMerge.CreateDataSource.md
@@ -27,7 +27,7 @@ Creates a Microsoft Word document that uses a table to store data for a mail mer
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional| **Variant**|The path and file name for the new data source.|
| _PasswordDocument_|Optional| **Variant**|The password required to open the new data source.|
diff --git a/api/Word.MailMerge.CreateHeaderSource.md b/api/Word.MailMerge.CreateHeaderSource.md
index 842b109e12c..0128281cc9f 100644
--- a/api/Word.MailMerge.CreateHeaderSource.md
+++ b/api/Word.MailMerge.CreateHeaderSource.md
@@ -27,7 +27,7 @@ Creates a Microsoft Word document that stores a header record that is used inste
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The path and file name for the new header source.|
| _PasswordDocument_|Optional| **Variant**|The password required to open the new header source.|
diff --git a/api/Word.MailMerge.Execute.md b/api/Word.MailMerge.Execute.md
index 97eba666828..516e64e0063 100644
--- a/api/Word.MailMerge.Execute.md
+++ b/api/Word.MailMerge.Execute.md
@@ -27,7 +27,7 @@ Performs the specified mail merge operation.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Pause_|Optional| **Variant**| **True** for Microsoft Word pause and display a troubleshooting dialog box if a mail merge error is found. **False** to report errors in a new document.|
diff --git a/api/Word.MailMerge.OpenDataSource.md b/api/Word.MailMerge.OpenDataSource.md
index f65070224be..bb206d4fbf2 100644
--- a/api/Word.MailMerge.OpenDataSource.md
+++ b/api/Word.MailMerge.OpenDataSource.md
@@ -27,7 +27,7 @@ Attaches a data source to the specified document, which becomes a main document
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The data source file name. You can specify a Microsoft Query (.qry) file instead of specifying a data source, a connection string, and a query string.|
| _Format_|Optional| **Variant**|The file converter used to open the document. Can be one of the **WdOpenFormat** constants. To specify an external file format, use the **OpenFormat** property with the **FileConverter** object to determine the value to use with this argument.|
diff --git a/api/Word.MailMerge.OpenHeaderSource.md b/api/Word.MailMerge.OpenHeaderSource.md
index 3fb7a4b2364..c42c919a24b 100644
--- a/api/Word.MailMerge.OpenHeaderSource.md
+++ b/api/Word.MailMerge.OpenHeaderSource.md
@@ -27,7 +27,7 @@ Attaches a mail merge header source to the specified document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The file name of the header source.|
| _Format_|Optional| **Variant**|The file converter used to open the document. Can be one of the **WdOpenFormat** constants. To specify an external file format, use the **OpenFormat** property with a **FileConverter** object to determine the value to use with this argument.|
diff --git a/api/Word.MailMerge.ShowWizard.md b/api/Word.MailMerge.ShowWizard.md
index 415c086578e..2320fe32ae0 100644
--- a/api/Word.MailMerge.ShowWizard.md
+++ b/api/Word.MailMerge.ShowWizard.md
@@ -27,7 +27,7 @@ Displays the Mail Merge Wizard in a document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _InitialState_|Required| **Variant**|The number of the Mail Merge Wizard step to display.|
| _ShowDocumentStep_|Optional| **Variant**| **True** keeps the "Select document type" step in the sequence of mail merge steps. **False** removes step one.|
diff --git a/api/Word.MailMergeDataFields.Item.md b/api/Word.MailMergeDataFields.Item.md
index a72f3cd9647..2041738169b 100644
--- a/api/Word.MailMergeDataFields.Item.md
+++ b/api/Word.MailMergeDataFields.Item.md
@@ -27,11 +27,11 @@ Returns an individual **MailMergeDataField** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
MailMergeDataField
diff --git a/api/Word.MailMergeDataSource.FindRecord.md b/api/Word.MailMergeDataSource.FindRecord.md
index 7d798a210f1..cc61a39f8e3 100644
--- a/api/Word.MailMergeDataSource.FindRecord.md
+++ b/api/Word.MailMergeDataSource.FindRecord.md
@@ -27,12 +27,12 @@ Searches the contents of the specified mail merge data source for text in a part
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FindText_|Required| **String**|The text to be looked for.|
| _Field_|Required| **Variant**|The name of the field to be searched.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.MailMergeDataSource.SetAllErrorFlags.md b/api/Word.MailMergeDataSource.SetAllErrorFlags.md
index 070a28b6036..ac43344d1b3 100644
--- a/api/Word.MailMergeDataSource.SetAllErrorFlags.md
+++ b/api/Word.MailMergeDataSource.SetAllErrorFlags.md
@@ -27,7 +27,7 @@ Marks all records in a mail merge data source as containing invalid data in an a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Invalid_|Required| **Boolean**| **True** marks all records in the data source of a mail merge as invalid.|
| _InvalidComment_|Required| **String**|Text describing the invalid setting.|
diff --git a/api/Word.MailMergeDataSource.SetAllIncludedFlags.md b/api/Word.MailMergeDataSource.SetAllIncludedFlags.md
index 87c86498a02..9542d304369 100644
--- a/api/Word.MailMergeDataSource.SetAllIncludedFlags.md
+++ b/api/Word.MailMergeDataSource.SetAllIncludedFlags.md
@@ -27,7 +27,7 @@ Includes or excludes flagged records in a data source from a mail merge.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Included_|Required| **Boolean**| **True** to include all data source records in a mail merge. **False** to exclude all data source records from a mail merge.|
diff --git a/api/Word.MailMergeFieldNames.Item.md b/api/Word.MailMergeFieldNames.Item.md
index ca0c8da644e..744b11f497a 100644
--- a/api/Word.MailMergeFieldNames.Item.md
+++ b/api/Word.MailMergeFieldNames.Item.md
@@ -27,11 +27,11 @@ Returns an individual **MailMergeFieldNames** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned.|
-### Return Value
+### Return value
MailMergeFieldName
diff --git a/api/Word.MailMergeFields.Add.md b/api/Word.MailMergeFields.Add.md
index 120260bd83e..1d5d4c7a980 100644
--- a/api/Word.MailMergeFields.Add.md
+++ b/api/Word.MailMergeFields.Add.md
@@ -27,12 +27,12 @@ Returns a **MailMergeField** object that represents a mail merge field added to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range**|The range where you want the field to appear. This field replaces the range, if the range isn't collapsed.|
| _Name_|Required| **String**|The name of the field.|
-### Return Value
+### Return value
MailMergeField
diff --git a/api/Word.MailMergeFields.AddAsk.md b/api/Word.MailMergeFields.AddAsk.md
index 4adde6c528f..50875aa0692 100644
--- a/api/Word.MailMergeFields.AddAsk.md
+++ b/api/Word.MailMergeFields.AddAsk.md
@@ -27,7 +27,7 @@ Adds an ASK field to a mail merge main document. Returns a **MailMergeField** o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The location for the ASK field.|
| _Name_|Required| **String**|The bookmark name that the response or default text is assigned to. Use a REF field with the bookmark name to display the result in a document.|
@@ -35,7 +35,7 @@ Adds an ASK field to a mail merge main document. Returns a **MailMergeField** o
| _DefaultAskText_|Optional| **Variant**|The default response, which appears in the text box when the dialog box is displayed. Corresponds to the \d switch for an ASK field.|
| _AskOnce_|Optional| **Variant**| **True** to display the dialog box only once instead of each time a new record is merged. Corresponds to the \o switch for an ASK field.|
-### Return Value
+### Return value
MailMergeField
diff --git a/api/Word.MailMergeFields.AddFillIn.md b/api/Word.MailMergeFields.AddFillIn.md
index c0e488d951e..ae397af8c5a 100644
--- a/api/Word.MailMergeFields.AddFillIn.md
+++ b/api/Word.MailMergeFields.AddFillIn.md
@@ -27,14 +27,14 @@ Adds a FILLIN field to a mail merge main document. Returns a **MailMergeField**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The location for the FILLIN field.|
| _Prompt_|Optional| **Variant**|The text that's displayed in the dialog box.|
| _DefaultFillinText_|Optional| **Variant**|The default response, which appears in the text box when the dialog box is displayed. Corresponds to the \d switch for an FILLIN field.|
| _AskOnce_|Optional| **Variant**| **True** to display the prompt only once instead of each time a new record is merged. Corresponds to the \o switch for a FILLIN field. The default value is **False** .|
-### Return Value
+### Return value
MailMergeField
diff --git a/api/Word.MailMergeFields.AddIf.md b/api/Word.MailMergeFields.AddIf.md
index 7a004439fd0..ca7a3d0fa87 100644
--- a/api/Word.MailMergeFields.AddIf.md
+++ b/api/Word.MailMergeFields.AddIf.md
@@ -27,7 +27,7 @@ Adds an IF field to a mail merge main document. Returns a **MailMergeField** ob
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The location for the IF field.|
| _MergeField_|Required| **String**|The merge field name.|
@@ -38,7 +38,7 @@ Adds an IF field to a mail merge main document. Returns a **MailMergeField** ob
| _FalseAutoText_|Optional| **Variant**|The AutoText entry that's inserted if the comparison is false. If this argument is specified, FalseText is ignored.|
| _FalseText_|Optional| **Variant**|The text that's inserted if the comparison is false.|
-### Return Value
+### Return value
MailMergeField
diff --git a/api/Word.MailMergeFields.AddMergeRec.md b/api/Word.MailMergeFields.AddMergeRec.md
index 4d8a22fec22..9ab90da4d60 100644
--- a/api/Word.MailMergeFields.AddMergeRec.md
+++ b/api/Word.MailMergeFields.AddMergeRec.md
@@ -27,11 +27,11 @@ Adds a MERGEREC field to a mail merge main document. Returns a **MailMergeField
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The location for the MERGEREC field.|
-### Return Value
+### Return value
MailMergeField
diff --git a/api/Word.MailMergeFields.AddMergeSeq.md b/api/Word.MailMergeFields.AddMergeSeq.md
index e30bc29fbe3..6cb57ffc617 100644
--- a/api/Word.MailMergeFields.AddMergeSeq.md
+++ b/api/Word.MailMergeFields.AddMergeSeq.md
@@ -27,11 +27,11 @@ Adds a MERGESEQ field to a mail merge main document. Returns a **MailMergeField
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The location for the MERGESEQ field.|
-### Return Value
+### Return value
MailMergeField
diff --git a/api/Word.MailMergeFields.AddNext.md b/api/Word.MailMergeFields.AddNext.md
index 19df89e4bfe..bd91404ef28 100644
--- a/api/Word.MailMergeFields.AddNext.md
+++ b/api/Word.MailMergeFields.AddNext.md
@@ -27,11 +27,11 @@ Adds a NEXT field to a mail merge main document. Returns a **MailMergeField** o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The location for the NEXT field.|
-### Return Value
+### Return value
MailMergeField
diff --git a/api/Word.MailMergeFields.AddNextIf.md b/api/Word.MailMergeFields.AddNextIf.md
index 7b8c99da191..e100149e351 100644
--- a/api/Word.MailMergeFields.AddNextIf.md
+++ b/api/Word.MailMergeFields.AddNextIf.md
@@ -27,14 +27,14 @@ Adds a NEXTIF field to a mail merge main document. Returns a **MailMergeField**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The location for the NEXTIF field.|
| _MergeField_|Required| **String**|The merge field name.|
| _Comparison_|Required| **WdMailMergeComparison**|The operator used in the comparison.|
| _CompareTo_|Required| **String**|The text to compare with the contents of MergeField.|
-### Return Value
+### Return value
MailMergeField
diff --git a/api/Word.MailMergeFields.AddSet.md b/api/Word.MailMergeFields.AddSet.md
index 472edd3835f..62fa1357043 100644
--- a/api/Word.MailMergeFields.AddSet.md
+++ b/api/Word.MailMergeFields.AddSet.md
@@ -27,14 +27,14 @@ Adds a SET field to a mail merge main document. Returns a **MailMergeField** ob
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The location for the SET field.|
| _Name_|Required| **String**|The bookmark name that ValueText is assigned to.|
| _ValueText_|Optional| **Variant**|The text associated with the bookmark specified by the Name argument.|
| _ValueAutoText_|Optional| **Variant**|The AutoText entry that includes text associated with the bookmark specified by the Name argument. If this argument is specified, ValueText is ignored.|
-### Return Value
+### Return value
MailMergeField
diff --git a/api/Word.MailMergeFields.AddSkipIf.md b/api/Word.MailMergeFields.AddSkipIf.md
index a76456d8661..08210031b50 100644
--- a/api/Word.MailMergeFields.AddSkipIf.md
+++ b/api/Word.MailMergeFields.AddSkipIf.md
@@ -27,14 +27,14 @@ Adds a SKIPIF field to a mail merge main document. Returns a **MailMergeField**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The location for the SKIPIF field.|
| _MergeField_|Required| **String**|The merge field name.|
| _Comparison_|Required| **WdMailMergeComparison**|The operator used in the comparison.|
| _CompareTo_|Optional| **Variant**|The text to compare with the contents of MergeField.|
-### Return Value
+### Return value
MailMergeField
diff --git a/api/Word.MailMergeFields.Item.md b/api/Word.MailMergeFields.Item.md
index 72bcb059e87..63e5df8d523 100644
--- a/api/Word.MailMergeFields.Item.md
+++ b/api/Word.MailMergeFields.Item.md
@@ -27,11 +27,11 @@ Returns an individual **MailMergeField** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
MailMergeField
diff --git a/api/Word.MailingLabel.CreateNewDocument.md b/api/Word.MailingLabel.CreateNewDocument.md
index 2a10893ceb5..1c73808927d 100644
--- a/api/Word.MailingLabel.CreateNewDocument.md
+++ b/api/Word.MailingLabel.CreateNewDocument.md
@@ -27,7 +27,7 @@ Creates a new label document using either the default label options or ones that
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional| **Variant**|The mailing label name.|
| _Address_|Optional| **Variant**|The text for the mailing label.|
@@ -37,7 +37,7 @@ Creates a new label document using either the default label options or ones that
| _PrintEPostageLabel_|Optional| **Variant**| **True** to print postage using an Internet e-postage vendor.|
| _Vertical_|Optional| **Variant**| **True** formats text vertically on the label. Used for Asian-language mailing labels.|
-### Return Value
+### Return value
Document
diff --git a/api/Word.MailingLabel.CreateNewDocumentByID.md b/api/Word.MailingLabel.CreateNewDocumentByID.md
index d0657a85cec..b36617b205b 100644
--- a/api/Word.MailingLabel.CreateNewDocumentByID.md
+++ b/api/Word.MailingLabel.CreateNewDocumentByID.md
@@ -27,7 +27,7 @@ Creates a new label document using either the default label options or ones that
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _LabelID_|Optional| **Variant**|The mailing label identification.|
| _Address_|Optional| **Variant**|The text for the mailing label.|
@@ -37,7 +37,7 @@ Creates a new label document using either the default label options or ones that
| _PrintEPostageLabel_|Optional| **Variant**| **True** to print postage using an Internet e-postage vendor.|
| _Vertical_|Optional| **Variant**| **True** formats text vertically on the label. Used for Asian-language mailing labels.|
-### Return Value
+### Return value
Document
diff --git a/api/Word.MailingLabel.PrintOut.md b/api/Word.MailingLabel.PrintOut.md
index 024a3f39522..f03a4c71cc2 100644
--- a/api/Word.MailingLabel.PrintOut.md
+++ b/api/Word.MailingLabel.PrintOut.md
@@ -27,7 +27,7 @@ Prints a label or a page of labels with the same address.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional| **Variant**|The mailing label name.|
| _Address_|Optional| **Variant**|The text for the label address.|
diff --git a/api/Word.MailingLabel.PrintOutByID.md b/api/Word.MailingLabel.PrintOutByID.md
index 3d13ce01a19..1d0642026f8 100644
--- a/api/Word.MailingLabel.PrintOutByID.md
+++ b/api/Word.MailingLabel.PrintOutByID.md
@@ -27,7 +27,7 @@ Prints a label or a page of labels with the same address.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _LabelID_|Optional| **Variant**|The mailing label identification.|
| _Address_|Optional| **Variant**|The text for the label address.|
diff --git a/api/Word.MappedDataFields.Item.md b/api/Word.MappedDataFields.Item.md
index 6a7778652fe..438a138d467 100644
--- a/api/Word.MappedDataFields.Item.md
+++ b/api/Word.MappedDataFields.Item.md
@@ -27,11 +27,11 @@ Returns an individual **MappedDataField** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **WdMappedDataFields**|The specified mapped data field.|
-### Return Value
+### Return value
MappedDataField
diff --git a/api/Word.OLEFormat.ActivateAs.md b/api/Word.OLEFormat.ActivateAs.md
index 5673704f6e3..370b0b1b7f7 100644
--- a/api/Word.OLEFormat.ActivateAs.md
+++ b/api/Word.OLEFormat.ActivateAs.md
@@ -27,7 +27,7 @@ Sets the Windows registry value that determines the default application used to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ClassType_|Required| **String**|The name of the application in which an OLE object is opened. To see a list of object types that the OLE object can be activated as, click the object and then open the **Convert** dialog box. You can find the ClassType string by inserting an object as an inline shape and then viewing the field codes. The class type of the object follows either the word "EMBED" or the word "LINK."|
diff --git a/api/Word.OLEFormat.ConvertTo.md b/api/Word.OLEFormat.ConvertTo.md
index fdecdb011ac..d5880250f83 100644
--- a/api/Word.OLEFormat.ConvertTo.md
+++ b/api/Word.OLEFormat.ConvertTo.md
@@ -27,7 +27,7 @@ Converts the specified OLE object from one class to another, making it possible
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ClassType_|Optional| **Variant**|The name of the application used to activate the OLE object. You can see a list of the available applications in the **Object type** box on the **Create New** tab in the **Object** dialog box. You can find the ClassType string by inserting an object as an inline shape and then viewing the field codes. The class type of the object follows either the word "EMBED" or the word "LINK."|
| _DisplayAsIcon_|Optional| **Variant**| **True** to display the OLE object as an icon. The default value is **False** .|
diff --git a/api/Word.OLEFormat.DoVerb.md b/api/Word.OLEFormat.DoVerb.md
index 4363f4aa023..5f7aa3c100d 100644
--- a/api/Word.OLEFormat.DoVerb.md
+++ b/api/Word.OLEFormat.DoVerb.md
@@ -27,7 +27,7 @@ Requests that an OLE object perform one of its available verbs ? the actions an
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _VerbIndex_|Optional| **Variant**|The verb that the OLE object should perform. If this argument is omitted, the default verb is sent. If the OLE object does not support the requested verb, an error will occur. Can be any **WdOLEVerb** constant.|
diff --git a/api/Word.OMath.BuildUp.md b/api/Word.OMath.BuildUp.md
index 3f1eb8d4071..21df94fbd29 100644
--- a/api/Word.OMath.BuildUp.md
+++ b/api/Word.OMath.BuildUp.md
@@ -23,7 +23,7 @@ Converts an equation to professional format.
_expression_ An expression that returns an [OMath](./Word.OMath.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.OMath.Linearize.md b/api/Word.OMath.Linearize.md
index f27184ad58a..0d531282585 100644
--- a/api/Word.OMath.Linearize.md
+++ b/api/Word.OMath.Linearize.md
@@ -23,7 +23,7 @@ Converts an equation to linear format.
_expression_ An expression that returns an [OMath](./Word.OMath.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.OMathArgs.Add.md b/api/Word.OMathArgs.Add.md
index 70301efb0fa..7064586acb0 100644
--- a/api/Word.OMathArgs.Add.md
+++ b/api/Word.OMathArgs.Add.md
@@ -27,11 +27,11 @@ Inserts an argument into an equation with variable number of arguments (**OMathD
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _BeforeArg_|Optional| **Variant**|An existing argument before which to add the new argument.|
-### Return Value
+### Return value
OMath
diff --git a/api/Word.OMathArgs.Item.md b/api/Word.OMathArgs.Item.md
index dc99a9d0c2f..c7bbd04096f 100644
--- a/api/Word.OMathArgs.Item.md
+++ b/api/Word.OMathArgs.Item.md
@@ -24,11 +24,11 @@ Returns an **OMath** object that represents the specified item in the collectio
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Specifies the ordinal position of the object within the collection.|
-### Return Value
+### Return value
OMath
diff --git a/api/Word.OMathAutoCorrectEntries.Add.md b/api/Word.OMathAutoCorrectEntries.Add.md
index 7b89bed156f..5e1984e2f1a 100644
--- a/api/Word.OMathAutoCorrectEntries.Add.md
+++ b/api/Word.OMathAutoCorrectEntries.Add.md
@@ -27,12 +27,12 @@ Creates an equation auto correct entry and returns an **[OMathAutoCorrectEntry]
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The name of the autocorrect entry. Corresponds to the **[Name](Word.OMathAutoCorrectEntry.Name.md)** property of the **OMathAutoCorrectEntry** object.|
| _Value_|Required| **String**|The value of the autocorrect entry. Corresponds to the **[Value](Word.OMathAutoCorrectEntry.Value.md)** property of the **OMathAutoCorrectEntry** object.|
-### Return Value
+### Return value
OMathAutoCorrectEntry
diff --git a/api/Word.OMathAutoCorrectEntries.Item.md b/api/Word.OMathAutoCorrectEntries.Item.md
index 85c6525dcce..3ffacb9ff1a 100644
--- a/api/Word.OMathAutoCorrectEntries.Item.md
+++ b/api/Word.OMathAutoCorrectEntries.Item.md
@@ -27,11 +27,11 @@ Returns an **OMathAutoCorrectEntry** object that represents the specified item
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|Specifies a **String** or **Integer** that represents the name or ordinal position of the object in the collection.|
-### Return Value
+### Return value
OMathAutoCorrectEntry
diff --git a/api/Word.OMathBreaks.Add.md b/api/Word.OMathBreaks.Add.md
index b5a457a74e0..3c0ced91735 100644
--- a/api/Word.OMathBreaks.Add.md
+++ b/api/Word.OMathBreaks.Add.md
@@ -27,11 +27,11 @@ Inserts a break into an equation and returns an **OMathBreak** object that repr
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range**|The position at which to insert the break in the equation.|
-### Return Value
+### Return value
OMathBreak
diff --git a/api/Word.OMathBreaks.Item.md b/api/Word.OMathBreaks.Item.md
index 0268269f0b4..42239bdd09e 100644
--- a/api/Word.OMathBreaks.Item.md
+++ b/api/Word.OMathBreaks.Item.md
@@ -27,11 +27,11 @@ Returns an **OMathBreak** object that represents the specified item in the coll
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Specifies the ordinal position of the object within the collection.|
-### Return Value
+### Return value
OMathBreak
diff --git a/api/Word.OMathFunction.Remove.md b/api/Word.OMathFunction.Remove.md
index 16627a35084..658b65c856d 100644
--- a/api/Word.OMathFunction.Remove.md
+++ b/api/Word.OMathFunction.Remove.md
@@ -23,7 +23,7 @@ Removes a function from the collection of functions contained within an equation
_expression_ An expression that returns a [OMathFunction](./Word.OMathFunction.md) object.
-### Return Value
+### Return value
OMathFunction
diff --git a/api/Word.OMathFunctions.Add.md b/api/Word.OMathFunctions.Add.md
index 50f2d0ee51a..8596d6c4f71 100644
--- a/api/Word.OMathFunctions.Add.md
+++ b/api/Word.OMathFunctions.Add.md
@@ -27,14 +27,14 @@ Inserts a new structure, such as a fraction, into an equation at the specified p
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range**| The place at which to insrt an equation.|
| _Type_|Required| **WdOMathFunctionType**|The type of equation to insert.|
| _NumArgs_|Optional| **Variant**| The number of arguments in the equation.|
| _NumCols_|Optional| **Variant**|The number of columns in the equation.|
-### Return Value
+### Return value
OMathFunction
diff --git a/api/Word.OMathFunctions.Item.md b/api/Word.OMathFunctions.Item.md
index 97f6211cf29..35637d2a066 100644
--- a/api/Word.OMathFunctions.Item.md
+++ b/api/Word.OMathFunctions.Item.md
@@ -27,11 +27,11 @@ Returns an **OMathFunction** object that represents the specified item in the c
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Specifies the ordinal position of the object within the collection.|
-### Return Value
+### Return value
OMathFunction
diff --git a/api/Word.OMathLimLow.ToLimUpp.md b/api/Word.OMathLimLow.ToLimUpp.md
index 3c2e8f3657e..d96073aeecf 100644
--- a/api/Word.OMathLimLow.ToLimUpp.md
+++ b/api/Word.OMathLimLow.ToLimUpp.md
@@ -23,7 +23,7 @@ Converts an equation from the lower limit to the upper limit. .
_expression_ An expression that returns a [OMathLimLow](./Word.OMathLimLow.md) object.
-### Return Value
+### Return value
OMathFunction
diff --git a/api/Word.OMathLimUpp.ToLimLow.md b/api/Word.OMathLimUpp.ToLimLow.md
index 8f267b4ab08..496c5091ae2 100644
--- a/api/Word.OMathLimUpp.ToLimLow.md
+++ b/api/Word.OMathLimUpp.ToLimLow.md
@@ -23,7 +23,7 @@ Converts an equation from the upper limit to the lower limit.
_expression_ An expression that returns a [OMathLimUpp](./Word.OMathLimUpp.md) object.
-### Return Value
+### Return value
OMathFunction
diff --git a/api/Word.OMathMat.Cell.md b/api/Word.OMathMat.Cell.md
index b26d2a28f29..6c83d5075a5 100644
--- a/api/Word.OMathMat.Cell.md
+++ b/api/Word.OMathMat.Cell.md
@@ -27,7 +27,7 @@ Returns an **[OMath](Word.OMath.md)** object that represents a cell in a matrix
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Row_|Required| **Long**|The matrix row in which the cell is located.|
| _Col_|Required| **Long**|The matrix column in which the cell is located.|
diff --git a/api/Word.OMathMatCols.Add.md b/api/Word.OMathMatCols.Add.md
index 971d409b9b1..b79e92e0eb6 100644
--- a/api/Word.OMathMatCols.Add.md
+++ b/api/Word.OMathMatCols.Add.md
@@ -27,11 +27,11 @@ Creates an equation column and adds it to a matrix and returns an **OMathMatCol
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _BeforeCol_|Optional| **Variant**|An existing column in the matrix before which to place the new column.|
-### Return Value
+### Return value
OMathMatCol
diff --git a/api/Word.OMathMatCols.Item.md b/api/Word.OMathMatCols.Item.md
index e01a5219338..99e02d1317d 100644
--- a/api/Word.OMathMatCols.Item.md
+++ b/api/Word.OMathMatCols.Item.md
@@ -27,11 +27,11 @@ Returns an **OMathMatCol** object that represents the specified item in the col
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Specifies the ordinal position of the object within the collection.|
-### Return Value
+### Return value
OMathMatCol
diff --git a/api/Word.OMathMatRows.Add.md b/api/Word.OMathMatRows.Add.md
index 292c8500ee0..ced50cfd188 100644
--- a/api/Word.OMathMatRows.Add.md
+++ b/api/Word.OMathMatRows.Add.md
@@ -27,11 +27,11 @@ Creates an equation row and adds it to a matrix and returns an **OMathMatRow**
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _BeforeRow_|Optional| **Variant**|An existing row in the matrix before which to place the new row.|
-### Return Value
+### Return value
OMathMatRow
diff --git a/api/Word.OMathMatRows.Item.md b/api/Word.OMathMatRows.Item.md
index 37a639f2cdc..7084571b56c 100644
--- a/api/Word.OMathMatRows.Item.md
+++ b/api/Word.OMathMatRows.Item.md
@@ -27,11 +27,11 @@ Returns an **OMathMatRow** object that represents the specified item in the col
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Specifies the ordinal position of the object within the collection.|
-### Return Value
+### Return value
OMathMatRow
diff --git a/api/Word.OMathRecognizedFunctions.Add.md b/api/Word.OMathRecognizedFunctions.Add.md
index 582c98b071b..76255ad9014 100644
--- a/api/Word.OMathRecognizedFunctions.Add.md
+++ b/api/Word.OMathRecognizedFunctions.Add.md
@@ -27,11 +27,11 @@ Creates a new recognized function and returns an **OMathRecognizedFunction** ob
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The name of the recognized function.|
-### Return Value
+### Return value
OMathRecognizedFunction
diff --git a/api/Word.OMathRecognizedFunctions.Item.md b/api/Word.OMathRecognizedFunctions.Item.md
index a2743baf21b..8c5c499c319 100644
--- a/api/Word.OMathRecognizedFunctions.Item.md
+++ b/api/Word.OMathRecognizedFunctions.Item.md
@@ -27,11 +27,11 @@ Returns an **OMathRecognizedFunction** object that represents the specified ite
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|Specifies a **String** or **Integer** that represents the name or ordinal position of the object in the collection.|
-### Return Value
+### Return value
OMathRecognizedFunction
diff --git a/api/Word.OMathScrPre.ToScrSubSup.md b/api/Word.OMathScrPre.ToScrSubSup.md
index b509e3c979b..d25d6945fdd 100644
--- a/api/Word.OMathScrPre.ToScrSubSup.md
+++ b/api/Word.OMathScrPre.ToScrSubSup.md
@@ -23,7 +23,7 @@ Converts an equation with a superscript or subscript to the left of the base of
_expression_ An expression that returns a [OMathScrPre](./Word.OMathScrPre.md) object.
-### Return Value
+### Return value
OMathFunction
diff --git a/api/Word.OMathScrSubSup.RemoveSub.md b/api/Word.OMathScrSubSup.RemoveSub.md
index 0a091384883..69e7fbf0b38 100644
--- a/api/Word.OMathScrSubSup.RemoveSub.md
+++ b/api/Word.OMathScrSubSup.RemoveSub.md
@@ -23,7 +23,7 @@ Removes the subscript for an equation and returns an **OMathFunction** object t
_expression_ An expression that returns a [OMathScrSubSup](./Word.OMathScrSubSup.md) object.
-### Return Value
+### Return value
OMathFunction
diff --git a/api/Word.OMathScrSubSup.RemoveSup.md b/api/Word.OMathScrSubSup.RemoveSup.md
index 39ca0ff6042..fe6dc1f7582 100644
--- a/api/Word.OMathScrSubSup.RemoveSup.md
+++ b/api/Word.OMathScrSubSup.RemoveSup.md
@@ -23,7 +23,7 @@ Removes the superscript for an equation and returns an **OMathFunction** object
_expression_ An expression that returns a [OMathScrSubSup](./Word.OMathScrSubSup.md) object.
-### Return Value
+### Return value
OMathFunction
diff --git a/api/Word.OMathScrSubSup.ToScrPre.md b/api/Word.OMathScrSubSup.ToScrPre.md
index 82d0f053d87..5a39a57a2de 100644
--- a/api/Word.OMathScrSubSup.ToScrPre.md
+++ b/api/Word.OMathScrSubSup.ToScrPre.md
@@ -23,7 +23,7 @@ Converts an equation with a base superscript or subscript to an equation with a
_expression_ An expression that returns a [OMathScrSubSup](./Word.OMathScrSubSup.md) object.
-### Return Value
+### Return value
OMathFunction
diff --git a/api/Word.OMaths.Add.md b/api/Word.OMaths.Add.md
index 9154281fa25..d9a1144588e 100644
--- a/api/Word.OMaths.Add.md
+++ b/api/Word.OMaths.Add.md
@@ -27,11 +27,11 @@ Creates an equation, from the text equation contained within the specified range
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range**|Specifies a range that contains a text equation.|
-### Return Value
+### Return value
Range
diff --git a/api/Word.OMaths.BuildUp.md b/api/Word.OMaths.BuildUp.md
index 399e6480222..3abfed82768 100644
--- a/api/Word.OMaths.BuildUp.md
+++ b/api/Word.OMaths.BuildUp.md
@@ -23,7 +23,7 @@ Converts all equations in the collection to professional format.
_expression_ An expression that returns an [OMaths](./Word.OMaths.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.OMaths.Item.md b/api/Word.OMaths.Item.md
index e98691ea696..9fac742f857 100644
--- a/api/Word.OMaths.Item.md
+++ b/api/Word.OMaths.Item.md
@@ -27,11 +27,11 @@ Returns an **OMath** object that represents the specified item in the collectio
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Specifies the ordinal position of the object within the collection.|
-### Return Value
+### Return value
OMath
diff --git a/api/Word.OMaths.Linearize.md b/api/Word.OMaths.Linearize.md
index 5aa7301db0c..a955ef06e0a 100644
--- a/api/Word.OMaths.Linearize.md
+++ b/api/Word.OMaths.Linearize.md
@@ -23,7 +23,7 @@ Converts all equations in the collection to linear format. .
_expression_ An expression that returns an [OMaths](./Word.OMaths.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.Options.DefaultFilePath.md b/api/Word.Options.DefaultFilePath.md
index 6e89523cd1c..fa436326f05 100644
--- a/api/Word.Options.DefaultFilePath.md
+++ b/api/Word.Options.DefaultFilePath.md
@@ -27,7 +27,7 @@ Returns or sets default folders for items such as documents, templates, and grap
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Path_|Required| **WdDefaultFilePath**|The default folder to set.|
diff --git a/api/Word.OtherCorrectionsExceptions.Add.md b/api/Word.OtherCorrectionsExceptions.Add.md
index 9c9f7f622f5..16bda4b4da6 100644
--- a/api/Word.OtherCorrectionsExceptions.Add.md
+++ b/api/Word.OtherCorrectionsExceptions.Add.md
@@ -27,11 +27,11 @@ Returns an **OtherCorrectionsException** object that represents a new exception
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The word that you want Word to overlook.|
-### Return Value
+### Return value
OtherCorrectionsException
diff --git a/api/Word.OtherCorrectionsExceptions.Item.md b/api/Word.OtherCorrectionsExceptions.Item.md
index d1317a0dd19..312a3f72816 100644
--- a/api/Word.OtherCorrectionsExceptions.Item.md
+++ b/api/Word.OtherCorrectionsExceptions.Item.md
@@ -27,11 +27,11 @@ Returns an individual **OtherCorrectionsException** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
OtherCorrectionsException
diff --git a/api/Word.PageNumbers.Add.md b/api/Word.PageNumbers.Add.md
index 64e404972cc..3b5aa4a0d21 100644
--- a/api/Word.PageNumbers.Add.md
+++ b/api/Word.PageNumbers.Add.md
@@ -27,7 +27,7 @@ Returns a **PageNumber** object that represents page numbers added to a header
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PageNumberAlignment_|Optional| **Variant**|Can be any **WdPageNumberAlignment** constant.|
| _FirstPage_|Optional| **Variant**| **False** to make the first-page header and the first-page footer different from the headers and footers on all subsequent pages in the document. If FirstPage is set to **False** , a page number isn't added to the first page. If this argument is omitted, the setting is controlled by the **DifferentFirstPageHeaderFooter** property.|
diff --git a/api/Word.PageNumbers.Item.md b/api/Word.PageNumbers.Item.md
index 3b7e03747ae..12cd4143fe6 100644
--- a/api/Word.PageNumbers.Item.md
+++ b/api/Word.PageNumbers.Item.md
@@ -27,11 +27,11 @@ Returns an individual **PageNumber** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
PageNumber
diff --git a/api/Word.Pages.Item.md b/api/Word.Pages.Item.md
index e1c5ac9d4fe..6dba9e4ccb8 100644
--- a/api/Word.Pages.Item.md
+++ b/api/Word.Pages.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Page** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Page
diff --git a/api/Word.Pane.AutoScroll.md b/api/Word.Pane.AutoScroll.md
index 2fb615f7f59..0b414bd06b8 100644
--- a/api/Word.Pane.AutoScroll.md
+++ b/api/Word.Pane.AutoScroll.md
@@ -27,7 +27,7 @@ Scrolls automatically through the specified pane.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Velocity_|Required| **Long**|The speed for scrolling. Can be a number from ? 100 through 100. Use ? 100 for full-speed backward scrolling, and use 100 for full-speed forward scrolling.|
diff --git a/api/Word.Pane.LargeScroll.md b/api/Word.Pane.LargeScroll.md
index 532ade62646..c19463f966c 100644
--- a/api/Word.Pane.LargeScroll.md
+++ b/api/Word.Pane.LargeScroll.md
@@ -27,7 +27,7 @@ Scrolls a window or pane by the specified number of screens.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Down_|Optional| **Variant**|The number of screens to scroll the window down.|
| _Up_|Optional| **Variant**|The number of screens to scroll the window up.|
diff --git a/api/Word.Pane.PageScroll.md b/api/Word.Pane.PageScroll.md
index 5668b05062d..f7be837181f 100644
--- a/api/Word.Pane.PageScroll.md
+++ b/api/Word.Pane.PageScroll.md
@@ -27,7 +27,7 @@ Scrolls through the specified window page by page.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Down_|Optional| **Variant**|The number of pages to be scrolled down. If this argument is omitted, this value is assumed to be 1.|
| _Up_|Optional| **Variant**|The number of pages to be scrolled up.|
diff --git a/api/Word.Pane.SmallScroll.md b/api/Word.Pane.SmallScroll.md
index 37cad73d0dd..ee31c1d8c5e 100644
--- a/api/Word.Pane.SmallScroll.md
+++ b/api/Word.Pane.SmallScroll.md
@@ -27,7 +27,7 @@ Scrolls a window by the specified number of lines.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Down_|Optional| **Variant**|The number of lines to scroll the window down. A "line" corresponds to the distance scrolled by clicking the down scroll arrow on the vertical scroll bar once.|
| _Up_|Optional| **Variant**|The number of lines to scroll the window up. A "line" corresponds to the distance scrolled by clicking the up scroll arrow on the vertical scroll bar once.|
diff --git a/api/Word.Panes.Add.md b/api/Word.Panes.Add.md
index 807648def9c..85812df7006 100644
--- a/api/Word.Panes.Add.md
+++ b/api/Word.Panes.Add.md
@@ -27,11 +27,11 @@ Returns a **Pane** object that represents a new pane to a window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SplitVertical_|Optional| **Variant**|A number that represents the percentage of the window, from top to bottom, you want to appear above the split.|
-### Return Value
+### Return value
Pane
diff --git a/api/Word.Panes.Item.md b/api/Word.Panes.Item.md
index 64b2954822b..d808e4bd05e 100644
--- a/api/Word.Panes.Item.md
+++ b/api/Word.Panes.Item.md
@@ -27,11 +27,11 @@ Returns the specified pane as a **Pane** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Pane
diff --git a/api/Word.Paragraph.IndentCharWidth.md b/api/Word.Paragraph.IndentCharWidth.md
index a624d1926a6..ad54d562876 100644
--- a/api/Word.Paragraph.IndentCharWidth.md
+++ b/api/Word.Paragraph.IndentCharWidth.md
@@ -27,7 +27,7 @@ Indents a paragraphs by a specified number of characters.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Count_|Required| **Integer**|The number of characters by which the specified paragraphs are to be indented.|
diff --git a/api/Word.Paragraph.IndentFirstLineCharWidth.md b/api/Word.Paragraph.IndentFirstLineCharWidth.md
index 6d45dfdb4a4..f028ebdf0e3 100644
--- a/api/Word.Paragraph.IndentFirstLineCharWidth.md
+++ b/api/Word.Paragraph.IndentFirstLineCharWidth.md
@@ -27,7 +27,7 @@ Indents the first line of one or more paragraphs by a specified number of charac
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Count_|Required| **Integer**|The number of characters by which the first line of each specified paragraph is to be indented.|
diff --git a/api/Word.Paragraph.ListAdvanceTo.md b/api/Word.Paragraph.ListAdvanceTo.md
index f4975d82e7a..42ec9dd5fd5 100644
--- a/api/Word.Paragraph.ListAdvanceTo.md
+++ b/api/Word.Paragraph.ListAdvanceTo.md
@@ -27,7 +27,7 @@ Sets the list levels for a paragraph in a list.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Level1 to Level9_|Optional| **Integer**|Specifies the list level.|
diff --git a/api/Word.Paragraph.ListNumberOriginal.md b/api/Word.Paragraph.ListNumberOriginal.md
index 8d8f08bb3a4..d8ae9dff3c1 100644
--- a/api/Word.Paragraph.ListNumberOriginal.md
+++ b/api/Word.Paragraph.ListNumberOriginal.md
@@ -27,7 +27,7 @@ Returns an **Integer** that represents the original list level for a paragraph.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Level_|Required| **Integer**|Specifies the list level.|
diff --git a/api/Word.Paragraph.Next.md b/api/Word.Paragraph.Next.md
index 959bf39e987..6fbab4460d4 100644
--- a/api/Word.Paragraph.Next.md
+++ b/api/Word.Paragraph.Next.md
@@ -27,11 +27,11 @@ Returns a **Paragraph** object that represents the next paragraph.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Count_|Optional| **Variant**|The number of paragraphs by which you want to move ahead. The default value is one.|
-### Return Value
+### Return value
Paragraph
diff --git a/api/Word.Paragraph.Previous.md b/api/Word.Paragraph.Previous.md
index 63a4db8b0ea..f6fcb73e191 100644
--- a/api/Word.Paragraph.Previous.md
+++ b/api/Word.Paragraph.Previous.md
@@ -27,11 +27,11 @@ Returns the previous paragraph as a **Paragraph** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Count_|Optional| **Variant**|The number of paragraphs by which you want to move back. The default value is 1.|
-### Return Value
+### Return value
Paragraph
diff --git a/api/Word.Paragraph.TabHangingIndent.md b/api/Word.Paragraph.TabHangingIndent.md
index 59d06bd4d66..4d524ff05f9 100644
--- a/api/Word.Paragraph.TabHangingIndent.md
+++ b/api/Word.Paragraph.TabHangingIndent.md
@@ -27,7 +27,7 @@ Sets a hanging indent to a specified number of tab stops. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Count_|Required| **Integer**|The number of tab stops to indent (if positive) or the number of tab stops to remove from the indent (if negative).|
diff --git a/api/Word.Paragraph.TabIndent.md b/api/Word.Paragraph.TabIndent.md
index ac80ed7d476..82808b9fc29 100644
--- a/api/Word.Paragraph.TabIndent.md
+++ b/api/Word.Paragraph.TabIndent.md
@@ -27,7 +27,7 @@ Sets the left indent for the specified paragraphs to a specified number of tab s
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Count_|Required| **Integer**|The number of tab stops to indent (if positive) or the number of tab stops to remove from the indent (if negative).|
diff --git a/api/Word.ParagraphFormat.IndentCharWidth.md b/api/Word.ParagraphFormat.IndentCharWidth.md
index c375b183a6a..29a6bb8bc4d 100644
--- a/api/Word.ParagraphFormat.IndentCharWidth.md
+++ b/api/Word.ParagraphFormat.IndentCharWidth.md
@@ -27,7 +27,7 @@ Indents one or more paragraphs by a specified number of characters.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Count_|Required| **Integer**|The number of characters by which the specified paragraphs are to be indented.|
diff --git a/api/Word.ParagraphFormat.IndentFirstLineCharWidth.md b/api/Word.ParagraphFormat.IndentFirstLineCharWidth.md
index 929503e4c19..2dcce1f2380 100644
--- a/api/Word.ParagraphFormat.IndentFirstLineCharWidth.md
+++ b/api/Word.ParagraphFormat.IndentFirstLineCharWidth.md
@@ -27,7 +27,7 @@ Indents the first line of one or more paragraphs by a specified number of charac
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Count_|Required| **Integer**|The number of characters by which the first line of each specified paragraph is to be indented.|
diff --git a/api/Word.ParagraphFormat.TabHangingIndent.md b/api/Word.ParagraphFormat.TabHangingIndent.md
index 2c7af175156..4585136e506 100644
--- a/api/Word.ParagraphFormat.TabHangingIndent.md
+++ b/api/Word.ParagraphFormat.TabHangingIndent.md
@@ -27,7 +27,7 @@ Sets a hanging indent to a specified number of tab stops. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Count_|Required| **Integer**|The number of tab stops to indent (if positive) or the number of tab stops to remove from the indent (if negative).|
diff --git a/api/Word.ParagraphFormat.TabIndent.md b/api/Word.ParagraphFormat.TabIndent.md
index 762653ebf9d..80157c53070 100644
--- a/api/Word.ParagraphFormat.TabIndent.md
+++ b/api/Word.ParagraphFormat.TabIndent.md
@@ -27,7 +27,7 @@ Sets the left indent for the specified paragraphs to a specified number of tab s
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Count_|Required| **Integer**|The number of tab stops to indent (if positive) or the number of tab stops to remove from the indent (if negative).|
diff --git a/api/Word.Paragraphs.Add.md b/api/Word.Paragraphs.Add.md
index d4158ed1a18..20e8988d5d7 100644
--- a/api/Word.Paragraphs.Add.md
+++ b/api/Word.Paragraphs.Add.md
@@ -27,11 +27,11 @@ Returns a **Paragraph** object that represents a new, blank paragraph added to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Optional| **Variant**|The range before which you want the new paragraph to be added. The new paragraph doesn't replace the range.|
-### Return Value
+### Return value
Paragraph
diff --git a/api/Word.Paragraphs.IndentCharWidth.md b/api/Word.Paragraphs.IndentCharWidth.md
index ade5725bed7..36a6fad32e1 100644
--- a/api/Word.Paragraphs.IndentCharWidth.md
+++ b/api/Word.Paragraphs.IndentCharWidth.md
@@ -27,7 +27,7 @@ Indents one or more paragraphs by a specified number of characters.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Count_|Required| **Integer**|The number of characters by which the specified paragraphs are to be indented.|
diff --git a/api/Word.Paragraphs.IndentFirstLineCharWidth.md b/api/Word.Paragraphs.IndentFirstLineCharWidth.md
index 4969f11693e..6d7bc9cee1e 100644
--- a/api/Word.Paragraphs.IndentFirstLineCharWidth.md
+++ b/api/Word.Paragraphs.IndentFirstLineCharWidth.md
@@ -27,7 +27,7 @@ Indents the first line of one or more paragraphs by a specified number of charac
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Count_|Required| **Integer**|The number of characters by which the first line of each specified paragraph is to be indented.|
diff --git a/api/Word.Paragraphs.Item.md b/api/Word.Paragraphs.Item.md
index 3845df7e828..a85205e3544 100644
--- a/api/Word.Paragraphs.Item.md
+++ b/api/Word.Paragraphs.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Paragraph** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Paragraph
diff --git a/api/Word.Paragraphs.TabHangingIndent.md b/api/Word.Paragraphs.TabHangingIndent.md
index 78fa45a252d..91fa7f9cdc1 100644
--- a/api/Word.Paragraphs.TabHangingIndent.md
+++ b/api/Word.Paragraphs.TabHangingIndent.md
@@ -27,7 +27,7 @@ Sets a hanging indent to a specified number of tab stops.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Count_|Required| **Integer**|The number of tab stops to indent (if positive) or the number of tab stops to remove from the indent (if negative).|
diff --git a/api/Word.Paragraphs.TabIndent.md b/api/Word.Paragraphs.TabIndent.md
index 54134efd8f2..062840a10d5 100644
--- a/api/Word.Paragraphs.TabIndent.md
+++ b/api/Word.Paragraphs.TabIndent.md
@@ -27,7 +27,7 @@ Sets the left indent for the specified paragraphs to a specified number of tab s
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Count_|Required| **Integer**|The number of tab stops to indent (if positive) or the number of tab stops to remove from the indent (if negative).|
diff --git a/api/Word.PictureFormat.IncrementBrightness.md b/api/Word.PictureFormat.IncrementBrightness.md
index fa0408d7de0..f803c6c16d8 100644
--- a/api/Word.PictureFormat.IncrementBrightness.md
+++ b/api/Word.PictureFormat.IncrementBrightness.md
@@ -27,7 +27,7 @@ Changes the brightness of the picture by the specified amount.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|Specifies how much to change the value of the **Brightness** property for the picture. A positive value makes the picture brighter; a negative value makes the picture darker.|
diff --git a/api/Word.PictureFormat.IncrementContrast.md b/api/Word.PictureFormat.IncrementContrast.md
index 5f114327d45..c3ce7d048e7 100644
--- a/api/Word.PictureFormat.IncrementContrast.md
+++ b/api/Word.PictureFormat.IncrementContrast.md
@@ -27,7 +27,7 @@ Changes the contrast of the picture by the specified amount.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|Specifies how much to change the value of the **Contrast** property for the picture. A positive value increases the contrast; a negative value decreases the contrast.|
diff --git a/api/Word.Point.ApplyDataLabels.md b/api/Word.Point.ApplyDataLabels.md
index 1eb172a7d69..be4fefdfcf3 100644
--- a/api/Word.Point.ApplyDataLabels.md
+++ b/api/Word.Point.ApplyDataLabels.md
@@ -27,7 +27,7 @@ Applies data labels to a point.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Optional| **[XlDataLabelsType](Word.xldatalabelstype.md)**|The type of data label to apply.|
| _LegendKey_|Optional| **Variant**| **True** to show the legend key next to the point. The default is **False** .|
diff --git a/api/Word.Point.Height.md b/api/Word.Point.Height.md
index 26fa651984d..00fc4c5d1b9 100644
--- a/api/Word.Point.Height.md
+++ b/api/Word.Point.Height.md
@@ -23,7 +23,7 @@ Returns the height, in points, of the object. Read-only.
_expression_ A variable that represents a [Point](./Word.Point.md) object.
-### Return Value
+### Return value
Double
diff --git a/api/Word.Point.Left.md b/api/Word.Point.Left.md
index cad0d706e78..100c45b7e65 100644
--- a/api/Word.Point.Left.md
+++ b/api/Word.Point.Left.md
@@ -23,7 +23,7 @@ Returns a value that represents the distance, in points, from the left edge of t
_expression_ A variable that represents a [Point](./Word.Point.md) object.
-### Return Value
+### Return value
Double
diff --git a/api/Word.Point.Name.md b/api/Word.Point.Name.md
index e2ec7a242d8..fda047fb193 100644
--- a/api/Word.Point.Name.md
+++ b/api/Word.Point.Name.md
@@ -23,7 +23,7 @@ Returns the object name. Read-only.
_expression_ A variable that represents a '[Point](Word.Point.md)' object.
-### Return Value
+### Return value
String
diff --git a/api/Word.Point.PieSliceLocation.md b/api/Word.Point.PieSliceLocation.md
index 11af6eafc35..85222682b43 100644
--- a/api/Word.Point.PieSliceLocation.md
+++ b/api/Word.Point.PieSliceLocation.md
@@ -27,12 +27,12 @@ Returns the vertical or horizontal position of a point on a chart item, in point
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _loc_|Required| **[XlPieSliceLocation](Word.xlpieslicelocation.md)**|Specifies a horizontal or vertical coordinate.|
| _Index_|Optional| **[XlPieSliceIndex](Word.xlpiesliceindex.md)**|Specifies which pie slice position coordinate to return. The default value is **xlOuterCenterPoint** .|
-### Return Value
+### Return value
Double
diff --git a/api/Word.Point.Top.md b/api/Word.Point.Top.md
index 6a2ec77cfb5..e5da1bc32e3 100644
--- a/api/Word.Point.Top.md
+++ b/api/Word.Point.Top.md
@@ -23,7 +23,7 @@ Returns a value that represents the distance, in points, from the top edge of th
_expression_ A variable that represents a '[Point](Word.Point.md)' object.
-### Return Value
+### Return value
Double
diff --git a/api/Word.Points.Item.md b/api/Word.Points.Item.md
index 821f8726193..bb61466138b 100644
--- a/api/Word.Points.Item.md
+++ b/api/Word.Points.Item.md
@@ -27,11 +27,11 @@ Returns a single object from a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The index number for the object.|
-### Return Value
+### Return value
A **[Point](Word.Point.md)** object that the collection contains.
diff --git a/api/Word.ProofreadingErrors.Item.md b/api/Word.ProofreadingErrors.Item.md
index 00dbb582149..437ae8afc99 100644
--- a/api/Word.ProofreadingErrors.Item.md
+++ b/api/Word.ProofreadingErrors.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Range** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Range
diff --git a/api/Word.ProtectedViewWindow.Activate.md b/api/Word.ProtectedViewWindow.Activate.md
index 60fdc75b4c6..a1b523dd0d9 100644
--- a/api/Word.ProtectedViewWindow.Activate.md
+++ b/api/Word.ProtectedViewWindow.Activate.md
@@ -23,7 +23,7 @@ Activates the specified protected view window.
_expression_ An expression that returns a '[ProtectedViewWindow Object](Word.ProtectedViewWindow.md)' object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.ProtectedViewWindow.Close.md b/api/Word.ProtectedViewWindow.Close.md
index 2abfb658bc2..edef61998c6 100644
--- a/api/Word.ProtectedViewWindow.Close.md
+++ b/api/Word.ProtectedViewWindow.Close.md
@@ -23,7 +23,7 @@ Closes the specified protected view window.
_expression_ An expression that returns a [ProtectedViewWindow](./Word.ProtectedViewWindow.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.ProtectedViewWindow.Edit.md b/api/Word.ProtectedViewWindow.Edit.md
index 67b9323f3e6..56965ed4ffe 100644
--- a/api/Word.ProtectedViewWindow.Edit.md
+++ b/api/Word.ProtectedViewWindow.Edit.md
@@ -27,13 +27,13 @@ ms.date: 06/08/2017
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PasswordTemplate_|Optional| **Variant**|The password for opening the template.|
| _WritePasswordDocument_|Optional| **Variant**|The password for saving changes to the document.|
| _WritePasswordTemplate_|Optional| **Variant**|The password for saving changes to the template.|
-### Return Value
+### Return value
Document
diff --git a/api/Word.ProtectedViewWindows.Item.md b/api/Word.ProtectedViewWindows.Item.md
index 0e81673e7c7..7247a52a6ac 100644
--- a/api/Word.ProtectedViewWindows.Item.md
+++ b/api/Word.ProtectedViewWindows.Item.md
@@ -27,11 +27,11 @@ Returns an individual **ProtectedViewWindows** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. |
-### Return Value
+### Return value
ProtectedViewWindow
diff --git a/api/Word.ProtectedViewWindows.Open.md b/api/Word.ProtectedViewWindows.Open.md
index baee306b1b5..864696feec0 100644
--- a/api/Word.ProtectedViewWindows.Open.md
+++ b/api/Word.ProtectedViewWindows.Open.md
@@ -27,7 +27,7 @@ Opens the specified document in a new protected view window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **Variant**|The name of the document (paths are accepted).|
| _AddToRecentFiles_|Optional| **Variant**| **True** to add the file name to the list of recently used files at the bottom of the File menu.|
@@ -35,7 +35,7 @@ Opens the specified document in a new protected view window.
| _Visible_|Optional| **Variant**| **True** if the document is opened in a visible window. The default value is **True** .|
| _OpenAndRepair_|Optional| **Variant**| **True** to repair the document to prevent document corruption.|
-### Return Value
+### Return value
ProtectedViewWindow
diff --git a/api/Word.Range.CheckSpelling.md b/api/Word.Range.CheckSpelling.md
index 49e0edb3ff4..50fbbf2412d 100644
--- a/api/Word.Range.CheckSpelling.md
+++ b/api/Word.Range.CheckSpelling.md
@@ -27,7 +27,7 @@ Begins a spelling check for the specified document or range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CustomDictionary_|Optional| **Variant**|Either an expression that returns a **Dictionary** object or the file name of the custom dictionary.|
| _IgnoreUppercase_|Optional| **Variant**| **True** if capitalization is ignored. If this argument is omitted, the current value of the **IgnoreUppercase** property is used.|
diff --git a/api/Word.Range.Collapse.md b/api/Word.Range.Collapse.md
index d35eea04e24..8a6ff7a8a7b 100644
--- a/api/Word.Range.Collapse.md
+++ b/api/Word.Range.Collapse.md
@@ -27,7 +27,7 @@ Collapses a range or selection to the starting or ending position. After a range
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Direction_|Optional| **Variant**|The direction in which to collapse the range or selection. Can be either of the following **WdCollapseDirection** constants: **wdCollapseEnd** or **wdCollapseStart** . The default value is **wdCollapseStart** .|
diff --git a/api/Word.Range.ComputeStatistics.md b/api/Word.Range.ComputeStatistics.md
index e9fc8531b09..bc8a70086a3 100644
--- a/api/Word.Range.ComputeStatistics.md
+++ b/api/Word.Range.ComputeStatistics.md
@@ -27,7 +27,7 @@ Returns a **Long** that represents a statistic based on the contents of the spe
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Statistic_|Required| **[WdStatistic](Word.WdStatistic.md)**|The type of statistic to compute.|
diff --git a/api/Word.Range.ConvertHangulAndHanja.md b/api/Word.Range.ConvertHangulAndHanja.md
index d3afade0391..3bc79e5a77e 100644
--- a/api/Word.Range.ConvertHangulAndHanja.md
+++ b/api/Word.Range.ConvertHangulAndHanja.md
@@ -27,7 +27,7 @@ Converts the specified range from hangul to hanja or vice versa.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ConversionsMode_|Optional| **Variant**|Sets the direction for the conversion between hangul and hanja. Can be either of the following **WdMultipleWordConversionsMode** constants: **wdHangulToHanja** or **wdHanjaToHangul** . The default value is the current value of the **MultipleWordConversionsMode** property.|
| _FastConversion_|Optional| **Variant**| **True** if Microsoft Word automatically converts a word with only one suggestion for conversion. The default value is the current value of the **HangulHanjaFastConversion** property.|
diff --git a/api/Word.Range.ConvertToTable.md b/api/Word.Range.ConvertToTable.md
index e4d2a20c254..87b2df7ca11 100644
--- a/api/Word.Range.ConvertToTable.md
+++ b/api/Word.Range.ConvertToTable.md
@@ -27,7 +27,7 @@ Converts text within a range to a table. Returns the table as a **Table** objec
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Separator_|Optional| **Variant**|Specifies the character used to separate text into cells. Can be a character or one of the following **WdTableFieldSeparator** constant. If this argument is omitted, the value of the **DefaultTableSeparator** property is used.|
| _NumRows_|Optional| **Variant**|The number of rows in the table. If this argument is omitted, Microsoft Word sets the number of rows, based on the contents of the range.|
@@ -46,7 +46,7 @@ Converts text within a range to a table. Returns the table as a **Table** objec
| _AutoFitBehavior_|Optional| **Variant**|Sets the AutoFit rules for how Word sizes a table. Can be one of the following **WdAutoFitBehavior** constant. If DefaultTableBehavior is **wdWord8TableBehavior** , this argument is ignored.|
| _DefaultTableBehavior_|Optional| **Variant**| Sets a value that specifies whether Microsoft Word automatically resizes cells in a table to fit the contents (AutoFit). Can be one of the **WdDefaultTableBehavior** constant.|
-### Return Value
+### Return value
Table
diff --git a/api/Word.Range.Delete.md b/api/Word.Range.Delete.md
index 90e15d1e010..c31307b21f2 100644
--- a/api/Word.Range.Delete.md
+++ b/api/Word.Range.Delete.md
@@ -27,12 +27,12 @@ Deletes the specified number of characters or words.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **Variant**|The unit by which the collapsed range is to be deleted. Can be one of the **WdUnits** constants.|
| _Count_|Optional| **Variant**|The number of units to be deleted. To delete units after the range, collapse the range and use a positive number. To delete units before the range, collapse the range and use a negative number.|
-### Return Value
+### Return value
Long
diff --git a/api/Word.Range.EndOf.md b/api/Word.Range.EndOf.md
index 786c93b17d0..a2e359119ae 100644
--- a/api/Word.Range.EndOf.md
+++ b/api/Word.Range.EndOf.md
@@ -27,7 +27,7 @@ Moves or extends the ending character position of a range to the end of the near
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **Variant**|The unit by which to move the ending character position. Can be any **WdUnits** , except **wdLine** . The default value is **wdWord** .|
| _Extend_|Required| ** WdMovementType**|Specifies whether to move or extend the end of the range. If the value is **wdMove** , both ends of the range or selection object are moved to the end of the specified unit. If **wdExtend** is used, the end of the range or selection is extended to the end of the specified unit. The default value is **wdMove** .|
diff --git a/api/Word.Range.Expand.md b/api/Word.Range.Expand.md
index 6206127ab3f..479628932d1 100644
--- a/api/Word.Range.Expand.md
+++ b/api/Word.Range.Expand.md
@@ -27,7 +27,7 @@ Expands the specified range or selection. Returns the number of characters added
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **Variant**|The unit by which to expand the range. Can be one of the following **WdUnits** constants: **wdCharacter** , **wdWord** , **wdSentence** , **wdParagraph** , **wdSection** , **wdStory** , **wdCell** **wdColumn** , **wdRow** , or **wdTable** .|
diff --git a/api/Word.Range.ExportAsFixedFormat.md b/api/Word.Range.ExportAsFixedFormat.md
index 9c5892be910..ae11d1bbb2e 100644
--- a/api/Word.Range.ExportAsFixedFormat.md
+++ b/api/Word.Range.ExportAsFixedFormat.md
@@ -27,7 +27,7 @@ Saves a portion of a document as PDF or XPS format.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _OutputFileName_|Required| **String**|The path and file name of the new PDF or XPS file.|
| _ExportFormat_|Required| **[WdExportFormat](Word.WdExportFormat.md)**|Specifies either PDF or XPS format.|
diff --git a/api/Word.Range.ExportFragment.md b/api/Word.Range.ExportFragment.md
index dd1dc4ab062..df81bbfc275 100644
--- a/api/Word.Range.ExportFragment.md
+++ b/api/Word.Range.ExportFragment.md
@@ -27,12 +27,12 @@ ms.date: 06/08/2017
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|Specifies the path and file name of the file in which to save the document fragment.|
| _Format_|Required| **WdSaveFormat**|Specifies the file format of the document fragment file. |
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.Range.GetSpellingSuggestions.md b/api/Word.Range.GetSpellingSuggestions.md
index 507a4c90424..9078b7f015c 100644
--- a/api/Word.Range.GetSpellingSuggestions.md
+++ b/api/Word.Range.GetSpellingSuggestions.md
@@ -27,7 +27,7 @@ Returns a **SpellingSuggestions** collection that represents the words suggeste
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CustomDictionary_|Optional| **Variant**|Either an expression that returns a **Dictionary** object or the file name of the custom dictionary.|
| _IgnoreUppercase_|Optional| **Variant**| **True** to ignore words in all uppercase letters. If this argument is omitted, the current value of the **IgnoreUppercase** property is used.|
@@ -35,7 +35,7 @@ Returns a **SpellingSuggestions** collection that represents the words suggeste
| _SuggestionMode_|Optional| **Variant**|Specifies the way Word makes spelling suggestions. Can be one of the following **WdSpellingWordType** constants. The default value is **wdSpellword** .|
| _CustomDictionary2 ? CustomDictionary10_|Optional| **Variant**|Either an expression that returns a **Dictionary** object or the file name of an additional custom dictionary. You can specify as many as nine additional dictionaries.|
-### Return Value
+### Return value
SpellingSuggestions
diff --git a/api/Word.Range.GoTo.md b/api/Word.Range.GoTo.md
index 6ad6a2e7707..86f434d2cbb 100644
--- a/api/Word.Range.GoTo.md
+++ b/api/Word.Range.GoTo.md
@@ -27,7 +27,7 @@ Returns a **Range** object that represents the start position of the specified
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _What_|Optional| **Variant**|The kind of item to which the range is moved. Can be one of the **WdGoToItem** constants.|
| _Which_|Optional| **Variant**|The item to which the range is moved. Can be one of the **WdGoToDirection** constants.|
diff --git a/api/Word.Range.GoToNext.md b/api/Word.Range.GoToNext.md
index 95b1c492b7b..c309030390f 100644
--- a/api/Word.Range.GoToNext.md
+++ b/api/Word.Range.GoToNext.md
@@ -27,7 +27,7 @@ Returns a **Range** object that refers to the start position of the next item o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _What_|Required| **[WdGoToItem](Word.WdGoToItem.md)**|The item to where the specified range or selection is to be moved.|
diff --git a/api/Word.Range.GoToPrevious.md b/api/Word.Range.GoToPrevious.md
index eea7617b5be..b06b9ec53d1 100644
--- a/api/Word.Range.GoToPrevious.md
+++ b/api/Word.Range.GoToPrevious.md
@@ -27,7 +27,7 @@ Returns a **Range** object that refers to the start position of the previous it
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _What_|Required| **[WdGoToItem](Word.WdGoToItem.md)**|The item to where the specified range or selection is to be moved.|
diff --git a/api/Word.Range.ImportFragment.md b/api/Word.Range.ImportFragment.md
index 4d573f2b06e..f8a099e2b7a 100644
--- a/api/Word.Range.ImportFragment.md
+++ b/api/Word.Range.ImportFragment.md
@@ -27,12 +27,12 @@ Imports a document fragment into the document at the specified range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|Specifies the path and file name where the document fragment is stored.|
| _MatchDestination_|Optional| **Boolean**|Specifies whether to match the destination formatting. If **False** , the imported document fragment retains the formatting in the original document. Default value is **False** .|
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.Range.InRange.md b/api/Word.Range.InRange.md
index cece9431a70..08c144d513a 100644
--- a/api/Word.Range.InRange.md
+++ b/api/Word.Range.InRange.md
@@ -27,11 +27,11 @@ Returns **True** if the range to which the method is applied is contained in th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range**|Specifies the range that this method uses to determine if it is contained within the specified **Range** object.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Range.InStory.md b/api/Word.Range.InStory.md
index 8f7af21cca2..ee2bc4d6ec6 100644
--- a/api/Word.Range.InStory.md
+++ b/api/Word.Range.InStory.md
@@ -27,11 +27,11 @@ ms.date: 06/08/2017
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range**|Specifies the range that this method uses to determine if it is contained within the specified **Range** object.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Range.Information.md b/api/Word.Range.Information.md
index 73ead9776c1..ec37089ed5b 100644
--- a/api/Word.Range.Information.md
+++ b/api/Word.Range.Information.md
@@ -27,7 +27,7 @@ Returns information about the specified range. Read-only **Variant** .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **WdInformation**|The information type.|
diff --git a/api/Word.Range.InsertAfter.md b/api/Word.Range.InsertAfter.md
index 38715140177..2639eb55ace 100644
--- a/api/Word.Range.InsertAfter.md
+++ b/api/Word.Range.InsertAfter.md
@@ -27,7 +27,7 @@ Inserts the specified text at the end of a range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Text_|Required| **String**|The text to be inserted.|
diff --git a/api/Word.Range.InsertAlignmentTab.md b/api/Word.Range.InsertAlignmentTab.md
index 79a05ca7429..97ca73ab952 100644
--- a/api/Word.Range.InsertAlignmentTab.md
+++ b/api/Word.Range.InsertAlignmentTab.md
@@ -27,7 +27,7 @@ Inserts an absolute tab that is always positioned in the same spot, relative to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Alignment_|Required| **Long**|Indicates the type of alignment?left, center, or right?for the tab stop. Can be one of the **[WdAlignmentTabAlignment](Word.WdAlignmentTabAlignment.md)** constants.|
| _RelativeTo_|Optional| **Long**|Indicates whether the tab stop is relative to the margins or to the paragraph indents. Can be one of the **[WdAlignmentTabRelative](Word.WdAlignmentTabRelative.md)** constants.|
diff --git a/api/Word.Range.InsertBefore.md b/api/Word.Range.InsertBefore.md
index ff0ce0392e3..72fd909a888 100644
--- a/api/Word.Range.InsertBefore.md
+++ b/api/Word.Range.InsertBefore.md
@@ -27,7 +27,7 @@ Inserts the specified text before the specified range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Text_|Required| **String**|The text to be inserted.|
diff --git a/api/Word.Range.InsertBreak.md b/api/Word.Range.InsertBreak.md
index d02793c09a7..182bd1994a1 100644
--- a/api/Word.Range.InsertBreak.md
+++ b/api/Word.Range.InsertBreak.md
@@ -27,7 +27,7 @@ Inserts a page, column, or section break.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Optional| **Variant**|The type of break to be inserted.Can be one of the **WdBreakType** constants. If omitted, the default value is **wdPageBreak** .|
diff --git a/api/Word.Range.InsertCaption.md b/api/Word.Range.InsertCaption.md
index dc9aabb474e..460eb343f7f 100644
--- a/api/Word.Range.InsertCaption.md
+++ b/api/Word.Range.InsertCaption.md
@@ -27,7 +27,7 @@ Inserts a caption immediately preceding or following the specified range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Label_|Required| **Variant**|The caption label to be inserted. Can be a **String** or one of the **WdCaptionLabelID** constants. If the label has not yet been defined, an error occurs. Use the **Add** method with the **CaptionLabels** object to define new caption labels.|
| _Title_|Optional| **Variant**|The string to be inserted immediately following the label in the caption (ignored if TitleAutoText is specified).|
diff --git a/api/Word.Range.InsertCrossReference.md b/api/Word.Range.InsertCrossReference.md
index 0449deeedcc..2daa9136a58 100644
--- a/api/Word.Range.InsertCrossReference.md
+++ b/api/Word.Range.InsertCrossReference.md
@@ -27,7 +27,7 @@ Inserts a cross-reference to a heading, bookmark, footnote, or endnote, or to an
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ReferenceType_|Required| **Variant**|The type of item for which a cross-reference is to be inserted. Can be any **WdReferenceType** or **WdCaptionLabelID** constant or a user defined caption label.|
| _ReferenceKind_|Required| **WdReferenceKind**|The information to be included in the cross-reference.|
diff --git a/api/Word.Range.InsertDatabase.md b/api/Word.Range.InsertDatabase.md
index d7e58d9a9ee..56dee72b085 100644
--- a/api/Word.Range.InsertDatabase.md
+++ b/api/Word.Range.InsertDatabase.md
@@ -27,7 +27,7 @@ Retrieves data from a data source (for example, a separate Microsoft Word docume
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Format_|Optional| **Variant**|A format listed in the **Formats** box in the **Table AutoFormat** dialog box (**Table** menu). Can be any of the **WdTableFormat** constants. A border is applied to the cells in the table by default.|
| _Style_|Optional| **Variant**|The attributes of the AutoFormat specified by Format that are applied to the table.|
diff --git a/api/Word.Range.InsertDateTime.md b/api/Word.Range.InsertDateTime.md
index 9967afdaec7..5c7e956fa64 100644
--- a/api/Word.Range.InsertDateTime.md
+++ b/api/Word.Range.InsertDateTime.md
@@ -27,7 +27,7 @@ Inserts the current date or time, or both, either as text or as a TIME field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DateTimeFormat_|Optional| **Variant**|The format to be used for displaying the date or time, or both. If this argument is omitted, Microsoft Word uses the short-date style from the Windows Control Panel (**Regional Settings** icon).|
| _InsertAsField_|Optional| **Variant**| **True** to insert the specified information as a TIME field. The default value is **True** .|
diff --git a/api/Word.Range.InsertFile.md b/api/Word.Range.InsertFile.md
index 670518e7ed9..877b9397bb9 100644
--- a/api/Word.Range.InsertFile.md
+++ b/api/Word.Range.InsertFile.md
@@ -27,7 +27,7 @@ Inserts all or part of the specified file.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The path and file name of the file to be inserted. If you don't specify a path, Word assumes the file is in the current folder.|
| _Range_|Optional| **Variant**|If the specified file is a Word document, this parameter refers to a bookmark. If the file is another type (for example, a Microsoft Excel worksheet), this parameter refers to a named range or a cell range (for example, R1C1:R3C4).|
diff --git a/api/Word.Range.InsertSymbol.md b/api/Word.Range.InsertSymbol.md
index 0452db69316..dde31b9f5ac 100644
--- a/api/Word.Range.InsertSymbol.md
+++ b/api/Word.Range.InsertSymbol.md
@@ -27,7 +27,7 @@ Inserts a symbol in place of the specified range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CharacterNumber_|Required| **Long**|The character number for the specified symbol. This value will always be the sum of 31 and the number that corresponds to the position of the symbol in the table of symbols (counting from left to right). For example, to specify a delta character at position 37 in the table of symbols in the Symbol font, set CharacterNumber to 68.|
| _Font_|Optional| **Variant**|The name of the font that contains the symbol.|
diff --git a/api/Word.Range.InsertXML.md b/api/Word.Range.InsertXML.md
index 0f125478faa..01f716cc8bf 100644
--- a/api/Word.Range.InsertXML.md
+++ b/api/Word.Range.InsertXML.md
@@ -27,12 +27,12 @@ Inserts the specified XML into the document at the specified range, replacing an
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _XML_|Required| **String**|Specifies the XML to insert. This can be any valid custom XML.|
| _Transform_|Optional| **Variant**|Specifies the XML Transformation (XSLT) used to transform the XML. If omitted, the XML is inserted as custom XML without applying a transform.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.Range.IsEqual.md b/api/Word.Range.IsEqual.md
index 5e27c451a83..6ff31e9f101 100644
--- a/api/Word.Range.IsEqual.md
+++ b/api/Word.Range.IsEqual.md
@@ -27,11 +27,11 @@ ms.date: 06/08/2017
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range**|The range to compare with the **Range** object defined by expression.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Range.ModifyEnclosure.md b/api/Word.Range.ModifyEnclosure.md
index 7532c33230d..03c3508432d 100644
--- a/api/Word.Range.ModifyEnclosure.md
+++ b/api/Word.Range.ModifyEnclosure.md
@@ -27,7 +27,7 @@ Adds, modifies, or removes an enclosure around the specified character or charac
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **Variant**|The style of the enclosure. Can be any **WdEncloseStyle** constant.|
| _Symbol_|Optional| **Variant**|The symbol in which to enclose the specified range. Can be any **WdEnclosureType** constant.|
diff --git a/api/Word.Range.Move.md b/api/Word.Range.Move.md
index a564586ce5f..4fd4bfd9c9c 100644
--- a/api/Word.Range.Move.md
+++ b/api/Word.Range.Move.md
@@ -27,12 +27,12 @@ Collapses the specified range to its start or end position and then moves the co
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **WdUnits**|The unit by which to move the range.|
| _Count_|Optional| **Variant**|The number of units by which the specified range is to be moved. If Count is a positive number, the object is collapsed to its end position and moved backward in the document by the specified number of units. If Count is a negative number, the object is collapsed to its start position and moved forward by the specified number of units. The default value is 1. You can also control the collapse direction by using the **Collapse** method before using the **Move** method. If the range is in the middle of a unit or isn't collapsed, moving it to the beginning or end of the unit counts as moving it one full unit.|
-### Return Value
+### Return value
Long
diff --git a/api/Word.Range.MoveEnd.md b/api/Word.Range.MoveEnd.md
index 0f0dd680c7e..d013748c4f7 100644
--- a/api/Word.Range.MoveEnd.md
+++ b/api/Word.Range.MoveEnd.md
@@ -27,7 +27,7 @@ Moves the ending character position of a range. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **WdUnits**|The unit by which to move the ending character position.|
| _Count_|Optional| **Variant**|The number of units to move. If this number is positive, the ending character position is moved forward in the document. If this number is negative, the end is moved backward. If the ending position overtakes the starting position, the range collapses and both character positions move together. The default value is 1.|
diff --git a/api/Word.Range.MoveEndUntil.md b/api/Word.Range.MoveEndUntil.md
index 6cce18a52e4..c8367ba8e68 100644
--- a/api/Word.Range.MoveEndUntil.md
+++ b/api/Word.Range.MoveEndUntil.md
@@ -27,7 +27,7 @@ Moves the end position of the specified range until any of the specified charact
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cset_|Required| **Variant**|One or more characters. This argument is case sensitive.|
| _Count_|Optional| **Variant**|The maximum number of characters by which the specified range is to be moved. Can be a number or either the **wdForward** or **wdBackward** constant. If Count is a positive number, the range is moved forward in the document. If it is a negative number, the range is moved backward. The default value is **wdForward** .|
diff --git a/api/Word.Range.MoveEndWhile.md b/api/Word.Range.MoveEndWhile.md
index 2d7cba9fc96..e0fb7baa8cb 100644
--- a/api/Word.Range.MoveEndWhile.md
+++ b/api/Word.Range.MoveEndWhile.md
@@ -27,7 +27,7 @@ Moves the ending character position of a range while any of the specified charac
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cset_|Required| **Variant**|One or more characters. This argument is case sensitive.|
| _Count_|Optional| **Variant**|The maximum number of characters by which the range is to be moved. Can be a number or either the **wdForward** or **wdBackward** constant. If Count is a positive number, the range is moved forward in the document. If it is a negative number, the range is moved backward. The default value is **wdForward** .|
diff --git a/api/Word.Range.MoveStart.md b/api/Word.Range.MoveStart.md
index b995b6b2ac4..4e1d12ec796 100644
--- a/api/Word.Range.MoveStart.md
+++ b/api/Word.Range.MoveStart.md
@@ -27,12 +27,12 @@ Moves the start position of the specified range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **WdUnits**|The unit by which start position of the specified range is to be moved.|
| _Count_|Optional| **Variant**|The maximum number of units by which the specified range is to be moved. If Count is a positive number, the start position of the range is moved forward in the document. If it is a negative number, the start position is moved backward. If the start position is moved forward to a position beyond the end position, the range is collapsed and both the start and end positions are moved together. The default value is 1.|
-### Return Value
+### Return value
Integer
diff --git a/api/Word.Range.MoveStartUntil.md b/api/Word.Range.MoveStartUntil.md
index 6498f20534d..5abbaf02cc9 100644
--- a/api/Word.Range.MoveStartUntil.md
+++ b/api/Word.Range.MoveStartUntil.md
@@ -27,7 +27,7 @@ Moves the start position of the specified range until one of the specified chara
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cset_|Required| **Variant**|One or more characters. This argument is case sensitive.|
| _Count_|Optional| **Variant**|The maximum number of characters by which the specified range is to be moved. Can be a number or either the **wdForward** or **wdBackward** constant. If Count is a positive number, the range is moved forward in the document. If it is a negative number, the range is moved backward. The default value is **wdForward** .|
diff --git a/api/Word.Range.MoveStartWhile.md b/api/Word.Range.MoveStartWhile.md
index 81abdd1169e..40caefa7391 100644
--- a/api/Word.Range.MoveStartWhile.md
+++ b/api/Word.Range.MoveStartWhile.md
@@ -27,7 +27,7 @@ Moves the start position of the specified range while any of the specified chara
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cset_|Required| **Variant**|One or more characters. This argument is case sensitive.|
| _Count_|Optional| **Variant**|The maximum number of characters by which the specified range is to be moved. Can be a number or either the **wdForward** or **wdBackward** constant. If Count is a positive number, the range is moved forward in the document. If it is a negative number, the range is moved backward. The default value is **wdForward** .|
diff --git a/api/Word.Range.MoveUntil.md b/api/Word.Range.MoveUntil.md
index 7cf9ad8f312..c17dd192c8e 100644
--- a/api/Word.Range.MoveUntil.md
+++ b/api/Word.Range.MoveUntil.md
@@ -27,7 +27,7 @@ Moves the specified range until one of the specified characters is found in the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cset_|Required| **Variant**|One or more characters. If any character in Cset is found before the Count value expires, the specified range is positioned as an insertion point immediately before that character. This argument is case sensitive.|
| _Count_|Optional| **Variant**|The maximum number of characters by which the specified range is to be moved. Can be a number or either the **wdForward** or **wdBackward** constant. If Count is a positive number, the range is moved forward in the document, beginning at the end position. If it is a negative number, the range is moved backward, beginning at the start position. The default value is **wdForward** .|
diff --git a/api/Word.Range.MoveWhile.md b/api/Word.Range.MoveWhile.md
index 2f58ca74e63..a4fa9ba9de1 100644
--- a/api/Word.Range.MoveWhile.md
+++ b/api/Word.Range.MoveWhile.md
@@ -27,7 +27,7 @@ Moves the specified range while any of the specified characters are found in the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cset_|Required| **Variant**|One or more characters. This argument is case sensitive.|
| _Count_|Optional| **Variant**|The maximum number of characters by which the specified range is to be moved. Can be a number or either the **wdForward** or **wdBackward** constant. If Count is a positive number, the specified range is moved forward in the document, beginning at the end position. If it is a negative number, the range is moved backward, beginning at the start position. The default value is **wdForward** .|
diff --git a/api/Word.Range.Next.md b/api/Word.Range.Next.md
index e2e1a36a144..84d3afa73e5 100644
--- a/api/Word.Range.Next.md
+++ b/api/Word.Range.Next.md
@@ -27,12 +27,12 @@ Returns a **Range** object that represents the specified unit relative to the s
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **Variant**|The type of units by which to count. Can be any **WdUnits** constant.|
| _Count_|Optional| **Variant**|The number of units by which you want to move ahead. The default value is one.|
-### Return Value
+### Return value
Range
diff --git a/api/Word.Range.PasteAndFormat.md b/api/Word.Range.PasteAndFormat.md
index 71d61518ea9..36f01ce0d44 100644
--- a/api/Word.Range.PasteAndFormat.md
+++ b/api/Word.Range.PasteAndFormat.md
@@ -27,7 +27,7 @@ Pastes the selected table cells and formats them as specified.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **WdRecoveryType**|The type of formatting to use when pasting the selected table cells.|
diff --git a/api/Word.Range.PasteExcelTable.md b/api/Word.Range.PasteExcelTable.md
index 459d9c7b89e..faaa2b18d1f 100644
--- a/api/Word.Range.PasteExcelTable.md
+++ b/api/Word.Range.PasteExcelTable.md
@@ -27,7 +27,7 @@ Pastes and formats a Microsoft Excel table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _LinkedToExcel_|Required| **Boolean**| **True** links the pasted table to the original Excel file so that changes made to the Excel file are reflected in Microsoft Word.|
| _WordFormatting_|Required| **Boolean**| **True** formats the table using the formatting in the Word document. **False** formats the table according to the original Excel file.|
diff --git a/api/Word.Range.PasteSpecial.md b/api/Word.Range.PasteSpecial.md
index 199fffa6f1d..62f4213b37d 100644
--- a/api/Word.Range.PasteSpecial.md
+++ b/api/Word.Range.PasteSpecial.md
@@ -27,7 +27,7 @@ Inserts the contents of the Clipboard. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _IconIndex_|Optional| **Variant**|If DisplayAsIcon is **True** , this argument is a number that corresponds to the icon you want to use in the program file specified by IconFilename. Icons appear in the **Change Icon** dialog box: 0 (zero) corresponds to the first icon, 1 corresponds to the second icon, and so on. If this argument is omitted, the first (default) icon is used.|
| _Link_|Optional| **Variant**| **True** to create a link to the source file of the Clipboard contents. The default value is **False** .|
diff --git a/api/Word.Range.PhoneticGuide.md b/api/Word.Range.PhoneticGuide.md
index 843d4754bd2..2ca95330228 100644
--- a/api/Word.Range.PhoneticGuide.md
+++ b/api/Word.Range.PhoneticGuide.md
@@ -27,7 +27,7 @@ Adds phonetic guides to the specified range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Text_|Required| **String**|The phonetic text to add.|
| _Alignment_|Optional| **WdPhoneticGuideAlignmentType**|The alignment of the added phonetic text.|
diff --git a/api/Word.Range.Previous.md b/api/Word.Range.Previous.md
index 49a516e1418..9f5c037e7bf 100644
--- a/api/Word.Range.Previous.md
+++ b/api/Word.Range.Previous.md
@@ -27,12 +27,12 @@ Returns the previous range a relative to the specified range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **Variant**|The type of units by which to count. Can be any **WdUnits** constant.|
| _Count_|Optional| **Variant**|The number of units by which you want to move back. The default value is 1.|
-### Return Value
+### Return value
Range
diff --git a/api/Word.Range.Relocate.md b/api/Word.Range.Relocate.md
index fec0d197560..d81ebebb7e1 100644
--- a/api/Word.Range.Relocate.md
+++ b/api/Word.Range.Relocate.md
@@ -27,7 +27,7 @@ In outline view, moves the paragraphs within the specified range after the next
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Direction_|Required| **WdRelocate**|The direction of the move.|
diff --git a/api/Word.Range.SetListLevel.md b/api/Word.Range.SetListLevel.md
index fe4b10b1bd0..e49532888b7 100644
--- a/api/Word.Range.SetListLevel.md
+++ b/api/Word.Range.SetListLevel.md
@@ -27,7 +27,7 @@ Sets the list level for one or more items in a numbered list.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Level_|Required| **Integer**|A number that indicates the new list level.|
diff --git a/api/Word.Range.SetRange.md b/api/Word.Range.SetRange.md
index 7603688a4c2..5c4bcdcc35e 100644
--- a/api/Word.Range.SetRange.md
+++ b/api/Word.Range.SetRange.md
@@ -27,7 +27,7 @@ Sets the starting and ending character positions for an existing range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Start_|Required| **Long**|The starting character position of the range.|
| _End_|Required| **Long**|The ending character position of the range.|
diff --git a/api/Word.Range.Sort.md b/api/Word.Range.Sort.md
index c5a8ae9e048..518ca0531c2 100644
--- a/api/Word.Range.Sort.md
+++ b/api/Word.Range.Sort.md
@@ -27,7 +27,7 @@ Sorts the paragraphs in the specified range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ExcludeHeader_|Optional| **Variant**| **True** to exclude the first row or paragraph header from the sort operation. The default value is **False** .|
| _FieldNumber_|Optional| **Variant**|The fields by which to sort. Microsoft Word sorts by FieldNumber, then by FieldNumber2, and then by FieldNumber3.|
diff --git a/api/Word.Range.StartOf.md b/api/Word.Range.StartOf.md
index 7623b95f478..3d1e7987b87 100644
--- a/api/Word.Range.StartOf.md
+++ b/api/Word.Range.StartOf.md
@@ -27,7 +27,7 @@ Moves or extends the start position of the specified range or selection to the b
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **WdUnits**|The unit by which the start position of the specified range or selection is to be moved. Can be any WdUnits constant except **wdLine** . The default value is **wdWord** .|
| _Extend_|Optional| **WdMovement**|Specifies whether to move or extend the start of the range. If you use **wdMove** , both ends of the range or selection are moved to the beginning of the specified unit. If you use **wdExtend** , the beginning of the range or selection is extended to the beginning of the specified unit. The default value is **wdMove** .|
diff --git a/api/Word.Range.TCSCConverter.md b/api/Word.Range.TCSCConverter.md
index 3f4911e8a51..8c8f146a42d 100644
--- a/api/Word.Range.TCSCConverter.md
+++ b/api/Word.Range.TCSCConverter.md
@@ -27,7 +27,7 @@ Converts the specified range from Traditional Chinese to Simplified Chinese or v
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _WdTCSCConverterDirection_|Optional| **WdTCSCConverterDirection**|Specifies the direction in which text is converted. If omitted, the default value is **wdTCSCConverterDirectionAuto** , which converts in the appropriate direction based on the detected language of the specified range.|
| _UseVariants_|Optional| **Boolean**| **True** if Word uses Taiwan, Hong Kong SAR, and Macao SAR character variants. Can only be used if translating from Simplified Chinese to Traditional Chinese.|
diff --git a/api/Word.Range.XML.md b/api/Word.Range.XML.md
index 1392c4c1c07..9ffc7b166e6 100644
--- a/api/Word.Range.XML.md
+++ b/api/Word.Range.XML.md
@@ -27,7 +27,7 @@ Returns a **String** that represents the XML text in the specified object. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataOnly_|Optional| **Boolean**| **True** returns the text of the XML without the Word XML markup. The default setting is **False** .|
diff --git a/api/Word.ReadabilityStatistics.Item.md b/api/Word.ReadabilityStatistics.Item.md
index 2c8a453a3f3..c8f04c7b238 100644
--- a/api/Word.ReadabilityStatistics.Item.md
+++ b/api/Word.ReadabilityStatistics.Item.md
@@ -27,11 +27,11 @@ Returns an individual **ReadabilityStatistic** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
ReadabilityStatistic
diff --git a/api/Word.RecentFile.Open.md b/api/Word.RecentFile.Open.md
index b3aeeb279ad..a312cbce595 100644
--- a/api/Word.RecentFile.Open.md
+++ b/api/Word.RecentFile.Open.md
@@ -23,7 +23,7 @@ Opens the specified object. Returns a **Document** object representing the open
_expression_ Required. A variable that represents a '[RecentFile](Word.RecentFile.md)' object.
-### Return Value
+### Return value
Document
diff --git a/api/Word.RecentFiles.Add.md b/api/Word.RecentFiles.Add.md
index 0442f0add4d..f0a29f7bf05 100644
--- a/api/Word.RecentFiles.Add.md
+++ b/api/Word.RecentFiles.Add.md
@@ -27,12 +27,12 @@ Returns a **RecentFile** object that represents a file added to the list of rec
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Document_|Required| **Variant**|The document you want to add to the list of recently used files. You can specify this argument by using either the string name for the document or a **Document** object.|
| _ReadOnly_|Optional| **Variant**| **True** to make the document read-only.|
-### Return Value
+### Return value
RecentFile
diff --git a/api/Word.RecentFiles.Item.md b/api/Word.RecentFiles.Item.md
index 37b82de609b..159c3a3f1c3 100644
--- a/api/Word.RecentFiles.Item.md
+++ b/api/Word.RecentFiles.Item.md
@@ -27,11 +27,11 @@ Returns an individual **RecentFile** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
RecentFile
diff --git a/api/Word.Rectangles.Item.md b/api/Word.Rectangles.Item.md
index 1758ad63ddd..b7879ae5e28 100644
--- a/api/Word.Rectangles.Item.md
+++ b/api/Word.Rectangles.Item.md
@@ -24,11 +24,11 @@ Returns an individual **Rectangle** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Rectangle
diff --git a/api/Word.ReflectionFormat.Offset.md b/api/Word.ReflectionFormat.Offset.md
index be6317cf8f6..e82d5876cb2 100644
--- a/api/Word.ReflectionFormat.Offset.md
+++ b/api/Word.ReflectionFormat.Offset.md
@@ -23,7 +23,7 @@ Returns or sets the amount of separation, in points, of the reflected image from
_expression_ An expression that returns a '[ReflectionFormat](Word.ReflectionFormat.md)' object.
-### Return Value
+### Return value
Single
diff --git a/api/Word.Research.IsResearchService.md b/api/Word.Research.IsResearchService.md
index 1f5e7ffc3c8..fbf887c845f 100644
--- a/api/Word.Research.IsResearchService.md
+++ b/api/Word.Research.IsResearchService.md
@@ -27,11 +27,11 @@ Indicates whether the GUID specified in the ServiceID parameter corresponds to a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ServiceID_|Required| **String**|Specifies a GUID that identifies the research service.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Research.Query.md b/api/Word.Research.Query.md
index c893a84fd6e..916ce66b644 100644
--- a/api/Word.Research.Query.md
+++ b/api/Word.Research.Query.md
@@ -27,7 +27,7 @@ Specifies a research query.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ServiceID_|Required| **String**|Specifies a GUID that identifies the research service.|
| _QueryString_|Optional| **String**|Specifies the query string.|
@@ -35,7 +35,7 @@ Specifies a research query.
| _UseSelection_|Optional| **Boolean**| **True** to use the current selection as the query string. This overrides the QueryString parameter if set. Default value is **False** .|
| _LaunchQuery_|Optional| **Boolean**| **True** launches the query. False displays the **Research** task pane scoped to search the specified research service.|
-### Return Value
+### Return value
Variant
diff --git a/api/Word.Research.SetLanguagePair.md b/api/Word.Research.SetLanguagePair.md
index eef2d1f356d..7ba198d69f1 100644
--- a/api/Word.Research.SetLanguagePair.md
+++ b/api/Word.Research.SetLanguagePair.md
@@ -27,12 +27,12 @@ Sets the languages for the translation service.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _LanguageFrom_|Required| **[WdLanguageID](Word.WdLanguageID.md)**|Specifies the language to translate from.|
| _LanguageTo_|Required| **WdLanguageID**|Specifies the langauge to translate to.|
-### Return Value
+### Return value
Variant
diff --git a/api/Word.Reviewers.Item.md b/api/Word.Reviewers.Item.md
index 4eae216b3ea..47934a52c5d 100644
--- a/api/Word.Reviewers.Item.md
+++ b/api/Word.Reviewers.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Reviewer** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
Reviewer
diff --git a/api/Word.Revisions.Item.md b/api/Word.Revisions.Item.md
index 7cb8cacc6ac..fde00633e88 100644
--- a/api/Word.Revisions.Item.md
+++ b/api/Word.Revisions.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Revisions** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned.|
-### Return Value
+### Return value
Revision
diff --git a/api/Word.Revisions.RejectAll.md b/api/Word.Revisions.RejectAll.md
index b69a9ce6b76..c52b54aadb7 100644
--- a/api/Word.Revisions.RejectAll.md
+++ b/api/Word.Revisions.RejectAll.md
@@ -23,7 +23,7 @@ ms.date: 06/08/2017
_expression_ An expression that returns a 'Revisions' object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.Row.ConvertToText.md b/api/Word.Row.ConvertToText.md
index 131dc250059..caa6bcd2d4f 100644
--- a/api/Word.Row.ConvertToText.md
+++ b/api/Word.Row.ConvertToText.md
@@ -27,7 +27,7 @@ Converts a table to text and returns a **Range** object that represents the del
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Separator_|Optional| **Variant**|The character that delimits the converted columns (paragraph marks delimit the converted rows). Can be any following **WdTableFieldSeparator** constants: **wdSeparateByCommas** , **wdSeparateByDefaultListSeparator** , **wdSeparateByParagraphs** , or **wdSeparateByTabs** (Default).|
| _NestedTables_|Optional| **Variant**| **True** if nested tables are converted to text. This argument is ignored if Separator is not **wdSeparateByParagraphs** . The default value is **True** .|
diff --git a/api/Word.Row.SetHeight.md b/api/Word.Row.SetHeight.md
index 71bffdf253c..8d0bf95487d 100644
--- a/api/Word.Row.SetHeight.md
+++ b/api/Word.Row.SetHeight.md
@@ -27,7 +27,7 @@ Sets the height of a table row.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RowHeight_|Required| **Single**|The height of the row, in points.|
| _HeightRule_|Required| **WdRowHeightRule**|The rule for determining the height of the specified rows.|
diff --git a/api/Word.Row.SetLeftIndent.md b/api/Word.Row.SetLeftIndent.md
index 9b10221f530..1ce4300ed31 100644
--- a/api/Word.Row.SetLeftIndent.md
+++ b/api/Word.Row.SetLeftIndent.md
@@ -27,7 +27,7 @@ Sets the indentation for a row in a table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _LeftIndent_|Required| **Single**|The distance (in points) between the current left edge of the specified row or rows and the desired left edge.|
| _RulerStyle_|Required| **WdRulerStyle**|Controls the way Word adjusts the table when the left indent is changed.|
diff --git a/api/Word.Rows.Add.md b/api/Word.Rows.Add.md
index 9661037efe3..75eccd80775 100644
--- a/api/Word.Rows.Add.md
+++ b/api/Word.Rows.Add.md
@@ -27,11 +27,11 @@ Returns a **Row** object that represents a row added to a table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _BeforeRow_|Optional| **Variant**|A **Row** object that represents the row that will appear immediately below the new row.|
-### Return Value
+### Return value
Row
diff --git a/api/Word.Rows.ConvertToText.md b/api/Word.Rows.ConvertToText.md
index f03911ba4b6..01fadef70ef 100644
--- a/api/Word.Rows.ConvertToText.md
+++ b/api/Word.Rows.ConvertToText.md
@@ -27,7 +27,7 @@ Converts rows in a table to text and returns a **Range** object that represents
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Separator_|Optional| **Variant**|The character that delimits the converted columns (paragraph marks delimit the converted rows). Can be any following **WdTableFieldSeparator** constants: **wdSeparateByCommas** , **wdSeparateByDefaultListSeparator** , **wdSeparateByParagraphs** , or **wdSeparateByTabs** (Default).|
| _NestedTables_|Optional| **Variant**| **True** if nested tables are converted to text. This argument is ignored if Separator is not **wdSeparateByParagraphs** . The default value is **True** .|
diff --git a/api/Word.Rows.Item.md b/api/Word.Rows.Item.md
index 1369652106d..9fbfd57969c 100644
--- a/api/Word.Rows.Item.md
+++ b/api/Word.Rows.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Row** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Row
diff --git a/api/Word.Rows.SetHeight.md b/api/Word.Rows.SetHeight.md
index 99db1e46872..5ebaf55ba12 100644
--- a/api/Word.Rows.SetHeight.md
+++ b/api/Word.Rows.SetHeight.md
@@ -27,7 +27,7 @@ Sets the height of table rows.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _RowHeight_|Required| **Single**|The height of the row or rows, in points.|
| _HeightRule_|Required| **WdRowHeightRule**|The rule for determining the height of the specified rows.|
diff --git a/api/Word.Rows.SetLeftIndent.md b/api/Word.Rows.SetLeftIndent.md
index 160176b3e10..b29bb723bdf 100644
--- a/api/Word.Rows.SetLeftIndent.md
+++ b/api/Word.Rows.SetLeftIndent.md
@@ -27,7 +27,7 @@ Sets the indentation for a row or rows in a table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _LeftIndent_|Required| **Single**|The distance (in points) between the current left edge of the specified row or rows and the desired left edge.|
| _RulerStyle_|Required| **WdRulerStyle**|Controls the way Microsoft Word adjusts the table when the left indent is changed. The **WdRulerStyle** behavior applies to left-aligned tables. The **WdRulerStyle** behavior for center- and right-aligned tables can be unexpected; in these cases, use the **SetLeftIndent** method with care.|
diff --git a/api/Word.SaveAs2.md b/api/Word.SaveAs2.md
index 9164125ef53..2c7568f97a0 100644
--- a/api/Word.SaveAs2.md
+++ b/api/Word.SaveAs2.md
@@ -27,7 +27,7 @@ Saves the specified document with a new name or format. Some of the arguments fo
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Optional| **Variant**|The name for the document. The default is the current folder and file name. If the document has never been saved, the default name is used (for example, Doc1.doc). If a document with the specified file name already exists, the document is overwritten without prompting the user.|
| _FileFormat_|Optional| **Variant**|The format in which the document is saved. Can be any **[WdSaveFormat](Word.WdSaveFormat.md)** constant. To save a document in another format, specify the appropriate value for the **[SaveFormat](Word.FileConverter.SaveFormat.md)** property of the **[FileConverter](Word.FileConverter.md)** object.|
@@ -47,7 +47,7 @@ Saves the specified document with a new name or format. Some of the arguments fo
| _AddBiDiMarks_|Optional| **Variant**| **True** adds control characters to the output file to preserve bi-directional layout of the text in the original document.|
| _CompatibilityMode_|Optional| **Variant**|The compatibility mode that Word uses when opening the document. **[WdCompatibilityMode](Word.WdCompatibilityMode.md)** constant.
|
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.Sections.Add.md b/api/Word.Sections.Add.md
index dfc3350891c..113a822381e 100644
--- a/api/Word.Sections.Add.md
+++ b/api/Word.Sections.Add.md
@@ -27,7 +27,7 @@ Returns a **Section** object that represents a new section added to a document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Optional| **Variant**|The range before which you want to insert the section break. If this argument is omitted, the section break is inserted at the end of the document.|
| _Start_|Optional| **Variant**|The type of section break you want to add. Can be one of the **WdSectionStart** constants. If this argument is omitted, a Next Page section break is added.|
diff --git a/api/Word.Sections.Item.md b/api/Word.Sections.Item.md
index cdbcb94a28d..29338f0bc51 100644
--- a/api/Word.Sections.Item.md
+++ b/api/Word.Sections.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Section** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Section
diff --git a/api/Word.Selection.Collapse.md b/api/Word.Selection.Collapse.md
index 45a60b7fdb0..a2a87cd0ad3 100644
--- a/api/Word.Selection.Collapse.md
+++ b/api/Word.Selection.Collapse.md
@@ -27,7 +27,7 @@ Collapses a selection to the starting or ending position. After a selection is c
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Direction_|Optional| **Variant**|The direction in which to collapse the range or selection. Can be either of the following **WdCollapseDirection** constants: **wdCollapseEnd** or **wdCollapseStart** . The default value is **wdCollapseStart** .|
diff --git a/api/Word.Selection.ConvertToTable.md b/api/Word.Selection.ConvertToTable.md
index 8988c61a5b4..95d1ab0f99d 100644
--- a/api/Word.Selection.ConvertToTable.md
+++ b/api/Word.Selection.ConvertToTable.md
@@ -27,7 +27,7 @@ Converts text within a range to a table. Returns the table as a **Table** objec
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Separator_|Optional| **Variant**|Specifies the character used to separate text into cells. Can be a character or one of the following **WdTableFieldSeparator** constant. If this argument is omitted, the value of the **DefaultTableSeparator** property is used.|
| _NumRows_|Optional| **Variant**|The number of rows in the table. If this argument is omitted, Microsoft Word sets the number of rows, based on the contents of the range.|
@@ -46,7 +46,7 @@ Converts text within a range to a table. Returns the table as a **Table** objec
| _AutoFitBehavior_|Optional| **Variant**|Sets the AutoFit rules for how Word sizes a table. Can be one of the following **WdAutoFitBehavior** constant. If DefaultTableBehavior is **wdWord8TableBehavior** , this argument is ignored.|
| _DefaultTableBehavior_|Optional| **Variant**| Sets a value that specifies whether Microsoft Word automatically resizes cells in a table to fit the contents (AutoFit). Can be one of the **WdDefaultTableBehavior** constant.|
-### Return Value
+### Return value
Table
diff --git a/api/Word.Selection.CreateAutoTextEntry.md b/api/Word.Selection.CreateAutoTextEntry.md
index 4c91231fdfa..1bb7da2f359 100644
--- a/api/Word.Selection.CreateAutoTextEntry.md
+++ b/api/Word.Selection.CreateAutoTextEntry.md
@@ -27,7 +27,7 @@ Adds a new **[AutoTextEntry](Word.AutoTextEntry.md)** object to the **[AutoText
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The text the user must type to call the new AutoText entry.|
| _StyleName_|Required| **String**|The category in which the new AutoText entry will be listed on the **AutoText** menu.|
diff --git a/api/Word.Selection.Delete.md b/api/Word.Selection.Delete.md
index d19ba8c8028..013dbdff475 100644
--- a/api/Word.Selection.Delete.md
+++ b/api/Word.Selection.Delete.md
@@ -27,12 +27,12 @@ Deletes the specified number of characters or words.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **Variant**|The unit by which the collapsed selection is to be deleted. Can be one of the **WdUnits** constants.|
| _Count_|Optional| **Variant**|The number of units to be deleted. To delete units after the selection, collapse the selection and use a positive number. To delete units before the selection, collapse the selection and use a negative number.|
-### Return Value
+### Return value
Long
diff --git a/api/Word.Selection.EndKey.md b/api/Word.Selection.EndKey.md
index c2db85c2ae1..ca9c43f0ce0 100644
--- a/api/Word.Selection.EndKey.md
+++ b/api/Word.Selection.EndKey.md
@@ -27,7 +27,7 @@ Moves or extends the selection to the end of the specified unit.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **Variant**|The unit by which the selection is to be moved or extended. Can be a **WdUnits** constant. The default value is **wdLine** .|
| _Extend_|Optional| **Variant**|Specifies the way the selection is moved. Can be any **WdMovementType** constant. If the value of this argument is **wdMove** , the selection is collapsed to an insertion point and moved to the end of the specified unit. If it is **wdExtend** , the end of the selection is extended to the end of the specified unit. The default value is **wdMove** .|
diff --git a/api/Word.Selection.EndOf.md b/api/Word.Selection.EndOf.md
index 1083c45e676..fe2bf7a0e44 100644
--- a/api/Word.Selection.EndOf.md
+++ b/api/Word.Selection.EndOf.md
@@ -27,7 +27,7 @@ Moves or extends the ending character position of a range or selection to the en
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **Variant**|The unit by which to move the ending character position. **WdUnits** .|
| _Extend_|Optional| **Variant**|Can be either of the **WdMovementType** constants. If **wdMove** , both ends of the range or selection object are moved to the end of the specified unit. If **wdExtend** is used, the end of the range or selection is extended to the end of the specified unit. The default value is **wdMove** .|
diff --git a/api/Word.Selection.Expand.md b/api/Word.Selection.Expand.md
index 3ced09f3ffd..4db091fadfe 100644
--- a/api/Word.Selection.Expand.md
+++ b/api/Word.Selection.Expand.md
@@ -27,7 +27,7 @@ Expands the specified range or selection. Returns the number of characters added
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **Variant**|A **[WdUnits](Word.WdUnits.md)** constant that represents the unit by which to expand the range. The default value is **wdWord** .|
diff --git a/api/Word.Selection.ExportAsFixedFormat.md b/api/Word.Selection.ExportAsFixedFormat.md
index a0896ee5ceb..d3a2f5c2738 100644
--- a/api/Word.Selection.ExportAsFixedFormat.md
+++ b/api/Word.Selection.ExportAsFixedFormat.md
@@ -27,7 +27,7 @@ Saves the current selection as PDF or XPS format. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _OutputFileName_|Required| **String**|The path and file name of the new PDF or XPS file.|
| _ExportFormat_|Required| **[WdExportFormat](Word.WdExportFormat.md)**|Specifies either PDF or XPS format.|
diff --git a/api/Word.Selection.Extend.md b/api/Word.Selection.Extend.md
index b6d071d72e0..417e102f9bc 100644
--- a/api/Word.Selection.Extend.md
+++ b/api/Word.Selection.Extend.md
@@ -27,7 +27,7 @@ Turns on extend mode, or if extend mode is already on, extends the selection to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Character_|Optional| **Variant**|The character through which the selection is extended. This argument is case sensitive and must evaluate to a **String** or an error occurs. Also, if the value of this argument is longer than a single character, Microsoft Word ignores the command entirely.|
diff --git a/api/Word.Selection.GoTo.md b/api/Word.Selection.GoTo.md
index 33c95c84110..9b2b1f06469 100644
--- a/api/Word.Selection.GoTo.md
+++ b/api/Word.Selection.GoTo.md
@@ -22,14 +22,14 @@ Moves the insertion point to the character position immediately preceding the sp
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _What_|Optional| **Variant**|The kind of item to which the range or selection is moved. Can be one of the **[WdGoToItem](Word.WdGoToItem.md)** constants.|
| _Which_|Optional| **Variant**|The item to which the range or selection is moved. Can be one of the **[WdGoToDirection](Word.WdGoToDirection.md)** constants.|
| _Count_|Optional| **Variant**|The number of the item in the document. The default value is 1. Only positive values are valid. To specify an item that precedes the range or selection, use **wdGoToPrevious** as the Which argument and specify a Count value.|
| _Name_|Optional| **Variant**|If the What argument is **wdGoToBookmark** , **wdGoToComment** , **wdGoToField** , or **wdGoToObject** , this argument specifies a name.|
-### Return Value
+### Return value
The [Range](Word.Range.md) that is now selected.
diff --git a/api/Word.Selection.GoToEditableRange.md b/api/Word.Selection.GoToEditableRange.md
index e860461b7c6..d390a6db8e9 100644
--- a/api/Word.Selection.GoToEditableRange.md
+++ b/api/Word.Selection.GoToEditableRange.md
@@ -27,11 +27,11 @@ Returns a **Range** object that represents an area of a document that can be mo
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _EditorID_|Optional| **Variant**|Can be either a **String** that represents the user's e-mail alias (if in the same domain), an e-mail address, or a **WdEditorType** constant that represents a group of users. If omitted, selects all ranges for which all users have permissions to edit.|
-### Return Value
+### Return value
Range
diff --git a/api/Word.Selection.GoToNext.md b/api/Word.Selection.GoToNext.md
index bfb5189f1a8..5b890a5e3b4 100644
--- a/api/Word.Selection.GoToNext.md
+++ b/api/Word.Selection.GoToNext.md
@@ -27,7 +27,7 @@ Returns a **Range** object that refers to the start position of the next item o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _What_|Required| **WdGoToItem**|The item where the specified range or selection is to be moved.|
diff --git a/api/Word.Selection.GoToPrevious.md b/api/Word.Selection.GoToPrevious.md
index 2ce9307e626..1d03ce4702b 100644
--- a/api/Word.Selection.GoToPrevious.md
+++ b/api/Word.Selection.GoToPrevious.md
@@ -27,7 +27,7 @@ Returns a **Range** object that refers to the start position of the previous it
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _What_|Required| **WdGoToItem**|The item where the specified range or selection is to be moved.|
diff --git a/api/Word.Selection.HomeKey.md b/api/Word.Selection.HomeKey.md
index 20372e9e9f4..a17071e9fc2 100644
--- a/api/Word.Selection.HomeKey.md
+++ b/api/Word.Selection.HomeKey.md
@@ -27,7 +27,7 @@ Moves or extends the selection to the beginning of the specified unit. This meth
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **Variant**|The unit by which the selection is to be moved or extended. The default value is **wdLine** .|
| _Extend_|Optional| **Variant**|Specifies the way the selection is moved. Can be one of the **WdMovementType** constants. If the value of this argument is **wdMove** , the selection is collapsed to an insertion point and moved to the beginning of the specified unit. If it is **wdExtend** , the beginning of the selection is extended to the beginning of the specified unit. The default value is **wdMove** .|
diff --git a/api/Word.Selection.InRange.md b/api/Word.Selection.InRange.md
index 28fb41900dd..0bf3b048901 100644
--- a/api/Word.Selection.InRange.md
+++ b/api/Word.Selection.InRange.md
@@ -27,11 +27,11 @@ ms.date: 06/08/2017
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required|Optional|The [Range](Word.Range.md) to which you want to compare the selection.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Selection.InStory.md b/api/Word.Selection.InStory.md
index fb719db470c..9499634c6e7 100644
--- a/api/Word.Selection.InStory.md
+++ b/api/Word.Selection.InStory.md
@@ -27,11 +27,11 @@ ms.date: 06/08/2017
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range**|The range whose story is compared with the story of the current selection.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Selection.Information.md b/api/Word.Selection.Information.md
index 2fe51b43513..104a23f5ec1 100644
--- a/api/Word.Selection.Information.md
+++ b/api/Word.Selection.Information.md
@@ -27,7 +27,7 @@ Returns information about the specified selection. Read-only **Variant** .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **WdInformation**|The information type.|
diff --git a/api/Word.Selection.InsertAfter.md b/api/Word.Selection.InsertAfter.md
index 7fb926cce33..18ef1ae9635 100644
--- a/api/Word.Selection.InsertAfter.md
+++ b/api/Word.Selection.InsertAfter.md
@@ -27,7 +27,7 @@ Inserts the specified text at the end of a range or selection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Text_|Required| **String**|The text to be inserted.|
diff --git a/api/Word.Selection.InsertBefore.md b/api/Word.Selection.InsertBefore.md
index 32afb6f8317..2f5a1303023 100644
--- a/api/Word.Selection.InsertBefore.md
+++ b/api/Word.Selection.InsertBefore.md
@@ -27,7 +27,7 @@ Inserts the specified text before the specified selection. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Text_|Required| **String**|The text to be inserted.|
diff --git a/api/Word.Selection.InsertBreak.md b/api/Word.Selection.InsertBreak.md
index eeecf603585..d31f383ab42 100644
--- a/api/Word.Selection.InsertBreak.md
+++ b/api/Word.Selection.InsertBreak.md
@@ -27,7 +27,7 @@ Inserts a page, column, or section break.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **[WdBreakType](Word.WdBreakType.md)**|the type of break to insert. The default value is **wdPageBreak** . Some of the **WdBreakType** constants may not be available to you, depending on the language support (U.S. English, for example) that you have selected or installed.|
diff --git a/api/Word.Selection.InsertCaption.md b/api/Word.Selection.InsertCaption.md
index d25a4069bf6..9620e3ad298 100644
--- a/api/Word.Selection.InsertCaption.md
+++ b/api/Word.Selection.InsertCaption.md
@@ -27,7 +27,7 @@ Inserts a caption immediately preceding or following the specified selection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Label_|Required| **Variant**|The caption label to be inserted. Can be a **String** or one of the **WdCaptionLabelID** constants. If the label has not yet been defined, an error occurs. Use the **Add** method with the **CaptionLabels** object to define new caption labels.|
| _Title_|Optional| **Variant**|The string to be inserted immediately following the label in the caption (ignored if TitleAutoText is specified).|
diff --git a/api/Word.Selection.InsertCells.md b/api/Word.Selection.InsertCells.md
index f78f86b3535..290c3f000ac 100644
--- a/api/Word.Selection.InsertCells.md
+++ b/api/Word.Selection.InsertCells.md
@@ -27,7 +27,7 @@ Adds cells to an existing table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShiftCells_|Optional| **WdInsertCells**|Specifies how to insert the cells into the existing columns and rows of the tabel.|
diff --git a/api/Word.Selection.InsertCrossReference.md b/api/Word.Selection.InsertCrossReference.md
index f39d993fb18..3b603395994 100644
--- a/api/Word.Selection.InsertCrossReference.md
+++ b/api/Word.Selection.InsertCrossReference.md
@@ -27,7 +27,7 @@ Inserts a cross-reference to a heading, bookmark, footnote, or endnote, or to an
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ReferenceType_|Required| **Variant**|The type of item for which a cross-reference is to be inserted. Can be any **WdReferenceType** or **WdCaptionLabelID** constant or a user defined caption label.|
| _ReferenceKind_|Required| **WdReferenceKind**|The information to be included in the cross-reference.|
diff --git a/api/Word.Selection.InsertDateTime.md b/api/Word.Selection.InsertDateTime.md
index 2e5f31a958b..5e77e7c1e31 100644
--- a/api/Word.Selection.InsertDateTime.md
+++ b/api/Word.Selection.InsertDateTime.md
@@ -27,7 +27,7 @@ Inserts the current date or time, or both, either as text or as a TIME field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DateTimeFormat_|Optional| **Variant**|The format to be used for displaying the date or time, or both. If this argument is omitted, Microsoft Word uses the short-date style from the Windows Control Panel (**Regional Settings** icon).|
| _InsertAsField_|Optional| **Variant**| **True** to insert the specified information as a TIME field. The default value is **True** .|
diff --git a/api/Word.Selection.InsertFile.md b/api/Word.Selection.InsertFile.md
index 77ad1db84fd..0aca6ce0f7e 100644
--- a/api/Word.Selection.InsertFile.md
+++ b/api/Word.Selection.InsertFile.md
@@ -27,7 +27,7 @@ Inserts all or part of the specified file.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The path and file name of the file to be inserted. If you don't specify a path, Word assumes the file is in the current folder.|
| _Range_|Optional| **Variant**|If the specified file is a Word document, this parameter refers to a bookmark. If the file is another type (for example, a Microsoft Excel worksheet), this parameter refers to a named range or a cell range (for example, R1C1:R3C4).|
diff --git a/api/Word.Selection.InsertFormula.md b/api/Word.Selection.InsertFormula.md
index ec0642caf45..a826c8bcc3f 100644
--- a/api/Word.Selection.InsertFormula.md
+++ b/api/Word.Selection.InsertFormula.md
@@ -27,7 +27,7 @@ Inserts an = (Formula) field that contains a formula at the selection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Formula_|Optional| **Variant**|The mathematical formula you want the = (Formula) field to evaluate. Spreadsheet-type references to table cells are valid. For example, "=SUM(A4:C4)" specifies the first three values in the fourth row. For more information about the = (Formula) field, see Field codes:= (Formula) field.|
| _NumberFormat_|Optional| **Variant**|A format for the result of the = (Formula) field. For information about the types of formats you can apply, see Numeric Picture (\#) field switch.|
diff --git a/api/Word.Selection.InsertRows.md b/api/Word.Selection.InsertRows.md
index 2865cd65e5b..a2cc4e320be 100644
--- a/api/Word.Selection.InsertRows.md
+++ b/api/Word.Selection.InsertRows.md
@@ -27,7 +27,7 @@ Inserts the specified number of new rows above the row that contains the selecti
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NumRows_|Optional| **Variant**|The number of rows to be added.|
diff --git a/api/Word.Selection.InsertSymbol.md b/api/Word.Selection.InsertSymbol.md
index 4002381670e..c645b3204a9 100644
--- a/api/Word.Selection.InsertSymbol.md
+++ b/api/Word.Selection.InsertSymbol.md
@@ -27,7 +27,7 @@ Inserts a symbol in place of the specified selection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _CharacterNumber_|Required| **Long**|The character number for the specified symbol. This value will always be the sum of 31 and the number that corresponds to the position of the symbol in the table of symbols (counting from left to right). For example, to specify a delta character at position 37 in the table of symbols in the Symbol font, set CharacterNumber to 68.|
| _Font_|Optional| **Variant**|The name of the font that contains the symbol.|
diff --git a/api/Word.Selection.InsertXML.md b/api/Word.Selection.InsertXML.md
index 95aa3e62878..bd2f6f2ead4 100644
--- a/api/Word.Selection.InsertXML.md
+++ b/api/Word.Selection.InsertXML.md
@@ -27,12 +27,12 @@ Inserts the specified XML into the document at the cursor, replacing any selecte
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _XML_|Required| **String**|Specifies the XML to insert. This can be any valid custom XML.|
| _Transform_|Optional| **Variant**|Specifies the XML Transformation (XSLT) used to transform the XML. If omitted, the XML is inserted as custom XML without applying a transform.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.Selection.IsEqual.md b/api/Word.Selection.IsEqual.md
index b9a305856b2..3c873cb80fa 100644
--- a/api/Word.Selection.IsEqual.md
+++ b/api/Word.Selection.IsEqual.md
@@ -27,11 +27,11 @@ ms.date: 06/08/2017
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range**|The range to compare with the current selection.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Selection.Move.md b/api/Word.Selection.Move.md
index c6daabaaea9..95138b5f04f 100644
--- a/api/Word.Selection.Move.md
+++ b/api/Word.Selection.Move.md
@@ -27,12 +27,12 @@ Collapses the specified selection to its start or end position and then moves th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **[WdUnits](Word.WdUnits.md)**|The unit by which to move the ending character position.|
| _Count_|Optional| **Variant**|The number of units by which the specified range or selection is to be moved. If Count is a positive number, the object is collapsed to its end position and moved backward in the document by the specified number of units. If Count is a negative number, the object is collapsed to its start position and moved forward by the specified number of units. The default value is 1. You can also control the collapse direction by using the **Collapse** method before using the **Move** method. If the range or selection is in the middle of a unit or isn't collapsed, moving it to the beginning or end of the unit counts as moving it one full unit.|
-### Return Value
+### Return value
Long
diff --git a/api/Word.Selection.MoveDown.md b/api/Word.Selection.MoveDown.md
index 96aba5110ce..25153ca404e 100644
--- a/api/Word.Selection.MoveDown.md
+++ b/api/Word.Selection.MoveDown.md
@@ -27,7 +27,7 @@ Moves the selection down and returns the number of units it has been moved.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **WdUnits**|The unit by which the selection is to be moved.The default value is **wdLine** .|
| _Count_|Optional| **Variant**|The number of units the selection is to be moved. The default value is 1.|
diff --git a/api/Word.Selection.MoveEnd.md b/api/Word.Selection.MoveEnd.md
index 6bd35202c18..6642e12b664 100644
--- a/api/Word.Selection.MoveEnd.md
+++ b/api/Word.Selection.MoveEnd.md
@@ -27,12 +27,12 @@ Moves the ending character position of a range or selection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **WdUnits**|The unit by which to move the ending character position. The default value is **wdCharacter** .|
| _Count_|Optional| **Variant**|The number of units to move. If this number is positive, the ending character position is moved forward in the document. If this number is negative, the end is moved backward. If the ending position overtakes the starting position, the range collapses and both character positions move together. The default value is 1.|
-### Return Value
+### Return value
Integer
diff --git a/api/Word.Selection.MoveEndUntil.md b/api/Word.Selection.MoveEndUntil.md
index 6468539fb6f..4e5eaf1d6ee 100644
--- a/api/Word.Selection.MoveEndUntil.md
+++ b/api/Word.Selection.MoveEndUntil.md
@@ -27,12 +27,12 @@ Moves the end position of the specified selection until any of the specified cha
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cset_|Required| **Variant**|One or more characters. This argument is case sensitive.|
| _Count_|Optional| **Variant**|The maximum number of characters by which the specified selection is to be moved. Can be a number or either **wdForward** or **wdBackward** . If Count is a positive number, the selection is moved forward in the document. If it is a negative number, the selection is moved backward. The default value is **wdForward** .|
-### Return Value
+### Return value
Long
diff --git a/api/Word.Selection.MoveEndWhile.md b/api/Word.Selection.MoveEndWhile.md
index 3ddbf2dfc17..5db032b57c8 100644
--- a/api/Word.Selection.MoveEndWhile.md
+++ b/api/Word.Selection.MoveEndWhile.md
@@ -27,7 +27,7 @@ Moves the ending character position of a selection while any of the specified ch
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cset_|Required| **Variant**|One or more characters. This argument is case sensitive.|
| _Count_|Optional| **Variant**|The maximum number of characters by which the selection is to be moved. Can be a number or either **wdForward** or **wdBackward** . If Count is a positive number, the selection is moved forward in the document. If it is a negative number, the selection is moved backward. The default value is **wdForward** .|
diff --git a/api/Word.Selection.MoveLeft.md b/api/Word.Selection.MoveLeft.md
index a8385c996d7..15b50ef315d 100644
--- a/api/Word.Selection.MoveLeft.md
+++ b/api/Word.Selection.MoveLeft.md
@@ -27,7 +27,7 @@ Moves the selection to the left and returns the number of units it has been move
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **WdUnits**|The unit by which the selection is to be moved.The default value is **wdCharacter** .|
| _Count_|Optional| **Variant**|The number of units the selection is to be moved. The default value is 1.|
diff --git a/api/Word.Selection.MoveRight.md b/api/Word.Selection.MoveRight.md
index fb3505830a8..01f7e4e2799 100644
--- a/api/Word.Selection.MoveRight.md
+++ b/api/Word.Selection.MoveRight.md
@@ -27,13 +27,13 @@ Moves the selection to the right and returns the number of units it has been mov
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **WdUnits**|The unit by which the selection is to be moved.The default value is **wdCharacter** .|
| _Count_|Optional| **Variant**|The number of units the selection is to be moved. The default value is 1.|
| _Extend_|Optional| **Variant**|Can be either **wdMove** or **wdExtend** . If **wdMove** is used, the selection is collapsed to the endpoint and moved to the right. If **wdExtend** is used, the selection is extended to the right. The default value is **wdMove** .|
-### Return Value
+### Return value
Long
diff --git a/api/Word.Selection.MoveStart.md b/api/Word.Selection.MoveStart.md
index 6efc912dd8a..521bce9f3e5 100644
--- a/api/Word.Selection.MoveStart.md
+++ b/api/Word.Selection.MoveStart.md
@@ -27,12 +27,12 @@ Moves the start position of the specified selection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **WdUnits**|The unit by which start position of the specified selection is to be moved. Can be one of the **WdUnits** constants. The default value is **wdCharacter** .|
| _Count_|Optional| **Variant**|The maximum number of units by which the specified selection is to be moved. If Count is a positive number, the start position of the selection is moved forward in the document. If it is a negative number, the start position is moved backward. If the start position is moved forward to a position beyond the end position, the selection is collapsed and both the start and end positions are moved together. The default value is 1.|
-### Return Value
+### Return value
Integer
diff --git a/api/Word.Selection.MoveStartUntil.md b/api/Word.Selection.MoveStartUntil.md
index 3de6eaef213..a6e4a597721 100644
--- a/api/Word.Selection.MoveStartUntil.md
+++ b/api/Word.Selection.MoveStartUntil.md
@@ -27,7 +27,7 @@ Moves the start position of the specified selection until one of the specified c
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cset_|Required| **Variant**|One or more characters. This argument is case sensitive.|
| _Count_|Optional| **Variant**|The maximum number of characters by which the specified selection is to be moved. Can be a number or either the **wdForward** or **wdBackward** constant. If Count is a positive number, the selection is moved forward in the document. If it is a negative number, the selection is moved backward. The default value is **wdForward** .|
diff --git a/api/Word.Selection.MoveStartWhile.md b/api/Word.Selection.MoveStartWhile.md
index 8e469193b17..d44184cfa90 100644
--- a/api/Word.Selection.MoveStartWhile.md
+++ b/api/Word.Selection.MoveStartWhile.md
@@ -27,7 +27,7 @@ Moves the start position of the specified selection while any of the specified c
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cset_|Required| **Variant**|One or more characters. This argument is case sensitive.|
| _Count_|Optional| **Variant**|The maximum number of characters by which the specified selection is to be moved. Can be a number or either the **wdForward** or **wdBackward** constant. If Count is a positive number, the selection is moved forward in the document. If it is a negative number, the selection is moved backward. The default value is **wdForward** .|
diff --git a/api/Word.Selection.MoveUntil.md b/api/Word.Selection.MoveUntil.md
index 39157132a8d..175ba812db9 100644
--- a/api/Word.Selection.MoveUntil.md
+++ b/api/Word.Selection.MoveUntil.md
@@ -27,7 +27,7 @@ Moves the specified selection until one of the specified characters is found in
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cset_|Required| **Variant**|One or more characters. If any character in Cset is found before the Count value expires, the specified selection is positioned as an insertion point immediately before that character. This argument is case sensitive.|
| _Count_|Optional| **Variant**|The maximum number of characters by which the specified selection is to be moved. Can be a number or either the **wdForward** or **wdBackward** constant. If Count is a positive number, the selection is moved forward in the document, beginning at the end position. If it is a negative number, the selection is moved backward, beginning at the start position. The default value is **wdForward** .|
diff --git a/api/Word.Selection.MoveUp.md b/api/Word.Selection.MoveUp.md
index aa0c212942e..9e0d0aa439b 100644
--- a/api/Word.Selection.MoveUp.md
+++ b/api/Word.Selection.MoveUp.md
@@ -27,13 +27,13 @@ Moves the selection up and returns the number of units that it has been moved.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **Variant**|The unit by which to move the selection. Can be one of the following **WdUnits** constants: **wdLine** , **wdParagraph** , **wdWindow** or **wdScreen** . The default value is **wdLine** . You can use the **wdWindow** constant for the Unit argument to move to the top or bottom of the active window. Regardless of the value of Count (greater than 1 or less than ? 1), the **wdWindow** constant moves only one unit. Use the **wdScreen** constant to move more than one screen.|
| _Count_|Optional| **Variant**|The number of units the selection is to be moved. The default value is 1.|
| _Extend_|Optional| **Variant**|Specifies whether the selection is moved or extended. Can be either **wdMove** or **wdExtend** . If **wdMove** is used, the selection is collapsed to the endpoint and moved up. If **wdExtend** is used, the selection is extended up. The default value is **wdMove** .|
-### Return Value
+### Return value
Long
diff --git a/api/Word.Selection.MoveWhile.md b/api/Word.Selection.MoveWhile.md
index 920cfac202c..ccbd28123a0 100644
--- a/api/Word.Selection.MoveWhile.md
+++ b/api/Word.Selection.MoveWhile.md
@@ -27,7 +27,7 @@ Moves the specified selection while any of the specified characters are found in
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Cset_|Required| **Variant**|One or more characters. This argument is case sensitive.|
| _Count_|Optional| **Variant**|The maximum number of characters by which the specified selection is to be moved. Can be a number or either the **wdForward** or **wdBackward** constant. If Count is a positive number, the specified selection is moved forward in the document, beginning at the end position. If it is a negative number, the selection is moved backward, beginning at the start position. The default value is **wdForward** .|
diff --git a/api/Word.Selection.Next.md b/api/Word.Selection.Next.md
index 3f7c3d46a2c..0ec30dd6afd 100644
--- a/api/Word.Selection.Next.md
+++ b/api/Word.Selection.Next.md
@@ -27,12 +27,12 @@ Returns a **Range** object that represents the next unit relative to the specif
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **Variant**|The type of units by which to count. Can be any **[WdUnits](Word.WdUnits.md)** constant.|
| _Count_|Optional| **Variant**|The number of units by which you want to move ahead. The default value is one.|
-### Return Value
+### Return value
Range
diff --git a/api/Word.Selection.NextField.md b/api/Word.Selection.NextField.md
index 96016f56872..0d0d666366f 100644
--- a/api/Word.Selection.NextField.md
+++ b/api/Word.Selection.NextField.md
@@ -23,7 +23,7 @@ Selects the next field.
_expression_ Required. A variable that represents a '[Selection](Word.Selection.md)' object.
-### Return Value
+### Return value
Field
diff --git a/api/Word.Selection.NextRevision.md b/api/Word.Selection.NextRevision.md
index f9c61e6a520..8ef7b82544d 100644
--- a/api/Word.Selection.NextRevision.md
+++ b/api/Word.Selection.NextRevision.md
@@ -27,11 +27,11 @@ Locates and returns the next tracked change as a **Revision** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Wrap_|Optional| **Variant**| **True** to continue searching for a revision at the beginning of the document when the end of the document is reached. The default value is **False** .|
-### Return Value
+### Return value
Revision
diff --git a/api/Word.Selection.PasteAndFormat.md b/api/Word.Selection.PasteAndFormat.md
index e8e66283d29..9be8e4d5896 100644
--- a/api/Word.Selection.PasteAndFormat.md
+++ b/api/Word.Selection.PasteAndFormat.md
@@ -27,7 +27,7 @@ Pastes the selected table cells and formats them as specified.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **[WdRecoveryType](Word.WdRecoveryType.md)**|The type of formatting to use when pasting the selected table cells.|
diff --git a/api/Word.Selection.PasteExcelTable.md b/api/Word.Selection.PasteExcelTable.md
index 4ec87b02bd1..191c3417af1 100644
--- a/api/Word.Selection.PasteExcelTable.md
+++ b/api/Word.Selection.PasteExcelTable.md
@@ -27,7 +27,7 @@ Pastes and formats a Microsoft Excel table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _LinkedToExcel_|Required| **Boolean**| **True** links the pasted table to the original Excel file so that changes made to the Excel file are reflected in Microsoft Word.|
| _WordFormatting_|Required| **Boolean**| **True** formats the table using the formatting in the Word document. **False** formats the table according to the original Excel file.|
diff --git a/api/Word.Selection.PasteSpecial.md b/api/Word.Selection.PasteSpecial.md
index 4a03058c08b..e1d2e8a850d 100644
--- a/api/Word.Selection.PasteSpecial.md
+++ b/api/Word.Selection.PasteSpecial.md
@@ -27,7 +27,7 @@ Inserts the contents of the Clipboard.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _IconIndex_|Optional| **Variant**|If DisplayAsIcon is **True** , this argument is a number that corresponds to the icon you want to use in the program file specified by IconFilename. If this argument is omitted, this method uses the first (default) icon.|
| _Link_|Optional| **Variant**| **True** to create a link to the source file of the Clipboard contents. The default value is **False** .|
diff --git a/api/Word.Selection.Previous.md b/api/Word.Selection.Previous.md
index 8e2341862fe..b6231b75997 100644
--- a/api/Word.Selection.Previous.md
+++ b/api/Word.Selection.Previous.md
@@ -27,12 +27,12 @@ Moves the selected text by the specified number of units, and returns a **Range
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **Variant**|Specifies the type of unit by which to move the selection. Can be one of the **[WdUnits](Word.WdUnits.md)** constants.|
| _Count_|Optional| **Variant**|The number of units by which you want to move. The default value is 1.|
-### Return Value
+### Return value
Range
diff --git a/api/Word.Selection.PreviousField.md b/api/Word.Selection.PreviousField.md
index 9a2e85f76f4..5d108f40e96 100644
--- a/api/Word.Selection.PreviousField.md
+++ b/api/Word.Selection.PreviousField.md
@@ -23,7 +23,7 @@ Selects and returns the previous field.
_expression_ Required. A variable that represents a '[Selection](Word.Selection.md)' object.
-### Return Value
+### Return value
Field
diff --git a/api/Word.Selection.PreviousRevision.md b/api/Word.Selection.PreviousRevision.md
index 95630df050d..7da93e6dfc2 100644
--- a/api/Word.Selection.PreviousRevision.md
+++ b/api/Word.Selection.PreviousRevision.md
@@ -27,11 +27,11 @@ Locates and returns the previous tracked change as a **Revision** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Wrap_|Optional| **Variant**| **True** to continue searching for a revision at the end of the document when the beginning of the document is reached. The default value is **False** .|
-### Return Value
+### Return value
Revision
diff --git a/api/Word.Selection.ReadingModeGrowFont.md b/api/Word.Selection.ReadingModeGrowFont.md
index a83b803e5b3..306a71c8125 100644
--- a/api/Word.Selection.ReadingModeGrowFont.md
+++ b/api/Word.Selection.ReadingModeGrowFont.md
@@ -23,7 +23,7 @@ Increases the size of the displayed text one point size when the document is dis
_expression_ An expression that returns a [Selection](./Word.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.Selection.ReadingModeShrinkFont.md b/api/Word.Selection.ReadingModeShrinkFont.md
index 577e9aae792..b40c47e214c 100644
--- a/api/Word.Selection.ReadingModeShrinkFont.md
+++ b/api/Word.Selection.ReadingModeShrinkFont.md
@@ -23,7 +23,7 @@ Decreases the size of the displayed text one point size when the document is dis
_expression_ An expression that returns a [Selection](./Word.Selection.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.Selection.SetRange.md b/api/Word.Selection.SetRange.md
index f9e0d34dcda..f20776b554b 100644
--- a/api/Word.Selection.SetRange.md
+++ b/api/Word.Selection.SetRange.md
@@ -27,7 +27,7 @@ Sets the starting and ending character positions for the selection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Start_|Required| **Long**|The starting character position of the selection.|
| _End_|Required| **Long**|The ending character position of the selection.|
diff --git a/api/Word.Selection.Sort.md b/api/Word.Selection.Sort.md
index b6d481d2852..c47fea22348 100644
--- a/api/Word.Selection.Sort.md
+++ b/api/Word.Selection.Sort.md
@@ -27,7 +27,7 @@ Sorts the paragraphs in the specified selection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ExcludeHeader_|Optional| **Variant**| **True** to exclude the first row or paragraph header from the sort operation. The default value is **False** .|
| _FieldNumber_|Optional| **Variant**|The first field by which to sort.|
diff --git a/api/Word.Selection.StartOf.md b/api/Word.Selection.StartOf.md
index d784efb455f..07cf7aabb6b 100644
--- a/api/Word.Selection.StartOf.md
+++ b/api/Word.Selection.StartOf.md
@@ -27,7 +27,7 @@ Moves or extends the start position of the specified range or selection to the b
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Unit_|Optional| **WdUnits**|The unit by which the start position of the specified range or selection is to be moved. If a value is omitted, the default value is **wdWord** .|
| _Extend_|Optional| **WdMovement**|If you use **wdMove** , both ends of the range or selection are moved to the beginning of the specified unit. If you use **wdExtend** , the beginning of the range or selection is extended to the beginning of the specified unit. The default value is **wdMove** .|
diff --git a/api/Word.Selection.TypeText.md b/api/Word.Selection.TypeText.md
index 6462689d8b0..10c2ebaeaa0 100644
--- a/api/Word.Selection.TypeText.md
+++ b/api/Word.Selection.TypeText.md
@@ -27,7 +27,7 @@ Inserts the specified text.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Text_|Required| **String**|The text to be inserted.|
diff --git a/api/Word.Selection.XML.md b/api/Word.Selection.XML.md
index b6cc9bda7dd..004fabd330a 100644
--- a/api/Word.Selection.XML.md
+++ b/api/Word.Selection.XML.md
@@ -27,7 +27,7 @@ Returns a **String** that represents the XML text in the specified object. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataOnly_|Optional| **Boolean**| **True** returns the text of the XML without the Word XML markup. The default setting is **False** .|
diff --git a/api/Word.Sentences.Item.md b/api/Word.Sentences.Item.md
index 14c4302e0be..47aef056339 100644
--- a/api/Word.Sentences.Item.md
+++ b/api/Word.Sentences.Item.md
@@ -24,11 +24,11 @@ Returns an individual **Range** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Range
diff --git a/api/Word.Series.ApplyDataLabels.md b/api/Word.Series.ApplyDataLabels.md
index 34ff8ca4018..ee901b8e2b8 100644
--- a/api/Word.Series.ApplyDataLabels.md
+++ b/api/Word.Series.ApplyDataLabels.md
@@ -25,7 +25,7 @@ Applies data labels to a series.
### Parameters
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Optional| **[XlDataLabelsType](Word.xldatalabelstype.md)**|The type of data label to apply.|
| _LegendKey_|Optional| **Variant**| **True** to show the legend key next to the point. The default is **False** .|
diff --git a/api/Word.Series.DataLabels.md b/api/Word.Series.DataLabels.md
index 19f90794cc2..a4caed1d3c8 100644
--- a/api/Word.Series.DataLabels.md
+++ b/api/Word.Series.DataLabels.md
@@ -27,11 +27,11 @@ Returns an object that represents either a single data label (a **[DataLabel](W
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Optional| **Variant**|The number of the data label.|
-### Return Value
+### Return value
An object that represents either a single data label (a **DataLabel** object) or a collection of all the data labels for the series (a **DataLabels** collection).
diff --git a/api/Word.Series.ErrorBar.md b/api/Word.Series.ErrorBar.md
index 7b0cdac15ce..aa4bf37c866 100644
--- a/api/Word.Series.ErrorBar.md
+++ b/api/Word.Series.ErrorBar.md
@@ -27,7 +27,7 @@ Applies error bars to the series.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Direction_|Required| **[XlErrorBarDirection](Word.xlerrorbardirection.md)**|One of the enumeration values that specifies the error bar direction.|
| _Include_|Required| **[XlErrorBarInclude](Word.xlerrorbarinclude.md)**|One of the enumeration values that specifies the error bar parts to include.|
diff --git a/api/Word.Series.InvertColor.md b/api/Word.Series.InvertColor.md
index 450dfa1328c..39a73b1126f 100644
--- a/api/Word.Series.InvertColor.md
+++ b/api/Word.Series.InvertColor.md
@@ -23,7 +23,7 @@ Returns or sets the fill color for negative data points in a series. Read/write.
_expression_ A variable that represents a '[Series](Word.Series.md)' object.
-### Return Value
+### Return value
Integer
diff --git a/api/Word.Series.InvertColorIndex.md b/api/Word.Series.InvertColorIndex.md
index 88c2f4b9b38..1dc8d46bb04 100644
--- a/api/Word.Series.InvertColorIndex.md
+++ b/api/Word.Series.InvertColorIndex.md
@@ -23,7 +23,7 @@ Returns or sets the fill color for negative data points in a series. Read/write.
_expression_ A variable that represents a '[Series](Word.Series.md)' object.
-### Return Value
+### Return value
Integer
diff --git a/api/Word.Series.PlotColorIndex.md b/api/Word.Series.PlotColorIndex.md
index fc1a169f4d0..b0359260a71 100644
--- a/api/Word.Series.PlotColorIndex.md
+++ b/api/Word.Series.PlotColorIndex.md
@@ -23,7 +23,7 @@ Returns an index value that is used internally to associate series formatting wi
_expression_ A variable that represents a '[Series](Word.Series.md)' object.
-### Return Value
+### Return value
Integer
diff --git a/api/Word.Series.Points.md b/api/Word.Series.Points.md
index 5f6f4c0399d..3a30d50a7ad 100644
--- a/api/Word.Series.Points.md
+++ b/api/Word.Series.Points.md
@@ -27,11 +27,11 @@ Returns a collection of all the points in the series.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Optional| **Variant**|The name or number of the point.|
-### Return Value
+### Return value
A **[Points](Word.Points.md)** object that represents all the points in the series.
diff --git a/api/Word.Series.Trendlines.md b/api/Word.Series.Trendlines.md
index 7199726fdfb..14887282f30 100644
--- a/api/Word.Series.Trendlines.md
+++ b/api/Word.Series.Trendlines.md
@@ -23,7 +23,7 @@ Returns a collection of all the trendlines for the series.
_expression_ A variable that represents a '[Series](Word.Series.md)' object.
-### Return Value
+### Return value
A **[Trendlines](Word.Trendlines.md)** object that represents all the treadlines for the series.
diff --git a/api/Word.SeriesCollection.Add.md b/api/Word.SeriesCollection.Add.md
index 4b46a00710d..ccb9f42571b 100644
--- a/api/Word.SeriesCollection.Add.md
+++ b/api/Word.SeriesCollection.Add.md
@@ -27,7 +27,7 @@ Adds one or more new series to the collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Source_|Required| **Variant**|The new data as a string representation of a range contained in the **[Workbook](Word.ChartData.Workbook.md)** property of the **[ChartData](Word.ChartData.md)** object for the chart.|
| _Rowcol_|Optional| **[XlRowCol](Word.xlrowcol.md)**|One of the enumeration values that specifies whether the new values are in the rows or columns of the specified range.|
@@ -35,7 +35,7 @@ Adds one or more new series to the collection.
| _CategoryLabels_|Optional| **Variant**| **True** if the first row or column contains the name of the category labels. **False** if the first row or column contains the first data point of the series. If this argument is omitted, Word attempts to determine the location of the category label from the contents of the first row or column.|
| _Replace_|Optional| **Variant**|If CategoryLabels is **True** and Replace is **True** , the specified categories replace the categories that currently exist for the series. If Replace is **False** , the existing categories will not be replaced. The default is **False** .|
-### Return Value
+### Return value
A **[Series](Word.Series.md)** object that represents the new series.
diff --git a/api/Word.SeriesCollection.Extend.md b/api/Word.SeriesCollection.Extend.md
index 68bd58f488f..2f7c7fe2c8d 100644
--- a/api/Word.SeriesCollection.Extend.md
+++ b/api/Word.SeriesCollection.Extend.md
@@ -27,7 +27,7 @@ Adds new data points to an existing series collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Source_|Required| **Variant**|The new data to be added to the **SeriesCollection** object, represented as an A1-style range reference.|
| _Rowcol_|Optional| **Variant**|One of the **[XlRowCol](Word.xlrowcol.md)** enumeration values that specifies whether the new values are in the rows or columns of the given range source. If this argument is omitted, Microsoft Word attempts to determine where the values are by the size and orientation of the selected range or by the dimensions of the array.|
diff --git a/api/Word.SeriesCollection.Item.md b/api/Word.SeriesCollection.Item.md
index 93151efd07a..317967d4ec0 100644
--- a/api/Word.SeriesCollection.Item.md
+++ b/api/Word.SeriesCollection.Item.md
@@ -27,11 +27,11 @@ Returns a single object from a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The name or index number for the object.|
-### Return Value
+### Return value
A **[Series](Word.Series.md)** object contained by the collection.
diff --git a/api/Word.SeriesCollection.NewSeries.md b/api/Word.SeriesCollection.NewSeries.md
index 339195a3c4b..3992ff411c9 100644
--- a/api/Word.SeriesCollection.NewSeries.md
+++ b/api/Word.SeriesCollection.NewSeries.md
@@ -23,7 +23,7 @@ Creates a new series.
_expression_ A variable that represents a '[SeriesCollection](Word.SeriesCollection.md)' object.
-### Return Value
+### Return value
A **[Series](Word.Series.md)** object that represents the new series.
diff --git a/api/Word.SetCompatibilityMode.md b/api/Word.SetCompatibilityMode.md
index 5ce3900a370..a07749d5c08 100644
--- a/api/Word.SetCompatibilityMode.md
+++ b/api/Word.SetCompatibilityMode.md
@@ -27,7 +27,7 @@ Sets the compatibility mode for the document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Mode_|Required| **Long**|Specifies which version of Word to approximate. Use a constant from the [WdCompatibilityMode](Word.WdCompatibilityMode.md) enumeration as an argument for this parameter.|
diff --git a/api/Word.ShadowFormat.IncrementOffsetX.md b/api/Word.ShadowFormat.IncrementOffsetX.md
index 6e2c093bffd..b6b2fb73a6f 100644
--- a/api/Word.ShadowFormat.IncrementOffsetX.md
+++ b/api/Word.ShadowFormat.IncrementOffsetX.md
@@ -27,7 +27,7 @@ Changes the horizontal offset of the shadow by the specified number of points.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|Specifies how far the shadow offset is to be moved horizontally, in points. A positive value moves the shadow to the right; a negative value moves it to the left.|
diff --git a/api/Word.ShadowFormat.IncrementOffsetY.md b/api/Word.ShadowFormat.IncrementOffsetY.md
index a363283b0e9..9f7d32e573d 100644
--- a/api/Word.ShadowFormat.IncrementOffsetY.md
+++ b/api/Word.ShadowFormat.IncrementOffsetY.md
@@ -27,7 +27,7 @@ Changes the vertical offset of the shadow by the specified number of points.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|Specifies how far the shadow offset is to be moved vertically, in points. A positive value moves the shadow down; a negative value moves it up.|
diff --git a/api/Word.Shape.CanvasCropBottom.md b/api/Word.Shape.CanvasCropBottom.md
index a732653425d..b21ab86fb31 100644
--- a/api/Word.Shape.CanvasCropBottom.md
+++ b/api/Word.Shape.CanvasCropBottom.md
@@ -27,7 +27,7 @@ Crops a percentage of the height of a drawing canvas from the bottom of the canv
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|The amount in percentage points of a drawing canvas's height that you want remaining after the canvas is cropped. Entering 0.9 as the increment crops ten percent of the canvas's height from the bottom. Entering 0.1 crops ninety percent of the canvas's height from the bottom.|
diff --git a/api/Word.Shape.CanvasCropLeft.md b/api/Word.Shape.CanvasCropLeft.md
index f1e84e4e554..945b35873b1 100644
--- a/api/Word.Shape.CanvasCropLeft.md
+++ b/api/Word.Shape.CanvasCropLeft.md
@@ -27,7 +27,7 @@ Crops a percentage of the width of a drawing canvas from the left side of the ca
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|The amount in percentage points of the drawing canvas's width that you want remaining after the canvas is cropped. Entering 0.9 as the increment crops ten percent of the canvas's width from the left. Entering 0.1 crops ninety percent of the canvas's width from the left.|
diff --git a/api/Word.Shape.CanvasCropRight.md b/api/Word.Shape.CanvasCropRight.md
index 7c635d909a2..d6dbb0d1e00 100644
--- a/api/Word.Shape.CanvasCropRight.md
+++ b/api/Word.Shape.CanvasCropRight.md
@@ -27,7 +27,7 @@ Crops a percentage of the width of a drawing canvas from the right side of the c
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|The amount in percentage points of the canvas's width that you want remaining after the canvas is cropped. Entering 0.9 as the increment crops ten percent of the canvas's width from the right. Entering 0.1 crops ninety percent of the canvas's width from the right.|
diff --git a/api/Word.Shape.CanvasCropTop.md b/api/Word.Shape.CanvasCropTop.md
index 68bf9669e80..50767fe7311 100644
--- a/api/Word.Shape.CanvasCropTop.md
+++ b/api/Word.Shape.CanvasCropTop.md
@@ -27,7 +27,7 @@ Crops a percentage of the height of a drawing canvas from the top of the canvas.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|The amount in percentage points of a canvas's height that you want remaining after the canvas is cropped. Entering 0.9 as the increment crops ten percent of the canvas's height from the top. Entering 0.1 crops ninety percent of the canvas's height from the top.|
diff --git a/api/Word.Shape.Delete.md b/api/Word.Shape.Delete.md
index 204c54eed85..da2286e98be 100644
--- a/api/Word.Shape.Delete.md
+++ b/api/Word.Shape.Delete.md
@@ -27,7 +27,7 @@ Deletes the specified shape node.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The number of the shape node to delete.|
diff --git a/api/Word.Shape.Flip.md b/api/Word.Shape.Flip.md
index 77d2b10fff5..93ddb063dc2 100644
--- a/api/Word.Shape.Flip.md
+++ b/api/Word.Shape.Flip.md
@@ -27,7 +27,7 @@ Flips a shape horizontally or vertically.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FlipCmd_|Required| **MsoFlipCmd**|The flip orientation.|
diff --git a/api/Word.Shape.IncrementLeft.md b/api/Word.Shape.IncrementLeft.md
index ffb259e135c..e480991d960 100644
--- a/api/Word.Shape.IncrementLeft.md
+++ b/api/Word.Shape.IncrementLeft.md
@@ -27,7 +27,7 @@ Moves the specified shape horizontally by the specified number of points.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|Specifies how far the shape is to be moved horizontally, in points. A positive value moves the shape to the right; a negative value moves it to the left.|
diff --git a/api/Word.Shape.IncrementRotation.md b/api/Word.Shape.IncrementRotation.md
index d0fa3c251cc..a5661407280 100644
--- a/api/Word.Shape.IncrementRotation.md
+++ b/api/Word.Shape.IncrementRotation.md
@@ -27,7 +27,7 @@ Changes the rotation of the specified shape around the z-axis by the specified n
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|Specifies how far the shape is to be rotated horizontally, in degrees. A positive value rotates the shape clockwise; a negative value rotates it counterclockwise.|
diff --git a/api/Word.Shape.IncrementTop.md b/api/Word.Shape.IncrementTop.md
index 3abbb630bcd..86422494a2e 100644
--- a/api/Word.Shape.IncrementTop.md
+++ b/api/Word.Shape.IncrementTop.md
@@ -27,7 +27,7 @@ Moves the specified shape vertically by the specified number of points.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|Specifies how far the shape object is to be moved vertically, in points. A positive value moves the shape down; a negative value moves it up.|
diff --git a/api/Word.Shape.ScaleHeight.md b/api/Word.Shape.ScaleHeight.md
index 12b85393a84..1902bd93931 100644
--- a/api/Word.Shape.ScaleHeight.md
+++ b/api/Word.Shape.ScaleHeight.md
@@ -27,7 +27,7 @@ Scales the height of the shape by a specified factor.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Factor_|Required| **Single**|Specifies the ratio between the height of the shape after you resize it and the current or original height. For example, to make a rectangle 50 percent larger, specify 1.5 for this argument.|
| _RelativeToOriginalSize_|Required| **MsoTriState**| **True** to scale the shape relative to its original size. **False** to scale it relative to its current size. You can specify **True** for this argument only if the specified shape is a picture or an OLE object.|
diff --git a/api/Word.Shape.ScaleWidth.md b/api/Word.Shape.ScaleWidth.md
index 5273a6b13ca..2818141ebc4 100644
--- a/api/Word.Shape.ScaleWidth.md
+++ b/api/Word.Shape.ScaleWidth.md
@@ -27,7 +27,7 @@ Scales the width of the shape by a specified factor.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Factor_|Required| **Single**|Specifies the ratio between the width of the shape after you resize it and the current or original width. For example, to make a rectangle 50 percent larger, specify 1.5 for this argument.|
| _RelativeToOriginalSize_|Required| **MsoTriState**| **True** to scale the shape relative to its original size. **False** to scale it relative to its current size. You can specify **True** for this argument only if the specified shape is a picture or an OLE object.|
diff --git a/api/Word.Shape.Select.md b/api/Word.Shape.Select.md
index 4e9506cd447..38c38cbc8ff 100644
--- a/api/Word.Shape.Select.md
+++ b/api/Word.Shape.Select.md
@@ -27,7 +27,7 @@ Selects the specified shape.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Replace_|Optional| **Variant**|If adding a shape, **True** replaces the selection. **False** adds the new shape to the selection.|
diff --git a/api/Word.Shape.Ungroup.md b/api/Word.Shape.Ungroup.md
index 1e9b6857ace..1098e303843 100644
--- a/api/Word.Shape.Ungroup.md
+++ b/api/Word.Shape.Ungroup.md
@@ -23,7 +23,7 @@ Ungroups any grouped shapes in the specified shape.
_expression_ Required. A variable that represents a '[Shape](Word.Shape.md)' object.
-### Return Value
+### Return value
ShapeRange
diff --git a/api/Word.Shape.ZOrder.md b/api/Word.Shape.ZOrder.md
index 2df97840ca3..eb80ef543fc 100644
--- a/api/Word.Shape.ZOrder.md
+++ b/api/Word.Shape.ZOrder.md
@@ -27,11 +27,11 @@ Moves the specified shape in front of or behind other shapes in the collection (
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ZOrderCmd_|Required| **MsoZOrderCmd**|Specifies where to move the specified shape relative to the other shapes.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.ShapeNodes.Delete.md b/api/Word.ShapeNodes.Delete.md
index a88203bcc5d..06d15461e4b 100644
--- a/api/Word.ShapeNodes.Delete.md
+++ b/api/Word.ShapeNodes.Delete.md
@@ -27,7 +27,7 @@ Deletes the specified shape node.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The number within the collection of shape nodes of the shape node to delete.|
diff --git a/api/Word.ShapeNodes.Insert.md b/api/Word.ShapeNodes.Insert.md
index 5b48614a796..5332f6e536a 100644
--- a/api/Word.ShapeNodes.Insert.md
+++ b/api/Word.ShapeNodes.Insert.md
@@ -27,7 +27,7 @@ Inserts a node into a freeform shape.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The number of the shape node after which to insert a new node.|
| _SegmentType_|Required| **MsoSegmentType**|The type of line that connects the inserted node to the neighboring nodes.|
diff --git a/api/Word.ShapeNodes.Item.md b/api/Word.ShapeNodes.Item.md
index 178cae90b09..17458bc006a 100644
--- a/api/Word.ShapeNodes.Item.md
+++ b/api/Word.ShapeNodes.Item.md
@@ -27,11 +27,11 @@ Returns an individual **ShapeNode** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
ShapeNode
diff --git a/api/Word.ShapeNodes.SetEditingType.md b/api/Word.ShapeNodes.SetEditingType.md
index ca295bc8562..a4f8cf170dd 100644
--- a/api/Word.ShapeNodes.SetEditingType.md
+++ b/api/Word.ShapeNodes.SetEditingType.md
@@ -27,7 +27,7 @@ Sets the editing type of the node specified by Index. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The node whose editing type is to be set.|
| _EditingType_|Required| **MsoEditingType**|The editing property of the vertex.|
diff --git a/api/Word.ShapeNodes.SetPosition.md b/api/Word.ShapeNodes.SetPosition.md
index 8369e621cba..b7fe4e3c744 100644
--- a/api/Word.ShapeNodes.SetPosition.md
+++ b/api/Word.ShapeNodes.SetPosition.md
@@ -27,7 +27,7 @@ Sets the location of the node specified by Index.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The node whose position is to be set.|
| _X1_|Required| **Single**|The position (in points) of the new node relative to the upper-left corner of the document.|
diff --git a/api/Word.ShapeNodes.SetSegmentType.md b/api/Word.ShapeNodes.SetSegmentType.md
index 1e803e8865a..2e6b94087fe 100644
--- a/api/Word.ShapeNodes.SetSegmentType.md
+++ b/api/Word.ShapeNodes.SetSegmentType.md
@@ -27,7 +27,7 @@ Sets the segment type of the segment that follows the node specified by Index.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The node whose segment type is to be set.|
| _SegmentType_|Required| **MsoSegmentType**|Specifies if the segment is straight or curved.|
diff --git a/api/Word.ShapeRange.Align.md b/api/Word.ShapeRange.Align.md
index 305f2b282e3..0eafe9bee95 100644
--- a/api/Word.ShapeRange.Align.md
+++ b/api/Word.ShapeRange.Align.md
@@ -27,7 +27,7 @@ Aligns the shapes in the specified range of shapes.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Align_|Required| **MsoAlignCmd**|Specifies the way the shapes in the specified shape range are to be aligned.|
| _RelativeTo_|Required| **Long**| **True** to align shapes relative to the edge of the document. **False** to align shapes relative to one another.|
diff --git a/api/Word.ShapeRange.CanvasCropBottom.md b/api/Word.ShapeRange.CanvasCropBottom.md
index 00ed1097d22..19d403f846c 100644
--- a/api/Word.ShapeRange.CanvasCropBottom.md
+++ b/api/Word.ShapeRange.CanvasCropBottom.md
@@ -27,7 +27,7 @@ Crops a percentage of the height of a drawing canvas from the bottom of the canv
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|The amount in percentage points of a drawing canvas's height that you want remaining after the canvas is cropped. Entering 0.9 as the increment crops ten percent of the canvas's height from the bottom. Entering 0.1 crops ninety percent of the canvas's height from the bottom.|
diff --git a/api/Word.ShapeRange.CanvasCropLeft.md b/api/Word.ShapeRange.CanvasCropLeft.md
index 5243342879d..4251b4ba41d 100644
--- a/api/Word.ShapeRange.CanvasCropLeft.md
+++ b/api/Word.ShapeRange.CanvasCropLeft.md
@@ -27,7 +27,7 @@ Crops a percentage of the width of a drawing canvas from the left side of the ca
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|The amount in percentage points of the drawing canvas's width that you want remaining after the canvas is cropped. Entering 0.9 as the increment crops ten percent of the canvas's width from the left. Entering 0.1 crops ninety percent of the canvas's width from the left.|
diff --git a/api/Word.ShapeRange.CanvasCropRight.md b/api/Word.ShapeRange.CanvasCropRight.md
index 72051ca8da3..7c0bd2f53cd 100644
--- a/api/Word.ShapeRange.CanvasCropRight.md
+++ b/api/Word.ShapeRange.CanvasCropRight.md
@@ -27,7 +27,7 @@ Crops a percentage of the width of a drawing canvas from the right side of the c
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|The amount in percentage points of the canvas's width that you want remaining after the canvas is cropped. Entering 0.9 as the increment crops ten percent of the canvas's width from the right. Entering 0.1 crops ninety percent of the canvas's width from the right.|
diff --git a/api/Word.ShapeRange.CanvasCropTop.md b/api/Word.ShapeRange.CanvasCropTop.md
index 5943d451653..eecbf2a2424 100644
--- a/api/Word.ShapeRange.CanvasCropTop.md
+++ b/api/Word.ShapeRange.CanvasCropTop.md
@@ -27,7 +27,7 @@ Crops a percentage of the height of a drawing canvas from the top of the canvas.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|The amount in percentage points of a canvas's height that you want remaining after the canvas is cropped. Entering 0.9 as the increment crops ten percent of the canvas's height from the top. Entering 0.1 crops ninety percent of the canvas's height from the top.|
diff --git a/api/Word.ShapeRange.ConvertToInlineShape.md b/api/Word.ShapeRange.ConvertToInlineShape.md
index 7cd5161d222..8dcd6e216c2 100644
--- a/api/Word.ShapeRange.ConvertToInlineShape.md
+++ b/api/Word.ShapeRange.ConvertToInlineShape.md
@@ -23,7 +23,7 @@ Converts the specified shape in the drawing layer of a document to an inline sha
_expression_ Required. A variable that represents a '[ShapeRange](Word.shaperange.md)' object.
-### Return Value
+### Return value
**[InlineShape](Word.InlineShape.md)**
diff --git a/api/Word.ShapeRange.Distribute.md b/api/Word.ShapeRange.Distribute.md
index 3826f5a59cd..bb1edfb1cba 100644
--- a/api/Word.ShapeRange.Distribute.md
+++ b/api/Word.ShapeRange.Distribute.md
@@ -27,7 +27,7 @@ Evenly distributes the shapes in the specified range of shapes. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Distribute_|Required| **MsoDistributeCmd**|Specifies whether to distribute shapes horizontally or vertically.|
| _RelativeTo_|Required| **Long**| **True** to distribute the shapes evenly over the entire horizontal or vertical space on the page. **False** to distribute them within the horizontal or vertical space that the range of shapes originally occupies.|
diff --git a/api/Word.ShapeRange.Flip.md b/api/Word.ShapeRange.Flip.md
index cc1b2bb5faa..9f41040885d 100644
--- a/api/Word.ShapeRange.Flip.md
+++ b/api/Word.ShapeRange.Flip.md
@@ -27,7 +27,7 @@ Flips a shape horizontally or vertically.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FlipCmd_|Required| **MsoFlipCmd**|The flip orientation.|
diff --git a/api/Word.ShapeRange.IncrementLeft.md b/api/Word.ShapeRange.IncrementLeft.md
index 470817fcdcc..6ae0f8b9b46 100644
--- a/api/Word.ShapeRange.IncrementLeft.md
+++ b/api/Word.ShapeRange.IncrementLeft.md
@@ -27,7 +27,7 @@ Moves the specified shape horizontally by the specified number of points.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|Specifies how far the shape is to be moved horizontally, in points. A positive value moves the shape to the right; a negative value moves it to the left.|
diff --git a/api/Word.ShapeRange.IncrementRotation.md b/api/Word.ShapeRange.IncrementRotation.md
index 825fe6dd984..f765e321d2f 100644
--- a/api/Word.ShapeRange.IncrementRotation.md
+++ b/api/Word.ShapeRange.IncrementRotation.md
@@ -27,7 +27,7 @@ Changes the rotation of the specified shape around the z-axis by the specified n
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|Specifies how far the shape is to be rotated horizontally, in degrees. A positive value rotates the shape clockwise; a negative value rotates it counterclockwise.|
diff --git a/api/Word.ShapeRange.IncrementTop.md b/api/Word.ShapeRange.IncrementTop.md
index 546f3df7e50..435066a04be 100644
--- a/api/Word.ShapeRange.IncrementTop.md
+++ b/api/Word.ShapeRange.IncrementTop.md
@@ -27,7 +27,7 @@ Moves the specified shape vertically by the specified number of points.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|Specifies how far the shape object is to be moved vertically, in points. A positive value moves the shape down; a negative value moves it up.|
diff --git a/api/Word.ShapeRange.Item.md b/api/Word.ShapeRange.Item.md
index e6aaf9fc240..96e4b97fb38 100644
--- a/api/Word.ShapeRange.Item.md
+++ b/api/Word.ShapeRange.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Shape** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
Shape
diff --git a/api/Word.ShapeRange.ScaleHeight.md b/api/Word.ShapeRange.ScaleHeight.md
index 2273d322361..3116be3846e 100644
--- a/api/Word.ShapeRange.ScaleHeight.md
+++ b/api/Word.ShapeRange.ScaleHeight.md
@@ -27,7 +27,7 @@ Scales the height of a range of shapes by a specified factor.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Factor_|Required| **Single**|Specifies the ratio between the height of the shape after you resize it and the current or original height. For example, to make a rectangle 50 percent larger, specify 1.5 for this argument.|
| _RelativeToOriginalSize_|Required| **MsoTriState**| **True** to scale the shape relative to its original size. **False** to scale it relative to its current size. You can specify **True** for this argument only if the specified shape is a picture or an OLE object.|
diff --git a/api/Word.ShapeRange.ScaleWidth.md b/api/Word.ShapeRange.ScaleWidth.md
index 91a6f126132..565509a9fbd 100644
--- a/api/Word.ShapeRange.ScaleWidth.md
+++ b/api/Word.ShapeRange.ScaleWidth.md
@@ -27,7 +27,7 @@ Scales the width of a shape by a specified factor.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Factor_|Required| **Single**|Specifies the ratio between the width of the shape after you resize it and the current or original width. For example, to make a rectangle 50 percent larger, specify 1.5 for this argument.|
| _RelativeToOriginalSize_|Required| **MsoTriState**| **True** to scale the shape relative to its original size. **False** to scale it relative to its current size. You can specify **True** for this argument only if the specified shape is a picture or an OLE object.|
diff --git a/api/Word.ShapeRange.Select.md b/api/Word.ShapeRange.Select.md
index 4eacaa4b295..e9807bf7f02 100644
--- a/api/Word.ShapeRange.Select.md
+++ b/api/Word.ShapeRange.Select.md
@@ -27,7 +27,7 @@ Selects the specified range of shapes.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Replace_|Optional| **Variant**|If adding a shape, **True** replaces the selection. **False** adds the new shape to the selection.|
diff --git a/api/Word.ShapeRange.Ungroup.md b/api/Word.ShapeRange.Ungroup.md
index be5c9331074..b54cc5bb3b0 100644
--- a/api/Word.ShapeRange.Ungroup.md
+++ b/api/Word.ShapeRange.Ungroup.md
@@ -23,7 +23,7 @@ Ungroups any grouped shapes in the specified range of shapes, disassembles pictu
_expression_ Required. A variable that represents a '[ShapeRange](Word.shaperange.md)' object.
-### Return Value
+### Return value
ShapeRange
diff --git a/api/Word.ShapeRange.ZOrder.md b/api/Word.ShapeRange.ZOrder.md
index e4ec64b3fcd..f6f90b3cfbc 100644
--- a/api/Word.ShapeRange.ZOrder.md
+++ b/api/Word.ShapeRange.ZOrder.md
@@ -27,11 +27,11 @@ Moves the specified shape range in front of or behind other shapes in the collec
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ZOrderCmd_|Required| **MsoZOrderCmd**|Specifies where to move the specified shape range relative to the other shapes.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.Shapes.AddCallout.md b/api/Word.Shapes.AddCallout.md
index d6bcd5ec7bf..fd831f5541d 100644
--- a/api/Word.Shapes.AddCallout.md
+++ b/api/Word.Shapes.AddCallout.md
@@ -27,7 +27,7 @@ Adds a borderless line callout to a drawing canvas. .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **MsoCalloutType**|The type of callout.|
| _Left_|Required| **Single**|The position, in points, of the left edge of the callout's bounding box.|
@@ -35,7 +35,7 @@ Adds a borderless line callout to a drawing canvas. .
| _Width_|Required| **Single**|The width, in points, of the callout's bounding box.|
| _Height_|Required| **Single**|The height, in points, of the callout's bounding box.|
-### Return Value
+### Return value
**[Shape](Word.Shape.md)**
diff --git a/api/Word.Shapes.AddCanvas.md b/api/Word.Shapes.AddCanvas.md
index 11cf2f94df2..e98b6e4a6a1 100644
--- a/api/Word.Shapes.AddCanvas.md
+++ b/api/Word.Shapes.AddCanvas.md
@@ -27,7 +27,7 @@ Adds a drawing canvas to a document. Returns a **[Shape](Word.Shape.md)** objec
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Left_|Required| **Single**|The position, in points, of the left edge of the drawing canvas, relative to the anchor.|
| _Top_|Required| **Single**|The position, in points, of the top edge of the drawing canvas, relative to the anchor.|
@@ -35,7 +35,7 @@ Adds a drawing canvas to a document. Returns a **[Shape](Word.Shape.md)** objec
| _Height_|Required| **Single**|The height, in points, of the drawing canvas.|
| _Anchor_|Optional| **Variant**|A **[Range](Word.Range.md)** object that represents the text to which the canvas is bound. If Anchor is specified, the anchor is positioned at the beginning of the first paragraph in the anchoring range. If this argument is omitted, the anchoring range is selected automatically and the canvas is positioned relative to the top and left edges of the page.|
-### Return Value
+### Return value
Shape
diff --git a/api/Word.Shapes.AddCurve.md b/api/Word.Shapes.AddCurve.md
index 0a97b750a64..03022e211fe 100644
--- a/api/Word.Shapes.AddCurve.md
+++ b/api/Word.Shapes.AddCurve.md
@@ -27,11 +27,11 @@ Returns a **[Shape](Word.Shape.md)** object that represents a B?zier curve in a
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SafeArrayOfPoints_|Required| **Variant**|An array of coordinate pairs that specifies the vertices and control points of the curve. The first point you specify is the starting vertex, and the next two points are control points for the first B?zier segment. Then, for each additional segment of the curve, you specify a vertex and two control points. The last point you specify is the ending vertex for the curve. Note that you must always specify 3n + 1 points, where n is the number of segments in the curve.|
-### Return Value
+### Return value
**[Shape](Word.Shape.md)**
diff --git a/api/Word.Shapes.AddLabel.md b/api/Word.Shapes.AddLabel.md
index 84f01095834..3c46ad16002 100644
--- a/api/Word.Shapes.AddLabel.md
+++ b/api/Word.Shapes.AddLabel.md
@@ -27,7 +27,7 @@ Adds a text label to a drawing canvas.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Orientation_|Required| **MsoTextOrientation**|The orientation of the text.|
| _Left_|Required| **Single**|The position, measured in points, of the left edge of the label relative to the left edge of the drawing canvas.|
@@ -35,7 +35,7 @@ Adds a text label to a drawing canvas.
| _Width_|Required| **Single**|The width of the label, in points.|
| _Height_|Required| **Single**|The height of the label, in points.|
-### Return Value
+### Return value
**Shapes**
diff --git a/api/Word.Shapes.AddLine.md b/api/Word.Shapes.AddLine.md
index 5e328738595..532d2eee864 100644
--- a/api/Word.Shapes.AddLine.md
+++ b/api/Word.Shapes.AddLine.md
@@ -27,14 +27,14 @@ Adds a line to a drawing canvas.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _BeginX_|Required| **Single**|The horizontal position, measured in points, of the line's starting point, relative to the drawing canvas.|
| _BeginY_|Required| **Single**|The vertical position, measured in points, of the line's starting point, relative to the drawing canvas.|
| _EndX_|Required| **Single**|The horizontal position, measured in points, of the line's endpoint, relative to the drawing canvas.|
| _EndY_|Required| **Single**|The vertical position, measured in points, of the line's endpoint, relative to the drawing canvas.|
-### Return Value
+### Return value
**[Shape](Word.Shape.md)**
diff --git a/api/Word.Shapes.AddOLEControl.md b/api/Word.Shapes.AddOLEControl.md
index f4793667e75..9f3d4568cf7 100644
--- a/api/Word.Shapes.AddOLEControl.md
+++ b/api/Word.Shapes.AddOLEControl.md
@@ -27,12 +27,12 @@ Creates an ActiveX control (formerly known as an OLE control). Returns the **In
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ClassType_|Optional| **Variant**|The programmatic identifier for the ActiveX control to be created.|
| _Range_|Optional| **Variant**|The range where the ActiveX control will be placed in the text. The ActiveX control replaces the range, if the range isn't collapsed. If this argument is omitted, the Active X control is placed automatically.|
-### Return Value
+### Return value
InlineShape
diff --git a/api/Word.Shapes.AddOLEObject.md b/api/Word.Shapes.AddOLEObject.md
index 78c16e89e1c..fe863ec4d32 100644
--- a/api/Word.Shapes.AddOLEObject.md
+++ b/api/Word.Shapes.AddOLEObject.md
@@ -27,7 +27,7 @@ Creates an OLE object. Returns the **InlineShape** object that represents the n
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ClassType_|Optional| **Variant**|The name of the application used to activate the specified OLE object.|
| _FileName_|Optional| **Variant**|The file from which the object is to be created. If this argument is omitted, the current folder is used. You must specify either the ClassType or FileName argument for the object, but not both.|
@@ -38,7 +38,7 @@ Creates an OLE object. Returns the **InlineShape** object that represents the n
| _IconLabel_|Optional| **Variant**|A label (caption) to be displayed beneath the icon.|
| _Range_|Optional| **Variant**|The range where the OLE object will be placed in the text. The OLE object replaces the range, unless the range is collapsed. If this argument is omitted, the object is placed automatically.|
-### Return Value
+### Return value
InlineShape
diff --git a/api/Word.Shapes.AddPicture.md b/api/Word.Shapes.AddPicture.md
index 674d3755a4a..3d1f33d0895 100644
--- a/api/Word.Shapes.AddPicture.md
+++ b/api/Word.Shapes.AddPicture.md
@@ -27,7 +27,7 @@ Adds a picture to a drawing canvas. Returns a **Shape** object that represents
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The path and file name of the picture.|
| _LinkToFile_|Optional| **Variant**| **True** to link the picture to the file from which it was created. **False** to make the picture an independent copy of the file. The default value is **False** .|
@@ -37,7 +37,7 @@ Adds a picture to a drawing canvas. Returns a **Shape** object that represents
| _Width_|Optional| **Variant**|The width of the picture, in points.|
| _Height_|Optional| **Variant**|The height of the picture, in points.|
-### Return Value
+### Return value
Shape
diff --git a/api/Word.Shapes.AddPolyline.md b/api/Word.Shapes.AddPolyline.md
index 81a9ac15991..c35943eb197 100644
--- a/api/Word.Shapes.AddPolyline.md
+++ b/api/Word.Shapes.AddPolyline.md
@@ -27,7 +27,7 @@ Adds an open or closed polygon to a drawing canvas. Returns a **Shape** object
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SafeArrayOfPoints_|Required| **Variant**|An array of coordinate pairs that specifies the polyline drawing's vertices.|
diff --git a/api/Word.Shapes.AddShape.md b/api/Word.Shapes.AddShape.md
index 5c200dad35d..6f0e94dd9e3 100644
--- a/api/Word.Shapes.AddShape.md
+++ b/api/Word.Shapes.AddShape.md
@@ -27,7 +27,7 @@ Adds an AutoShape to a document. Returns a **[Shape](Word.Shape.md)** object th
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **Long**|The type of shape to be returned. Can be any **MsoAutoShapeType** constant.|
| _Left_|Required| **Single**|The position, measured in points, of the left edge of the AutoShape.|
@@ -35,7 +35,7 @@ Adds an AutoShape to a document. Returns a **[Shape](Word.Shape.md)** object th
| _Width_|Required| **Single**|The width, measured in points, of the AutoShape.|
| _Height_|Required| **Single**|The height, measured in points, of the AutoShape.|
-### Return Value
+### Return value
**Shape**
diff --git a/api/Word.Shapes.AddSmartArt.md b/api/Word.Shapes.AddSmartArt.md
index 58138a87b33..ef7a2565da9 100644
--- a/api/Word.Shapes.AddSmartArt.md
+++ b/api/Word.Shapes.AddSmartArt.md
@@ -27,7 +27,7 @@ Inserts the specified SmartArt graphic into the active document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Layout_|Required| **[SMARTARTLAYOUT]**|A [SmartArtLayout](./Office.SmartArtLayout.md) object that specifies the layout for the SmartArt graphic.|
| _Left_|Optional| **Variant**|The distance, in points, from the left edge of the slide to the left edge of the SmartArt graphic.|
@@ -36,7 +36,7 @@ Inserts the specified SmartArt graphic into the active document.
| _Height_|Optional| **Variant**|The height of the SmartArt graphic.|
| _Anchor_|Optional| **Variant**|A [Range](Word.Range.md) object that represents the text to which the SmartArt graphic is bound. If _Anchor_ is specified, the anchor is positioned at the beginning of the first paragraph in the anchoring range. If this argument is omitted, the anchoring range is selected automatically and the SmartArt graphic is positioned relative to the top and left edges of the page.|
-### Return Value
+### Return value
[Shape](Word.Shape.md)
diff --git a/api/Word.Shapes.AddTextEffect.md b/api/Word.Shapes.AddTextEffect.md
index 82e74f9b8e6..c9719d4ec02 100644
--- a/api/Word.Shapes.AddTextEffect.md
+++ b/api/Word.Shapes.AddTextEffect.md
@@ -27,7 +27,7 @@ Adds a WordArt shape to a drawing canvas. Returns a **Shape** object that repre
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PresetTextEffect_|Required| **MsoPresetTextEffect**|A preset text effect. The values of the **MsoPresetTextEffect** constants correspond to the formats listed in the **WordArt Gallery** dialog box (numbered from left to right and from top to bottom).|
| _Text_|Required| **String**|The text in the WordArt.|
diff --git a/api/Word.Shapes.AddTextbox.md b/api/Word.Shapes.AddTextbox.md
index e5cf7650461..e51163ee16b 100644
--- a/api/Word.Shapes.AddTextbox.md
+++ b/api/Word.Shapes.AddTextbox.md
@@ -27,7 +27,7 @@ Adds a text box to a drawing canvas.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Orientation_|Required| **MsoTextOrientation**|The orientation of the text. Some of these constants may not be available to you, depending on the language support (U.S. English, for example) that you?ve selected or installed.|
| _Left_|Required| **Single**|The position, measured in points, of the left edge of the text box.|
@@ -35,7 +35,7 @@ Adds a text box to a drawing canvas.
| _Width_|Required| **Single**|The width, measured in points, of the text box.|
| _Height_|Required| **Single**|The height, measured in points, of the text box.|
-### Return Value
+### Return value
**Shape**
diff --git a/api/Word.Shapes.BuildFreeform.md b/api/Word.Shapes.BuildFreeform.md
index 1b824ac0286..ce5c3179260 100644
--- a/api/Word.Shapes.BuildFreeform.md
+++ b/api/Word.Shapes.BuildFreeform.md
@@ -27,13 +27,13 @@ Builds a freeform object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _EditingType_|Required| **MsoEditingType**|The editing property of the first node.|
| _X1_|Required| **Single**|The position (in points) of the first node in the freeform drawing relative to the left edge of the document.|
| _Y1_|Required| **Single**|The position (in points) of the first node in the freeform drawing relative to the top edge of the document.|
-### Return Value
+### Return value
**[FreeformBuilder](Word.FreeformBuilder.md)**
diff --git a/api/Word.Shapes.Item.md b/api/Word.Shapes.Item.md
index 421199d2e00..7231ca2f1ea 100644
--- a/api/Word.Shapes.Item.md
+++ b/api/Word.Shapes.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Shape** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
Shape
diff --git a/api/Word.Shapes.Range.md b/api/Word.Shapes.Range.md
index 0a71446a4e4..a4e2a988121 100644
--- a/api/Word.Shapes.Range.md
+++ b/api/Word.Shapes.Range.md
@@ -27,11 +27,11 @@ Returns a **ShapeRange** object that represents the shapes within a range.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|Specifies which shapes are to be included in the specified range. Can be an integer that specifies the index number of a shape within the **Shapes** collection, a string that specifies the name of a shape, or a array that contains integers or strings.|
-### Return Value
+### Return value
ShapeRange
diff --git a/api/Word.Source.Field.md b/api/Word.Source.Field.md
index 5d525090d44..9fd406f1dc7 100644
--- a/api/Word.Source.Field.md
+++ b/api/Word.Source.Field.md
@@ -27,7 +27,7 @@ Returns a **String** that represents the value of a field in a bibliography sou
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|Specifies the name of the field for which to retrieve the value.|
diff --git a/api/Word.Sources.Add.md b/api/Word.Sources.Add.md
index 5035faadc4b..1a57fdfd0f4 100644
--- a/api/Word.Sources.Add.md
+++ b/api/Word.Sources.Add.md
@@ -27,7 +27,7 @@ Add a new source to the sources listed in the **Source Manager** dialog box.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Data_|Required| **String**|An XML string that represents the field values for the new source.|
diff --git a/api/Word.Sources.Item.md b/api/Word.Sources.Item.md
index 45797e99814..5d7d8a325a7 100644
--- a/api/Word.Sources.Item.md
+++ b/api/Word.Sources.Item.md
@@ -27,11 +27,11 @@ Returns a **Source** object that represents the specified item in the collectio
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|Specifies the ordinal position of the object within the collection.|
-### Return Value
+### Return value
Source
diff --git a/api/Word.SpellingSuggestions.Item.md b/api/Word.SpellingSuggestions.Item.md
index bface3041c6..88ebeb5b0a8 100644
--- a/api/Word.SpellingSuggestions.Item.md
+++ b/api/Word.SpellingSuggestions.Item.md
@@ -27,11 +27,11 @@ Returns an individual **SpellingSuggestion** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
SpellingSuggestion
diff --git a/api/Word.StoryRanges.Item.md b/api/Word.StoryRanges.Item.md
index 022e2e3c8d6..e166eed75ce 100644
--- a/api/Word.StoryRanges.Item.md
+++ b/api/Word.StoryRanges.Item.md
@@ -27,11 +27,11 @@ Returns a single story of a range or selection as a **Range** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **WdStoryType**|The specified story type.|
-### Return Value
+### Return value
Range
diff --git a/api/Word.Style.LinkToListTemplate.md b/api/Word.Style.LinkToListTemplate.md
index 4563c9f752f..d6ce01b9182 100644
--- a/api/Word.Style.LinkToListTemplate.md
+++ b/api/Word.Style.LinkToListTemplate.md
@@ -27,7 +27,7 @@ Links the specified style to a list template so that the style's formatting can
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ListTemplate_|Required| **ListTemplate object**|The list template that the style is to be linked to.|
| _ListLevelNumber_|Optional| **Variant**|An integer corresponding to the list level that the style is to be linked to. If this argument is omitted, then the level of the style is used.|
diff --git a/api/Word.StyleSheet.Move.md b/api/Word.StyleSheet.Move.md
index 1a2e86e87fc..fbda958578a 100644
--- a/api/Word.StyleSheet.Move.md
+++ b/api/Word.StyleSheet.Move.md
@@ -27,7 +27,7 @@ Moves a style sheet's order of precedence.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Precedence_|Required| **WdStyleSheetPrecedence**|The precedence level.|
diff --git a/api/Word.StyleSheets.Add.md b/api/Word.StyleSheets.Add.md
index ea1953b7339..0a4bcbf8053 100644
--- a/api/Word.StyleSheets.Add.md
+++ b/api/Word.StyleSheets.Add.md
@@ -27,14 +27,14 @@ Returns a **StyleSheet** object that represents a new style sheet added to a We
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The path and file name of the cascading style sheet.|
| _LinkType_|Required| **WdStyleSheetLinkType**|Indicates whether the style sheet should be added as a link or imported into the Web document.|
| _Title_|Required| **String**|The name of the style sheet.|
| _Precedence_|Required| **WdStyleSheetPrecedence**|Indicates the level of importance compared with other cascading style sheets attached to the Web document.|
-### Return Value
+### Return value
StyleSheet
diff --git a/api/Word.StyleSheets.Item.md b/api/Word.StyleSheets.Item.md
index 5dedeb78eba..7b1d3845b2d 100644
--- a/api/Word.StyleSheets.Item.md
+++ b/api/Word.StyleSheets.Item.md
@@ -27,11 +27,11 @@ Returns an individual **StyleSheet** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
StyleSheet
diff --git a/api/Word.Styles.Add.md b/api/Word.Styles.Add.md
index 539bc58de80..69e433f7992 100644
--- a/api/Word.Styles.Add.md
+++ b/api/Word.Styles.Add.md
@@ -27,12 +27,12 @@ Returns a **HeadingStyle** object that represents a new heading style added to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Style_|Required| **Variant**|The style you want to add. You can specify this argument by using either the string name for the style or a **Style** object.|
| _Level_|Required| **Integer**|A number that represents the level of the heading.|
-### Return Value
+### Return value
HeadingStyle
diff --git a/api/Word.Styles.Item.md b/api/Word.Styles.Item.md
index f1ecaf66f36..b599aab8770 100644
--- a/api/Word.Styles.Item.md
+++ b/api/Word.Styles.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Style** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
Style
diff --git a/api/Word.Subdocument.Open.md b/api/Word.Subdocument.Open.md
index 189857806a6..eb5578ce056 100644
--- a/api/Word.Subdocument.Open.md
+++ b/api/Word.Subdocument.Open.md
@@ -23,7 +23,7 @@ Opens the specified subdocument. Returns a **Document** object that represents
_expression_ Required. A variable that represents a '[Subdocument](Word.Subdocument.md)' object.
-### Return Value
+### Return value
Document
diff --git a/api/Word.Subdocument.Split.md b/api/Word.Subdocument.Split.md
index 813c9e264e9..d282f41402a 100644
--- a/api/Word.Subdocument.Split.md
+++ b/api/Word.Subdocument.Split.md
@@ -27,7 +27,7 @@ Divides an existing subdocument into two subdocuments at the same level in maste
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The range that, when the subdocument is split, becomes a separate subdocument.|
diff --git a/api/Word.Subdocuments.AddFromFile.md b/api/Word.Subdocuments.AddFromFile.md
index c37f64bff74..d5388fde4a1 100644
--- a/api/Word.Subdocuments.AddFromFile.md
+++ b/api/Word.Subdocuments.AddFromFile.md
@@ -27,7 +27,7 @@ Adds the specified subdocument to the master document at the start of the select
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The file name of the subdocument to be inserted into the master document.|
| _ConfirmConversions_|Optional| **Variant**| **True** to confirm file conversion in the **Convert File** dialog box if the file isn't in Word format.|
@@ -38,7 +38,7 @@ Adds the specified subdocument to the master document at the start of the select
| _WritePasswordDocument_|Optional| **Variant**|The password required to save changes to the document file if it is write-protected.|
| _WritePasswordTemplate_|Optional| **Variant**|The password required to save changes to the template attached to the subdocument if the template is write-protected.|
-### Return Value
+### Return value
Subdocument
diff --git a/api/Word.Subdocuments.AddFromRange.md b/api/Word.Subdocuments.AddFromRange.md
index 5accf25e649..56f44adb010 100644
--- a/api/Word.Subdocuments.AddFromRange.md
+++ b/api/Word.Subdocuments.AddFromRange.md
@@ -27,11 +27,11 @@ Creates one or more subdocuments from the text in the specified range and return
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The range used to create one or more subdocuments.|
-### Return Value
+### Return value
SubDocument
diff --git a/api/Word.Subdocuments.Item.md b/api/Word.Subdocuments.Item.md
index b6e58e7c396..aa02e7ad3ff 100644
--- a/api/Word.Subdocuments.Item.md
+++ b/api/Word.Subdocuments.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Subdocument** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Subdocument
diff --git a/api/Word.Subdocuments.Merge.md b/api/Word.Subdocuments.Merge.md
index e8eec4768de..f449e3b3315 100644
--- a/api/Word.Subdocuments.Merge.md
+++ b/api/Word.Subdocuments.Merge.md
@@ -27,7 +27,7 @@ Merges the specified subdocuments of a master document into a single subdocument
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FirstSubdocument_|Optional| **Variant**|The path and file name of the original document you want to merge revisions with.|
| _LastSubdocument_|Optional| **Variant**|The last subdocument in a range of subdocuments to be merged.|
diff --git a/api/Word.System.Connect.md b/api/Word.System.Connect.md
index b79a9125596..cdd43a309d9 100644
--- a/api/Word.System.Connect.md
+++ b/api/Word.System.Connect.md
@@ -27,7 +27,7 @@ Establishes a connection to a network drive.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Path_|Required| **String**|The path for the network drive (for example, "\\Project\Info").|
| _Drive_|Optional| **Variant**|A number corresponding to the letter you want to assign to the network drive, where 0 (zero) corresponds to the first available drive letter, 1 corresponds to the second available drive letter, and so on. If this argument is omitted, the next available letter is used.|
diff --git a/api/Word.System.PrivateProfileString.md b/api/Word.System.PrivateProfileString.md
index d907862f2ca..394bd2205f4 100644
--- a/api/Word.System.PrivateProfileString.md
+++ b/api/Word.System.PrivateProfileString.md
@@ -27,7 +27,7 @@ Returns or sets a string in a settings file or the Microsoft Windows registry. R
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _FileName_|Required| **String**|The file name for the settings file. If there is no path specified, the Windows folder is assumed.|
| _Section_|Required| **String**|The name of the section in the settings file that contains Key. In a Windows settings file, the section name appears between brackets before the associated keys (do not include the brackets with Section). If you are returning the value of an entry from the Windows registry, Section should be the complete path to the subkey, including the subtree (for example, "HKEY_CURRENT_USER\Software\Microsoft\Office\version\Word\Options").|
diff --git a/api/Word.TabStops.Add.md b/api/Word.TabStops.Add.md
index 490eddfd58b..f5f47c70198 100644
--- a/api/Word.TabStops.Add.md
+++ b/api/Word.TabStops.Add.md
@@ -27,13 +27,13 @@ Returns a **TabStop** object that represents a custom tab stop added to a docum
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Position_|Required| **Single**|The position of the tab stop (in points) relative to the left margin.|
| _Alignment_|Optional| **Variant**|The alignment of the tab stop. Can be one of the **WdTabAlignment** constants.|
| _Leader_|Optional| **Variant**|The type of leader for the tab stop. Can be one of the **WdTabLeader** constants. If this argument is omitted, **wdTabLeaderSpaces** is used.|
-### Return Value
+### Return value
TabStop
diff --git a/api/Word.TabStops.After.md b/api/Word.TabStops.After.md
index 372515e6f10..4245c909d0f 100644
--- a/api/Word.TabStops.After.md
+++ b/api/Word.TabStops.After.md
@@ -27,7 +27,7 @@ Returns the next **TabStop** object to the right of Position.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Position_|Required| **Single**|A location on the ruler, in points.|
diff --git a/api/Word.TabStops.Before.md b/api/Word.TabStops.Before.md
index 01f5689c331..76212a7712c 100644
--- a/api/Word.TabStops.Before.md
+++ b/api/Word.TabStops.Before.md
@@ -27,7 +27,7 @@ Returns the next **TabStop** object to the left of Position.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Position_|Required| **Single**|A location on the ruler, in points.|
diff --git a/api/Word.TabStops.Item.md b/api/Word.TabStops.Item.md
index 965d43b8e73..42171c7be53 100644
--- a/api/Word.TabStops.Item.md
+++ b/api/Word.TabStops.Item.md
@@ -27,11 +27,11 @@ Returns an individual **TabStop** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
TabStop
diff --git a/api/Word.Table.ApplyStyleDirectFormatting.md b/api/Word.Table.ApplyStyleDirectFormatting.md
index 8ddcb1b126d..0d41788d85b 100644
--- a/api/Word.Table.ApplyStyleDirectFormatting.md
+++ b/api/Word.Table.ApplyStyleDirectFormatting.md
@@ -27,7 +27,7 @@ Applies the specified style but maintains any formatting that a user directly ap
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _StyleName_|Required| **String**|The name of the style to apply.|
diff --git a/api/Word.Table.AutoFitBehavior.md b/api/Word.Table.AutoFitBehavior.md
index 7793458498d..ae802df85f0 100644
--- a/api/Word.Table.AutoFitBehavior.md
+++ b/api/Word.Table.AutoFitBehavior.md
@@ -27,7 +27,7 @@ Determines how Microsoft Word resizes a table when the AutoFit feature is used.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Behavior_|Required| **WdAutoFitBehavior**|How Word resizes the specified table with the AutoFit feature is used.|
diff --git a/api/Word.Table.AutoFormat.md b/api/Word.Table.AutoFormat.md
index 9d7e66dbd77..883692393ce 100644
--- a/api/Word.Table.AutoFormat.md
+++ b/api/Word.Table.AutoFormat.md
@@ -27,7 +27,7 @@ Applies a predefined look to a table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Format_|Optional| **Variant**|The format to apply. This parameter can be a **[WdTableFormat](Word.WdTableFormat.md)** constant, a **[WdTableFormatApply](Word.WdTableFormatApply.md)** constant, or a **TableStyle** object.|
| _ApplyBorders_|Optional| **Variant**| **True** to apply the border properties of the specified format. The default value is **True** .|
diff --git a/api/Word.Table.Cell.md b/api/Word.Table.Cell.md
index b76e99d2e17..d825505028f 100644
--- a/api/Word.Table.Cell.md
+++ b/api/Word.Table.Cell.md
@@ -27,12 +27,12 @@ Returns a **Cell** object that represents a cell in a table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Row_|Required| **Long**|The number of the row in the table to return. Can be an integer between 1 and the number of rows in the table.|
| _Column_|Required| **Long**|The number of the cell in the table to return. Can be an integer between 1 and the number of columns in the table.|
-### Return Value
+### Return value
Cell
diff --git a/api/Word.Table.ConvertToText.md b/api/Word.Table.ConvertToText.md
index c53c5da3987..6391103fedb 100644
--- a/api/Word.Table.ConvertToText.md
+++ b/api/Word.Table.ConvertToText.md
@@ -27,7 +27,7 @@ Converts a table to text and returns a **Range** object that represents the del
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Separator_|Optional| **Variant**|The character that delimits the converted columns (paragraph marks delimit the converted rows). Can be any **WdTableFieldSeparator** constants.|
| _NestedTables_|Optional| **Variant**| **True** if nested tables are converted to text. This argument is ignored if Separator is not **wdSeparateByParagraphs** . The default value is **True** .|
diff --git a/api/Word.Table.Sort.md b/api/Word.Table.Sort.md
index 22e59f9e98e..8960f32f441 100644
--- a/api/Word.Table.Sort.md
+++ b/api/Word.Table.Sort.md
@@ -27,7 +27,7 @@ Sorts the specified table.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ExcludeHeader_|Optional| **Variant**| **True** to exclude the first row from the sort operation. The default value is **False** .|
| _FieldNumber_|Optional| **Variant**|The first field by which to sort. Microsoft Word sorts by FieldNumber, then by FieldNumber2, and then by FieldNumber3.|
diff --git a/api/Word.Table.Split.md b/api/Word.Table.Split.md
index f2b47887056..7d91b09edde 100644
--- a/api/Word.Table.Split.md
+++ b/api/Word.Table.Split.md
@@ -27,11 +27,11 @@ Inserts an empty paragraph immediately above the specified row in the table, and
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _BeforeRow_|Required| **Variant**|The row that the table is to be split before. Can be a row number or a **Row** object.|
-### Return Value
+### Return value
Table
diff --git a/api/Word.TableStyle.Condition.md b/api/Word.TableStyle.Condition.md
index 28a33374043..a7f6992c1b3 100644
--- a/api/Word.TableStyle.Condition.md
+++ b/api/Word.TableStyle.Condition.md
@@ -27,7 +27,7 @@ Returns a **[ConditionalStyle](Word.ConditionalStyle.md)** object that represen
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ConditionCode_|Required| [**WdConditionCode**](Word.WdConditionCode.md)|The area of the table to which to apply the formatting.|
diff --git a/api/Word.Tables.Add.md b/api/Word.Tables.Add.md
index 3fd2a986000..47fbc846d3d 100644
--- a/api/Word.Tables.Add.md
+++ b/api/Word.Tables.Add.md
@@ -27,7 +27,7 @@ Returns a **Table** object that represents a new, blank table added to a docume
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The range where you want the table to appear. The table replaces the range, if the range isn't collapsed.|
| _NumRows_|Required| **Long**|The number of rows you want to include in the table.|
@@ -35,7 +35,7 @@ Returns a **Table** object that represents a new, blank table added to a docume
| _DefaultTableBehavior_|Optional| **Variant**|Sets a value that specifies whether Microsoft Word automatically resizes cells in tables to fit the cells? contents (AutoFit). Can be either of the following constants: **wdWord8TableBehavior** (AutoFit disabled) or **wdWord9TableBehavior** (AutoFit enabled). The default constant is **wdWord8TableBehavior** .|
| _AutoFitBehavior_|Optional| **Variant**|Sets the AutoFit rules for how Word sizes tables. Can be one of the **WdAutoFitBehavior** constants.|
-### Return Value
+### Return value
Table
diff --git a/api/Word.Tables.Item.md b/api/Word.Tables.Item.md
index 0f2626fc545..9fc5b03c192 100644
--- a/api/Word.Tables.Item.md
+++ b/api/Word.Tables.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Table** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Table
diff --git a/api/Word.TablesOfAuthorities.Add.md b/api/Word.TablesOfAuthorities.Add.md
index 6d879ab0819..1fef3bac348 100644
--- a/api/Word.TablesOfAuthorities.Add.md
+++ b/api/Word.TablesOfAuthorities.Add.md
@@ -27,7 +27,7 @@ Returns a **TableOfAuthorities** object that represents a table of authorities
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The range where you want the table of authorities to appear. The table of authorities replaces the range, if the range isn't collapsed.|
| _Category_|Optional| **Variant**|The category of entries you want to include in the table of authorities. Corresponds to the \c switch for a Table of Authorities (TOA) field. Values 0 through 16 correspond to the items listed in the **Category** box on the **Table of Authorities** tab in the **Index and Tables** dialog box (**Reference** command, **Insert** menu). The default value is 1.|
@@ -41,7 +41,7 @@ Returns a **TableOfAuthorities** object that represents a table of authorities
| _IncludeCategoryHeader_|Optional| **Variant**| **True** to have the category name for each group of entries appear in the table of authorities (for example, Cases). Corresponds to the \h switch for a Table of Authorities (TOA) field. If this argument is omitted, IncludeCategoryHeader is assumed to be **True** .|
| _PageNumberSeparator_|Optional| **Variant**|The characters (up to five) that separate individual page numbers within page references in the table of authorities. Corresponds to the \l switch for a Table of Authorities (TOA) field. If this argument is omitted, a comma and a space are used.|
-### Return Value
+### Return value
TableOfAuthorities
diff --git a/api/Word.TablesOfAuthorities.Item.md b/api/Word.TablesOfAuthorities.Item.md
index 42fd60a5bad..5983ea282b2 100644
--- a/api/Word.TablesOfAuthorities.Item.md
+++ b/api/Word.TablesOfAuthorities.Item.md
@@ -27,11 +27,11 @@ Returns an individual **TableOfAuthorities** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
TableOfAuthorities
diff --git a/api/Word.TablesOfAuthorities.MarkAllCitations.md b/api/Word.TablesOfAuthorities.MarkAllCitations.md
index 9885cab9974..afd83023ad6 100644
--- a/api/Word.TablesOfAuthorities.MarkAllCitations.md
+++ b/api/Word.TablesOfAuthorities.MarkAllCitations.md
@@ -27,7 +27,7 @@ Inserts a TA (Table of Authorities Entry) field after all instances of the **Sh
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShortCitation_|Required| **String**|The short citation for the entry as it will appear in the **Mark Citation** dialog box (**Insert** menu, **Index and Tables** command).|
| _LongCitation_|Optional| **Variant**|The long citation string for the entry as it will appear in the table of authorities.|
diff --git a/api/Word.TablesOfAuthorities.MarkCitation.md b/api/Word.TablesOfAuthorities.MarkCitation.md
index bccefde4a64..9ed569f1c5f 100644
--- a/api/Word.TablesOfAuthorities.MarkCitation.md
+++ b/api/Word.TablesOfAuthorities.MarkCitation.md
@@ -27,7 +27,7 @@ Inserts a TA (Table of Authorities Entry) field and returns the field as a **Fi
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range**|The location of the table of authorities entry. The TA field is inserted after Range.|
| _ShortCitation_|Required| **String**|The short citation for the entry as it will appear in the **Mark Citation** dialog box (**Insert** menu, **Index and Tables** command).|
diff --git a/api/Word.TablesOfAuthorities.NextCitation.md b/api/Word.TablesOfAuthorities.NextCitation.md
index 742604e68e7..2a9f6bf0c7b 100644
--- a/api/Word.TablesOfAuthorities.NextCitation.md
+++ b/api/Word.TablesOfAuthorities.NextCitation.md
@@ -27,7 +27,7 @@ Finds and selects the next instance of the text specified by the ShortCitation p
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ShortCitation_|Required| **String**|The text of the short citation.|
diff --git a/api/Word.TablesOfAuthoritiesCategories.Item.md b/api/Word.TablesOfAuthoritiesCategories.Item.md
index 900077de4b5..67f6b05f75d 100644
--- a/api/Word.TablesOfAuthoritiesCategories.Item.md
+++ b/api/Word.TablesOfAuthoritiesCategories.Item.md
@@ -27,11 +27,11 @@ Returns an individual **TablesOfAuthoritiesCategory** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
TablesOfAuthoritiesCategory
diff --git a/api/Word.TablesOfContents.Add.md b/api/Word.TablesOfContents.Add.md
index 5cfd843ee8d..7e272a9b7ac 100644
--- a/api/Word.TablesOfContents.Add.md
+++ b/api/Word.TablesOfContents.Add.md
@@ -27,7 +27,7 @@ Returns a **TableOfContents** object that represents a table of contents added
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The range where you want the table of contents to appear. The table of contents replaces the range, if the range isn't collapsed.|
| _UseHeadingStyles_|Optional| **Variant**| **True** to use built-in heading styles to create the table of contents. The default value is **True** .|
@@ -42,7 +42,7 @@ Returns a **TableOfContents** object that represents a table of contents added
| _HidePageNumbersInWeb_|Optional| **Variant**| **True** if page numbers in a table of contents should be hidden when the document is being publishing to the Web. The default value is **True** .|
| _UseOutlineLevels_|Optional| **Variant**| **True** to use outline levels to create the table of contents. The default is **False** .|
-### Return Value
+### Return value
TableOfContents
diff --git a/api/Word.TablesOfContents.Item.md b/api/Word.TablesOfContents.Item.md
index 9da70197bc2..e7bc5a339d6 100644
--- a/api/Word.TablesOfContents.Item.md
+++ b/api/Word.TablesOfContents.Item.md
@@ -27,11 +27,11 @@ Returns an individual **TableOfContents** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
TableOfContents
diff --git a/api/Word.TablesOfContents.MarkEntry.md b/api/Word.TablesOfContents.MarkEntry.md
index 07c4587f5c0..bcd8ef4e745 100644
--- a/api/Word.TablesOfContents.MarkEntry.md
+++ b/api/Word.TablesOfContents.MarkEntry.md
@@ -27,7 +27,7 @@ Inserts a TC (Table of Contents Entry) field after the specified range. The meth
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range**|The location of the entry. The TC field is inserted after Range.|
| _Entry_|Optional| **Variant**|The text that appears in the table of contents or table of figures. To indicate a subentry, include the main entry text and the subentry text, separated by a colon (:) (for example, "Introduction:The Product").|
@@ -35,7 +35,7 @@ Inserts a TC (Table of Contents Entry) field after the specified range. The meth
| _TableID_|Optional| **Variant**|A one-letter identifier for the table of figures or table of contents item (for example, "i" for an "illustration").|
| _Level_|Optional| **Variant**|A level for the entry in the table of contents or table of figures.|
-### Return Value
+### Return value
Field
diff --git a/api/Word.TablesOfFigures.Add.md b/api/Word.TablesOfFigures.Add.md
index e936a07bae5..0fef1068550 100644
--- a/api/Word.TablesOfFigures.Add.md
+++ b/api/Word.TablesOfFigures.Add.md
@@ -27,7 +27,7 @@ Returns a **TableOfFigures** object that represents a table of figures added to
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The range where you want the table of figures to appear.|
| _Caption_|Optional| **Variant**|The label that identifies the items you want to include in the table of figures. Corresponds to the \c switch for a Table of Contents (TOC) field. The default value is "Figure."|
@@ -43,7 +43,7 @@ Returns a **TableOfFigures** object that represents a table of figures added to
| _UseHyperlinks_|Optional| **Variant**| **True** if entries in a table of figures should be formatted as hyperlinks when publishing to the Web. The default value is **True** .|
| _HidePageNumbersInWeb_|Optional| **Variant**| **True** if page numbers in a table of figures should be hidden when publishing to the Web. The default value is **True** .|
-### Return Value
+### Return value
TableOfFigures
diff --git a/api/Word.TablesOfFigures.Item.md b/api/Word.TablesOfFigures.Item.md
index c5355c66f5a..93e8373eef6 100644
--- a/api/Word.TablesOfFigures.Item.md
+++ b/api/Word.TablesOfFigures.Item.md
@@ -27,11 +27,11 @@ Returns an individual **TableOfFigures** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
TableOfFigures
diff --git a/api/Word.TablesOfFigures.MarkEntry.md b/api/Word.TablesOfFigures.MarkEntry.md
index 6f1ca54d0c4..b0d89231ef3 100644
--- a/api/Word.TablesOfFigures.MarkEntry.md
+++ b/api/Word.TablesOfFigures.MarkEntry.md
@@ -27,7 +27,7 @@ Inserts a TC (Table of Contents Entry) field after the specified range. The meth
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Required| **Range object**|The location of the entry. The TC field is inserted after Range.|
| _Entry_|Optional| **Variant**|The text that appears in the table of contents or table of figures. To indicate a subentry, include the main entry text and the subentry text, separated by a colon (:) (for example, "Introduction:The Product").|
@@ -35,7 +35,7 @@ Inserts a TC (Table of Contents Entry) field after the specified range. The meth
| _TableID_|Optional| **Variant**|A one-letter identifier for the table of figures or table of contents item (for example, "i" for an "illustration").|
| _Level_|Optional| **Variant**|A level for the entry in the table of contents or table of figures.|
-### Return Value
+### Return value
Field
diff --git a/api/Word.Task.Activate.md b/api/Word.Task.Activate.md
index e114bbb4e72..74b52133897 100644
--- a/api/Word.Task.Activate.md
+++ b/api/Word.Task.Activate.md
@@ -27,7 +27,7 @@ Activates the **Task** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Wait_|Optional| **Variant**| **True** to wait until the user has activated Word before activating the task. **False** to immediately activate the task, even if Word isn't active.|
diff --git a/api/Word.Task.Move.md b/api/Word.Task.Move.md
index 4321429b71f..93c83ed2b94 100644
--- a/api/Word.Task.Move.md
+++ b/api/Word.Task.Move.md
@@ -27,7 +27,7 @@ Positions a task window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Left_|Required| **Long**|The horizontal screen position of the specified window.|
| _Top_|Required| **Long**|The vertical screen position of the specified window.|
diff --git a/api/Word.Task.Resize.md b/api/Word.Task.Resize.md
index ca342a597ed..d1cf6d25557 100644
--- a/api/Word.Task.Resize.md
+++ b/api/Word.Task.Resize.md
@@ -27,7 +27,7 @@ Sizes the specified task window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Width_|Required| **Long**|The width of the window, in points.|
| _Height_|Required| **Long**|The height of the window, in points.|
diff --git a/api/Word.Task.SendWindowMessage.md b/api/Word.Task.SendWindowMessage.md
index f8f3c121019..9cdb27c5ce2 100644
--- a/api/Word.Task.SendWindowMessage.md
+++ b/api/Word.Task.SendWindowMessage.md
@@ -27,7 +27,7 @@ Sends a Windows message and its associated parameters to the specified task.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Message_|Required| **Long**|A hexidecimal number that corresponds to the message you want to send. If you have the Microsoft Platform Software Development Kit, you can look up the name of the message in the header files (Winuser.h, for example) to find the associated hexadecimal number (precede the hexidecimal value with &;h).|
| _wParam_|Required| **Long**|Parameters appropriate for the message you?re sending. For information about what these values represent, see the reference topic for that message in the documentation included with the Microsoft Platform Software Development Kit, available on MSDN. To retrieve the appropriate values, you may need to use the Spy tool (which comes with the kit).|
diff --git a/api/Word.TaskPanes.Item.md b/api/Word.TaskPanes.Item.md
index 7fa0069e71a..bb9aa7efc3f 100644
--- a/api/Word.TaskPanes.Item.md
+++ b/api/Word.TaskPanes.Item.md
@@ -27,11 +27,11 @@ Returns the specified task pane as a **TaskPane** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **WdTaskPanes**|The specified task pane.|
-### Return Value
+### Return value
TaskPane
diff --git a/api/Word.Tasks.Exists.md b/api/Word.Tasks.Exists.md
index 3fbf0a23452..ad9cc815a51 100644
--- a/api/Word.Tasks.Exists.md
+++ b/api/Word.Tasks.Exists.md
@@ -27,11 +27,11 @@ Determines whether the specified task exists. Returns **True** if the task exis
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The name of the task.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Tasks.Item.md b/api/Word.Tasks.Item.md
index 10ceab7bfec..2068852e8d4 100644
--- a/api/Word.Tasks.Item.md
+++ b/api/Word.Tasks.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Task** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
Task
diff --git a/api/Word.Template.OpenAsDocument.md b/api/Word.Template.OpenAsDocument.md
index 0bbad82822d..ef5e7903295 100644
--- a/api/Word.Template.OpenAsDocument.md
+++ b/api/Word.Template.OpenAsDocument.md
@@ -23,7 +23,7 @@ Opens the specified template as a document and returns a **Document** object.
_expression_ Required. A variable that represents a '[Template](Word.Template.md)' object.
-### Return Value
+### Return value
Document
diff --git a/api/Word.Templates.Item.md b/api/Word.Templates.Item.md
index 878eea5e682..26b8969fe75 100644
--- a/api/Word.Templates.Item.md
+++ b/api/Word.Templates.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Template** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
Template
diff --git a/api/Word.TextColumns.Add.md b/api/Word.TextColumns.Add.md
index ffedac640a5..d74ee8c432e 100644
--- a/api/Word.TextColumns.Add.md
+++ b/api/Word.TextColumns.Add.md
@@ -27,13 +27,13 @@ Returns a **TextColumn** object that represents a new text column added to a se
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Width_|Optional| **Variant**|The width of the new text column in the document, in points.|
| _Spacing_|Optional| **Variant**|The spacing between the text columns in the document, in points.|
| _EvenlySpaced_|Optional| **Variant**| **True** to evenly space all the text columns be in the document.|
-### Return Value
+### Return value
TextColumn
diff --git a/api/Word.TextColumns.Item.md b/api/Word.TextColumns.Item.md
index 16e8fbc3c10..96f79da4d3f 100644
--- a/api/Word.TextColumns.Item.md
+++ b/api/Word.TextColumns.Item.md
@@ -27,11 +27,11 @@ Returns an individual **TextColumn** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
TextColumn
diff --git a/api/Word.TextColumns.SetCount.md b/api/Word.TextColumns.SetCount.md
index 66e04efc4a8..dd09804ddd1 100644
--- a/api/Word.TextColumns.SetCount.md
+++ b/api/Word.TextColumns.SetCount.md
@@ -27,7 +27,7 @@ Arranges text into the specified number of text columns.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NumColumns_|Required| **Long**|The number of columns the text is to be arranged into.|
diff --git a/api/Word.TextFrame.ValidLinkTarget.md b/api/Word.TextFrame.ValidLinkTarget.md
index 4cf62e76971..f94082e35c9 100644
--- a/api/Word.TextFrame.ValidLinkTarget.md
+++ b/api/Word.TextFrame.ValidLinkTarget.md
@@ -27,11 +27,11 @@ Determines whether the text frame of one shape can be linked to the text frame o
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _TargetTextFrame_|Required| **TextFrame**|The target text frame to which you want to link the text frame returned by expression.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.TextInput.EditType.md b/api/Word.TextInput.EditType.md
index d61a9acd5a7..c29db666d8d 100644
--- a/api/Word.TextInput.EditType.md
+++ b/api/Word.TextInput.EditType.md
@@ -27,7 +27,7 @@ Sets options for the specified text form field.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Required| **WdTextFormFieldType**|The text box type.|
| _Default_|Optional| **Variant**|The default text that appears in the text box.|
diff --git a/api/Word.ThreeDFormat.IncrementRotationHorizontal.md b/api/Word.ThreeDFormat.IncrementRotationHorizontal.md
index d67ef6e77b7..1f6a2089bc0 100644
--- a/api/Word.ThreeDFormat.IncrementRotationHorizontal.md
+++ b/api/Word.ThreeDFormat.IncrementRotationHorizontal.md
@@ -27,7 +27,7 @@ Horizontally rotates a shape on the x-axis using the specified incrementation va
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|Specifies the incrementation value.|
diff --git a/api/Word.ThreeDFormat.IncrementRotationVertical.md b/api/Word.ThreeDFormat.IncrementRotationVertical.md
index 078ba7ef61e..852b3183d30 100644
--- a/api/Word.ThreeDFormat.IncrementRotationVertical.md
+++ b/api/Word.ThreeDFormat.IncrementRotationVertical.md
@@ -27,7 +27,7 @@ Vertically rotates a shape on the y-axis using the specified incrementation valu
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|Specifies the incrementation value.|
diff --git a/api/Word.ThreeDFormat.IncrementRotationX.md b/api/Word.ThreeDFormat.IncrementRotationX.md
index 5cc2ae7f546..5f4491caf99 100644
--- a/api/Word.ThreeDFormat.IncrementRotationX.md
+++ b/api/Word.ThreeDFormat.IncrementRotationX.md
@@ -27,7 +27,7 @@ Changes the rotation of the specified shape around the x-axis by the specified n
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|Specifies how much (in degrees) the rotation of the shape around the x-axis is to be changed. Can be a value from ?90 through 90. A positive value tilts the shape up; a negative value tilts it down.|
diff --git a/api/Word.ThreeDFormat.IncrementRotationY.md b/api/Word.ThreeDFormat.IncrementRotationY.md
index 5e11791261e..aa6f3720d74 100644
--- a/api/Word.ThreeDFormat.IncrementRotationY.md
+++ b/api/Word.ThreeDFormat.IncrementRotationY.md
@@ -27,7 +27,7 @@ Changes the rotation of the specified shape around the y-axis by the specified n
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|Specifies how much (in degrees) the rotation of the shape around the y-axis is to be changed. Can be a value from ? 90 through 90. A positive value tilts the shape to the left; a negative value tilts it to the right.|
diff --git a/api/Word.ThreeDFormat.IncrementRotationZ.md b/api/Word.ThreeDFormat.IncrementRotationZ.md
index 683cc10722a..23ea5f5679b 100644
--- a/api/Word.ThreeDFormat.IncrementRotationZ.md
+++ b/api/Word.ThreeDFormat.IncrementRotationZ.md
@@ -27,7 +27,7 @@ Rotates a shape on the z-axis using the specified incrementation.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Increment_|Required| **Single**|Specifies the incrementation value.|
diff --git a/api/Word.ThreeDFormat.SetExtrusionDirection.md b/api/Word.ThreeDFormat.SetExtrusionDirection.md
index 024f3b23850..1ec140b9f4e 100644
--- a/api/Word.ThreeDFormat.SetExtrusionDirection.md
+++ b/api/Word.ThreeDFormat.SetExtrusionDirection.md
@@ -27,7 +27,7 @@ Sets the direction that the extrusion's sweep path takes away from the extruded
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PresetExtrusionDirection_|Required| **MsoPresetExtrusionDirection**|Sets the direction of the extrusion.|
diff --git a/api/Word.ThreeDFormat.SetPresetCamera.md b/api/Word.ThreeDFormat.SetPresetCamera.md
index b15b61439d3..30333b56380 100644
--- a/api/Word.ThreeDFormat.SetPresetCamera.md
+++ b/api/Word.ThreeDFormat.SetPresetCamera.md
@@ -27,7 +27,7 @@ Sets the camera presets for a shape.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PresetCamera_|Required| **MsoPresetCamera**|Specifies the camera preset type.|
diff --git a/api/Word.ThreeDFormat.SetThreeDFormat.md b/api/Word.ThreeDFormat.SetThreeDFormat.md
index ffb24d21347..8648ff6ce19 100644
--- a/api/Word.ThreeDFormat.SetThreeDFormat.md
+++ b/api/Word.ThreeDFormat.SetThreeDFormat.md
@@ -27,7 +27,7 @@ Sets the preset extrusion format.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _PresetThreeDFormat_|Required| **MsoPresetThreeDFormat**|Specifies a preset extrusion format that corresponds to one of the options (numbered from left to right, top to bottom) displayed when you click the **3-D** button on the **Drawing** toolbar.|
diff --git a/api/Word.Trendlines.Add.md b/api/Word.Trendlines.Add.md
index ed7e48cf5eb..e1b9b9d7517 100644
--- a/api/Word.Trendlines.Add.md
+++ b/api/Word.Trendlines.Add.md
@@ -27,7 +27,7 @@ Creates a new trendline.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Type_|Optional| **[XlTrendlineType](Word.xltrendlinetype.md)**|One of the enumeration values that specifies the trendline type. The default is **xlLinear** .|
| _Order_|Optional| **Variant**|The trendline order. Required ifType is set to **xlPolynomial** . If specified, the value must be an integer from 2 through 6.|
@@ -42,7 +42,7 @@ Creates a new trendline.
| _DisplayRSquared_|Optional| **Variant**| **True** to display the R-squared value of the trendline on the chart (in the same data label as the equation). The default is **False** .|
| _Name_|Optional| **Variant**|The name of the trendline. If omitted, Microsoft Word generates a name, and the **[NameIsAuto](Word.Trendline.NameIsAuto.md)** property of the resulting **[Trendline](Word.Trendline.md)** object is set to **True** .|
-### Return Value
+### Return value
A **[Trendline](Word.Trendline.md)** object that represents the new trendline.
diff --git a/api/Word.Trendlines.Item.md b/api/Word.Trendlines.Item.md
index cea0717b259..93ac89eaae0 100644
--- a/api/Word.Trendlines.Item.md
+++ b/api/Word.Trendlines.Item.md
@@ -27,11 +27,11 @@ Returns a single object from a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Optional| **Variant**|The index number for the object.|
-### Return Value
+### Return value
A **[Trendline](Word.Trendline.md)** object that the collection contains.
diff --git a/api/Word.TwoInitialCapsExceptions.Add.md b/api/Word.TwoInitialCapsExceptions.Add.md
index b9698a1edde..54c169cb6eb 100644
--- a/api/Word.TwoInitialCapsExceptions.Add.md
+++ b/api/Word.TwoInitialCapsExceptions.Add.md
@@ -27,11 +27,11 @@ Returns a **TwoInitialCapsException** object that represents a new exception ad
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The word with two initial capital letters that you want Microsoft Word to overlook.|
-### Return Value
+### Return value
TwoInitialCapsException
diff --git a/api/Word.TwoInitialCapsExceptions.Item.md b/api/Word.TwoInitialCapsExceptions.Item.md
index f4237913abc..eeff939c885 100644
--- a/api/Word.TwoInitialCapsExceptions.Item.md
+++ b/api/Word.TwoInitialCapsExceptions.Item.md
@@ -27,11 +27,11 @@ Returns an individual **TwoInitialCapsException** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
TwoInitialCapsException
diff --git a/api/Word.UndoRecord.StartCustomRecord.md b/api/Word.UndoRecord.StartCustomRecord.md
index f1795fe5318..0f385333548 100644
--- a/api/Word.UndoRecord.StartCustomRecord.md
+++ b/api/Word.UndoRecord.StartCustomRecord.md
@@ -27,7 +27,7 @@ Initiates the creation of a custom undo record.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Optional| **String**|Specifies the name of the custom undo record. This string is limited to 64 characters. If a longer string is supplied, the string is truncated to 64 characters.
diff --git a/api/Word.Variables.Add.md b/api/Word.Variables.Add.md
index 414a077d8ed..4d7731a1e0a 100644
--- a/api/Word.Variables.Add.md
+++ b/api/Word.Variables.Add.md
@@ -27,12 +27,12 @@ Returns a **Variable** object that represents a variable added to a document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Name_|Required| **String**|The name of the document variable.|
| _Value_|Optional| **Variant**|The value for the document variable.|
-### Return Value
+### Return value
Variable
diff --git a/api/Word.Variables.Item.md b/api/Word.Variables.Item.md
index 774dfaa6d6f..d2928f3b56d 100644
--- a/api/Word.Variables.Item.md
+++ b/api/Word.Variables.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Variable** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
Variable
diff --git a/api/Word.Version.Open.md b/api/Word.Version.Open.md
index 6c1a2ca593d..034acffafe1 100644
--- a/api/Word.Version.Open.md
+++ b/api/Word.Version.Open.md
@@ -23,7 +23,7 @@ Opens the specified version of a document. Returns a **Document** object repres
_expression_ Required. A variable that represents a '[Version](Word.Version.md)' object.
-### Return Value
+### Return value
Document
diff --git a/api/Word.View.CollapseOutline.md b/api/Word.View.CollapseOutline.md
index 9aeae3542d5..801616f8d3d 100644
--- a/api/Word.View.CollapseOutline.md
+++ b/api/Word.View.CollapseOutline.md
@@ -27,7 +27,7 @@ Collapses the text under the selection or the specified range by one heading lev
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Optional| **Range object**|The range of paragraphs to be collapsed. If this argument is omitted, the entire selection is collapsed.|
diff --git a/api/Word.View.ExpandOutline.md b/api/Word.View.ExpandOutline.md
index d584926f25f..551fc95a18e 100644
--- a/api/Word.View.ExpandOutline.md
+++ b/api/Word.View.ExpandOutline.md
@@ -27,7 +27,7 @@ Expands the text under the selection by one heading level.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Range_|Optional| **Range**|The range of paragraphs to be expanded. If this argument is omitted, the entire selection is expanded.|
diff --git a/api/Word.View.ShowHeading.md b/api/Word.View.ShowHeading.md
index 9158ea5f1ce..135e48c0034 100644
--- a/api/Word.View.ShowHeading.md
+++ b/api/Word.View.ShowHeading.md
@@ -27,7 +27,7 @@ Shows all headings up to the specified heading level and hides subordinate headi
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Level_|Required| **Long**|The outline heading level (a number from 1 to 9).|
diff --git a/api/Word.WdAlertLevel.md b/api/Word.WdAlertLevel.md
index cf6da42df7f..805c641eac0 100644
--- a/api/Word.WdAlertLevel.md
+++ b/api/Word.WdAlertLevel.md
@@ -17,7 +17,7 @@ Specifies the way certain alerts and messages are handled while a macro is runni
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAlertsAll**|-1|All message boxes and alerts are displayed; errors are returned to the macro.|
| **wdAlertsMessageBox**|-2|Only message boxes are displayed; errors are trapped and returned to the macro.|
diff --git a/api/Word.WdAlignmentTabAlignment.md b/api/Word.WdAlignmentTabAlignment.md
index 96b0656a884..b61dc7df396 100644
--- a/api/Word.WdAlignmentTabAlignment.md
+++ b/api/Word.WdAlignmentTabAlignment.md
@@ -14,7 +14,7 @@ Specifies tab alignment.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCenter**|1|Centered tab.|
| **wdLeft**|0|Left-aligned tab.|
diff --git a/api/Word.WdAlignmentTabRelative.md b/api/Word.WdAlignmentTabRelative.md
index b916788fc55..e4cc56bef52 100644
--- a/api/Word.WdAlignmentTabRelative.md
+++ b/api/Word.WdAlignmentTabRelative.md
@@ -14,7 +14,7 @@ Specifies whether Microsoft Word calculates the alignment for a tab relative to
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdIndent**|1|Word calculates tab alignment relative to the paragraph indents.|
| **wdMargin**|0|Word calculates tab alignment relative to the margins|
diff --git a/api/Word.WdApplyQuickStyleSets.md b/api/Word.WdApplyQuickStyleSets.md
index f6bfdcbe8bf..e6b099fada3 100644
--- a/api/Word.WdApplyQuickStyleSets.md
+++ b/api/Word.WdApplyQuickStyleSets.md
@@ -14,7 +14,7 @@ Specifies a Quick Style set to apply to the document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdSessionStartSet**|1|Resets the Quick Style to the style set in use when the document was opened.|
| **wdTemplateSet**|2|Resets the Quick Style to the style set from the template, if any.|
diff --git a/api/Word.WdAraSpeller.md b/api/Word.WdAraSpeller.md
index ac2590b53fd..5d2cf4dc9aa 100644
--- a/api/Word.WdAraSpeller.md
+++ b/api/Word.WdAraSpeller.md
@@ -14,7 +14,7 @@ Specifies spelling rules for the Arabic spelling checker.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdBoth**|3|The spelling checker uses spelling rules regarding both Arabic words ending with the letter yaa and Arabic words beginning with an alef hamza.|
| **wdFinalYaa**|2|The spelling checker uses spelling rules regarding Arabic words ending with the letter yaa.|
diff --git a/api/Word.WdArabicNumeral.md b/api/Word.WdArabicNumeral.md
index 074f3c0f8ce..1b4efaec64f 100644
--- a/api/Word.WdArabicNumeral.md
+++ b/api/Word.WdArabicNumeral.md
@@ -14,7 +14,7 @@ Specifies the numeral style for an Arabic-language document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdNumeralArabic**|0|Arabic shape is used for numerals.|
| **wdNumeralContext**|2|Numeral shape depends on text surrounding it.|
diff --git a/api/Word.WdArrangeStyle.md b/api/Word.WdArrangeStyle.md
index d8d701c786d..1541dc2b651 100644
--- a/api/Word.WdArrangeStyle.md
+++ b/api/Word.WdArrangeStyle.md
@@ -14,7 +14,7 @@ Specifies the window arrangement.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdIcons**|1|Windows are displayed as icons in a single window.|
| **wdTiled**|0|Windows are tiled into a single window.|
diff --git a/api/Word.WdAutoFitBehavior.md b/api/Word.WdAutoFitBehavior.md
index a4349006e5c..62f72bbe090 100644
--- a/api/Word.WdAutoFitBehavior.md
+++ b/api/Word.WdAutoFitBehavior.md
@@ -14,7 +14,7 @@ Specifies how Microsoft Word resizes a table when the AutoFit feature is used.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAutoFitContent**|1|The table is automatically sized to fit the content contained in the table.|
| **wdAutoFitFixed**|0|The table is set to a fixed size, regardless of the content, and is not automatically sized.|
diff --git a/api/Word.WdAutoMacros.md b/api/Word.WdAutoMacros.md
index 76d9d165f93..84cef47bc84 100644
--- a/api/Word.WdAutoMacros.md
+++ b/api/Word.WdAutoMacros.md
@@ -14,7 +14,7 @@ Specifies an auto macro that is stored in the document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAutoClose**|3|AutoClose macro.|
| **wdAutoExec**|0|AutoExec macro.|
diff --git a/api/Word.WdAutoVersions.md b/api/Word.WdAutoVersions.md
index 2edeeb8c431..6336691f0ce 100644
--- a/api/Word.WdAutoVersions.md
+++ b/api/Word.WdAutoVersions.md
@@ -14,7 +14,7 @@ Specifies the state of the option for automatically saving document versions.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAutoVersionOff**|0|No document version is saved.|
| **wdAutoVersionOnClose**|1|A document version is saved automatically when the document is closed.|
diff --git a/api/Word.WdBaselineAlignment.md b/api/Word.WdBaselineAlignment.md
index bf4a931d462..235c2d01e83 100644
--- a/api/Word.WdBaselineAlignment.md
+++ b/api/Word.WdBaselineAlignment.md
@@ -14,7 +14,7 @@ Specifies the vertical position of fonts on a line.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdBaselineAlignAuto**|4|Microsoft Word automatically adjusts the baseline font alignment.|
| **wdBaselineAlignBaseline**|2|Align to a baseline for the paragraph.|
diff --git a/api/Word.WdBookmarkSortBy.md b/api/Word.WdBookmarkSortBy.md
index 55e06595c0e..3506134f127 100644
--- a/api/Word.WdBookmarkSortBy.md
+++ b/api/Word.WdBookmarkSortBy.md
@@ -14,7 +14,7 @@ Specifies the sorting option for bookmark names displayed in the **Bookmark** d
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdSortByLocation**|1|Sorted by location in document.|
| **wdSortByName**|0|Sorted by bookmark name.|
diff --git a/api/Word.WdBorderDistanceFrom.md b/api/Word.WdBorderDistanceFrom.md
index def90f4fd40..0e81db259b8 100644
--- a/api/Word.WdBorderDistanceFrom.md
+++ b/api/Word.WdBorderDistanceFrom.md
@@ -14,7 +14,7 @@ Specifies whether a page border is measured from the edge of the page or from th
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdBorderDistanceFromPageEdge**|1|From the edge of the page.|
| **wdBorderDistanceFromText**|0|From the text it surrounds.|
diff --git a/api/Word.WdBorderType.md b/api/Word.WdBorderType.md
index 43326d21a62..ac88fa63a46 100644
--- a/api/Word.WdBorderType.md
+++ b/api/Word.WdBorderType.md
@@ -14,7 +14,7 @@ Specifies the type of border to be used.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdBorderBottom**|-3|A bottom border.|
| **wdBorderDiagonalDown**|-7|A diagonal border starting in the upper-left corner.|
diff --git a/api/Word.WdBreakType.md b/api/Word.WdBreakType.md
index 7778f4e4efb..ea0c1c108ea 100644
--- a/api/Word.WdBreakType.md
+++ b/api/Word.WdBreakType.md
@@ -14,7 +14,7 @@ Specifies type of break.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdColumnBreak**|8|Column break at the insertion point.|
| **wdLineBreak**|6|Line break.|
diff --git a/api/Word.WdBrowseTarget.md b/api/Word.WdBrowseTarget.md
index 55329cfda60..b8c231b4c17 100644
--- a/api/Word.WdBrowseTarget.md
+++ b/api/Word.WdBrowseTarget.md
@@ -14,7 +14,7 @@ Specifies the document item that the **[Next](Word.Browser.Next.md)** or **[Pre
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdBrowseComment**|3|Places insertion point before next or previous comment.|
| **wdBrowseEdit**|10|Places insertion point before next or previous edit.|
diff --git a/api/Word.WdBrowserLevel.md b/api/Word.WdBrowserLevel.md
index 1db78df7f57..ff65aedeecf 100644
--- a/api/Word.WdBrowserLevel.md
+++ b/api/Word.WdBrowserLevel.md
@@ -14,7 +14,7 @@ Specifies the version of Web browser at which you want to target new Web pages c
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdBrowserLevelMicrosoftInternetExplorer5**|1|Microsoft Internet Explorer 5.|
| **wdBrowserLevelMicrosoftInternetExplorer6**|2|Microsoft Internet Explorer 6.|
diff --git a/api/Word.WdBuildingBlockTypes.md b/api/Word.WdBuildingBlockTypes.md
index a8c09d419c3..dfab8530289 100644
--- a/api/Word.WdBuildingBlockTypes.md
+++ b/api/Word.WdBuildingBlockTypes.md
@@ -14,7 +14,7 @@ Specifies the type of building block.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTypeAutoText**|9|Autotext building block.|
| **wdTypeBibliography**|34|Bibliography building block.|
diff --git a/api/Word.WdBuiltInProperty.md b/api/Word.WdBuiltInProperty.md
index 64546f8cc53..97071bb5a9d 100644
--- a/api/Word.WdBuiltInProperty.md
+++ b/api/Word.WdBuiltInProperty.md
@@ -14,7 +14,7 @@ Specifies a built-in document property.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdPropertyAppName**|9|Name of application.|
| **wdPropertyAuthor**|3|Author.|
diff --git a/api/Word.WdBuiltinStyle.md b/api/Word.WdBuiltinStyle.md
index 5bffbb074ff..a9658956b4a 100644
--- a/api/Word.WdBuiltinStyle.md
+++ b/api/Word.WdBuiltinStyle.md
@@ -14,7 +14,7 @@ Specifies a built-in Microsoft Word style.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdStyleBlockQuotation**|-85|Block Text.|
| **wdStyleBodyText**|-67|Body Text.|
diff --git a/api/Word.WdCalendarTypeBi.md b/api/Word.WdCalendarTypeBi.md
index eafa9632b97..130c5f0b14d 100644
--- a/api/Word.WdCalendarTypeBi.md
+++ b/api/Word.WdCalendarTypeBi.md
@@ -14,7 +14,7 @@ Specifies calendar type to use when displaying the date or time.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCalendarTypeBidi**|99|Bi-directional calendar.|
| **wdCalendarTypeGregorian**|100|Gregorian calendar.|
diff --git a/api/Word.WdCaptionLabelID.md b/api/Word.WdCaptionLabelID.md
index 8810d56c947..a9c232f3d53 100644
--- a/api/Word.WdCaptionLabelID.md
+++ b/api/Word.WdCaptionLabelID.md
@@ -14,7 +14,7 @@ Specifies the type for a caption label.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCaptionEquation**|-3|Equation.|
| **wdCaptionFigure**|-1|Figure.|
diff --git a/api/Word.WdCaptionNumberStyle.md b/api/Word.WdCaptionNumberStyle.md
index a62d0ded94a..321be5d54b2 100644
--- a/api/Word.WdCaptionNumberStyle.md
+++ b/api/Word.WdCaptionNumberStyle.md
@@ -14,7 +14,7 @@ Specifies the number style to be used with the **CaptionLabel** object.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCaptionNumberStyleArabic**|0|Arabic style.|
| **wdCaptionNumberStyleArabicFullWidth**|14|Full-width Arabic style.|
diff --git a/api/Word.WdCaptionPosition.md b/api/Word.WdCaptionPosition.md
index 11032bfb0d2..a5c9205e26a 100644
--- a/api/Word.WdCaptionPosition.md
+++ b/api/Word.WdCaptionPosition.md
@@ -14,7 +14,7 @@ Specifies the position of the caption label text.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCaptionPositionAbove**|0|The caption label is added above.|
| **wdCaptionPositionBelow**|1|The caption label is added below.|
diff --git a/api/Word.WdCellColor.md b/api/Word.WdCellColor.md
index ed8f55005e4..793fea74743 100644
--- a/api/Word.WdCellColor.md
+++ b/api/Word.WdCellColor.md
@@ -14,7 +14,7 @@ Specifies the color of highlighting for table cells that were added, deleted, or
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCellColorByAuthor**|-1|Highlighting color determined by reviewer.|
| **wdCellColorLightBlue**|2|Light blue.|
diff --git a/api/Word.WdCellVerticalAlignment.md b/api/Word.WdCellVerticalAlignment.md
index b75a71542c8..33e84362032 100644
--- a/api/Word.WdCellVerticalAlignment.md
+++ b/api/Word.WdCellVerticalAlignment.md
@@ -14,7 +14,7 @@ Specifies the vertical alignment of text in one or more cells of a table.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCellAlignVerticalBottom**|3|Text is aligned to the bottom border of the cell.|
| **wdCellAlignVerticalCenter**|1|Text is aligned to the center of the cell.|
diff --git a/api/Word.WdCharacterCase.md b/api/Word.WdCharacterCase.md
index 4c70ff76631..d1a5af1a622 100644
--- a/api/Word.WdCharacterCase.md
+++ b/api/Word.WdCharacterCase.md
@@ -14,7 +14,7 @@ Specifies the case of the text in the specified range.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFullWidth**|7|Full-width. Used for Japanese characters.|
| **wdHalfWidth**|6|Half-width. Used for Japanese characters.|
diff --git a/api/Word.WdCharacterWidth.md b/api/Word.WdCharacterWidth.md
index 4b6d6328750..832b4b5c347 100644
--- a/api/Word.WdCharacterWidth.md
+++ b/api/Word.WdCharacterWidth.md
@@ -14,7 +14,7 @@ Specifies the character width of the specified range.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdWidthFullWidth**|7|Characters are displayed in full character width.|
| **wdWidthHalfWidth**|6|Characters are displayed in half the character width.|
diff --git a/api/Word.WdCheckInVersionType.md b/api/Word.WdCheckInVersionType.md
index 3c4a740ee30..a0dd2271e21 100644
--- a/api/Word.WdCheckInVersionType.md
+++ b/api/Word.WdCheckInVersionType.md
@@ -14,7 +14,7 @@ Specifies the type of version for the document checked in when using the **Chec
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCheckInMajorVersion**|1|Major version.|
| **wdCheckInMinorVersion**|0|Minor version.|
diff --git a/api/Word.WdChevronConvertRule.md b/api/Word.WdChevronConvertRule.md
index d8a1111d564..08bbecad988 100644
--- a/api/Word.WdChevronConvertRule.md
+++ b/api/Word.WdChevronConvertRule.md
@@ -14,7 +14,7 @@ Specifies rules for converting text enclosed in chevron characters (? ?) to merg
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAlwaysConvert**|1|The converter attempts to convert text enclosed in chevrons (? ?) to mail merge fields.|
| **wdAskToConvert**|3|The converter prompts the user to convert or not convert chevrons when a Word for the Macintosh document is opened.|
diff --git a/api/Word.WdCollapseDirection.md b/api/Word.WdCollapseDirection.md
index cb655649236..0ea0f117203 100644
--- a/api/Word.WdCollapseDirection.md
+++ b/api/Word.WdCollapseDirection.md
@@ -14,7 +14,7 @@ Specifies the direction in which to collapse a range or selection.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCollapseEnd**|0|Collapse the range to the ending point.|
| **wdCollapseStart**|1|Collapse the range to the starting point.|
diff --git a/api/Word.WdColor.md b/api/Word.WdColor.md
index 239876ace5e..98b0a9536f0 100644
--- a/api/Word.WdColor.md
+++ b/api/Word.WdColor.md
@@ -14,7 +14,7 @@ Specifies the 24-bit color to apply.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdColorAqua**|13421619|Aqua color.|
| **wdColorAutomatic**|-16777216|Automatic color. Default; usually black.|
diff --git a/api/Word.WdColorIndex.md b/api/Word.WdColorIndex.md
index 30cc58025a1..5a521a1944a 100644
--- a/api/Word.WdColorIndex.md
+++ b/api/Word.WdColorIndex.md
@@ -14,7 +14,7 @@ Specifies the color to apply.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAuto**|0|Automatic color. Default; usually black.|
| **wdBlack**|1|Black color.|
diff --git a/api/Word.WdCompareDestination.md b/api/Word.WdCompareDestination.md
index 5be2388f466..9ea2299ea51 100644
--- a/api/Word.WdCompareDestination.md
+++ b/api/Word.WdCompareDestination.md
@@ -14,7 +14,7 @@ When comparing two files for differences, specifies whether to create a new file
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCompareDestinationNew**|2|Creates a new file and tracks the differences between the original document and the revised document using tracked changes.|
| **wdCompareDestinationOriginal**|0|Tracks the differences between the two files using tracked changes in the original document.|
diff --git a/api/Word.WdCompareTarget.md b/api/Word.WdCompareTarget.md
index 18e4d6548ab..f0887200836 100644
--- a/api/Word.WdCompareTarget.md
+++ b/api/Word.WdCompareTarget.md
@@ -14,7 +14,7 @@ Specifies the target document for displaying document comparison differences.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCompareTargetCurrent**|1|Places comparison differences in the current document. Default.|
| **wdCompareTargetNew**|2|Places comparison differences in a new document.|
diff --git a/api/Word.WdCompatibility.md b/api/Word.WdCompatibility.md
index b573dcacfd4..f283ebe2eb9 100644
--- a/api/Word.WdCompatibility.md
+++ b/api/Word.WdCompatibility.md
@@ -14,7 +14,7 @@ Specifies a compatibility option.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAlignTablesRowByRow**|39|Align table rows independently.|
| **wdApplyBreakingRules**|46|Use line-breaking rules.|
diff --git a/api/Word.WdCompatibilityMode.md b/api/Word.WdCompatibilityMode.md
index a90235d49c6..93b073a4d41 100644
--- a/api/Word.WdCompatibilityMode.md
+++ b/api/Word.WdCompatibilityMode.md
@@ -14,7 +14,7 @@ Specifies the compatibility mode that Word uses when opening a document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCurrent**|65535|Compatibility mode equivalent to the latest version of Word. |
| **wdWord2003**|11|Word is put into a mode that is most compatible with Word 2003. Features new to Word are disabled in this mode.|
diff --git a/api/Word.WdConditionCode.md b/api/Word.WdConditionCode.md
index a00e7337cda..2baf8ce624c 100644
--- a/api/Word.WdConditionCode.md
+++ b/api/Word.WdConditionCode.md
@@ -14,7 +14,7 @@ Specifies the area of a table to which to apply special style formatting.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdEvenColumnBanding**|7|Applies formatting to even-numbered columns.|
| **wdEvenRowBanding**|3|Applies formatting to even-numbered rows.|
diff --git a/api/Word.WdConstants.md b/api/Word.WdConstants.md
index 2d3fd854999..016e66cf31b 100644
--- a/api/Word.WdConstants.md
+++ b/api/Word.WdConstants.md
@@ -14,7 +14,7 @@ This enumeration groups together constants used with various Microsoft Word meth
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAutoPosition**|0|Represents the Auto value for the specified setting.|
| **wdBackward**|-1073741823|Indicates that selection will be extended backward using the **MoveStartUntil** or **MoveStartWhile** method of the **Range** or **Selection** object.|
diff --git a/api/Word.WdContentControlDateStorageFormat.md b/api/Word.WdContentControlDateStorageFormat.md
index c3dc2e468b8..9e5646ac731 100644
--- a/api/Word.WdContentControlDateStorageFormat.md
+++ b/api/Word.WdContentControlDateStorageFormat.md
@@ -14,7 +14,7 @@ Indicates how the date for a date content control is stored or retrieved when th
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdContentControlDateStorageDate**|1|Specifies to store or retrieve the date value for a date content control as a date in the standard XML Schema DateTime format.|
| **wdContentControlDateStorageDateTime**|2|Specifies to store or retrieve the date value for a date content control as a time in the standard XML Schema DateTime format.|
diff --git a/api/Word.WdContentControlType.md b/api/Word.WdContentControlType.md
index fdd44a20308..96a17fb75b8 100644
--- a/api/Word.WdContentControlType.md
+++ b/api/Word.WdContentControlType.md
@@ -14,7 +14,7 @@ Indicates the type of content control.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdContentControlBuildingBlockGallery**|5|Specifies a building block gallery content control.|
| **wdContentControlCheckbox**|8|Specifies a checkbox content control.|
diff --git a/api/Word.WdContinue.md b/api/Word.WdContinue.md
index 76cdc839834..e924989e724 100644
--- a/api/Word.WdContinue.md
+++ b/api/Word.WdContinue.md
@@ -14,7 +14,7 @@ Specifies whether the formatting from the previous list can be continued.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdContinueDisabled**|0|Formatting cannot continue from the previous list.|
| **wdContinueList**|2|Formatting can continue from the previous list.|
diff --git a/api/Word.WdCountry.md b/api/Word.WdCountry.md
index ca64051e671..f3bfb89c9be 100644
--- a/api/Word.WdCountry.md
+++ b/api/Word.WdCountry.md
@@ -14,7 +14,7 @@ Specifies the country/region setting of the current system.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdArgentina**|54|Argentina|
| **wdBrazil**|55|Brazil|
diff --git a/api/Word.WdCursorMovement.md b/api/Word.WdCursorMovement.md
index 5523139ef0e..6b14abd7c92 100644
--- a/api/Word.WdCursorMovement.md
+++ b/api/Word.WdCursorMovement.md
@@ -14,7 +14,7 @@ Specifies how the insertion point progresses within bidirectional text.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCursorMovementLogical**|0|Insertion point progresses according to the direction of the language Microsoft Word detects.|
| **wdCursorMovementVisual**|1|Insertion point progresses to the next visually adjacent character.|
diff --git a/api/Word.WdCursorType.md b/api/Word.WdCursorType.md
index 9455791e2a7..19c040b99f0 100644
--- a/api/Word.WdCursorType.md
+++ b/api/Word.WdCursorType.md
@@ -14,7 +14,7 @@ Specifies the state (shape) of the cursor.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCursorIBeam**|1|I-beam cursor shape. |
| **wdCursorNormal**|2|Normal cursor shape. Default; cursor takes shape designated by Microsoft Windows or the application.|
diff --git a/api/Word.WdCustomLabelPageSize.md b/api/Word.WdCustomLabelPageSize.md
index 79ae0c0fc1a..b8839d7d424 100644
--- a/api/Word.WdCustomLabelPageSize.md
+++ b/api/Word.WdCustomLabelPageSize.md
@@ -14,7 +14,7 @@ Specifies the page size for a custom mailing label.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCustomLabelA4**|2|A4 portrait label dimensions.|
| **wdCustomLabelA4LS**|3|A4 landscape label dimensions.|
diff --git a/api/Word.WdDateLanguage.md b/api/Word.WdDateLanguage.md
index 48edae3214b..fd9a83cd609 100644
--- a/api/Word.WdDateLanguage.md
+++ b/api/Word.WdDateLanguage.md
@@ -14,7 +14,7 @@ Specifies the language format to apply to the current date, time, or both.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdDateLanguageBidi**|10|Bidirectional date/time format.|
| **wdDateLanguageLatin**|1033|Latin date/time format.|
diff --git a/api/Word.WdDefaultFilePath.md b/api/Word.WdDefaultFilePath.md
index 1f358f81300..d95f35f6bbb 100644
--- a/api/Word.WdDefaultFilePath.md
+++ b/api/Word.WdDefaultFilePath.md
@@ -14,7 +14,7 @@ Specifies a default folder for files related to Microsoft Word.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAutoRecoverPath**|5|Path for Auto Recover files.|
| **wdBorderArtPath**|19|Border art path.|
diff --git a/api/Word.WdDefaultListBehavior.md b/api/Word.WdDefaultListBehavior.md
index f832a00b890..95d1700ec0a 100644
--- a/api/Word.WdDefaultListBehavior.md
+++ b/api/Word.WdDefaultListBehavior.md
@@ -14,7 +14,7 @@ Specifies the default list behavior for a list.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdWord10ListBehavior**|2|Use formatting compatible with Microsoft Word 2002.|
| **wdWord8ListBehavior**|0|Use formatting compatible with Microsoft Word 97.|
diff --git a/api/Word.WdDefaultTableBehavior.md b/api/Word.WdDefaultTableBehavior.md
index 1694b7208ff..96883d3f857 100644
--- a/api/Word.WdDefaultTableBehavior.md
+++ b/api/Word.WdDefaultTableBehavior.md
@@ -14,7 +14,7 @@ Specifies whether Microsoft Word automatically resizes cells in a table to fit t
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdWord8TableBehavior**|0|Disables AutoFit. Default.|
| **wdWord9TableBehavior**|1|Enables AutoFit.|
diff --git a/api/Word.WdDeleteCells.md b/api/Word.WdDeleteCells.md
index 75e94a62e1e..6dc609f2346 100644
--- a/api/Word.WdDeleteCells.md
+++ b/api/Word.WdDeleteCells.md
@@ -14,7 +14,7 @@ Specifies a range of cells to be deleted from a table in a delete cells action o
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdDeleteCellsEntireColumn**|3|Delete the entire column of cells from the table.|
| **wdDeleteCellsEntireRow**|2|Delete the entire row of cells from the table.|
diff --git a/api/Word.WdDeletedTextMark.md b/api/Word.WdDeletedTextMark.md
index 32f20e167b6..ecc00dfc90c 100644
--- a/api/Word.WdDeletedTextMark.md
+++ b/api/Word.WdDeletedTextMark.md
@@ -14,7 +14,7 @@ Specifies the formatting of text that is deleted while change tracking is enable
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdDeletedTextMarkBold**|5|Deleted text is displayed in bold.|
| **wdDeletedTextMarkCaret**|2|Deleted text is marked up by using caret characters.|
diff --git a/api/Word.WdDiacriticColor.md b/api/Word.WdDiacriticColor.md
index 138000f6383..911ff8694df 100644
--- a/api/Word.WdDiacriticColor.md
+++ b/api/Word.WdDiacriticColor.md
@@ -14,7 +14,7 @@ Specifies whether to apply a different color to diacritics in bi-directional or
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdDiacriticColorBidi**|0|Bi-directional language (Arabic, Hebrew, and so forth).|
| **wdDiacriticColorLatin**|1|Latin style languages.|
diff --git a/api/Word.WdDictionaryType.md b/api/Word.WdDictionaryType.md
index 4152cd5c463..c59f706f7c4 100644
--- a/api/Word.WdDictionaryType.md
+++ b/api/Word.WdDictionaryType.md
@@ -14,7 +14,7 @@ Specifies a proofing tool type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdGrammar**|1|Grammar.|
| **wdHangulHanjaConversion**|8|Dictionary for converting between Hangul and Hanja. Available only if you have enabled support for Korean through Microsoft Office Language Settings.|
diff --git a/api/Word.WdDisableFeaturesIntroducedAfter.md b/api/Word.WdDisableFeaturesIntroducedAfter.md
index 49a92f26e47..90cdcfb9284 100644
--- a/api/Word.WdDisableFeaturesIntroducedAfter.md
+++ b/api/Word.WdDisableFeaturesIntroducedAfter.md
@@ -14,7 +14,7 @@ Specifies the version of Microsoft Word for which to disable all features introd
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wd70**|0|Specifies Word for Windows 95, versions 7.0 and 7.0a.|
| **wd70FE**|1|Specifies Word for Windows 95, versions 7.0 and 7.0a, Asian edition.|
diff --git a/api/Word.WdDocPartInsertOptions.md b/api/Word.WdDocPartInsertOptions.md
index 21b7c39689b..010e877297a 100644
--- a/api/Word.WdDocPartInsertOptions.md
+++ b/api/Word.WdDocPartInsertOptions.md
@@ -14,7 +14,7 @@ Specifies how a building block is inserted into a document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdInsertContent**|0|Inline building block.|
| **wdInsertPage**|2|Page-level building block.|
diff --git a/api/Word.WdDocumentDirection.md b/api/Word.WdDocumentDirection.md
index b9abea02b09..4d3141b454c 100644
--- a/api/Word.WdDocumentDirection.md
+++ b/api/Word.WdDocumentDirection.md
@@ -14,7 +14,7 @@ Specifies the direction to flow the text in a document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdLeftToRight**|0|Left to right.|
| **wdRightToLeft**|1|Right to left.|
diff --git a/api/Word.WdDocumentKind.md b/api/Word.WdDocumentKind.md
index 4800d3d249c..ef39a9470a7 100644
--- a/api/Word.WdDocumentKind.md
+++ b/api/Word.WdDocumentKind.md
@@ -14,7 +14,7 @@ Specifies the format type that Microsoft Word uses when automatically formatting
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdDocumentEmail**|2|E-mail format.|
| **wdDocumentLetter**|1|Letter format.|
diff --git a/api/Word.WdDocumentMedium.md b/api/Word.WdDocumentMedium.md
index 1f887f60705..997d7751ed6 100644
--- a/api/Word.WdDocumentMedium.md
+++ b/api/Word.WdDocumentMedium.md
@@ -14,7 +14,7 @@ Specifies the type of document to which you are applying a theme.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdDocument**|1|Document.|
| **wdEmailMessage**|0|E-mail message.|
diff --git a/api/Word.WdDocumentType.md b/api/Word.WdDocumentType.md
index 18a665fe1f1..b4894b41ecc 100644
--- a/api/Word.WdDocumentType.md
+++ b/api/Word.WdDocumentType.md
@@ -14,7 +14,7 @@ Specifies a document type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTypeDocument**|0|Document.|
| **wdTypeFrameset**|2|Frameset.|
diff --git a/api/Word.WdDocumentViewDirection.md b/api/Word.WdDocumentViewDirection.md
index fdf5c27b401..39322bbdefa 100644
--- a/api/Word.WdDocumentViewDirection.md
+++ b/api/Word.WdDocumentViewDirection.md
@@ -14,7 +14,7 @@ Specifies the alignment and reading order for the entire document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdDocumentViewLtr**|1|Displays the document with left alignment and left-to-right reading order.|
| **wdDocumentViewRtl**|0|Displays the document with right alignment and right-to-left reading order.|
diff --git a/api/Word.WdDropPosition.md b/api/Word.WdDropPosition.md
index 76b52481e1f..2cd8f3253c4 100644
--- a/api/Word.WdDropPosition.md
+++ b/api/Word.WdDropPosition.md
@@ -14,7 +14,7 @@ Specifies the position of a dropped capital letter.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdDropMargin**|2|Dropped capital letter ends at the left margin.|
| **wdDropNone**|0|No dropped capital letter.|
diff --git a/api/Word.WdEditionOption.md b/api/Word.WdEditionOption.md
index e73db6918c2..12b19c685fd 100644
--- a/api/Word.WdEditionOption.md
+++ b/api/Word.WdEditionOption.md
@@ -14,7 +14,7 @@ This enumeration has been deprecated and should not be used.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAutomaticUpdate**|3|Not supported.|
| **wdCancelPublisher**|0|Not supported.|
diff --git a/api/Word.WdEditionType.md b/api/Word.WdEditionType.md
index 2706c0d5d14..acb3443fe16 100644
--- a/api/Word.WdEditionType.md
+++ b/api/Word.WdEditionType.md
@@ -14,7 +14,7 @@ This enumeration has been deprecated and should not be used.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdPublisher**|0|Not supported.|
| **wdSubscriber**|1|Not supported.|
diff --git a/api/Word.WdEditorType.md b/api/Word.WdEditorType.md
index 65e90c71170..6d9154d16bb 100644
--- a/api/Word.WdEditorType.md
+++ b/api/Word.WdEditorType.md
@@ -14,7 +14,7 @@ Specifies a user or group of users for a document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdEditorCurrent**|-6|Represents the current user of the document.|
| **wdEditorEditors**|-5|Represents the Editors group for documents that use Information Rights Management.|
diff --git a/api/Word.WdEmailHTMLFidelity.md b/api/Word.WdEmailHTMLFidelity.md
index d756b752339..9bb1b9446fd 100644
--- a/api/Word.WdEmailHTMLFidelity.md
+++ b/api/Word.WdEmailHTMLFidelity.md
@@ -14,7 +14,7 @@ Specifies whether to leave or remove HTML tags not required for display.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdEmailHTMLFidelityHigh**|3|Leaves HTML intact.|
| **wdEmailHTMLFidelityLow**|1|Removes all HTML tags that do not affect how a message displays.|
diff --git a/api/Word.WdEmphasisMark.md b/api/Word.WdEmphasisMark.md
index dcfcc71e719..13bc1f49dee 100644
--- a/api/Word.WdEmphasisMark.md
+++ b/api/Word.WdEmphasisMark.md
@@ -14,7 +14,7 @@ Specifies the type of emphasis mark to use for a character or designated charact
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdEmphasisMarkNone**|0|No emphasis mark.|
| **wdEmphasisMarkOverComma**|2|A comma.|
diff --git a/api/Word.WdEnableCancelKey.md b/api/Word.WdEnableCancelKey.md
index 451291cca71..1f8f0b34c3a 100644
--- a/api/Word.WdEnableCancelKey.md
+++ b/api/Word.WdEnableCancelKey.md
@@ -14,7 +14,7 @@ Specifies whether CTRL+BREAK can or cannot interrupt a macro
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCancelDisabled**|0|Prevents CTRL+BREAK from interrupting a macro.|
| **wdCancelInterrupt**|1|Allows a macro to be interrupted by CTRL+BREAK.|
diff --git a/api/Word.WdEncloseStyle.md b/api/Word.WdEncloseStyle.md
index b7af9eea37d..ea6c0a87166 100644
--- a/api/Word.WdEncloseStyle.md
+++ b/api/Word.WdEncloseStyle.md
@@ -14,7 +14,7 @@ Specifies the relative size of an enclosure.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdEncloseStyleLarge**|2|The enclosure is larger.|
| **wdEncloseStyleNone**|0|The enclosure assumes the default size.|
diff --git a/api/Word.WdEnclosureType.md b/api/Word.WdEnclosureType.md
index 04134c3563a..6f80d8d06ed 100644
--- a/api/Word.WdEnclosureType.md
+++ b/api/Word.WdEnclosureType.md
@@ -14,7 +14,7 @@ Specifies the type of symbol to use as an enclosure.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdEnclosureCircle**|0|A circle.|
| **wdEnclosureDiamond**|3|A diamond.|
diff --git a/api/Word.WdEndnoteLocation.md b/api/Word.WdEndnoteLocation.md
index c462a844837..21a47f1ee21 100644
--- a/api/Word.WdEndnoteLocation.md
+++ b/api/Word.WdEndnoteLocation.md
@@ -14,7 +14,7 @@ Specifies the position of endnotes.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdEndOfDocument**|1|At end of active document.|
| **wdEndOfSection**|0|At end of current section.|
diff --git a/api/Word.WdEnvelopeOrientation.md b/api/Word.WdEnvelopeOrientation.md
index e287dd4085a..b5627288bda 100644
--- a/api/Word.WdEnvelopeOrientation.md
+++ b/api/Word.WdEnvelopeOrientation.md
@@ -14,7 +14,7 @@ Specifies the orientation of envelopes.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCenterClockwise**|7|Center clockwise orientation.|
| **wdCenterLandscape**|4|Center landscape orientation.|
diff --git a/api/Word.WdExportCreateBookmarks.md b/api/Word.WdExportCreateBookmarks.md
index 12df48140e1..83d626b7c30 100644
--- a/api/Word.WdExportCreateBookmarks.md
+++ b/api/Word.WdExportCreateBookmarks.md
@@ -14,7 +14,7 @@ Specifies what bookmarks to include when exporting a document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdExportCreateHeadingBookmarks**|1|Create a bookmark in the exported document for each Microsoft Word heading, which includes only headings within the main document and text boxes not within headers, footers, endnotes, footnotes, or comments.|
| **wdExportCreateNoBookmarks**|0|Do not create bookmarks in the exported document.|
diff --git a/api/Word.WdExportFormat.md b/api/Word.WdExportFormat.md
index eeab5366e1d..b909f3f3915 100644
--- a/api/Word.WdExportFormat.md
+++ b/api/Word.WdExportFormat.md
@@ -14,7 +14,7 @@ Specifies format to use for exporting a document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdExportFormatPDF**|17|Export document into PDF format.|
| **wdExportFormatXPS**|18|Export document into XML Paper Specification (XPS) format.|
diff --git a/api/Word.WdExportItem.md b/api/Word.WdExportItem.md
index d5c0f2fc224..eda6ca45fee 100644
--- a/api/Word.WdExportItem.md
+++ b/api/Word.WdExportItem.md
@@ -14,7 +14,7 @@ Specifies whether to export the document with markup.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdExportDocumentContent**|0|Exports the document without markup.|
| **wdExportDocumentWithMarkup**|7|Exports the document with markup.|
diff --git a/api/Word.WdExportOptimizeFor.md b/api/Word.WdExportOptimizeFor.md
index 8ec41dddc06..3c58fa2ddfd 100644
--- a/api/Word.WdExportOptimizeFor.md
+++ b/api/Word.WdExportOptimizeFor.md
@@ -14,7 +14,7 @@ Specifies the resolution and quality of the exported document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdExportOptimizeForOnScreen**|1|Export for screen, which is a lower quality and results in a smaller file size.|
| **wdExportOptimizeForPrint**|0|Export for print, which is higher quailty and results in a larger file size.|
diff --git a/api/Word.WdExportRange.md b/api/Word.WdExportRange.md
index a05da510a18..3903a04d3ce 100644
--- a/api/Word.WdExportRange.md
+++ b/api/Word.WdExportRange.md
@@ -14,7 +14,7 @@ Specifies how much of the document to export.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdExportAllDocument**|0|Exports the entire document.|
| **wdExportCurrentPage**|2|Exports the current page.|
diff --git a/api/Word.WdFarEastLineBreakLanguageID.md b/api/Word.WdFarEastLineBreakLanguageID.md
index 84d194c98a1..378254e419a 100644
--- a/api/Word.WdFarEastLineBreakLanguageID.md
+++ b/api/Word.WdFarEastLineBreakLanguageID.md
@@ -14,7 +14,7 @@ Specifies the East Asian language to use when breaking lines of text in the spec
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdLineBreakJapanese**|1041|Japanese.|
| **wdLineBreakKorean**|1042|Korean.|
diff --git a/api/Word.WdFarEastLineBreakLevel.md b/api/Word.WdFarEastLineBreakLevel.md
index 75698e60ccb..4c8cfade784 100644
--- a/api/Word.WdFarEastLineBreakLevel.md
+++ b/api/Word.WdFarEastLineBreakLevel.md
@@ -14,7 +14,7 @@ Specifies the line break control level for the specified document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFarEastLineBreakLevelCustom**|2|Custom line break control.|
| **wdFarEastLineBreakLevelNormal**|0|Normal line break control.|
diff --git a/api/Word.WdFieldKind.md b/api/Word.WdFieldKind.md
index 6777cb4a869..92f068232bc 100644
--- a/api/Word.WdFieldKind.md
+++ b/api/Word.WdFieldKind.md
@@ -14,7 +14,7 @@ Specifies the type of field for a **Field** object.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFieldKindCold**|3|A field that does not have a result, for example, an Index Entry (XE), Table of Contents Entry (TC), or Private field.|
| **wdFieldKindHot**|1|A field that's automatically updated each time it is displayed or each time the page is reformatted, but which can also be manually updated (for example, INCLUDEPICTURE or FORMDROPDOWN).|
diff --git a/api/Word.WdFieldShading.md b/api/Word.WdFieldShading.md
index c2c3c7ab067..3fce78b6bc1 100644
--- a/api/Word.WdFieldShading.md
+++ b/api/Word.WdFieldShading.md
@@ -14,7 +14,7 @@ Specifies when to apply on-screen shading for form fields.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFieldShadingAlways**|1|Always apply.|
| **wdFieldShadingNever**|0|Never apply.|
diff --git a/api/Word.WdFieldType.md b/api/Word.WdFieldType.md
index c7fdaf4318b..e7862657b99 100644
--- a/api/Word.WdFieldType.md
+++ b/api/Word.WdFieldType.md
@@ -14,7 +14,7 @@ Specifies a Microsoft Word field. Unless otherwise specified, the field types de
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFieldAddin**|81|Add-in field. Not available through the **Field** dialog box. Used to store data that is hidden from the user interface.|
| **wdFieldAddressBlock**|93|AddressBlock field.|
diff --git a/api/Word.WdFindMatch.md b/api/Word.WdFindMatch.md
index 30f9223ddd2..7e3a3495c91 100644
--- a/api/Word.WdFindMatch.md
+++ b/api/Word.WdFindMatch.md
@@ -14,7 +14,7 @@ This enumeration has been deprecated and should not be used.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdMatchAnyCharacter**|65599|Not supported.|
| **wdMatchAnyDigit**|65567|Not supported.|
diff --git a/api/Word.WdFindWrap.md b/api/Word.WdFindWrap.md
index af0982798a3..c648fc7f545 100644
--- a/api/Word.WdFindWrap.md
+++ b/api/Word.WdFindWrap.md
@@ -14,7 +14,7 @@ Specifies wrap behavior if a selection or range is specified for a find operatio
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFindAsk**|2|After searching the selection or range, Microsoft Word displays a message asking whether to search the remainder of the document.|
| **wdFindContinue**|1|The find operation continues if the beginning or end of the search range is reached.|
diff --git a/api/Word.WdFlowDirection.md b/api/Word.WdFlowDirection.md
index c3e6429b3bb..b839fde2e4b 100644
--- a/api/Word.WdFlowDirection.md
+++ b/api/Word.WdFlowDirection.md
@@ -14,7 +14,7 @@ Specifies the direction in which text flows from one text column to the next.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFlowLtr**|0|Text in columns flows from left to right.|
| **wdFlowRtl**|1|Text in columns flows from right to left.|
diff --git a/api/Word.WdFontBias.md b/api/Word.WdFontBias.md
index acb85690edb..f634c8eda7a 100644
--- a/api/Word.WdFontBias.md
+++ b/api/Word.WdFontBias.md
@@ -14,7 +14,7 @@ Specifies the font bias for symbols.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFontBiasDefault**|0|Default font bias.|
| **wdFontBiasDontCare**|255|No font bias specified.|
diff --git a/api/Word.WdFootnoteLocation.md b/api/Word.WdFootnoteLocation.md
index a8cda198e94..491c91a6a08 100644
--- a/api/Word.WdFootnoteLocation.md
+++ b/api/Word.WdFootnoteLocation.md
@@ -14,7 +14,7 @@ Specifies the position of footnotes.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdBeneathText**|1|Beneath current text.|
| **wdBottomOfPage**|0|At bottom of current page.|
diff --git a/api/Word.WdFramePosition.md b/api/Word.WdFramePosition.md
index ab6864c4b4d..fb664b40b59 100644
--- a/api/Word.WdFramePosition.md
+++ b/api/Word.WdFramePosition.md
@@ -14,7 +14,7 @@ Specifies the reference point against which the frame position is calculated.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFrameBottom**|-999997|Bottom margin.|
| **wdFrameCenter**|-999995|Center of document.|
diff --git a/api/Word.WdFrameSizeRule.md b/api/Word.WdFrameSizeRule.md
index 3fef2d9b5d7..3072afc38b5 100644
--- a/api/Word.WdFrameSizeRule.md
+++ b/api/Word.WdFrameSizeRule.md
@@ -14,7 +14,7 @@ Specifies how Word interprets the rule used to determine the height or width of
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFrameAtLeast**|1|Sets the height or width to a value equal to or greater than the value specified by the **Height** property or **Width** property.|
| **wdFrameAuto**|0|Sets the height or width according to the height or width of the item in the frame.|
diff --git a/api/Word.WdFramesetNewFrameLocation.md b/api/Word.WdFramesetNewFrameLocation.md
index ba6260ead7e..c1dc67336a0 100644
--- a/api/Word.WdFramesetNewFrameLocation.md
+++ b/api/Word.WdFramesetNewFrameLocation.md
@@ -14,7 +14,7 @@ Specifies the position of a new frame in relation to an existing frame.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFramesetNewFrameAbove**|0|Above existing frame.|
| **wdFramesetNewFrameBelow**|1|Below existing frame.|
diff --git a/api/Word.WdFramesetSizeType.md b/api/Word.WdFramesetSizeType.md
index f6e50488a31..20f1d54a55f 100644
--- a/api/Word.WdFramesetSizeType.md
+++ b/api/Word.WdFramesetSizeType.md
@@ -14,7 +14,7 @@ Specifies how to interpret the height or width of a specified frame on a frames
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFramesetSizeTypeFixed**|1|Microsoft Word interprets the height or width of the specified frame as a fixed value (in points).|
| **wdFramesetSizeTypePercent**|0|Word interprets the height or width of the specified frame as a percentage of the screen height or width.|
diff --git a/api/Word.WdFramesetType.md b/api/Word.WdFramesetType.md
index b6fa591ec44..8ecdec227df 100644
--- a/api/Word.WdFramesetType.md
+++ b/api/Word.WdFramesetType.md
@@ -14,7 +14,7 @@ Specifies the type of frame.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFramesetTypeFrame**|1|A single frame.|
| **wdFramesetTypeFrameset**|0|A frameset.|
diff --git a/api/Word.WdFrenchSpeller.md b/api/Word.WdFrenchSpeller.md
index fdd38f56b9b..4e96349a1e7 100644
--- a/api/Word.WdFrenchSpeller.md
+++ b/api/Word.WdFrenchSpeller.md
@@ -14,7 +14,7 @@ Indicates which version of French to use when using the French language spelling
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFrenchBoth**|0|Use both Post Reform and Pre-Reform French dictionaries when checking French language spelling.|
| **wdFrenchPostReform**|2|Use only the Post Reform French dictionary when checking French language spelling.|
diff --git a/api/Word.WdGoToDirection.md b/api/Word.WdGoToDirection.md
index 0a4798b2345..ed3a8df6274 100644
--- a/api/Word.WdGoToDirection.md
+++ b/api/Word.WdGoToDirection.md
@@ -14,7 +14,7 @@ Specifies the position to which a selection or the insertion point is moved in r
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdGoToAbsolute**|1|An absolute position.|
| **wdGoToFirst**|1|The first instance of the specified object.|
diff --git a/api/Word.WdGoToItem.md b/api/Word.WdGoToItem.md
index 177bf047ee8..4c158a5ceb4 100644
--- a/api/Word.WdGoToItem.md
+++ b/api/Word.WdGoToItem.md
@@ -14,7 +14,7 @@ Specifies the type of item to move the insertion point or selection just prior t
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdGoToBookmark**|-1|A bookmark.|
| **wdGoToComment**|6|A comment.|
diff --git a/api/Word.WdGranularity.md b/api/Word.WdGranularity.md
index bf1f4cd89a9..ab0f883f573 100644
--- a/api/Word.WdGranularity.md
+++ b/api/Word.WdGranularity.md
@@ -14,7 +14,7 @@ Specifies the granularity of changes to track when comparing two documents.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdGranularityCharLevel**|0|Tracks character-level changes.|
| **wdGranularityWordLevel**|1|Tracks word-level changes.|
diff --git a/api/Word.WdGutterStyle.md b/api/Word.WdGutterStyle.md
index d3a4c649377..79aee4029cf 100644
--- a/api/Word.WdGutterStyle.md
+++ b/api/Word.WdGutterStyle.md
@@ -14,7 +14,7 @@ Specifies where the gutter appears in the document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdGutterPosLeft**|0|On the left side.|
| **wdGutterPosRight**|2|On the right side.|
diff --git a/api/Word.WdGutterStyleOld.md b/api/Word.WdGutterStyleOld.md
index 96aaaa28836..3cb506fb1ba 100644
--- a/api/Word.WdGutterStyleOld.md
+++ b/api/Word.WdGutterStyleOld.md
@@ -14,7 +14,7 @@ Specifies whether the gutter style should conform to left-to-right text flow or
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdGutterStyleBidi**|2|Bidirectional gutter should be used to conform to right-to-left text flow.|
| **wdGutterStyleLatin**|-10|Latin gutter should be used to conform to left-to-right text flow.|
diff --git a/api/Word.WdHeaderFooterIndex.md b/api/Word.WdHeaderFooterIndex.md
index db9d2cb2e3f..8e2c395370d 100644
--- a/api/Word.WdHeaderFooterIndex.md
+++ b/api/Word.WdHeaderFooterIndex.md
@@ -14,7 +14,7 @@ Returns the specified header or footer in a document or section.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdHeaderFooterEvenPages**|3|Returns all headers or footers on even-numbered pages.|
| **wdHeaderFooterFirstPage**|2|Returns the first header or footer in a document or section.|
diff --git a/api/Word.WdHeadingSeparator.md b/api/Word.WdHeadingSeparator.md
index 124144089de..613b1459d4c 100644
--- a/api/Word.WdHeadingSeparator.md
+++ b/api/Word.WdHeadingSeparator.md
@@ -14,7 +14,7 @@ Specifies the type of text separator to place between headings in an index.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdHeadingSeparatorBlankLine**|1|A blank line.|
| **wdHeadingSeparatorLetter**|2|A designated letter.|
diff --git a/api/Word.WdHebSpellStart.md b/api/Word.WdHebSpellStart.md
index e8c2471ecce..4e004446ff8 100644
--- a/api/Word.WdHebSpellStart.md
+++ b/api/Word.WdHebSpellStart.md
@@ -14,7 +14,7 @@ Specifies which rules the Hebrew spelling checker will follow.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFullScript**|0|The spelling checker follows rules for the conventional script required by the Hebrew Language Academy for writing text without diacritics.|
| **wdMixedAuthorizedScript**|3|The spelling checker follows rules for full and partial script, but highlights as potential mistakes any spelling variations not permitted within either system and any completely unrecognized words.|
diff --git a/api/Word.WdHelpType.md b/api/Word.WdHelpType.md
index 4e64836d430..30254076de4 100644
--- a/api/Word.WdHelpType.md
+++ b/api/Word.WdHelpType.md
@@ -14,7 +14,7 @@ Specifies the type of Help topic or window to display.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdHelp**|0|Displays the **Help Topics** dialog box.|
| **wdHelpAbout**|1|Displays the **About Microsoft Word** dialog box.|
diff --git a/api/Word.WdHighAnsiText.md b/api/Word.WdHighAnsiText.md
index 83a5b856c54..1d33b48f756 100644
--- a/api/Word.WdHighAnsiText.md
+++ b/api/Word.WdHighAnsiText.md
@@ -14,7 +14,7 @@ Specifies how Word interprets high-ANSI text.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAutoDetectHighAnsiFarEast**|2|Microsoft Word interprets high-ANSI text as East Asian characters only if Word automatically detects East Asian language text.|
| **wdHighAnsiIsFarEast**|0|Word doesn't interpret any high-ANSI text as East Asian characters.|
diff --git a/api/Word.WdHorizontalInVerticalType.md b/api/Word.WdHorizontalInVerticalType.md
index 2c13cd55994..8c653010d13 100644
--- a/api/Word.WdHorizontalInVerticalType.md
+++ b/api/Word.WdHorizontalInVerticalType.md
@@ -14,7 +14,7 @@ Specifies the format of horizontal text set within vertical text.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdHorizontalInVerticalFitInLine**|1|The horizontal text is sized to fit in the line of vertical text.|
| **wdHorizontalInVerticalNone**|0|No formatting is applied to the horizontal text.|
diff --git a/api/Word.WdHorizontalLineAlignment.md b/api/Word.WdHorizontalLineAlignment.md
index 52198dbbba6..78a621867cf 100644
--- a/api/Word.WdHorizontalLineAlignment.md
+++ b/api/Word.WdHorizontalLineAlignment.md
@@ -14,7 +14,7 @@ Specifies the alignment of a horizontal line.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdHorizontalLineAlignCenter**|1|Centered.|
| **wdHorizontalLineAlignLeft**|0|Aligned to the left.|
diff --git a/api/Word.WdHorizontalLineWidthType.md b/api/Word.WdHorizontalLineWidthType.md
index d89962e2084..52bd8fd912e 100644
--- a/api/Word.WdHorizontalLineWidthType.md
+++ b/api/Word.WdHorizontalLineWidthType.md
@@ -14,7 +14,7 @@ Specifies how Word interprets the width (length) of the specified horizontal lin
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdHorizontalLineFixedWidth**|-2|Microsoft Word interprets the width (length) of the specified horizontal line as a fixed value (in points). This is the default value for horizontal lines added with the **AddHorizontalLine** method. Setting the **Width** property for the **InlineShape** object associated with a horizontal line sets the **WidthType** property to this value.|
| **wdHorizontalLinePercentWidth**|-1|Word interprets the width (length) of the specified horizontal line as a percentage of the screen width. This is the default value for horizontal lines added with the **AddHorizontalLineStandard** method. Setting the **PercentWidth** property on a horizontal line sets the **WidthType** property to this value.|
diff --git a/api/Word.WdIMEMode.md b/api/Word.WdIMEMode.md
index d7c2c475d82..1c65f05b644 100644
--- a/api/Word.WdIMEMode.md
+++ b/api/Word.WdIMEMode.md
@@ -14,7 +14,7 @@ Specifies the default start-up mode for the Japanese Input Method Editor (IME).
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdIMEModeAlpha**|8|Activates the IME in half-width Latin mode.|
| **wdIMEModeAlphaFull**|7|Activates the IME in full-width Latin mode.|
diff --git a/api/Word.WdIndexFilter.md b/api/Word.WdIndexFilter.md
index 56f88778814..0504c2ad3bc 100644
--- a/api/Word.WdIndexFilter.md
+++ b/api/Word.WdIndexFilter.md
@@ -14,7 +14,7 @@ Specifies how Microsoft Word classifies the first character of entries in the sp
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdIndexFilterAiueo**|1|Japanese words use the AIUEO method of alphabetizing.|
| **wdIndexFilterAkasatana**|2|Japanese words use Akasatana.|
diff --git a/api/Word.WdIndexFormat.md b/api/Word.WdIndexFormat.md
index e336d2a7afe..0125063a2bf 100644
--- a/api/Word.WdIndexFormat.md
+++ b/api/Word.WdIndexFormat.md
@@ -14,7 +14,7 @@ Specifies the formatting for indexes in a document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdIndexBulleted**|4|Bulleted.|
| **wdIndexClassic**|1|Classic.|
diff --git a/api/Word.WdIndexSortBy.md b/api/Word.WdIndexSortBy.md
index cdea2333bcf..1b11289d592 100644
--- a/api/Word.WdIndexSortBy.md
+++ b/api/Word.WdIndexSortBy.md
@@ -14,7 +14,7 @@ Specifies the criteria by which Word sorts the specified index.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdIndexSortByStroke**|0|Sort by the number of strokes in a character.|
| **wdIndexSortBySyllable**|1|Sort phonetically.|
diff --git a/api/Word.WdIndexType.md b/api/Word.WdIndexType.md
index 2b5720d98f7..2d9605188e6 100644
--- a/api/Word.WdIndexType.md
+++ b/api/Word.WdIndexType.md
@@ -14,7 +14,7 @@ Specifies the type of index.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdIndexIndent**|0|An indented index.|
| **wdIndexRunin**|1|A run-in index.|
diff --git a/api/Word.WdInformation.md b/api/Word.WdInformation.md
index d0b76cd93c1..311b48c04a6 100644
--- a/api/Word.WdInformation.md
+++ b/api/Word.WdInformation.md
@@ -14,7 +14,7 @@ Specifies the type of information returned about a specified selection or range.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdActiveEndAdjustedPageNumber**|1|Returns the number of the page that contains the active end of the specified selection or range. If you set a starting page number or make other manual adjustments, returns the adjusted page number (unlike **wdActiveEndPageNumber**).|
| **wdActiveEndPageNumber**|3|Returns the number of the page that contains the active end of the specified selection or range, counting from the beginning of the document. Any manual adjustments to page numbering are disregarded (unlike **wdActiveEndAdjustedPageNumber**).|
diff --git a/api/Word.WdInlineShapeType.md b/api/Word.WdInlineShapeType.md
index d8172c89953..913c61354bc 100644
--- a/api/Word.WdInlineShapeType.md
+++ b/api/Word.WdInlineShapeType.md
@@ -14,7 +14,7 @@ Specifies a shape type for inline shapes.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdInlineShapeChart**|12|Inline chart.|
| **wdInlineShapeDiagram**|13|Inline diagram.|
diff --git a/api/Word.WdInsertCells.md b/api/Word.WdInsertCells.md
index 0e1c73dce5a..9f4b3b2ef52 100644
--- a/api/Word.WdInsertCells.md
+++ b/api/Word.WdInsertCells.md
@@ -14,7 +14,7 @@ Specifies where and what type of cells to add to an existing table.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdInsertCellsEntireColumn**|3|Inserts an entire column to the left of the column that contains the selection.|
| **wdInsertCellsEntireRow**|2|Inserts an entire row above the row that contains the selection.|
diff --git a/api/Word.WdInsertedTextMark.md b/api/Word.WdInsertedTextMark.md
index 46575f0c953..082fecf17fa 100644
--- a/api/Word.WdInsertedTextMark.md
+++ b/api/Word.WdInsertedTextMark.md
@@ -14,7 +14,7 @@ Specifies the formatting of text that is inserted while change tracking is enabl
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdInsertedTextMarkBold**|1|Inserted text is displayed in bold.|
| **wdInsertedTextMarkColorOnly**|5|Inserted text is displayed in a specified color.|
diff --git a/api/Word.WdInternationalIndex.md b/api/Word.WdInternationalIndex.md
index 1c2b253feea..8a44a12546c 100644
--- a/api/Word.WdInternationalIndex.md
+++ b/api/Word.WdInternationalIndex.md
@@ -14,7 +14,7 @@ Specifies information specific to the current country/region and international s
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wd24HourClock**|21|Returns **True** if you are using 24-hour time; returns **False** if you are using 12-hour time.|
| **wdCurrencyCode**|20|Returns the currency symbol ($ in U.S. English).|
diff --git a/api/Word.WdJustificationMode.md b/api/Word.WdJustificationMode.md
index c1f925804dc..716a1c41ef3 100644
--- a/api/Word.WdJustificationMode.md
+++ b/api/Word.WdJustificationMode.md
@@ -14,7 +14,7 @@ Specifies the character spacing adjustment for a document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdJustificationModeCompress**|1|Compress.|
| **wdJustificationModeCompressKana**|2|Compress, using rules of the kana syllabaries, Hiragana and Katakana.|
diff --git a/api/Word.WdKana.md b/api/Word.WdKana.md
index 4031e8d1c8c..d974b0d1f4b 100644
--- a/api/Word.WdKana.md
+++ b/api/Word.WdKana.md
@@ -14,7 +14,7 @@ Specifies the format of the selected Japanese text.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdKanaHiragana**|9|The text is formatted as Hiragana.|
| **wdKanaKatakana**|8|The text is formatted as Katakana.|
diff --git a/api/Word.WdKey.md b/api/Word.WdKey.md
index afe0124e0dc..7cc9c5c20c1 100644
--- a/api/Word.WdKey.md
+++ b/api/Word.WdKey.md
@@ -14,7 +14,7 @@ Specifies a keyboard character. Although uppercase and lowercase characters are
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdKey0**|48|The 0 key.|
| **wdKey1**|49|The 1 key.|
diff --git a/api/Word.WdKeyCategory.md b/api/Word.WdKeyCategory.md
index ff849f6a88d..324cd4d68a4 100644
--- a/api/Word.WdKeyCategory.md
+++ b/api/Word.WdKeyCategory.md
@@ -14,7 +14,7 @@ Specifies the type of item assigned to the key binding.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdKeyCategoryAutoText**|4|Key is assigned to autotext.|
| **wdKeyCategoryCommand**|1|Key is assigned to a command|
diff --git a/api/Word.WdLanguageID.md b/api/Word.WdLanguageID.md
index 114bd007db0..6f56b4593dd 100644
--- a/api/Word.WdLanguageID.md
+++ b/api/Word.WdLanguageID.md
@@ -14,7 +14,7 @@ Specifies the language to use.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAfrikaans**|1078|African language.|
| **wdAlbanian**|1052|Albanian language.|
diff --git a/api/Word.WdLayoutMode.md b/api/Word.WdLayoutMode.md
index 90482821801..93d769d8007 100644
--- a/api/Word.WdLayoutMode.md
+++ b/api/Word.WdLayoutMode.md
@@ -14,7 +14,7 @@ Specifies how text is laid out in the layout mode for the current document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdLayoutModeDefault**|0|No grid is used to lay out text.|
| **wdLayoutModeGenko**|3|Text is laid out on a grid; the user specifies the number of lines and the number of characters per line. As the user types, Microsoft Word automatically aligns characters with gridlines.|
diff --git a/api/Word.WdLetterStyle.md b/api/Word.WdLetterStyle.md
index d478560990c..184d3b56192 100644
--- a/api/Word.WdLetterStyle.md
+++ b/api/Word.WdLetterStyle.md
@@ -14,7 +14,7 @@ Specifies the layout of a letter created by the Letter Wizard.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFullBlock**|0|Full block.|
| **wdModifiedBlock**|1|Modified block.|
diff --git a/api/Word.WdLetterheadLocation.md b/api/Word.WdLetterheadLocation.md
index 3d678732a36..4e500b8fa1b 100644
--- a/api/Word.WdLetterheadLocation.md
+++ b/api/Word.WdLetterheadLocation.md
@@ -14,7 +14,7 @@ Specifies a location to place letterhead in a letter created by the Letter Wizar
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdLetterBottom**|1|At the bottom of the letter.|
| **wdLetterLeft**|2|To the left of the letter.|
diff --git a/api/Word.WdLigatures.md b/api/Word.WdLigatures.md
index 764f154d157..b2e8b55b2ac 100644
--- a/api/Word.WdLigatures.md
+++ b/api/Word.WdLigatures.md
@@ -14,7 +14,7 @@ Specifies the type of ligatures applied to a font.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdLigaturesAll**|15|Applies all types of ligatures to the font.|
| **wdLigaturesContextual**|2|Applies contextual ligatures to the font. Contextual ligatures are often designed to enhance readability, but may also be solely ornamental. Contextual ligatures may also be contextual alternates.|
diff --git a/api/Word.WdLineEndingType.md b/api/Word.WdLineEndingType.md
index 7ae6f7d832b..66673f07e8c 100644
--- a/api/Word.WdLineEndingType.md
+++ b/api/Word.WdLineEndingType.md
@@ -14,7 +14,7 @@ Specifies how Microsoft Word marks the line and paragraph breaks in documents sa
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCRLF**|0|Carriage return plus line feed.|
| **wdCROnly**|1|Carriage return only.|
diff --git a/api/Word.WdLineSpacing.md b/api/Word.WdLineSpacing.md
index ab037a582dd..64e59126855 100644
--- a/api/Word.WdLineSpacing.md
+++ b/api/Word.WdLineSpacing.md
@@ -14,7 +14,7 @@ Specifies a line spacing format to be applied to a paragraph.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdLineSpace1pt5**|1|Space-and-a-half line spacing. Spacing is equivalent to the current font size plus 6 points.|
| **wdLineSpaceAtLeast**|3|Line spacing is always at least a specified amount. The amount is specified separately.|
diff --git a/api/Word.WdLineStyle.md b/api/Word.WdLineStyle.md
index af3696aadb6..271597d682b 100644
--- a/api/Word.WdLineStyle.md
+++ b/api/Word.WdLineStyle.md
@@ -14,7 +14,7 @@ Specifies the border style for an object.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdLineStyleDashDot**|5|A dash followed by a dot.|
| **wdLineStyleDashDotDot**|6|A dash followed by two dots.|
diff --git a/api/Word.WdLineType.md b/api/Word.WdLineType.md
index da518f77a64..a2ffad4cc78 100644
--- a/api/Word.WdLineType.md
+++ b/api/Word.WdLineType.md
@@ -14,7 +14,7 @@ Specifies whether a line is a line of text or a table row.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTableRow**|1|A table row.|
| **wdTextLine**|0|A line of text in the body of the document.|
diff --git a/api/Word.WdLineWidth.md b/api/Word.WdLineWidth.md
index 277b69e8220..7ae7089d0c7 100644
--- a/api/Word.WdLineWidth.md
+++ b/api/Word.WdLineWidth.md
@@ -14,7 +14,7 @@ Specifies the width of an object's border.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdLineWidth025pt**|2|0.25 point.|
| **wdLineWidth050pt**|4|0.50 point.|
diff --git a/api/Word.WdLinkType.md b/api/Word.WdLinkType.md
index 09ba269553a..ac13a6e1de7 100644
--- a/api/Word.WdLinkType.md
+++ b/api/Word.WdLinkType.md
@@ -14,7 +14,7 @@ Specifies the type of link.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdLinkTypeChart**|8|Microsoft Excel chart.|
| **wdLinkTypeDDE**|6|Dynamic Data Exchange.|
diff --git a/api/Word.WdListApplyTo.md b/api/Word.WdListApplyTo.md
index 0a29a6ff924..cfa6d37ddc7 100644
--- a/api/Word.WdListApplyTo.md
+++ b/api/Word.WdListApplyTo.md
@@ -14,7 +14,7 @@ Specifies the portion of a list to which to apply a list template.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdListApplyToSelection**|2|Selection.|
| **wdListApplyToThisPointForward**|1|From cursor insertion point to end of list.|
diff --git a/api/Word.WdListGalleryType.md b/api/Word.WdListGalleryType.md
index 8585651863c..3766f20528e 100644
--- a/api/Word.WdListGalleryType.md
+++ b/api/Word.WdListGalleryType.md
@@ -14,7 +14,7 @@ Specifies the type of list from a list template gallery.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdBulletGallery**|1|Bulleted list.|
| **wdNumberGallery**|2|Numbered list.|
diff --git a/api/Word.WdListLevelAlignment.md b/api/Word.WdListLevelAlignment.md
index 23502692049..f91d1b087f5 100644
--- a/api/Word.WdListLevelAlignment.md
+++ b/api/Word.WdListLevelAlignment.md
@@ -14,7 +14,7 @@ Specifies the alignment of a list level.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdListLevelAlignCenter**|1|Center-aligned.|
| **wdListLevelAlignLeft**|0|Left-aligned.|
diff --git a/api/Word.WdListNumberStyle.md b/api/Word.WdListNumberStyle.md
index 4cbe92f040f..b2a8c83a2ba 100644
--- a/api/Word.WdListNumberStyle.md
+++ b/api/Word.WdListNumberStyle.md
@@ -14,7 +14,7 @@ Specifies the numeric style to apply to a list.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdListNumberStyleAiueo**|20|Aiueo numeric style.|
| **wdListNumberStyleAiueoHalfWidth**|12|Aiueo half-width numeric style.|
diff --git a/api/Word.WdListType.md b/api/Word.WdListType.md
index 744916dbb5b..2334709b533 100644
--- a/api/Word.WdListType.md
+++ b/api/Word.WdListType.md
@@ -14,7 +14,7 @@ Specifies a type of list.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdListBullet**|2|Bulleted list.|
| **wdListListNumOnly**|1|ListNum fields that can be used in the body of a paragraph.|
diff --git a/api/Word.WdLockType.md b/api/Word.WdLockType.md
index 6aa5dcb834e..b4168227a7a 100644
--- a/api/Word.WdLockType.md
+++ b/api/Word.WdLockType.md
@@ -14,7 +14,7 @@ Specifies the type of lock for a **[CoAuthLock](Word.CoAuthLock.md)** object.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdLockChanged**|3|Specifies a placeholder lock. A placeholder lock indicates that another user has removed their lock from the range, but the current user has not updated their view of the document by saving.|
| **wdLockEphemeral**|2|Specifies an ephemeral lock. Word implicitly places an ephemeral lock on a range when a user begins editing a range in a document with coauthoring enabled.|
diff --git a/api/Word.WdMailMergeActiveRecord.md b/api/Word.WdMailMergeActiveRecord.md
index c1b0abfe7b3..f20e79754d7 100644
--- a/api/Word.WdMailMergeActiveRecord.md
+++ b/api/Word.WdMailMergeActiveRecord.md
@@ -14,7 +14,7 @@ Specifies the active record in a mail merge result set.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFirstDataSourceRecord**|-6|The first record in the data source.|
| **wdFirstRecord**|-4|The first record in the result set.|
diff --git a/api/Word.WdMailMergeComparison.md b/api/Word.WdMailMergeComparison.md
index b33ba741e3b..bb6d76aebe3 100644
--- a/api/Word.WdMailMergeComparison.md
+++ b/api/Word.WdMailMergeComparison.md
@@ -14,7 +14,7 @@ Specifies the type of comparison to use when a condition is added to a mail merg
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdMergeIfEqual**|0|A value is output if the mail merge field is equal to a value.|
| **wdMergeIfGreaterThan**|3|A value is output if the mail merge field is greater than a value.|
diff --git a/api/Word.WdMailMergeDataSource.md b/api/Word.WdMailMergeDataSource.md
index 7570e3cf7e6..64e65079dd7 100644
--- a/api/Word.WdMailMergeDataSource.md
+++ b/api/Word.WdMailMergeDataSource.md
@@ -14,7 +14,7 @@ Specifies the data source for a mail merge operation.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdMergeInfoFromAccessDDE**|1|From Microsoft Access using Dynamic Data Exchange (DDE).|
| **wdMergeInfoFromExcelDDE**|2|From Microsoft Excel using DDE.|
diff --git a/api/Word.WdMailMergeDefaultRecord.md b/api/Word.WdMailMergeDefaultRecord.md
index 132050c5e60..312f947da15 100644
--- a/api/Word.WdMailMergeDefaultRecord.md
+++ b/api/Word.WdMailMergeDefaultRecord.md
@@ -14,7 +14,7 @@ Specifies the default record to use in a mail merge process.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdDefaultFirstRecord**|1|Use the first record in the result set as the default record.|
| **wdDefaultLastRecord**|-16|Use the last record in the result set as the default record.|
diff --git a/api/Word.WdMailMergeDestination.md b/api/Word.WdMailMergeDestination.md
index 1a92c33708f..010ab0b2f4e 100644
--- a/api/Word.WdMailMergeDestination.md
+++ b/api/Word.WdMailMergeDestination.md
@@ -14,7 +14,7 @@ Specifies a destination for mail merge results.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdSendToEmail**|2|Send results to e-mail recipient.|
| **wdSendToFax**|3|Send results to fax recipient.|
diff --git a/api/Word.WdMailMergeMailFormat.md b/api/Word.WdMailMergeMailFormat.md
index 82dc31137ab..4d33f7faf16 100644
--- a/api/Word.WdMailMergeMailFormat.md
+++ b/api/Word.WdMailMergeMailFormat.md
@@ -14,7 +14,7 @@ Specifies the format to use when the mail merge destination is an e-mail message
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdMailFormatHTML**|1|Sends mail merge e-mail documents using HTML format.|
| **wdMailFormatPlainText**|0|Sends mail merge e-mail documents using plain text.|
diff --git a/api/Word.WdMailMergeMainDocType.md b/api/Word.WdMailMergeMainDocType.md
index 60377a046fa..1999fff367b 100644
--- a/api/Word.WdMailMergeMainDocType.md
+++ b/api/Word.WdMailMergeMainDocType.md
@@ -14,7 +14,7 @@ Specifies a type of mail merge document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCatalog**|3|Catalog.|
| **wdDirectory**|3|Directory.|
diff --git a/api/Word.WdMailMergeState.md b/api/Word.WdMailMergeState.md
index abe71bc8331..fa926276db7 100644
--- a/api/Word.WdMailMergeState.md
+++ b/api/Word.WdMailMergeState.md
@@ -14,7 +14,7 @@ Specifies the state of a mail merge operation.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdDataSource**|5|A data source with no main document.|
| **wdMainAndDataSource**|2|A main document with an attached data source.|
diff --git a/api/Word.WdMailSystem.md b/api/Word.WdMailSystem.md
index 5a9e46afafb..ecc40764c2e 100644
--- a/api/Word.WdMailSystem.md
+++ b/api/Word.WdMailSystem.md
@@ -14,7 +14,7 @@ Specifies the type of mail system.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdMAPI**|1|Standard Messaging Application Programming Interface (MAPI) mail system.|
| **wdMAPIandPowerTalk**|3|Both a standard Messaging Application Programming Interface (MAPI) mail system and a PowerTalk mail system.|
diff --git a/api/Word.WdMailerPriority.md b/api/Word.WdMailerPriority.md
index a5933b200e2..393bf880c5b 100644
--- a/api/Word.WdMailerPriority.md
+++ b/api/Word.WdMailerPriority.md
@@ -14,7 +14,7 @@ This enumeration has been deprecated and should not be used.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdPriorityHigh**|3|Not supported.|
| **wdPriorityLow**|2|Not supported.|
diff --git a/api/Word.WdMappedDataFields.md b/api/Word.WdMappedDataFields.md
index ecf7bc333c9..4eb182a4520 100644
--- a/api/Word.WdMappedDataFields.md
+++ b/api/Word.WdMappedDataFields.md
@@ -14,7 +14,7 @@ Specifies a type of mapped data field.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAddress1**|10|Address 1 field.|
| **wdAddress2**|11|Address 2 field.|
diff --git a/api/Word.WdMeasurementUnits.md b/api/Word.WdMeasurementUnits.md
index b3f06ada80c..dd4109e8a21 100644
--- a/api/Word.WdMeasurementUnits.md
+++ b/api/Word.WdMeasurementUnits.md
@@ -14,7 +14,7 @@ Specifies a unit of measure to use.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCentimeters**|1|Centimeters.|
| **wdInches**|0|Inches.|
diff --git a/api/Word.WdMergeFormatFrom.md b/api/Word.WdMergeFormatFrom.md
index 5f5d7e7547f..0bec7f310c2 100644
--- a/api/Word.WdMergeFormatFrom.md
+++ b/api/Word.WdMergeFormatFrom.md
@@ -14,7 +14,7 @@ Specifies the document from which to retain formatting during a document compare
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdMergeFormatFromOriginal**|0|Retains formatting from the original document.|
| **wdMergeFormatFromPrompt**|2|Prompt the user for the document to use for formatting.|
diff --git a/api/Word.WdMergeSubType.md b/api/Word.WdMergeSubType.md
index fba925e97a4..169f130a7f3 100644
--- a/api/Word.WdMergeSubType.md
+++ b/api/Word.WdMergeSubType.md
@@ -14,7 +14,7 @@ Specifies the data source to be attached to the current document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdMergeSubTypeAccess**|1|Microsoft Access.|
| **wdMergeSubTypeOAL**|2|Office Address List.|
diff --git a/api/Word.WdMergeTarget.md b/api/Word.WdMergeTarget.md
index b0b4aadcbe7..0159e185cec 100644
--- a/api/Word.WdMergeTarget.md
+++ b/api/Word.WdMergeTarget.md
@@ -14,7 +14,7 @@ Specifies the target for a Compare and Merge Documents process.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdMergeTargetCurrent**|1|Merge into current document.|
| **wdMergeTargetNew**|2|Merge into new document.|
diff --git a/api/Word.WdMonthNames.md b/api/Word.WdMonthNames.md
index cfa21f6e29c..67168acfa5c 100644
--- a/api/Word.WdMonthNames.md
+++ b/api/Word.WdMonthNames.md
@@ -14,7 +14,7 @@ Specifies the format in which to display month names.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdMonthNamesArabic**|0|Arabic format.|
| **wdMonthNamesEnglish**|1|English format.|
diff --git a/api/Word.WdMoveFromTextMark.md b/api/Word.WdMoveFromTextMark.md
index 663730fe5d3..32089011afe 100644
--- a/api/Word.WdMoveFromTextMark.md
+++ b/api/Word.WdMoveFromTextMark.md
@@ -14,7 +14,7 @@ Marks the moved-from text when text in a document with tracked changes is moved
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdMoveFromTextMarkBold**|6|Marks moved text with bold formatting.|
| **wdMoveFromTextMarkCaret**|3|Marks moved text with a caret.|
diff --git a/api/Word.WdMoveToTextMark.md b/api/Word.WdMoveToTextMark.md
index b017b5698f7..e4ee3bbb337 100644
--- a/api/Word.WdMoveToTextMark.md
+++ b/api/Word.WdMoveToTextMark.md
@@ -14,7 +14,7 @@ Marks the moved-to text when text in a document with tracked changes is moved fr
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdMoveToTextMarkBold**|1|Marks moved text with bold formatting.|
| **wdMoveToTextMarkColorOnly**|5|Marks moved text with color only. Use the **[MoveToTextColor](Word.Options.MoveToTextColor.md)** property to set the color of moved text.|
diff --git a/api/Word.WdMovementType.md b/api/Word.WdMovementType.md
index 0757a1fc114..08af1104c55 100644
--- a/api/Word.WdMovementType.md
+++ b/api/Word.WdMovementType.md
@@ -14,7 +14,7 @@ Specifies the way the selection is moved.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdExtend**|1|The end of the selection is extended to the end of the specified unit.|
| **wdMove**|0|The selection is collapsed to an insertion point and moved to the end of the specified unit. Default.|
diff --git a/api/Word.WdMultipleWordConversionsMode.md b/api/Word.WdMultipleWordConversionsMode.md
index 0b7271bb609..bf5261c9fdd 100644
--- a/api/Word.WdMultipleWordConversionsMode.md
+++ b/api/Word.WdMultipleWordConversionsMode.md
@@ -14,7 +14,7 @@ Specifies the direction for conversion between Hangul and Hanja.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdHangulToHanja**|0|Hangul to Hanja.|
| **wdHanjaToHangul**|1|Hanja to Hangul.|
diff --git a/api/Word.WdNewDocumentType.md b/api/Word.WdNewDocumentType.md
index 3a99f5d2afc..18366c64a13 100644
--- a/api/Word.WdNewDocumentType.md
+++ b/api/Word.WdNewDocumentType.md
@@ -14,7 +14,7 @@ Specifies the type of new document to create.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdNewBlankDocument**|0|Blank document.|
| **wdNewEmailMessage**|2|E-mail message.|
diff --git a/api/Word.WdNoteNumberStyle.md b/api/Word.WdNoteNumberStyle.md
index 14960284217..df72453d961 100644
--- a/api/Word.WdNoteNumberStyle.md
+++ b/api/Word.WdNoteNumberStyle.md
@@ -14,7 +14,7 @@ Specifies the number style to apply to endnotes, endnote options, footnotes, or
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdNoteNumberStyleArabic**|0|Arabic number style.|
| **wdNoteNumberStyleArabicFullWidth**|14|Arabic full-width number style.|
diff --git a/api/Word.WdNumberForm.md b/api/Word.WdNumberForm.md
index c226b53a27a..1860025b4bc 100644
--- a/api/Word.WdNumberForm.md
+++ b/api/Word.WdNumberForm.md
@@ -14,7 +14,7 @@ Specifies the number form setting for an OpenType font.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdNumberFormDefault**|0|Applies the default number form for the font.|
| **wdNumberFormLining**|1|Applies the lining number form to the font.|
diff --git a/api/Word.WdNumberSpacing.md b/api/Word.WdNumberSpacing.md
index a991795a237..134c3b2b7cf 100644
--- a/api/Word.WdNumberSpacing.md
+++ b/api/Word.WdNumberSpacing.md
@@ -14,7 +14,7 @@ Specifies the number spacing setting for an OpenType font.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdNumberSpacingDefault**|0|Applies the default number spacing for the font.|
| **wdNumberSpacingProportional**|1|Applies proportional number spacing to the font.|
diff --git a/api/Word.WdNumberStyleWordBasicBiDi.md b/api/Word.WdNumberStyleWordBasicBiDi.md
index fae1853e3ec..6a9a66b051d 100644
--- a/api/Word.WdNumberStyleWordBasicBiDi.md
+++ b/api/Word.WdNumberStyleWordBasicBiDi.md
@@ -14,7 +14,7 @@ This enumeration has been deprecated and should not be used.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCaptionNumberStyleBidiLetter1**|49|Not supported.|
| **wdCaptionNumberStyleBidiLetter2**|50|Not supported.|
diff --git a/api/Word.WdNumberType.md b/api/Word.WdNumberType.md
index c0550ff632f..f601dcd2632 100644
--- a/api/Word.WdNumberType.md
+++ b/api/Word.WdNumberType.md
@@ -14,7 +14,7 @@ Specifies the type of number.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdNumberAllNumbers**|3|Default value for all other cases.|
| **wdNumberListNum**|2|Default value for LISTNUM fields.|
diff --git a/api/Word.WdNumberingRule.md b/api/Word.WdNumberingRule.md
index d3955aa6f3d..b8ea8b7446e 100644
--- a/api/Word.WdNumberingRule.md
+++ b/api/Word.WdNumberingRule.md
@@ -14,7 +14,7 @@ Specifies the numbering rule to apply.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdRestartContinuous**|0|Numbers are assigned continuously.|
| **wdRestartPage**|2|Numbers are reset for each page.|
diff --git a/api/Word.WdOLEPlacement.md b/api/Word.WdOLEPlacement.md
index 3473a390e53..6880feed45e 100644
--- a/api/Word.WdOLEPlacement.md
+++ b/api/Word.WdOLEPlacement.md
@@ -14,7 +14,7 @@ Specifies the placement for an OLE object.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFloatOverText**|1|Float over text.|
| **wdInLine**|0|In line with text.|
diff --git a/api/Word.WdOLEType.md b/api/Word.WdOLEType.md
index 731b24c2df6..d6711b57d35 100644
--- a/api/Word.WdOLEType.md
+++ b/api/Word.WdOLEType.md
@@ -14,7 +14,7 @@ Specifies the type of an OLE object.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOLEControl**|2|OLE control.|
| **wdOLEEmbed**|1|Embedded OLE object.|
diff --git a/api/Word.WdOLEVerb.md b/api/Word.WdOLEVerb.md
index d96991685ca..9bcd4063cf0 100644
--- a/api/Word.WdOLEVerb.md
+++ b/api/Word.WdOLEVerb.md
@@ -14,7 +14,7 @@ Specifies the action associated with the verb that the OLE object should perform
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOLEVerbDiscardUndoState**|-6|Forces the object to discard any undo state that it might be maintaining; note that the object remains active, however.|
| **wdOLEVerbHide**|-3|Removes the object's user interface from view.|
diff --git a/api/Word.WdOMathBreakBin.md b/api/Word.WdOMathBreakBin.md
index 7460222ea56..aa50cdad0b1 100644
--- a/api/Word.WdOMathBreakBin.md
+++ b/api/Word.WdOMathBreakBin.md
@@ -14,7 +14,7 @@ Specifies where Microsoft Word places binary operators when equations span two o
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOMathBreakBinAfter**|1|Places the operator before a line break, at the end of the line.|
| **wdOMathBreakBinBefore**|0|Places the operator after a line break, at the beginning of the following line.|
diff --git a/api/Word.WdOMathBreakSub.md b/api/Word.WdOMathBreakSub.md
index 46036c7ca6e..33206a21182 100644
--- a/api/Word.WdOMathBreakSub.md
+++ b/api/Word.WdOMathBreakSub.md
@@ -14,7 +14,7 @@ Specifies how Microsoft Word handles a subtraction operator that falls before a
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOMathBreakSubMinusMinus**|0|Repeats a minus sign that ends before a line break at the beginning of the next line. Default.|
| **wdOMathBreakSubMinusPlus**|2|Inserts a minus sign at the end of the first line, before the line break, and a plus sign at the beginning of the following line, before the number.|
diff --git a/api/Word.WdOMathFracType.md b/api/Word.WdOMathFracType.md
index 9658c188e62..8979c1f6907 100644
--- a/api/Word.WdOMathFracType.md
+++ b/api/Word.WdOMathFracType.md
@@ -14,7 +14,7 @@ Specifies the type of fraction bar.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOMathFracBar**|0|Normal fraction bar.|
| **wdOMathFracLin**|3|Show fraction inline.|
diff --git a/api/Word.WdOMathFunctionType.md b/api/Word.WdOMathFunctionType.md
index 5670698e46c..65212dc9a84 100644
--- a/api/Word.WdOMathFunctionType.md
+++ b/api/Word.WdOMathFunctionType.md
@@ -14,7 +14,7 @@ Specifies the type of equation function.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOMathFunctionAcc**|1|Equation accent mark.|
| **wdOMathFunctionBar**|2|Equation fraction bar.|
diff --git a/api/Word.WdOMathHorizAlignType.md b/api/Word.WdOMathHorizAlignType.md
index 735eefc7f9b..2dd049e7b3c 100644
--- a/api/Word.WdOMathHorizAlignType.md
+++ b/api/Word.WdOMathHorizAlignType.md
@@ -14,7 +14,7 @@ Specifies the horizontal alignment for an equation.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOMathHorizAlignCenter**|0|Centered.|
| **wdOMathHorizAlignLeft**|1|Left alignment.|
diff --git a/api/Word.WdOMathJc.md b/api/Word.WdOMathJc.md
index 403734bbb6e..a3903574868 100644
--- a/api/Word.WdOMathJc.md
+++ b/api/Word.WdOMathJc.md
@@ -14,7 +14,7 @@ Specifies the default justification for equations.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOMathJcCenter**|2|Center.|
| **wdOMathJcCenterGroup**|1|Center as a group.|
diff --git a/api/Word.WdOMathShapeType.md b/api/Word.WdOMathShapeType.md
index 0836f763efc..e7b07446889 100644
--- a/api/Word.WdOMathShapeType.md
+++ b/api/Word.WdOMathShapeType.md
@@ -14,7 +14,7 @@ Specifies the appearance of delimiters (parentheses, braces, brackets) in relati
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOMathShapeCentered**|0|Vertically centers delimiters around the entire height of the equation causing delimiters grow equally above and below their midpoint.|
| **wdOMathShapeMatch**|1|Matches the shape of the delimiters to the size of their contents.|
diff --git a/api/Word.WdOMathSpacingRule.md b/api/Word.WdOMathSpacingRule.md
index b3fb1335f82..78acb7a114c 100644
--- a/api/Word.WdOMathSpacingRule.md
+++ b/api/Word.WdOMathSpacingRule.md
@@ -14,7 +14,7 @@ Specifies spacing for an equation.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOMathSpacing1pt5**|1|One and half spaces for each line.|
| **wdOMathSpacingDouble**|2|Double spacing.|
diff --git a/api/Word.WdOMathType.md b/api/Word.WdOMathType.md
index 43413af2498..76cfedcc3bf 100644
--- a/api/Word.WdOMathType.md
+++ b/api/Word.WdOMathType.md
@@ -14,7 +14,7 @@ Specifies the display format type of equation.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOMathDisplay**|0|Professional format.|
| **wdOMathInline**|1|Inline.|
diff --git a/api/Word.WdOMathVertAlignType.md b/api/Word.WdOMathVertAlignType.md
index 710e1bfcb67..795e662d84c 100644
--- a/api/Word.WdOMathVertAlignType.md
+++ b/api/Word.WdOMathVertAlignType.md
@@ -14,7 +14,7 @@ Specifies the vertical alignment of equations within the shape canvas or the lin
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOMathVertAlignBottom**|2|Aligns the equation on the bottom of the shape canvas or line.|
| **wdOMathVertAlignCenter**|0|Vertically centers the equation in the shape canvas or line.|
diff --git a/api/Word.WdOpenFormat.md b/api/Word.WdOpenFormat.md
index 868d78ca507..6cb2fa1f4b4 100644
--- a/api/Word.WdOpenFormat.md
+++ b/api/Word.WdOpenFormat.md
@@ -14,7 +14,7 @@ Specifies the format to use when opening a document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOpenFormatAllWord**|6|A Microsoft Word format that is backward compatible with earlier versions of Word.|
| **wdOpenFormatAuto**|0|The existing format.|
diff --git a/api/Word.WdOrganizerObject.md b/api/Word.WdOrganizerObject.md
index f6c9baf541a..61d7193ce9f 100644
--- a/api/Word.WdOrganizerObject.md
+++ b/api/Word.WdOrganizerObject.md
@@ -14,7 +14,7 @@ Specifies the type of object used by a delete, copy, or rename action.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOrganizerObjectAutoText**|1|An AutoText item.|
| **wdOrganizerObjectCommandBars**|2|A command bar item.|
diff --git a/api/Word.WdOrientation.md b/api/Word.WdOrientation.md
index 82d69c1f11f..7c779e143e8 100644
--- a/api/Word.WdOrientation.md
+++ b/api/Word.WdOrientation.md
@@ -14,7 +14,7 @@ Specifies a page layout orientation.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOrientLandscape**|1|Landscape orientation.|
| **wdOrientPortrait**|0|Portrait orientation.|
diff --git a/api/Word.WdOriginalFormat.md b/api/Word.WdOriginalFormat.md
index 73347180f4b..a47904fb6cf 100644
--- a/api/Word.WdOriginalFormat.md
+++ b/api/Word.WdOriginalFormat.md
@@ -14,7 +14,7 @@ Specifies the document format. This enumeration is commonly used when saving a d
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOriginalDocumentFormat**|1|Original document format.|
| **wdPromptUser**|2|Prompt user to select a document format.|
diff --git a/api/Word.WdOutlineLevel.md b/api/Word.WdOutlineLevel.md
index bdbe6e21113..3321134ac84 100644
--- a/api/Word.WdOutlineLevel.md
+++ b/api/Word.WdOutlineLevel.md
@@ -14,7 +14,7 @@ Specifies the outline level to apply to a paragraph.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdOutlineLevel1**|1|Outline level 1.|
| **wdOutlineLevel2**|2|Outline level 2.|
diff --git a/api/Word.WdPageBorderArt.md b/api/Word.WdPageBorderArt.md
index 6b20b86092a..9ed24d74958 100644
--- a/api/Word.WdPageBorderArt.md
+++ b/api/Word.WdPageBorderArt.md
@@ -14,7 +14,7 @@ Specifies the graphical page border setting of a page.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdArtApples**|1|An apple border.|
| **wdArtArchedScallops**|97|An arched scalloped border.|
diff --git a/api/Word.WdPageFit.md b/api/Word.WdPageFit.md
index 430351b955f..6b2aebaafc8 100644
--- a/api/Word.WdPageFit.md
+++ b/api/Word.WdPageFit.md
@@ -14,7 +14,7 @@ Specifies the view setting for a page.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdPageFitBestFit**|2|Best fit the page to the active window.|
| **wdPageFitFullPage**|1|View the full page.|
diff --git a/api/Word.WdPageMovementType.md b/api/Word.WdPageMovementType.md
index 2e3127fd42a..cc74505dd09 100644
--- a/api/Word.WdPageMovementType.md
+++ b/api/Word.WdPageMovementType.md
@@ -10,7 +10,7 @@ ms.date: 08/15/2017
Specifies the the page movement type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdVertical**|1|Document page movement type vertical.|
| **wdSideToSide**|2|Document page movement type side-to-side.|
diff --git a/api/Word.WdPageNumberAlignment.md b/api/Word.WdPageNumberAlignment.md
index bd43da977de..2be38f5377e 100644
--- a/api/Word.WdPageNumberAlignment.md
+++ b/api/Word.WdPageNumberAlignment.md
@@ -14,7 +14,7 @@ Specifies the alignment to apply to page numbers.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAlignPageNumberCenter**|1|Centered.|
| **wdAlignPageNumberInside**|3|Left-aligned just inside the footer.|
diff --git a/api/Word.WdPageNumberStyle.md b/api/Word.WdPageNumberStyle.md
index 2dc7119ddff..650a3f7f022 100644
--- a/api/Word.WdPageNumberStyle.md
+++ b/api/Word.WdPageNumberStyle.md
@@ -14,7 +14,7 @@ Specifies the style to apply to page numbers.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdPageNumberStyleArabic**|0|Arabic style.|
| **wdPageNumberStyleArabicFullWidth**|14|Arabic full width style.|
diff --git a/api/Word.WdPaperSize.md b/api/Word.WdPaperSize.md
index c09dbc31596..c5798a5ffbd 100644
--- a/api/Word.WdPaperSize.md
+++ b/api/Word.WdPaperSize.md
@@ -14,7 +14,7 @@ Specifies a paper size.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdPaper10x14**|0|10 inches wide, 14 inches long.|
| **wdPaper11x17**|1|Legal 11 inches wide, 17 inches long.|
diff --git a/api/Word.WdPaperTray.md b/api/Word.WdPaperTray.md
index bb7a180fe1d..d088c05577a 100644
--- a/api/Word.WdPaperTray.md
+++ b/api/Word.WdPaperTray.md
@@ -14,7 +14,7 @@ Specifies a printer paper tray.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdPrinterAutomaticSheetFeed**|7|Automatic sheet feed.|
| **wdPrinterDefaultBin**|0|Default bin.|
diff --git a/api/Word.WdParagraphAlignment.md b/api/Word.WdParagraphAlignment.md
index 75f4c9a95e0..7ddc7179c28 100644
--- a/api/Word.WdParagraphAlignment.md
+++ b/api/Word.WdParagraphAlignment.md
@@ -14,7 +14,7 @@ Specifies the alignment of a paragraph.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAlignParagraphCenter**|1|Center-aligned.|
| **wdAlignParagraphDistribute**|4|Paragraph characters are distributed to fill the entire width of the paragraph.|
diff --git a/api/Word.WdPartOfSpeech.md b/api/Word.WdPartOfSpeech.md
index 3bde0dfa3de..108c7579b49 100644
--- a/api/Word.WdPartOfSpeech.md
+++ b/api/Word.WdPartOfSpeech.md
@@ -14,7 +14,7 @@ Specifies the part of speech that a word represents when returned by the Word th
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAdjective**|0|An adjective.|
| **wdAdverb**|2|An adverb.|
diff --git a/api/Word.WdPasteDataType.md b/api/Word.WdPasteDataType.md
index 224747cd9f5..533a98eff67 100644
--- a/api/Word.WdPasteDataType.md
+++ b/api/Word.WdPasteDataType.md
@@ -14,7 +14,7 @@ Specifies the format for the Clipboard contents when they are inserted into a do
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdPasteBitmap**|4|Bitmap.|
| **wdPasteDeviceIndependentBitmap**|5|Device-independent bitmap.|
diff --git a/api/Word.WdPasteOptions.md b/api/Word.WdPasteOptions.md
index 6150b16aa27..73728b87dbc 100644
--- a/api/Word.WdPasteOptions.md
+++ b/api/Word.WdPasteOptions.md
@@ -14,7 +14,7 @@ Indicates how to paste copied text.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdKeepSourceFormatting**|0|Keeps formatting from the source document.|
| **wdKeepTextOnly**|2|Keeps text only, without formatting.|
diff --git a/api/Word.WdPhoneticGuideAlignmentType.md b/api/Word.WdPhoneticGuideAlignmentType.md
index a8e0c5578e6..597399a7eee 100644
--- a/api/Word.WdPhoneticGuideAlignmentType.md
+++ b/api/Word.WdPhoneticGuideAlignmentType.md
@@ -14,7 +14,7 @@ Specifies the alignment of phonetic text that is added to the specified range.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdPhoneticGuideAlignmentCenter**|0|Microsoft Word centers phonetic text over the specified range. This is the default value.|
| **wdPhoneticGuideAlignmentLeft**|3|Word left-aligns phonetic text with the specified range.|
diff --git a/api/Word.WdPictureLinkType.md b/api/Word.WdPictureLinkType.md
index 84a6a7f4d31..da6542f624f 100644
--- a/api/Word.WdPictureLinkType.md
+++ b/api/Word.WdPictureLinkType.md
@@ -14,7 +14,7 @@ Specifies how a picture should be linked to a document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdLinkDataInDoc**|1|Embed the picture in the document.|
| **wdLinkDataOnDisk**|2|Link the picture to the document.|
diff --git a/api/Word.WdPortugueseReform.md b/api/Word.WdPortugueseReform.md
index 626155affcf..da885309364 100644
--- a/api/Word.WdPortugueseReform.md
+++ b/api/Word.WdPortugueseReform.md
@@ -14,7 +14,7 @@ Specifies the mode for the Brazilian or European Portuguese spellers. Read/write
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdPortugueseBoth**|3|Use both the pre-reform and post-reform spelling rules.|
| **wdPortuguesePostReform**|2|Use the post-reform spelling rules.|
diff --git a/api/Word.WdPreferredWidthType.md b/api/Word.WdPreferredWidthType.md
index f521aa6c88f..f7a95157d82 100644
--- a/api/Word.WdPreferredWidthType.md
+++ b/api/Word.WdPreferredWidthType.md
@@ -14,7 +14,7 @@ Specifies the preferred unit of measure to use when measuring the width of an it
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdPreferredWidthAuto**|1|Automatically select the unit of measure to use based on the current selection.|
| **wdPreferredWidthPercent**|2|Measure the current item width using a specified percentage.|
diff --git a/api/Word.WdPrintOutItem.md b/api/Word.WdPrintOutItem.md
index d998f1fd56f..6dbaaee99d0 100644
--- a/api/Word.WdPrintOutItem.md
+++ b/api/Word.WdPrintOutItem.md
@@ -14,7 +14,7 @@ Specifies the item to print.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdPrintAutoTextEntries**|4|Autotext entries in the current document.|
| **wdPrintComments**|2|Comments in the current document.|
diff --git a/api/Word.WdPrintOutPages.md b/api/Word.WdPrintOutPages.md
index aec89d55a28..eaf9ba73b4d 100644
--- a/api/Word.WdPrintOutPages.md
+++ b/api/Word.WdPrintOutPages.md
@@ -14,7 +14,7 @@ Specifies the type of pages to print.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdPrintAllPages**|0|All pages.|
| **wdPrintEvenPagesOnly**|2|Even-numbered pages only.|
diff --git a/api/Word.WdPrintOutRange.md b/api/Word.WdPrintOutRange.md
index 522b323da63..5d1fab0300b 100644
--- a/api/Word.WdPrintOutRange.md
+++ b/api/Word.WdPrintOutRange.md
@@ -14,7 +14,7 @@ Specifies a range to print.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdPrintAllDocument**|0|The entire document.|
| **wdPrintCurrentPage**|2|The current page.|
diff --git a/api/Word.WdProofreadingErrorType.md b/api/Word.WdProofreadingErrorType.md
index 56d5d3d71c4..a1d97aeec96 100644
--- a/api/Word.WdProofreadingErrorType.md
+++ b/api/Word.WdProofreadingErrorType.md
@@ -14,7 +14,7 @@ Specifies the type of proofreading error returned by the Word proofreading proce
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdGrammaticalError**|1|Grammatical error.|
| **wdSpellingError**|0|Spelling error.|
diff --git a/api/Word.WdProtectedViewCloseReason.md b/api/Word.WdProtectedViewCloseReason.md
index 09aeca96dcf..76f77be13ec 100644
--- a/api/Word.WdProtectedViewCloseReason.md
+++ b/api/Word.WdProtectedViewCloseReason.md
@@ -14,7 +14,7 @@ Specifies how the [Protected View](Word.ProtectedViewWindow.md) window was close
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdProtectedViewCloseEdit**|1|The window was closed when the user clicked the **Enable Editing** or **Edit Anyway** button while in Protected View.|
| **wdProtectedViewCloseForced**|2|The window was closed because the application shut it down forcefully or it stopped responding.|
diff --git a/api/Word.WdProtectionType.md b/api/Word.WdProtectionType.md
index 8e9701528a8..0bda1ba0bd5 100644
--- a/api/Word.WdProtectionType.md
+++ b/api/Word.WdProtectionType.md
@@ -14,7 +14,7 @@ Specifies the type of protection applied to the current document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAllowOnlyComments**|1|Allow only comments to be added to the document.|
| **wdAllowOnlyFormFields**|2|Allow content to be added to the document only through form fields.|
diff --git a/api/Word.WdReadingLayoutMargin.md b/api/Word.WdReadingLayoutMargin.md
index 31e30031eca..403e45a5f85 100644
--- a/api/Word.WdReadingLayoutMargin.md
+++ b/api/Word.WdReadingLayoutMargin.md
@@ -14,7 +14,7 @@ Specifies whether margins are visible or hidden when a document is viewed in Ful
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAutomaticMargin**|0|Shows the pages without margins.|
| **wdFullMargin**|2|Shows the pages with margins.|
diff --git a/api/Word.WdReadingOrder.md b/api/Word.WdReadingOrder.md
index bbe9f525782..6fc9577d2de 100644
--- a/api/Word.WdReadingOrder.md
+++ b/api/Word.WdReadingOrder.md
@@ -14,7 +14,7 @@ Specifies the text flow and reading order of the document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdReadingOrderLtr**|1|Left-to-right reading order.|
| **wdReadingOrderRtl**|0|Right-to-left reading order.|
diff --git a/api/Word.WdRecoveryType.md b/api/Word.WdRecoveryType.md
index a749cf5b39e..f98cf0f61be 100644
--- a/api/Word.WdRecoveryType.md
+++ b/api/Word.WdRecoveryType.md
@@ -14,7 +14,7 @@ Specifies the formatting to use when pasting the selected table cells.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdChart**|14|Pastes a Microsoft Office Excel chart as an embedded OLE object.|
| **wdChartLinked**|15|Pastes an Excel chart and links it to the original Excel spreadsheet.|
diff --git a/api/Word.WdRectangleType.md b/api/Word.WdRectangleType.md
index 0cb19a0eb1e..c6aef86d7f7 100644
--- a/api/Word.WdRectangleType.md
+++ b/api/Word.WdRectangleType.md
@@ -14,7 +14,7 @@ Specifies the type of rectangle and the information it contains.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdLineBetweenColumnRectangle**|5|Represents a region corresponding to a line that separates columns.|
| **wdMarkupRectangle**|2|Represents a space occupied by a comment balloon.|
diff --git a/api/Word.WdReferenceKind.md b/api/Word.WdReferenceKind.md
index 37fd9ae7165..5cbe73a25dd 100644
--- a/api/Word.WdReferenceKind.md
+++ b/api/Word.WdReferenceKind.md
@@ -14,7 +14,7 @@ Specifies the information to include in a cross-reference.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdContentText**|-1|Insert text value of the specified item. For example, insert text of the specified heading.|
| **wdEndnoteNumber**|6|Insert endnote reference mark.|
diff --git a/api/Word.WdReferenceType.md b/api/Word.WdReferenceType.md
index c5196a5b5e3..33b18b86169 100644
--- a/api/Word.WdReferenceType.md
+++ b/api/Word.WdReferenceType.md
@@ -14,7 +14,7 @@ Specifies the type of item to be cross referenced.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdRefTypeBookmark**|2|Bookmark.|
| **wdRefTypeEndnote**|4|Endnote.|
diff --git a/api/Word.WdRelativeHorizontalPosition.md b/api/Word.WdRelativeHorizontalPosition.md
index 0d71a06f499..9e81e97fbee 100644
--- a/api/Word.WdRelativeHorizontalPosition.md
+++ b/api/Word.WdRelativeHorizontalPosition.md
@@ -14,7 +14,7 @@ Specifies to what the horizontal position of a frame, a shape, or a group of row
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdRelativeHorizontalPositionCharacter**|3|Relative to character.|
| **wdRelativeHorizontalPositionColumn**|2|Relative to column.|
diff --git a/api/Word.WdRelativeHorizontalSize.md b/api/Word.WdRelativeHorizontalSize.md
index 2a4c2b673c2..33fead59159 100644
--- a/api/Word.WdRelativeHorizontalSize.md
+++ b/api/Word.WdRelativeHorizontalSize.md
@@ -14,7 +14,7 @@ Specifies the relative width of a shape using the value specified in the **Widt
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdRelativeHorizontalSizeInnerMarginArea**|4|Width is relative to the size of the inside margin?to the size of the left margin for odd pages, and to the size of the right margin for even pages.|
| **wdRelativeHorizontalSizeLeftMarginArea**|2|Width is relative to the size of the left margin.|
diff --git a/api/Word.WdRelativeVerticalPosition.md b/api/Word.WdRelativeVerticalPosition.md
index e230ebfbc02..60c2ccc95a7 100644
--- a/api/Word.WdRelativeVerticalPosition.md
+++ b/api/Word.WdRelativeVerticalPosition.md
@@ -14,7 +14,7 @@ Specifies to what the vertical position of a frame, a shape, or a group of rows
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdRelativeVerticalPositionLine**|3|Relative to line.|
| **wdRelativeVerticalPositionMargin**|0|Relative to margin.|
diff --git a/api/Word.WdRelativeVerticalSize.md b/api/Word.WdRelativeVerticalSize.md
index 38098f548b7..b6b5deb7a25 100644
--- a/api/Word.WdRelativeVerticalSize.md
+++ b/api/Word.WdRelativeVerticalSize.md
@@ -14,7 +14,7 @@ Specifies the relative height of a shape using the value specified in the **Hei
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdRelativeVerticalSizeBottomMarginArea**|3|Height is relative to the size of the bottom margin.|
| **wdRelativeVerticalSizeInnerMarginArea**|4|Height is relative to the size of the inside margin?to the size of the top margin for odd pages, and to the size of the bottom margin for even pages.|
diff --git a/api/Word.WdRelocate.md b/api/Word.WdRelocate.md
index 31284c48bf7..0ee93f2e1d7 100644
--- a/api/Word.WdRelocate.md
+++ b/api/Word.WdRelocate.md
@@ -14,7 +14,7 @@ Specifies where a paragraph should be relocated in relation to its current posit
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdRelocateDown**|1|Below the next visible paragraph.|
| **wdRelocateUp**|0|Above the previous visible paragraph.|
diff --git a/api/Word.WdRemoveDocInfoType.md b/api/Word.WdRemoveDocInfoType.md
index 543a3d8a2dc..706051c8fc9 100644
--- a/api/Word.WdRemoveDocInfoType.md
+++ b/api/Word.WdRemoveDocInfoType.md
@@ -14,7 +14,7 @@ Specifies the type of information to remove from a document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdRDIAll**|99|Removes all document information.|
| **wdRDIComments**|1|Removes document comments.|
diff --git a/api/Word.WdReplace.md b/api/Word.WdReplace.md
index dd01aab3f92..a018783e0b1 100644
--- a/api/Word.WdReplace.md
+++ b/api/Word.WdReplace.md
@@ -14,7 +14,7 @@ Specifies the number of replacements to be made when find and replace is used.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdReplaceAll**|2|Replace all occurrences.|
| **wdReplaceNone**|0|Replace no occurrences.|
diff --git a/api/Word.WdRevisedLinesMark.md b/api/Word.WdRevisedLinesMark.md
index e9f6d859feb..fc84f072f21 100644
--- a/api/Word.WdRevisedLinesMark.md
+++ b/api/Word.WdRevisedLinesMark.md
@@ -14,7 +14,7 @@ Specifies where revisions are displayed when change tracking is enabled.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdRevisedLinesMarkLeftBorder**|1|In the left border.|
| **wdRevisedLinesMarkNone**|0|Not displayed.|
diff --git a/api/Word.WdRevisedPropertiesMark.md b/api/Word.WdRevisedPropertiesMark.md
index fa291830dbf..effa1fdb198 100644
--- a/api/Word.WdRevisedPropertiesMark.md
+++ b/api/Word.WdRevisedPropertiesMark.md
@@ -14,7 +14,7 @@ Specifies how revisions are displayed when change tracking is enabled.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdRevisedPropertiesMarkBold**|1|In bold.|
| **wdRevisedPropertiesMarkColorOnly**|5|In the designated color.|
diff --git a/api/Word.WdRevisionType.md b/api/Word.WdRevisionType.md
index 97c86a9cc12..5150f7a953c 100644
--- a/api/Word.WdRevisionType.md
+++ b/api/Word.WdRevisionType.md
@@ -14,7 +14,7 @@ Specifies the type of a change that is marked with a revision mark.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdNoRevision**|0|No revision.|
| **wdRevisionCellDeletion**|17|Table cell deleted.|
diff --git a/api/Word.WdRevisionsBalloonMargin.md b/api/Word.WdRevisionsBalloonMargin.md
index d74c1803a2e..c9ffd27b6b5 100644
--- a/api/Word.WdRevisionsBalloonMargin.md
+++ b/api/Word.WdRevisionsBalloonMargin.md
@@ -14,7 +14,7 @@ Specifies the margin where revision balloons should be displayed.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdLeftMargin**|0|Left margin.|
| **wdRightMargin**|1|Right margin. default.|
diff --git a/api/Word.WdRevisionsBalloonPrintOrientation.md b/api/Word.WdRevisionsBalloonPrintOrientation.md
index 6af87a52082..b6873758ce7 100644
--- a/api/Word.WdRevisionsBalloonPrintOrientation.md
+++ b/api/Word.WdRevisionsBalloonPrintOrientation.md
@@ -14,7 +14,7 @@ Specifies the orientation of revision and comment balloons when they are printed
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdBalloonPrintOrientationAuto**|0|Microsoft Word automatically selects the orientation that keeps the zoom factor closest to 100%.|
| **wdBalloonPrintOrientationForceLandscape**|2|Word forces all sections to be printed in Landscape mode, regardless of original orientation, and prints the revision and comment balloons on the side opposite to the document text.|
diff --git a/api/Word.WdRevisionsBalloonWidthType.md b/api/Word.WdRevisionsBalloonWidthType.md
index 7677cd5dec1..cc1735261c3 100644
--- a/api/Word.WdRevisionsBalloonWidthType.md
+++ b/api/Word.WdRevisionsBalloonWidthType.md
@@ -14,7 +14,7 @@ Specifies how Microsoft Word measures the width of revision balloons.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdBalloonWidthPercent**|0|Measured as a percentage of the width of the document.|
| **wdBalloonWidthPoints**|1|Measured in points.|
diff --git a/api/Word.WdRevisionsMode.md b/api/Word.WdRevisionsMode.md
index 4b02312ec3b..d62fc5d0340 100644
--- a/api/Word.WdRevisionsMode.md
+++ b/api/Word.WdRevisionsMode.md
@@ -14,7 +14,7 @@ Specifies whether Microsoft Word displays balloons in the margin or inline with
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdBalloonRevisions**|0|Displays revisions in balloons in the left or right margin.|
| **wdInLineRevisions**|1|Displays revisions within the text using strikethrough for deletions and underlining for insertions. This is the default setting for prior versions of Word.|
diff --git a/api/Word.WdRevisionsView.md b/api/Word.WdRevisionsView.md
index 785acd73f51..a6b9fc91ba4 100644
--- a/api/Word.WdRevisionsView.md
+++ b/api/Word.WdRevisionsView.md
@@ -14,7 +14,7 @@ Specifies whether Word displays the original version of a document or a version
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdRevisionsViewFinal**|0|Displays the document with formatting and content changes applied.|
| **wdRevisionsViewOriginal**|1|Displays the document before changes were made.|
diff --git a/api/Word.WdRevisionsWrap.md b/api/Word.WdRevisionsWrap.md
index ffb398f8b1e..4cbfd06dfe4 100644
--- a/api/Word.WdRevisionsWrap.md
+++ b/api/Word.WdRevisionsWrap.md
@@ -14,7 +14,7 @@ Specifies how revision marks are displayed in the document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdWrapAlways**|1|Revisions are wrapped.|
| **wdWrapAsk**|2|Ask the user if revisions should be wrapped.|
diff --git a/api/Word.WdRowAlignment.md b/api/Word.WdRowAlignment.md
index 29327782290..f2b9f1e0d68 100644
--- a/api/Word.WdRowAlignment.md
+++ b/api/Word.WdRowAlignment.md
@@ -14,7 +14,7 @@ Specifies alignment for the content in selected rows.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAlignRowCenter**|1|Centered.|
| **wdAlignRowLeft**|0|Left-aligned. Default.|
diff --git a/api/Word.WdRowHeightRule.md b/api/Word.WdRowHeightRule.md
index 5390ea5aac3..1b2f327f655 100644
--- a/api/Word.WdRowHeightRule.md
+++ b/api/Word.WdRowHeightRule.md
@@ -14,7 +14,7 @@ Specifies the rule for determining the height of the specified cells or rows.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdRowHeightAtLeast**|1|The row height is at least a minimum specified value.|
| **wdRowHeightAuto**|0|The row height is adjusted to accommodate the tallest value in the row.|
diff --git a/api/Word.WdRulerStyle.md b/api/Word.WdRulerStyle.md
index c5694f97cf4..3c47a0c1f62 100644
--- a/api/Word.WdRulerStyle.md
+++ b/api/Word.WdRulerStyle.md
@@ -14,7 +14,7 @@ Specifies the way Word adjusts the table when the left indent is changed.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAdjustFirstColumn**|2|Adjusts the left edge of the first column only, preserving the positions of the other columns and the right edge of the table.|
| **wdAdjustNone**|0|Adjusts the left edge of row or rows, preserving the width of all columns by shifting them to the left or right. This is the default value.|
diff --git a/api/Word.WdSalutationGender.md b/api/Word.WdSalutationGender.md
index c1373a12bca..32891a47a13 100644
--- a/api/Word.WdSalutationGender.md
+++ b/api/Word.WdSalutationGender.md
@@ -14,7 +14,7 @@ Specifies the gender to use in a salutation.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdGenderFemale**|0|Female gender.|
| **wdGenderMale**|1|Male gender.|
diff --git a/api/Word.WdSalutationType.md b/api/Word.WdSalutationType.md
index 3f475e4c24a..39d641e2a48 100644
--- a/api/Word.WdSalutationType.md
+++ b/api/Word.WdSalutationType.md
@@ -14,7 +14,7 @@ Specifies the type of salutation to use for a letter.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdSalutationBusiness**|2|Business salutation|
| **wdSalutationFormal**|1|Format salutation.|
diff --git a/api/Word.WdSaveFormat.md b/api/Word.WdSaveFormat.md
index e6065ca4798..e4551e2d72e 100644
--- a/api/Word.WdSaveFormat.md
+++ b/api/Word.WdSaveFormat.md
@@ -14,7 +14,7 @@ Specifies the format to use when saving a document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFormatDocument**|0|Microsoft Office Word 97 - 2003 binary file format.|
| **wdFormatDOSText**|4|Microsoft DOS text format.|
diff --git a/api/Word.WdSaveOptions.md b/api/Word.WdSaveOptions.md
index 690a877a2b6..13f82f9d80f 100644
--- a/api/Word.WdSaveOptions.md
+++ b/api/Word.WdSaveOptions.md
@@ -14,7 +14,7 @@ Specifies how pending changes should be handled.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdDoNotSaveChanges**|0|Do not save pending changes.|
| **wdPromptToSaveChanges**|-2|Prompt the user to save pending changes.|
diff --git a/api/Word.WdScrollbarType.md b/api/Word.WdScrollbarType.md
index bd00847b380..fc53ad0cfe4 100644
--- a/api/Word.WdScrollbarType.md
+++ b/api/Word.WdScrollbarType.md
@@ -14,7 +14,7 @@ Specifies when scroll bars are available for the specified frame when viewing it
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdScrollbarTypeAuto**|0|Scroll bars are available for the specified frame only if the contents are too large to fit in the allotted space.|
| **wdScrollbarTypeNo**|2|Scroll bars are never available for the specified frame.|
diff --git a/api/Word.WdSectionDirection.md b/api/Word.WdSectionDirection.md
index ac737a655c0..246ea0c3040 100644
--- a/api/Word.WdSectionDirection.md
+++ b/api/Word.WdSectionDirection.md
@@ -14,7 +14,7 @@ Specifies how Word displays the reading order and alignment for the specified se
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdSectionDirectionLtr**|1|Displays the section with left alignment and left-to-right reading order.|
| **wdSectionDirectionRtl**|0|Displays the section with right alignment and right-to-left reading order.|
diff --git a/api/Word.WdSectionStart.md b/api/Word.WdSectionStart.md
index ad5e8f7a080..e02b2028aac 100644
--- a/api/Word.WdSectionStart.md
+++ b/api/Word.WdSectionStart.md
@@ -14,7 +14,7 @@ Specifies the type of section break for the specified item.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdSectionContinuous**|0|Continuous section break.|
| **wdSectionEvenPage**|3|Even pages section break.|
diff --git a/api/Word.WdSeekView.md b/api/Word.WdSeekView.md
index 2ca18fb4aaa..059c9453ca0 100644
--- a/api/Word.WdSeekView.md
+++ b/api/Word.WdSeekView.md
@@ -14,7 +14,7 @@ Specifies the document element to display in the print layout view.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdSeekCurrentPageFooter**|10|The current page footer.|
| **wdSeekCurrentPageHeader**|9|The current page header.|
diff --git a/api/Word.WdSelectionFlags.md b/api/Word.WdSelectionFlags.md
index db054f10bae..7b29df8a771 100644
--- a/api/Word.WdSelectionFlags.md
+++ b/api/Word.WdSelectionFlags.md
@@ -14,7 +14,7 @@ Specifies the properties of the selection.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdSelActive**|8|The selection is the active selection.|
| **wdSelAtEOL**|2|The selection is at the end of the letter.|
diff --git a/api/Word.WdSelectionType.md b/api/Word.WdSelectionType.md
index 321c1595b05..db1690595ab 100644
--- a/api/Word.WdSelectionType.md
+++ b/api/Word.WdSelectionType.md
@@ -14,7 +14,7 @@ Specifies the type of selection.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdNoSelection**|0|No selection.|
| **wdSelectionBlock**|6|A block selection.|
diff --git a/api/Word.WdSeparatorType.md b/api/Word.WdSeparatorType.md
index 19a5f8c2a82..1ac2181e3e1 100644
--- a/api/Word.WdSeparatorType.md
+++ b/api/Word.WdSeparatorType.md
@@ -14,7 +14,7 @@ Specifies the type of separator to place between items.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdSeparatorColon**|2|A colon.|
| **wdSeparatorEmDash**|3|An emphasized dash.|
diff --git a/api/Word.WdShapePosition.md b/api/Word.WdShapePosition.md
index 0493f28ea59..2c99f6aea8f 100644
--- a/api/Word.WdShapePosition.md
+++ b/api/Word.WdShapePosition.md
@@ -14,7 +14,7 @@ Specifies the relative position of the specified shape.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdShapeBottom**|-999997|At the bottom.|
| **wdShapeCenter**|-999995|In the center.|
diff --git a/api/Word.WdShapePositionRelative.md b/api/Word.WdShapePositionRelative.md
index 94832942324..f21d8de3894 100644
--- a/api/Word.WdShapePositionRelative.md
+++ b/api/Word.WdShapePositionRelative.md
@@ -14,7 +14,7 @@ Specifies whether the **LeftRelative** or **TopRelative** property for a **[Sha
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdShapePositionRelativeNone**|-999999|Specifies that the **LeftRelative** or **TopRelative** property is not currently valid, so the shape is positioned according to the value specified in the **Left** or **Top** property, respectively.|
diff --git a/api/Word.WdShapeSizeRelative.md b/api/Word.WdShapeSizeRelative.md
index 4695bdf8088..8c4d85f6a38 100644
--- a/api/Word.WdShapeSizeRelative.md
+++ b/api/Word.WdShapeSizeRelative.md
@@ -14,7 +14,7 @@ Specifies whether the **WidthRelative** or **HeightRelative** property for a **
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdShapeSizeRelativeNone**|-999999|Specifies that the **WidthRelative** or **HeightRelative** property is not currently valid, so the shape is positioned according to the value specified in the **Left** or **Top** property, respectively.|
diff --git a/api/Word.WdShowFilter.md b/api/Word.WdShowFilter.md
index da88b0560f3..88027793cc0 100644
--- a/api/Word.WdShowFilter.md
+++ b/api/Word.WdShowFilter.md
@@ -14,7 +14,7 @@ Specifies the styles and formatting to display in the **Styles and Formatting**
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdShowFilterFormattingAvailable**|4|All formatting available.|
| **wdShowFilterFormattingInUse**|3|All formatting in use.|
diff --git a/api/Word.WdShowSourceDocuments.md b/api/Word.WdShowSourceDocuments.md
index 0c2471fa5e5..d18199aa260 100644
--- a/api/Word.WdShowSourceDocuments.md
+++ b/api/Word.WdShowSourceDocuments.md
@@ -14,7 +14,7 @@ Specifies how to display source documents when two documents are compared using
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdShowSourceDocumentsBoth**|3|Shows both original and revised documents.|
| **wdShowSourceDocumentsNone**|0|Shows neither the original nor the revised documents for the source document used in a Compare function.|
diff --git a/api/Word.WdSmartTagControlType.md b/api/Word.WdSmartTagControlType.md
index fa1892930e4..9f2f45a4bdc 100644
--- a/api/Word.WdSmartTagControlType.md
+++ b/api/Word.WdSmartTagControlType.md
@@ -14,7 +14,7 @@ Specifies the type of control associated with a **SmartTagAction** object.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdControlActiveX**|13|ActiveX control.|
| **wdControlButton**|6|Button.|
diff --git a/api/Word.WdSortFieldType.md b/api/Word.WdSortFieldType.md
index 60a133a395e..5eb8d56dcce 100644
--- a/api/Word.WdSortFieldType.md
+++ b/api/Word.WdSortFieldType.md
@@ -14,7 +14,7 @@ Specifies the sort type to apply when sorting a column.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdSortFieldAlphanumeric**|0|Alphanumeric order.|
| **wdSortFieldDate**|2|Date order.|
diff --git a/api/Word.WdSortOrder.md b/api/Word.WdSortOrder.md
index dcf0b111184..e49fc543268 100644
--- a/api/Word.WdSortOrder.md
+++ b/api/Word.WdSortOrder.md
@@ -14,7 +14,7 @@ Specifies the sort direction.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdSortOrderAscending**|0|Ascending order. Default.|
| **wdSortOrderDescending**|1|Descending order.|
diff --git a/api/Word.WdSortSeparator.md b/api/Word.WdSortSeparator.md
index e60dcff2724..d558c483c16 100644
--- a/api/Word.WdSortSeparator.md
+++ b/api/Word.WdSortSeparator.md
@@ -14,7 +14,7 @@ Specifies the type of field separator.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdSortSeparateByCommas**|1|Comma.|
| **wdSortSeparateByDefaultTableSeparator**|2|Default table separator.|
diff --git a/api/Word.WdSpanishSpeller.md b/api/Word.WdSpanishSpeller.md
index 5a31fe8ec93..8fa73ee9843 100644
--- a/api/Word.WdSpanishSpeller.md
+++ b/api/Word.WdSpanishSpeller.md
@@ -14,7 +14,7 @@ Specifies the Spanish speller modes.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdSpanishTuteoAndVoseo**|1|The Spanish spelling checker recognizes both tuteo and voseo verb forms.|
| **wdSpanishTuteoOnly**|0|The Spanish spelling checker recognizes only tuteo verb forms.|
diff --git a/api/Word.WdSpecialPane.md b/api/Word.WdSpecialPane.md
index 99b6dd266c1..845ef31eb78 100644
--- a/api/Word.WdSpecialPane.md
+++ b/api/Word.WdSpecialPane.md
@@ -14,7 +14,7 @@ Specifies an item to display in the active window pane.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdPaneComments**|15|Selected comments.|
| **wdPaneCurrentPageFooter**|17|The page footer.|
diff --git a/api/Word.WdSpellingErrorType.md b/api/Word.WdSpellingErrorType.md
index fe78fcecb83..57910c2c44a 100644
--- a/api/Word.WdSpellingErrorType.md
+++ b/api/Word.WdSpellingErrorType.md
@@ -14,7 +14,7 @@ Specifies a spelling error type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdSpellingCapitalization**|2|Capitalization error.|
| **wdSpellingCorrect**|0|Spelling is correct.|
diff --git a/api/Word.WdSpellingWordType.md b/api/Word.WdSpellingWordType.md
index 1d88fe571e9..8e12f43fb9b 100644
--- a/api/Word.WdSpellingWordType.md
+++ b/api/Word.WdSpellingWordType.md
@@ -14,7 +14,7 @@ Specifies the way Microsoft Word makes spelling suggestions.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAnagram**|2|Anagram searching.|
| **wdSpellword**|0|Spellword searching.|
diff --git a/api/Word.WdStatistic.md b/api/Word.WdStatistic.md
index 005c5dc9971..81d372ea398 100644
--- a/api/Word.WdStatistic.md
+++ b/api/Word.WdStatistic.md
@@ -14,7 +14,7 @@ Specifies a statistic to return from a selection or item.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdStatisticCharacters**|3|Count of characters.|
| **wdStatisticCharactersWithSpaces**|5|Count of characters including spaces.|
diff --git a/api/Word.WdStoryType.md b/api/Word.WdStoryType.md
index f2505de6421..1871a7ef6be 100644
--- a/api/Word.WdStoryType.md
+++ b/api/Word.WdStoryType.md
@@ -14,7 +14,7 @@ Specifies the story type of a selection or item.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCommentsStory**|4|Comments story.|
| **wdEndnoteContinuationNoticeStory**|17|Endnote continuation notice story.|
diff --git a/api/Word.WdStyleSheetLinkType.md b/api/Word.WdStyleSheetLinkType.md
index a7c88c7074b..5c1484092df 100644
--- a/api/Word.WdStyleSheetLinkType.md
+++ b/api/Word.WdStyleSheetLinkType.md
@@ -14,7 +14,7 @@ Specifies how to associate a style sheet with the document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdStyleSheetLinkTypeImported**|1|Imported internal style sheet.|
| **wdStyleSheetLinkTypeLinked**|0|Linked external style sheet.|
diff --git a/api/Word.WdStyleSheetPrecedence.md b/api/Word.WdStyleSheetPrecedence.md
index 7138aed31d3..a5944eeb680 100644
--- a/api/Word.WdStyleSheetPrecedence.md
+++ b/api/Word.WdStyleSheetPrecedence.md
@@ -14,7 +14,7 @@ Specifies the level of importance of a style sheet compared with other cascading
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdStyleSheetPrecedenceHigher**|-1|Raise precedence.|
| **wdStyleSheetPrecedenceHighest**|1|Highest precedence.|
diff --git a/api/Word.WdStyleSort.md b/api/Word.WdStyleSort.md
index 1969e5beabb..c771ccc87bc 100644
--- a/api/Word.WdStyleSort.md
+++ b/api/Word.WdStyleSort.md
@@ -14,7 +14,7 @@ Indicates how to sort styles in the **Styles** task pane.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdStyleSortByBasedOn**|3|Sorts styles based on the item indicated in the **Sort Styles Based On** option.|
| **wdStyleSortByFont**|2|Sorts styles based on the name of the font used.|
diff --git a/api/Word.WdStyleType.md b/api/Word.WdStyleType.md
index c6c67f4edd6..fb4455c3e75 100644
--- a/api/Word.WdStyleType.md
+++ b/api/Word.WdStyleType.md
@@ -14,7 +14,7 @@ Specifies the style type to apply.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdStyleTypeCharacter**|2|Body character style.|
| **wdStyleTypeList**|4|List style.|
diff --git a/api/Word.WdStylisticSet.md b/api/Word.WdStylisticSet.md
index 202a6888288..b24ce35efba 100644
--- a/api/Word.WdStylisticSet.md
+++ b/api/Word.WdStylisticSet.md
@@ -14,7 +14,7 @@ Specifies the stylistic set to apply to the font.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdStylisticSet01**|1|First stylistic set for the specified font.|
| **wdStylisticSet02**|2|Second stylistic set for the specified font.|
diff --git a/api/Word.WdSubscriberFormats.md b/api/Word.WdSubscriberFormats.md
index 8f52a92077e..8ae32063344 100644
--- a/api/Word.WdSubscriberFormats.md
+++ b/api/Word.WdSubscriberFormats.md
@@ -14,7 +14,7 @@ This enumeration has been deprecated and should not be used.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdSubscriberBestFormat**|0|Not supported.|
| **wdSubscriberPict**|4|Not supported.|
diff --git a/api/Word.WdTCSCConverterDirection.md b/api/Word.WdTCSCConverterDirection.md
index d63b3c925d5..7709eab8f95 100644
--- a/api/Word.WdTCSCConverterDirection.md
+++ b/api/Word.WdTCSCConverterDirection.md
@@ -14,7 +14,7 @@ Specifies how to convert between Traditional Chinese and Simplified Chinese.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTCSCConverterDirectionAuto**|2|Convert in the appropriate direction based on the detected language of the specified range.|
| **wdTCSCConverterDirectionSCTC**|0|Convert from Simplified Chinese to Traditional Chinese.|
diff --git a/api/Word.WdTabAlignment.md b/api/Word.WdTabAlignment.md
index 594e388178f..92b6665cda1 100644
--- a/api/Word.WdTabAlignment.md
+++ b/api/Word.WdTabAlignment.md
@@ -14,7 +14,7 @@ Specifies the tab stop alignment to apply.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAlignTabBar**|4|Bar-aligned.|
| **wdAlignTabCenter**|1|Center-aligned.|
diff --git a/api/Word.WdTabLeader.md b/api/Word.WdTabLeader.md
index 93f161c4585..66af2b7aee4 100644
--- a/api/Word.WdTabLeader.md
+++ b/api/Word.WdTabLeader.md
@@ -14,7 +14,7 @@ Specifies the character to use as the leader with formatted tabs.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTabLeaderDashes**|2|Dashes.|
| **wdTabLeaderDots**|1|Dots.|
diff --git a/api/Word.WdTableDirection.md b/api/Word.WdTableDirection.md
index f8df43005a9..2909eb63f0b 100644
--- a/api/Word.WdTableDirection.md
+++ b/api/Word.WdTableDirection.md
@@ -14,7 +14,7 @@ Specifies the direction in which Microsoft Word orders cells in the specified ta
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTableDirectionLtr**|1|The selected rows are arranged with the first column in the leftmost position.|
| **wdTableDirectionRtl**|0|The selected rows are arranged with the first column in the rightmost position.|
diff --git a/api/Word.WdTableFieldSeparator.md b/api/Word.WdTableFieldSeparator.md
index 927aa0b4496..3d81916830e 100644
--- a/api/Word.WdTableFieldSeparator.md
+++ b/api/Word.WdTableFieldSeparator.md
@@ -14,7 +14,7 @@ Specifies the character to use to separate text into cells when converting text
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdSeparateByCommas**|2|A comma.|
| **wdSeparateByDefaultListSeparator**|3|The default list separator.|
diff --git a/api/Word.WdTableFormat.md b/api/Word.WdTableFormat.md
index 6029c850473..1fa64905eed 100644
--- a/api/Word.WdTableFormat.md
+++ b/api/Word.WdTableFormat.md
@@ -14,7 +14,7 @@ Specifies the predefined format to apply to a table.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTableFormat3DEffects1**|32|3-D effects format number 1.|
| **wdTableFormat3DEffects2**|33|3-D effects format number 2.|
diff --git a/api/Word.WdTableFormatApply.md b/api/Word.WdTableFormatApply.md
index 2e06c448128..25de7272414 100644
--- a/api/Word.WdTableFormatApply.md
+++ b/api/Word.WdTableFormatApply.md
@@ -14,7 +14,7 @@ Specifies how table formatting should be applied.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTableFormatApplyAutoFit**|16|AutoFit.|
| **wdTableFormatApplyBorders**|1|Borders.|
diff --git a/api/Word.WdTablePosition.md b/api/Word.WdTablePosition.md
index 504708f212d..27d1e1796ad 100644
--- a/api/Word.WdTablePosition.md
+++ b/api/Word.WdTablePosition.md
@@ -14,7 +14,7 @@ Specifies the relative position of a table in the document.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTableBottom**|-999997|At the bottom of the document.|
| **wdTableCenter**|-999995|Centered.|
diff --git a/api/Word.WdTaskPanes.md b/api/Word.WdTaskPanes.md
index 7b67e83059c..7510069c9be 100644
--- a/api/Word.WdTaskPanes.md
+++ b/api/Word.WdTaskPanes.md
@@ -14,7 +14,7 @@ Specifies the type of task pane.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTaskPaneApplyStyles**|17|Apply styles pane.|
| **wdTaskPaneDocumentActions**|7|Document actions pane.|
diff --git a/api/Word.WdTemplateType.md b/api/Word.WdTemplateType.md
index 097a40b48d9..ab03bb5f78d 100644
--- a/api/Word.WdTemplateType.md
+++ b/api/Word.WdTemplateType.md
@@ -14,7 +14,7 @@ Specifies the type of template.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAttachedTemplate**|2|An attached template.|
| **wdGlobalTemplate**|1|A global template.|
diff --git a/api/Word.WdTextFormFieldType.md b/api/Word.WdTextFormFieldType.md
index afd0cd82acd..8069be88e8a 100644
--- a/api/Word.WdTextFormFieldType.md
+++ b/api/Word.WdTextFormFieldType.md
@@ -14,7 +14,7 @@ Specifies the text form field type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCalculationText**|5|Calculation text field.|
| **wdCurrentDateText**|3|Current date text field.|
diff --git a/api/Word.WdTextOrientation.md b/api/Word.WdTextOrientation.md
index fc9382c9eec..3cbe34794b9 100644
--- a/api/Word.WdTextOrientation.md
+++ b/api/Word.WdTextOrientation.md
@@ -14,7 +14,7 @@ Specifies the text direction in a range or selection.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTextOrientationDownward**|3|Text flows downward on a slope.|
| **wdTextOrientationHorizontal**|0|Text flows horizontally. Default.|
diff --git a/api/Word.WdTextboxTightWrap.md b/api/Word.WdTextboxTightWrap.md
index 7484b748d69..dca6d9dd36b 100644
--- a/api/Word.WdTextboxTightWrap.md
+++ b/api/Word.WdTextboxTightWrap.md
@@ -14,7 +14,7 @@ Specifies how Microsoft Word tightly wraps text around text boxes.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTightAll**|1|Wraps text around the text box tightly to the contents of the text box on all lines.|
| **wdTightFirstAndLastLines**|2|Wraps text tightly only on first and last lines.|
diff --git a/api/Word.WdTextureIndex.md b/api/Word.WdTextureIndex.md
index 3b0fcbcf293..5d24db3f781 100644
--- a/api/Word.WdTextureIndex.md
+++ b/api/Word.WdTextureIndex.md
@@ -14,7 +14,7 @@ Specifies the shading texture to use for a selected item.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTexture10Percent**|100|10 percent shading.|
| **wdTexture12Pt5Percent**|125|12.5 percent shading.|
diff --git a/api/Word.WdThemeColorIndex.md b/api/Word.WdThemeColorIndex.md
index 4b7f3db315b..9151f234a67 100644
--- a/api/Word.WdThemeColorIndex.md
+++ b/api/Word.WdThemeColorIndex.md
@@ -14,7 +14,7 @@ Specifies the theme colors for document themes.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdNotThemeColor**|-1|No color.|
| **wdThemeColorAccent1**|4|Accent color 1.|
diff --git a/api/Word.WdToaFormat.md b/api/Word.WdToaFormat.md
index 48e24df5bff..b74c418c1a3 100644
--- a/api/Word.WdToaFormat.md
+++ b/api/Word.WdToaFormat.md
@@ -14,7 +14,7 @@ Specifies the type of formatting to apply to the table of authorities in the act
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTOAClassic**|1|Classic formatting.|
| **wdTOADistinctive**|2|Distinctive formatting.|
diff --git a/api/Word.WdTocFormat.md b/api/Word.WdTocFormat.md
index a3983d9c308..d63a8d79b76 100644
--- a/api/Word.WdTocFormat.md
+++ b/api/Word.WdTocFormat.md
@@ -14,7 +14,7 @@ Specifies the type of formatting to apply to the table of contents in the active
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTOCClassic**|1|Classic formatting.|
| **wdTOCDistinctive**|2|Distinctive formatting.|
diff --git a/api/Word.WdTofFormat.md b/api/Word.WdTofFormat.md
index e67f3042323..c2d55dcf6cd 100644
--- a/api/Word.WdTofFormat.md
+++ b/api/Word.WdTofFormat.md
@@ -14,7 +14,7 @@ Specifies the type of formatting to apply to the table of figures in the active
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTOFCentered**|3|Centered formatting.|
| **wdTOFClassic**|1|Classic formatting.|
diff --git a/api/Word.WdTrailingCharacter.md b/api/Word.WdTrailingCharacter.md
index 8ddef14a1a0..54fb5e3fcaa 100644
--- a/api/Word.WdTrailingCharacter.md
+++ b/api/Word.WdTrailingCharacter.md
@@ -14,7 +14,7 @@ Specifies the character inserted after the number for a numbered list item.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTrailingNone**|2|No character is inserted.|
| **wdTrailingSpace**|1|A space is inserted. Default.|
diff --git a/api/Word.WdTwoLinesInOneType.md b/api/Word.WdTwoLinesInOneType.md
index c26d1f9ac04..d1f030cfcf1 100644
--- a/api/Word.WdTwoLinesInOneType.md
+++ b/api/Word.WdTwoLinesInOneType.md
@@ -14,7 +14,7 @@ Specifies the character to use to enclose two lines being written into one.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdTwoLinesInOneAngleBrackets**|4|Enclose the lines using angle brackets.|
| **wdTwoLinesInOneCurlyBrackets**|5|Enclose the lines using curly brackets.|
diff --git a/api/Word.WdUnderline.md b/api/Word.WdUnderline.md
index 19409b8729a..98d106b40db 100644
--- a/api/Word.WdUnderline.md
+++ b/api/Word.WdUnderline.md
@@ -14,7 +14,7 @@ Specifies the type of underline to apply.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdUnderlineDash**|7|Dashes.|
| **wdUnderlineDashHeavy**|23|Heavy dashes.|
diff --git a/api/Word.WdUnits.md b/api/Word.WdUnits.md
index a9237878e1b..4a1a48cbc70 100644
--- a/api/Word.WdUnits.md
+++ b/api/Word.WdUnits.md
@@ -14,7 +14,7 @@ Specifies a unit of measure to use.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdCell**|12|A cell.|
| **wdCharacter**|1|A character.|
diff --git a/api/Word.WdUpdateStyleListBehavior.md b/api/Word.WdUpdateStyleListBehavior.md
index c602684c0ef..df8608a993a 100644
--- a/api/Word.WdUpdateStyleListBehavior.md
+++ b/api/Word.WdUpdateStyleListBehavior.md
@@ -14,7 +14,7 @@ Specifies the behavior Word should take when updating a style to match a selecti
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdListBehaviorAddBulletsNumbering**|1|Adds the numbering or bullets pattern of the selection to all paragraphs in the document that use the same style.|
| **wdListBehaviorKeepPreviousPattern**|0|Keeps the existing numbering or bullets pattern for all other paragraphs that use the same style and does not apply the numbering or bullets pattern of the selection. |
diff --git a/api/Word.WdUseFormattingFrom.md b/api/Word.WdUseFormattingFrom.md
index e4bf63aa560..a2ae2fe5bea 100644
--- a/api/Word.WdUseFormattingFrom.md
+++ b/api/Word.WdUseFormattingFrom.md
@@ -14,7 +14,7 @@ Specifies a source to copy formatting from.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdFormattingFromCurrent**|0|Copy source formatting from the current item.|
| **wdFormattingFromPrompt**|2|Prompt the user for formatting to use.|
diff --git a/api/Word.WdVerticalAlignment.md b/api/Word.WdVerticalAlignment.md
index d489e758ce4..60df991e296 100644
--- a/api/Word.WdVerticalAlignment.md
+++ b/api/Word.WdVerticalAlignment.md
@@ -14,7 +14,7 @@ Specifies the type of vertical alignment to apply.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdAlignVerticalBottom**|3|Bottom vertical alignment.|
| **wdAlignVerticalCenter**|1|Center vertical alignment.|
diff --git a/api/Word.WdViewType.md b/api/Word.WdViewType.md
index cdd0cd61ac8..fb3e44a355f 100644
--- a/api/Word.WdViewType.md
+++ b/api/Word.WdViewType.md
@@ -14,7 +14,7 @@ Specifies the view type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdMasterView**|5|A master view.|
| **wdNormalView**|1|A normal view.|
diff --git a/api/Word.WdVisualSelection.md b/api/Word.WdVisualSelection.md
index d24fa520c45..dc898ed5e5b 100644
--- a/api/Word.WdVisualSelection.md
+++ b/api/Word.WdVisualSelection.md
@@ -14,7 +14,7 @@ Specifies the selection behavior based on visual cursor movement in a right-to-l
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdVisualSelectionBlock**|0|All selected lines are the same width.|
| **wdVisualSelectionContinuous**|1|The selection wraps from line to line.|
diff --git a/api/Word.WdWindowState.md b/api/Word.WdWindowState.md
index 8ddd8a58cfa..c5f46056c58 100644
--- a/api/Word.WdWindowState.md
+++ b/api/Word.WdWindowState.md
@@ -14,7 +14,7 @@ Specifies the state of the current document window or task window.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdWindowStateMaximize**|1|Maximized.|
| **wdWindowStateMinimize**|2|Minimized.|
diff --git a/api/Word.WdWindowType.md b/api/Word.WdWindowType.md
index e5cd61d54c5..4f268a90944 100644
--- a/api/Word.WdWindowType.md
+++ b/api/Word.WdWindowType.md
@@ -14,7 +14,7 @@ Specifies the type of window.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdWindowDocument**|0|A document window.|
| **wdWindowTemplate**|1|A template window.|
diff --git a/api/Word.WdWordDialog.md b/api/Word.WdWordDialog.md
index 8cd28c2d19b..f8c145253f7 100644
--- a/api/Word.WdWordDialog.md
+++ b/api/Word.WdWordDialog.md
@@ -14,7 +14,7 @@ Indicates the Microsoft Word dialog boxes with which you can work and specifies
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdDialogBuildingBlockOrganizer**|2067|(none)|
| **wdDialogConnect**|420|Drive, Path, Password|
diff --git a/api/Word.WdWordDialogTab.md b/api/Word.WdWordDialogTab.md
index 800cef2e0dd..f66aa75d7c2 100644
--- a/api/Word.WdWordDialogTab.md
+++ b/api/Word.WdWordDialogTab.md
@@ -14,7 +14,7 @@ Specifies the active tab when the specified dialog box is displayed.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdDialogEmailOptionsTabQuoting**|1900002| **General** tab of the **E-mail Options** dialog box.|
| **wdDialogEmailOptionsTabSignature**|1900000| **E-mail Signature** tab of the **E-mail Options** dialog box.|
diff --git a/api/Word.WdWrapSideType.md b/api/Word.WdWrapSideType.md
index 432980158b4..8c87253cdad 100644
--- a/api/Word.WdWrapSideType.md
+++ b/api/Word.WdWrapSideType.md
@@ -14,7 +14,7 @@ Specifies whether the document text should wrap on both sides of the specified s
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdWrapBoth**|0|Both sides of the specified shape.|
| **wdWrapLargest**|3|Side of the shape that is farthest from the page margin.|
diff --git a/api/Word.WdWrapType.md b/api/Word.WdWrapType.md
index 1adc079e5f7..fce0de30fd9 100644
--- a/api/Word.WdWrapType.md
+++ b/api/Word.WdWrapType.md
@@ -14,7 +14,7 @@ Specifies how to wrap text around a shape.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdWrapInline**|7|Places shapes in line with text.|
| **wdWrapNone**|3|Places shape in front of text. See also **wdWrapFront** .|
diff --git a/api/Word.WdWrapTypeMerged.md b/api/Word.WdWrapTypeMerged.md
index e6eae8a6109..aceb470a03a 100644
--- a/api/Word.WdWrapTypeMerged.md
+++ b/api/Word.WdWrapTypeMerged.md
@@ -14,7 +14,7 @@ Specifies how Microsoft Word wraps text around pictures.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdWrapMergeBehind**|3|Behind text.|
| **wdWrapMergeFront**|4|In front of text.|
diff --git a/api/Word.Window.Close.md b/api/Word.Window.Close.md
index 2f71b1a6279..161e8cd57dc 100644
--- a/api/Word.Window.Close.md
+++ b/api/Word.Window.Close.md
@@ -27,7 +27,7 @@ Closes the specified window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _SaveChanges_|Optional| **Variant**|Specifies the save action for the document. Can be one of the following **WdSaveOptions** constants: **wdDoNotSaveChanges** , **wdPromptToSaveChanges** , or **wdSaveChanges** .|
| _RouteDocument_|Optional| **Variant**| **True** to route the document to the next recipient. If the document doesn't have a routing slip attached, this argument is ignored.|
diff --git a/api/Word.Window.GetPoint.md b/api/Word.Window.GetPoint.md
index d760025e992..186342c7573 100644
--- a/api/Word.Window.GetPoint.md
+++ b/api/Word.Window.GetPoint.md
@@ -27,7 +27,7 @@ Returns the screen coordinates of the specified range or shape.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ScreenPixelsLeft_|Required| **Long**|The variable name to which you want Microsoft Word to return the value for the left edge of the object.|
| _ScreenPixelsTop_|Required| **Long**|The variable name to which you want Word to return the value for the top edge of the object.|
diff --git a/api/Word.Window.LargeScroll.md b/api/Word.Window.LargeScroll.md
index 1092e03e766..ece33e75451 100644
--- a/api/Word.Window.LargeScroll.md
+++ b/api/Word.Window.LargeScroll.md
@@ -27,7 +27,7 @@ Scrolls a window or pane by the specified number of screens.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Down_|Optional| **Variant**|The number of screens to scroll the window down.|
| _Up_|Optional| **Variant**|The number of screens to scroll the window up.|
diff --git a/api/Word.Window.NewWindow.md b/api/Word.Window.NewWindow.md
index 6c5c446d01c..7a73fa54ce1 100644
--- a/api/Word.Window.NewWindow.md
+++ b/api/Word.Window.NewWindow.md
@@ -23,7 +23,7 @@ Opens a new window with the same document as the specified window. Returns a **
_expression_ Required. A variable that represents a '[Window](Word.Window.md)' object.
-### Return Value
+### Return value
Window
diff --git a/api/Word.Window.PageScroll.md b/api/Word.Window.PageScroll.md
index 636d94c2627..c271f24e79f 100644
--- a/api/Word.Window.PageScroll.md
+++ b/api/Word.Window.PageScroll.md
@@ -27,7 +27,7 @@ Scrolls through the specified pane or window page by page.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Down_|Optional| **Variant**|The number of pages to be scrolled down. If this argument is omitted, this value is assumed to be 1.|
| _Up_|Optional| **Variant**|The number of pages to be scrolled up.|
diff --git a/api/Word.Window.PrintOut.md b/api/Word.Window.PrintOut.md
index 43045165b71..d11502e19b9 100644
--- a/api/Word.Window.PrintOut.md
+++ b/api/Word.Window.PrintOut.md
@@ -27,7 +27,7 @@ Prints all or part of the document displayed in the specified window.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Background_|Optional| **Variant**|Set to **True** to have the macro continue while Microsoft Word prints the document.|
| _Append_|Optional| **Variant**|Set to **True** to append the specified document to the file name specified by the OutputFileName argument. **False** to overwrite the contents of OutputFileName.|
diff --git a/api/Word.Window.RangeFromPoint.md b/api/Word.Window.RangeFromPoint.md
index f5b77bf99ee..15795a13636 100644
--- a/api/Word.Window.RangeFromPoint.md
+++ b/api/Word.Window.RangeFromPoint.md
@@ -27,12 +27,12 @@ Returns the **Range** or **Shape** object that is located at the point specifie
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _x_|Required| **Long**|The horizontal distance (in pixels) from the left edge of the screen to the point.|
| _y_|Required| **Long**|The vertical distance (in pixels) from the top of the screen to the point.|
-### Return Value
+### Return value
Object
diff --git a/api/Word.Window.ScrollIntoView.md b/api/Word.Window.ScrollIntoView.md
index b9b0b048cc7..517899859ad 100644
--- a/api/Word.Window.ScrollIntoView.md
+++ b/api/Word.Window.ScrollIntoView.md
@@ -27,7 +27,7 @@ Scrolls through the document window so the specified range or shape is displayed
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Obj_|Required| **Object**|A **Range** or **Shape** object.|
| _Start_|Optional| **Boolean**| **True** if the upper-left corner of the range or shape appears at the upper-left corner of the document window. **False** if the lower-right corner of the range or shape appears at the lower-right corner of the document window. The default value is **True** .|
diff --git a/api/Word.Window.SmallScroll.md b/api/Word.Window.SmallScroll.md
index 90b12fd1470..b8b9cada7f7 100644
--- a/api/Word.Window.SmallScroll.md
+++ b/api/Word.Window.SmallScroll.md
@@ -27,7 +27,7 @@ Scrolls a window or pane by the specified number of lines.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Down_|Optional| **Variant**|The number of lines to scroll the window down. A "line" corresponds to the distance scrolled by clicking the down scroll arrow on the vertical scroll bar once.|
| _Up_|Optional| **Variant**|The number of lines to scroll the window up. A "line" corresponds to the distance scrolled by clicking the up scroll arrow on the vertical scroll bar once.|
diff --git a/api/Word.Windows.Add.md b/api/Word.Windows.Add.md
index 7fb9ae3c03d..ebd67001794 100644
--- a/api/Word.Windows.Add.md
+++ b/api/Word.Windows.Add.md
@@ -27,11 +27,11 @@ Returns a **Window** object that represents a new window of a document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Window_|Optional| **Variant**|The **Window** object you want to open another window for. If this argument is omitted, a new window is opened for the active document.|
-### Return Value
+### Return value
Window
diff --git a/api/Word.Windows.Arrange.md b/api/Word.Windows.Arrange.md
index 604dfe5bcc7..96591be1369 100644
--- a/api/Word.Windows.Arrange.md
+++ b/api/Word.Windows.Arrange.md
@@ -27,7 +27,7 @@ Arranges all open document windows in the application workspace.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ArrangeStyle_|Optional| **Variant**|The window arrangement. Can be either of the following **WdArrangeStyle** constants: **wdIcons** or **wdTiled** .|
diff --git a/api/Word.Windows.BreakSideBySide.md b/api/Word.Windows.BreakSideBySide.md
index 4744022ac3b..892fede3765 100644
--- a/api/Word.Windows.BreakSideBySide.md
+++ b/api/Word.Windows.BreakSideBySide.md
@@ -23,7 +23,7 @@ Ends side by side mode if two windows are in side by side mode. Returns a **Boo
_expression_ Required. A variable that represents a '[Windows](Word.windows.md)' collection.
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Windows.CompareSideBySideWith.md b/api/Word.Windows.CompareSideBySideWith.md
index c524b539f50..e95ea2020a6 100644
--- a/api/Word.Windows.CompareSideBySideWith.md
+++ b/api/Word.Windows.CompareSideBySideWith.md
@@ -27,11 +27,11 @@ Opens two windows in side by side mode. Returns a **Boolean** .
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Document_|Required| **Variant**| The document to view in side by side windows.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.Windows.Item.md b/api/Word.Windows.Item.md
index 2a9a6c77800..3a637b740b6 100644
--- a/api/Word.Windows.Item.md
+++ b/api/Word.Windows.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Window** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
Window
diff --git a/api/Word.Words.Item.md b/api/Word.Words.Item.md
index b9aa0f66967..b64b3ff18fc 100644
--- a/api/Word.Words.Item.md
+++ b/api/Word.Words.Item.md
@@ -27,11 +27,11 @@ Returns an individual **Range** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
Range
diff --git a/api/Word.XML.md b/api/Word.XML.md
index 288d22d10c1..201128a955b 100644
--- a/api/Word.XML.md
+++ b/api/Word.XML.md
@@ -27,7 +27,7 @@ Returns a **String** that represents the text, with or without XML markup, that
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _DataOnly_|Optional| **Boolean**|Specifies whether to return the XML with or without markup. **True** returns the text contained within the XML node without XML markup. **False** returns the text with XML markup.|
diff --git a/api/Word.XMLMapping.SetMapping.md b/api/Word.XMLMapping.SetMapping.md
index d8a0d0221ef..455354366d6 100644
--- a/api/Word.XMLMapping.SetMapping.md
+++ b/api/Word.XMLMapping.SetMapping.md
@@ -27,13 +27,13 @@ Allows creating or changing the XML mapping on a content control. Returns **Tru
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _XPath_|Required| **String**|Specifies an XPath string that represents the XML node to which to map the content control. An invalid XPath string causes a run-time error.|
| _PrefixMapping_|Optional| **String**|Specifies the prefix mappings to use when querying the expression provided in the XPath parameter. If omitted, Word uses the set of prefix mappings for the specified custom XML part in the current document.|
| _Source_|Optional| **CustomXMLPart**|Specifies the desired custom XML data to which to map the content control. If this parameter is omitted, the XPath is evaluated against all custom XML in the current document, and the mapping is established with the first **CustomXMLPart** in which the XPath resolves to an XML node.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.XMLMapping.SetMappingByNode.md b/api/Word.XMLMapping.SetMappingByNode.md
index 13eac093c14..ac02df93053 100644
--- a/api/Word.XMLMapping.SetMappingByNode.md
+++ b/api/Word.XMLMapping.SetMappingByNode.md
@@ -27,11 +27,11 @@ Allows creating or changing the XML data mapping on a content control. Returns
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Node_|Required| **CustomXMLNode**|Specifies the XML node to which to map the current content control.|
-### Return Value
+### Return value
Boolean
diff --git a/api/Word.XMLNamespace.AttachToDocument.md b/api/Word.XMLNamespace.AttachToDocument.md
index 5ef0f85b4c2..f85b358fdb9 100644
--- a/api/Word.XMLNamespace.AttachToDocument.md
+++ b/api/Word.XMLNamespace.AttachToDocument.md
@@ -27,7 +27,7 @@ Attaches an XML schema to a document.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Document_|Required| **Document**|The document to which to attach the specified XML schema.|
diff --git a/api/Word.XMLNamespace.Location.md b/api/Word.XMLNamespace.Location.md
index 17f6e48be36..f3f09fd8a15 100644
--- a/api/Word.XMLNamespace.Location.md
+++ b/api/Word.XMLNamespace.Location.md
@@ -27,7 +27,7 @@ Returns or sets a **String** that represents the physical location of the names
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _AllUsers_|Optional| **Boolean**|Specifies whether to return the location for all users. **False** returns the location for only the current user, which may be different than the location for all users.|
diff --git a/api/Word.XMLNode.Copy.md b/api/Word.XMLNode.Copy.md
index 946be0b4766..d69ce7ffd77 100644
--- a/api/Word.XMLNode.Copy.md
+++ b/api/Word.XMLNode.Copy.md
@@ -23,7 +23,7 @@ Copies the specified XML element, excluding XML markup, to the Clipboard.
_expression_ An expression that returns an [XMLNode](./Word.XMLNode.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.XMLNode.RemoveChild.md b/api/Word.XMLNode.RemoveChild.md
index bf6a2b47d6f..a55fdd46822 100644
--- a/api/Word.XMLNode.RemoveChild.md
+++ b/api/Word.XMLNode.RemoveChild.md
@@ -27,11 +27,11 @@ Removes a child element from the specified element.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _ChildElement_|Required| **XMLNode**|The child element to be removed.|
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.XMLNode.SelectNodes.md b/api/Word.XMLNode.SelectNodes.md
index 7d8d8585911..a6e7481c035 100644
--- a/api/Word.XMLNode.SelectNodes.md
+++ b/api/Word.XMLNode.SelectNodes.md
@@ -27,13 +27,13 @@ Returns an **[XMLNodes](Word.XMLNodes.md)** collection that represents all the
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _XPath_|Required| **String**|Specifies a valid XPath string. For more information on XPath, see the XPath reference documentation on the Microsoft Developer Network (MSDN) Web site.|
| _PrefixMapping_|Optional| **String**|Provides the prefix in the schema against which to perform the search. Use the PrefixMapping parameter if your XPath parameter uses names to search for elements.|
| _FastSearchSkippingTextNodes_|Optional| **Boolean**| **True** skips all text nodes while searching for the specified node. **False** includes text nodes in the search. Default value is **False** .|
-### Return Value
+### Return value
XMLNodes
diff --git a/api/Word.XMLNode.SelectSingleNode.md b/api/Word.XMLNode.SelectSingleNode.md
index 20580ad84f2..e18c8da35bc 100644
--- a/api/Word.XMLNode.SelectSingleNode.md
+++ b/api/Word.XMLNode.SelectSingleNode.md
@@ -27,13 +27,13 @@ Returns an **XMLNode** object that represents the first child element that matc
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _XPath_|Required| **String**|Specifies a valid XPath string. For more information on XPath, see the XPath reference documentation on the Microsoft Developer Network (MSDN) Web site.|
| _PrefixMapping_|Optional| **String**|Provides the prefix in the schema against which to perform the search. Use the PrefixMapping parameter if your XPath parameter uses names to search for elements.|
| _FastSearchSkippingTextNodes_|Optional| **Boolean**| **True** skips all text nodes while searching for the specified node. **False** includes text nodes in the search. Default value is **False** .|
-### Return Value
+### Return value
XMLNode
diff --git a/api/Word.XMLNode.SetValidationError.md b/api/Word.XMLNode.SetValidationError.md
index d3dce415c89..1103a44e690 100644
--- a/api/Word.XMLNode.SetValidationError.md
+++ b/api/Word.XMLNode.SetValidationError.md
@@ -27,7 +27,7 @@ Changes the validation error text displayed to a user for a specified node and f
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Status_|Required| **WdXMLValidationStatus**|Specifies whether to set the validation status error text (**wdXMLValidationStatusCustom**) or to clear the validation status error text (**wdXMLValidationStatusOK**).|
| _ErrorText_|Optional| **Variant**|The text displayed to the user. Leave blank when the Status parameter is set to **wdXMLValidationStatusOK** .|
diff --git a/api/Word.XMLNode.Validate.md b/api/Word.XMLNode.Validate.md
index d11b8b1b507..af3c64829d4 100644
--- a/api/Word.XMLNode.Validate.md
+++ b/api/Word.XMLNode.Validate.md
@@ -23,7 +23,7 @@ Validates an individual XML element against the XML schemas that are attached to
_expression_ An expression that returns an [XMLNode](./Word.XMLNode.md) object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.XMLNode.ValidationErrorText.md b/api/Word.XMLNode.ValidationErrorText.md
index f2e2d3cf322..8c1f41f59fc 100644
--- a/api/Word.XMLNode.ValidationErrorText.md
+++ b/api/Word.XMLNode.ValidationErrorText.md
@@ -27,7 +27,7 @@ Returns a **String** that represents the description for a validation error on
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Advanced_|Optional| **Boolean**|Indicates that the error text displayed is the advanced version of the validation error description, which comes from the MSXML 5.0 component included with Microsoft Word.|
diff --git a/api/Word.XMLNodes.Item.md b/api/Word.XMLNodes.Item.md
index 23e4b404aa8..c9136a845ec 100644
--- a/api/Word.XMLNodes.Item.md
+++ b/api/Word.XMLNodes.Item.md
@@ -27,11 +27,11 @@ Returns an individual **XMLNode** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Long**|The individual object to be returned. Can be a **Long** indicating the ordinal position of the individual object.|
-### Return Value
+### Return value
XMLNode
diff --git a/api/Word.XMLSchemaReference.Reload.md b/api/Word.XMLSchemaReference.Reload.md
index 6456fd6fa93..9ca9da032e9 100644
--- a/api/Word.XMLSchemaReference.Reload.md
+++ b/api/Word.XMLSchemaReference.Reload.md
@@ -23,7 +23,7 @@ Reloads the XML schemas that are referenced in a document.
_expression_ An expression that returns an '[XMLSchemaReference](Word.XMLSchemaReference.md)' object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.XMLSchemaReferences.Add.md b/api/Word.XMLSchemaReferences.Add.md
index 3ae9db5be13..33be4f7164f 100644
--- a/api/Word.XMLSchemaReferences.Add.md
+++ b/api/Word.XMLSchemaReferences.Add.md
@@ -27,14 +27,14 @@ Returns an **XMLSchemaReference** that represents a schema applied to a documen
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _NamespaceURI_|Optional| **String**|The name of the schema as defined in the schema. The Namespace parameter is case-sensitive and must be spelled exactly as it appears in the schema. If the specified namespace cannot be found in any of the schemas attached to the document, an error is displayed.|
| _Alias_|Optional| **String**|The name of the schema as it appears on the **Schemas** tab in the **Templates and Add-ins** dialog box.|
| _FileName_|Optional| **String**|The path and file name of the schema. This may be a local file path, a network path, or an Internet address.|
| _InstallForAllUsers_|Optional| **Boolean**| **True** if all users that log on to a computer can access and use the new schema. The default is **False** .|
-### Return Value
+### Return value
XMLSchemaReference
diff --git a/api/Word.XMLSchemaReferences.Item.md b/api/Word.XMLSchemaReferences.Item.md
index 8c99aef0902..5f0557b1d0b 100644
--- a/api/Word.XMLSchemaReferences.Item.md
+++ b/api/Word.XMLSchemaReferences.Item.md
@@ -27,11 +27,11 @@ Returns an individual **XMLSchemaReference** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
XMLSchemaReference
diff --git a/api/Word.XMLSchemaReferences.Validate.md b/api/Word.XMLSchemaReferences.Validate.md
index e839ec57243..3605282f8fa 100644
--- a/api/Word.XMLSchemaReferences.Validate.md
+++ b/api/Word.XMLSchemaReferences.Validate.md
@@ -23,7 +23,7 @@ Validates all the XML schemas that are attached to a document.
_expression_ An expression that returns an '[XMLSchemaReferences](Word.XMLSchemaReferences.md)' object.
-### Return Value
+### Return value
Nothing
diff --git a/api/Word.XSLTransform.Location.md b/api/Word.XSLTransform.Location.md
index 8ed9e682de8..999fcea79e6 100644
--- a/api/Word.XSLTransform.Location.md
+++ b/api/Word.XSLTransform.Location.md
@@ -27,7 +27,7 @@ Returns or sets a **String** that represents the physical location of the XSL t
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _AllUsers_|Optional| **Boolean**|Specifies whether to return the location for all users. **False** returns the location for only the current user, which may be different than the location for all users.|
diff --git a/api/Word.XlConstants.md b/api/Word.XlConstants.md
index 2fbeca6913d..011ba9490fe 100644
--- a/api/Word.XlConstants.md
+++ b/api/Word.XlConstants.md
@@ -14,7 +14,7 @@ Specifies a miscellaneous constant in Microsoft Word.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xl3DBar**|-4099|Three-dimensional bar chart group or series.|
| **xl3DSurface**|-4103|Three-dimensional surface chart group or series.|
diff --git a/api/Word.XlReadingOrder.md b/api/Word.XlReadingOrder.md
index 9904cef8b9a..c5718a616a3 100644
--- a/api/Word.XlReadingOrder.md
+++ b/api/Word.XlReadingOrder.md
@@ -14,7 +14,7 @@ Specifies the reading order for the specified object.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlContext**|-5002|According to context.|
| **xlLTR**|-5003|Left-to-right.|
diff --git a/api/Word.Zooms.Item.md b/api/Word.Zooms.Item.md
index de97d5b015b..ae4a209b260 100644
--- a/api/Word.Zooms.Item.md
+++ b/api/Word.Zooms.Item.md
@@ -27,11 +27,11 @@ Returns the specified **Zoom** object.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **WdViewType**|The specified zoom type.|
-### Return Value
+### Return value
Zoom
diff --git a/api/Word.broadcast.capabilities.md b/api/Word.broadcast.capabilities.md
index 360243e4e7f..ca1ab72d476 100644
--- a/api/Word.broadcast.capabilities.md
+++ b/api/Word.broadcast.capabilities.md
@@ -27,7 +27,7 @@ The **Capabilities** property can return the following[MSOBroadcastCapabilities
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **MSOBroadcastCapFileSizeLimited**|1|File size limited|
| **MSOBroadcastCapSupportsMeetingNotes**|2|Supports meeting notes|
diff --git a/api/Word.wdcolumnwidth.md b/api/Word.wdcolumnwidth.md
index 196afd66b0f..dbb6f547b11 100644
--- a/api/Word.wdcolumnwidth.md
+++ b/api/Word.wdcolumnwidth.md
@@ -15,7 +15,7 @@ Constants that represent column width in reading layout, passed to and returned
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdColumnWidthDefault**|2|Default column width.|
| **wdColumnWidthNarrow**|1|Narrow column width.|
diff --git a/api/Word.wdcontentcontrolappearance.md b/api/Word.wdcontentcontrolappearance.md
index 9aab0c1bd14..b367bec933f 100644
--- a/api/Word.wdcontentcontrolappearance.md
+++ b/api/Word.wdcontentcontrolappearance.md
@@ -15,7 +15,7 @@ Constants that represent the visualizations for a content control, passed to and
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdContentControlBoundingBox**|0|Represents a content control shown as a shaded rectangle or bounding box (with optional title).|
| **wdContentControlTags**|2|Represents a content control shown as start and end markers.|
diff --git a/api/Word.wdcontentcontrollevel.md b/api/Word.wdcontentcontrollevel.md
index 93bbad9169f..d51f319b8bc 100644
--- a/api/Word.wdcontentcontrollevel.md
+++ b/api/Word.wdcontentcontrollevel.md
@@ -15,7 +15,7 @@ Constants that represent the possible levels for a content control, returned by
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdContentControlLevelCell**|3|Represents a content control that surrounds a table cell.|
| **wdContentControlLevelInline**|0|Represents a content control that surrounds content within a single paragraph.|
diff --git a/api/Word.wdpagecolor.md b/api/Word.wdpagecolor.md
index 3fcd4e433be..7cf79d520a6 100644
--- a/api/Word.wdpagecolor.md
+++ b/api/Word.wdpagecolor.md
@@ -15,7 +15,7 @@ Constants that represent background page color in reading mode, returned by and
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdPageColorInverse**|2|Inverse page color. Renders the document content in a manner that resembles high-contrast black, although not necessarily exactly so. Some figures are rendered in full color on a black background.|
| **wdPageColorNone**|0|No page color, the default. The page background is rendered in white. Any assigned page background colors are ignored.|
diff --git a/api/Word.wdrevisionsmarkup.md b/api/Word.wdrevisionsmarkup.md
index a0bb91621b4..3d3efd9e228 100644
--- a/api/Word.wdrevisionsmarkup.md
+++ b/api/Word.wdrevisionsmarkup.md
@@ -15,7 +15,7 @@ Constants that represent the extent of markup visible in the document, returned
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **wdRevisionsMarkupAll**|2|Displays the final document with all markup visible.|
| **wdRevisionsMarkupNone**|0|Displays the final document with no markup visible.|
diff --git a/api/Word.xlaxiscrosses.md b/api/Word.xlaxiscrosses.md
index 01709430165..edb11813a35 100644
--- a/api/Word.xlaxiscrosses.md
+++ b/api/Word.xlaxiscrosses.md
@@ -12,7 +12,7 @@ Specifies the point on the specified axis where the other axis crosses.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlAxisCrossesAutomatic**|-4105|Word sets the axis crossing point.|
| **xlAxisCrossesCustom**|-4114|The **[CrossesAt](Word.Axis.CrossesAt.md)** property specifies the axis crossing point.|
diff --git a/api/Word.xlaxisgroup.md b/api/Word.xlaxisgroup.md
index 4a323a3974d..e2aae6d02ad 100644
--- a/api/Word.xlaxisgroup.md
+++ b/api/Word.xlaxisgroup.md
@@ -12,7 +12,7 @@ Specifies the type of axis group.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlPrimary**|1|The primary axis group.|
| **xlSecondary**|2|The secondary axis group.|
diff --git a/api/Word.xlaxistype.md b/api/Word.xlaxistype.md
index 58540f6f669..caf43cf1a64 100644
--- a/api/Word.xlaxistype.md
+++ b/api/Word.xlaxistype.md
@@ -12,7 +12,7 @@ Specifies the axis type.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlCategory**|1|Axis displays categories.|
| **xlSeriesAxis**|3|Axis displays data series.|
diff --git a/api/Word.xlbackground.md b/api/Word.xlbackground.md
index 76b900add1b..8785353b381 100644
--- a/api/Word.xlbackground.md
+++ b/api/Word.xlbackground.md
@@ -12,7 +12,7 @@ Specifies the background type for text in charts.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlBackgroundAutomatic**|-4105|Word controls the background.|
| **xlBackgroundOpaque**|3|An opaque background.|
diff --git a/api/Word.xlbarshape.md b/api/Word.xlbarshape.md
index a5f0837075c..d5fa2c58b1b 100644
--- a/api/Word.xlbarshape.md
+++ b/api/Word.xlbarshape.md
@@ -12,7 +12,7 @@ Specifies the shape used with the 3-D bar or column chart.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlBox**|0|A box.|
| **xlConeToMax**|5|A cone, truncated at the specified value.|
diff --git a/api/Word.xlbinstype.md b/api/Word.xlbinstype.md
index 33038e81c3e..c3c77dbcade 100644
--- a/api/Word.xlbinstype.md
+++ b/api/Word.xlbinstype.md
@@ -15,7 +15,7 @@ Constants passed to and returned by the [ChartGroup.BinsType](Word.chartgroup.bi
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlBinsTypeAutomatic**|0|Sets bins type automatically.|
| **xlBinsTypeCategorical**|1|Sets bins type by category.|
diff --git a/api/Word.xlborderweight.md b/api/Word.xlborderweight.md
index 8ceef8cf50d..6445a62e3ba 100644
--- a/api/Word.xlborderweight.md
+++ b/api/Word.xlborderweight.md
@@ -12,7 +12,7 @@ Specifies the weight of the border around a range.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlHairline**|1|A hairline border (thinnest border).|
| **xlMedium**|-4138|A medium border.|
diff --git a/api/Word.xlcategorylabellevel.md b/api/Word.xlcategorylabellevel.md
index 38162ec493b..3c7970a2320 100644
--- a/api/Word.xlcategorylabellevel.md
+++ b/api/Word.xlcategorylabellevel.md
@@ -15,7 +15,7 @@ Constants that represent chart category-label levels, passed to and returned by
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlCategoryLabelLevelAll**|-1|Use all category label levels within range on the chart. The default.|
| **xlCategoryLabelLevelCustom**|-2|Indicates literal data in the category labels.|
diff --git a/api/Word.xlcategorytype.md b/api/Word.xlcategorytype.md
index 140c4d709b4..2683605b5cd 100644
--- a/api/Word.xlcategorytype.md
+++ b/api/Word.xlcategorytype.md
@@ -12,7 +12,7 @@ Specifies the type of the category axis.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlAutomaticScale**|-4105|Word controls the axis type.|
| **xlCategoryScale**|2|Axis groups data by an arbitrary set of categories.|
diff --git a/api/Word.xlchartelementposition.md b/api/Word.xlchartelementposition.md
index 8d9192b7f34..aefd9dee479 100644
--- a/api/Word.xlchartelementposition.md
+++ b/api/Word.xlchartelementposition.md
@@ -12,7 +12,7 @@ Specifies the position of the chart element.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlChartElementPositionAutomatic**|-4105|Automatically sets the position of the chart element.|
| **xlChartElementPositionCustom**|-4114|Specifies a specific position for the chart element.|
diff --git a/api/Word.xlchartgallery.md b/api/Word.xlchartgallery.md
index be0638684b7..d2e7ba660d4 100644
--- a/api/Word.xlchartgallery.md
+++ b/api/Word.xlchartgallery.md
@@ -12,7 +12,7 @@ Specifies a chart gallery.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlAnyGallery**|23|Either of the galleries.|
| **xlBuiltIn**|21|The built-in gallery.|
diff --git a/api/Word.xlchartitem.md b/api/Word.xlchartitem.md
index 89d9bbe237a..b836d31cce8 100644
--- a/api/Word.xlchartitem.md
+++ b/api/Word.xlchartitem.md
@@ -12,7 +12,7 @@ Specifies the type of the chart item.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlAxis**|21|Axis.|
| **xlAxisTitle**|17|Axis title.|
diff --git a/api/Word.xlchartpictureplacement.md b/api/Word.xlchartpictureplacement.md
index da51c653711..0b9576c742d 100644
--- a/api/Word.xlchartpictureplacement.md
+++ b/api/Word.xlchartpictureplacement.md
@@ -12,7 +12,7 @@ Specifies the placement of a user-selected picture on a bar in a 3-D bar or colu
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlAllFaces**|7|Display on all faces.|
| **xlEnd**|2|Display on end.|
diff --git a/api/Word.xlchartpicturetype.md b/api/Word.xlchartpicturetype.md
index 973b7e29451..5ed6103c6f6 100644
--- a/api/Word.xlchartpicturetype.md
+++ b/api/Word.xlchartpicturetype.md
@@ -12,7 +12,7 @@ Specifies how pictures are displayed on a column, bar picture chart, or legend k
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlStack**|2|The picture is sized to repeat a maximum of 15 times in the longest stacked bar.|
| **xlStackScale**|3|The picture is sized to a specified number of units and repeated the length of the bar.|
diff --git a/api/Word.xlchartsplittype.md b/api/Word.xlchartsplittype.md
index 57b68f62f34..93b61fdfdab 100644
--- a/api/Word.xlchartsplittype.md
+++ b/api/Word.xlchartsplittype.md
@@ -12,7 +12,7 @@ Specifies the values displayed in the second chart in a pie chart or a bar of pi
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlSplitByCustomSplit**|4|The second chart displays arbitrary slides.|
| **xlSplitByPercentValue**|3|The second chart displays values less than a percentage of the total value. The percentage is specified by the **[SplitValue](Word.ChartGroup.SplitValue.md)** property.|
diff --git a/api/Word.xlcolorindex.md b/api/Word.xlcolorindex.md
index 77730c3140a..cba2b481ec3 100644
--- a/api/Word.xlcolorindex.md
+++ b/api/Word.xlcolorindex.md
@@ -12,7 +12,7 @@ Specifies the color of a selected feature, such as a border, font, or fill.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlColorIndexAutomatic**|-4105|Automatic color.|
| **xlColorIndexNone**|-4142|No color.|
diff --git a/api/Word.xlcopypictureformat.md b/api/Word.xlcopypictureformat.md
index 4484b0dffe9..0f9ce361b79 100644
--- a/api/Word.xlcopypictureformat.md
+++ b/api/Word.xlcopypictureformat.md
@@ -12,7 +12,7 @@ Specifies the format of the picture being copied.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlBitmap**|2|A bitmap (.bmp, .jpg, .gif).|
| **xlPicture**|-4147|A drawn picture (.png, .wmf, .mix).|
diff --git a/api/Word.xldatalabelposition.md b/api/Word.xldatalabelposition.md
index 80bbd064c8e..53f52981100 100644
--- a/api/Word.xldatalabelposition.md
+++ b/api/Word.xldatalabelposition.md
@@ -12,7 +12,7 @@ Specifies where the data label is positioned.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlLabelPositionAbove**|0|The data label is positioned above the data point.|
| **xlLabelPositionBelow**|1|The data label is positioned below the data point.|
diff --git a/api/Word.xldatalabelseparator.md b/api/Word.xldatalabelseparator.md
index 8e4c3328aab..4b2e01355ee 100644
--- a/api/Word.xldatalabelseparator.md
+++ b/api/Word.xldatalabelseparator.md
@@ -12,7 +12,7 @@ Specifies the separator used with data labels.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlDataLabelSeparatorDefault**|1|Word selects the separator.|
diff --git a/api/Word.xldatalabelstype.md b/api/Word.xldatalabelstype.md
index 62ede05448f..f6fbb08038a 100644
--- a/api/Word.xldatalabelstype.md
+++ b/api/Word.xldatalabelstype.md
@@ -12,7 +12,7 @@ Specifies the type of data label to apply.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlDataLabelsShowBubbleSizes**|6|Show the size of the bubble in reference to the absolute value.|
| **xlDataLabelsShowLabel**|4|The category for the point.|
diff --git a/api/Word.xldisplayblanksas.md b/api/Word.xldisplayblanksas.md
index 2f97aa25479..f3e4eacbd9c 100644
--- a/api/Word.xldisplayblanksas.md
+++ b/api/Word.xldisplayblanksas.md
@@ -12,7 +12,7 @@ Specifies how blank cells are plotted on a chart.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlInterpolated**|3|Values are interpolated into the chart.|
| **xlNotPlotted**|1|Blank cells are not plotted.|
diff --git a/api/Word.xldisplayunit.md b/api/Word.xldisplayunit.md
index b069ade5f86..2f3432e3bba 100644
--- a/api/Word.xldisplayunit.md
+++ b/api/Word.xldisplayunit.md
@@ -12,7 +12,7 @@ Specifies the display unit label for an axis.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlHundredMillions**|-8|Hundreds of millions.|
| **xlHundreds**|-2|Hundreds.|
diff --git a/api/Word.xlendstylecap.md b/api/Word.xlendstylecap.md
index 9ce8f2e9094..8e62dd2ae1d 100644
--- a/api/Word.xlendstylecap.md
+++ b/api/Word.xlendstylecap.md
@@ -12,7 +12,7 @@ Specifies the end style for error bars.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlCap**|1|Caps are applied.|
| **xlNoCap**|2|No caps are applied.|
diff --git a/api/Word.xlerrorbardirection.md b/api/Word.xlerrorbardirection.md
index a3ce9b5c408..6ada69385f6 100644
--- a/api/Word.xlerrorbardirection.md
+++ b/api/Word.xlerrorbardirection.md
@@ -12,7 +12,7 @@ Specifies which axis values are to receive error bars.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlChartX**|-4168|Bars run parallel to the y-axis for x-axis values.|
| **xlChartY**|1|Bars run parallel to the x-axis for y-axis values.|
diff --git a/api/Word.xlerrorbarinclude.md b/api/Word.xlerrorbarinclude.md
index c541fde9ef1..12cadabdbc4 100644
--- a/api/Word.xlerrorbarinclude.md
+++ b/api/Word.xlerrorbarinclude.md
@@ -12,7 +12,7 @@ Specifies which error-bar parts to include.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlErrorBarIncludeBoth**|1|Both the positive and negative error range.|
| **xlErrorBarIncludeMinusValues**|3|Only the negative error range.|
diff --git a/api/Word.xlerrorbartype.md b/api/Word.xlerrorbartype.md
index eda5a702bc7..4cec7ab8a98 100644
--- a/api/Word.xlerrorbartype.md
+++ b/api/Word.xlerrorbartype.md
@@ -12,7 +12,7 @@ Specifies the range marked by error bars.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlErrorBarTypeCustom**|-4114|The range is set by fixed values or cell values.|
| **xlErrorBarTypeFixedValue**|1|Fixed-length error bars.|
diff --git a/api/Word.xlhalign.md b/api/Word.xlhalign.md
index dc4e4b49218..9dac780e3c4 100644
--- a/api/Word.xlhalign.md
+++ b/api/Word.xlhalign.md
@@ -12,7 +12,7 @@ Specifies the horizontal alignment for the object.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlHAlignCenter**|-4108|Center.|
| **xlHAlignCenterAcrossSelection**|7|Center across selection.|
diff --git a/api/Word.xllegendposition.md b/api/Word.xllegendposition.md
index 98ab03ee4d3..752ccbc464f 100644
--- a/api/Word.xllegendposition.md
+++ b/api/Word.xllegendposition.md
@@ -12,7 +12,7 @@ Specifies the position of the legend on a chart.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlLegendPositionBottom**|-4107|Below the chart.|
| **xlLegendPositionCorner**|2|In the upper-right corner of the chart border.|
diff --git a/api/Word.xllinestyle.md b/api/Word.xllinestyle.md
index b6631c0b8a5..0da9d6741f8 100644
--- a/api/Word.xllinestyle.md
+++ b/api/Word.xllinestyle.md
@@ -12,7 +12,7 @@ Specifies the line style for the border.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlContinuous**|1|A continuous line.|
| **xlDash**|-4115|A dashed line.|
diff --git a/api/Word.xlmarkerstyle.md b/api/Word.xlmarkerstyle.md
index d0366493262..37f732e531c 100644
--- a/api/Word.xlmarkerstyle.md
+++ b/api/Word.xlmarkerstyle.md
@@ -12,7 +12,7 @@ Specifies the marker style for a point or series in a line chart, scatter chart,
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlMarkerStyleAutomatic**|-4105|Automatic markers.|
| **xlMarkerStyleCircle**|8|Circular markers.|
diff --git a/api/Word.xlorientation.md b/api/Word.xlorientation.md
index 50d443391e6..e54a80d9d12 100644
--- a/api/Word.xlorientation.md
+++ b/api/Word.xlorientation.md
@@ -12,7 +12,7 @@ Specifies the text orientation.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlDownward**|-4170|Text runs downward.|
| **xlHorizontal**|-4128|Text runs horizontally.|
diff --git a/api/Word.xlparentdatalabeloptions.md b/api/Word.xlparentdatalabeloptions.md
index e30d9689272..368e425c64b 100644
--- a/api/Word.xlparentdatalabeloptions.md
+++ b/api/Word.xlparentdatalabeloptions.md
@@ -15,7 +15,7 @@ Constants passed to and returned by the **Series.ParentDataLabelOption** proper
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlParentDataLabelOptionsNone**|0|No parent labels are shown.|
| **xlParentDataLabelOptionsBanner**|1|The parent label layout is a banner above the category.|
diff --git a/api/Word.xlpattern.md b/api/Word.xlpattern.md
index 82e92b2776b..81c50f4d5a1 100644
--- a/api/Word.xlpattern.md
+++ b/api/Word.xlpattern.md
@@ -12,7 +12,7 @@ Specifies the interior pattern of a chart or interior object.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlPatternAutomatic**|-4105|Word controls the pattern.|
| **xlPatternChecker**|9|A checkerboard.|
diff --git a/api/Word.xlpictureappearance.md b/api/Word.xlpictureappearance.md
index c7e70e06066..64cc4a6d89c 100644
--- a/api/Word.xlpictureappearance.md
+++ b/api/Word.xlpictureappearance.md
@@ -12,7 +12,7 @@ Specifies how the picture should be copied.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlPrinter**|2|The picture is copied as it will look when it is printed.|
| **xlScreen**|1|The picture is copied to resemble its display on the screen as closely as possible.|
diff --git a/api/Word.xlpiesliceindex.md b/api/Word.xlpiesliceindex.md
index c37e574f8c6..c8680aad09d 100644
--- a/api/Word.xlpiesliceindex.md
+++ b/api/Word.xlpiesliceindex.md
@@ -12,7 +12,7 @@ Specifies which position on the slice to return the coordinate of.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlCenterPoint**|5|The center point of a pie slice.|
| **xlInnerCenterPoint**|8|The innermost center point of a doughnut slice.|
diff --git a/api/Word.xlpieslicelocation.md b/api/Word.xlpieslicelocation.md
index 228c1e4597f..de9816a12ef 100644
--- a/api/Word.xlpieslicelocation.md
+++ b/api/Word.xlpieslicelocation.md
@@ -12,7 +12,7 @@ Specifies which position on the slice to return the coordinate of.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlCenterPoint**|5|The center point of a pie slice.|
| **xlInnerCenterPoint**|8|The innermost center point of a doughnut slice.|
diff --git a/api/Word.xlpivotfieldorientation.md b/api/Word.xlpivotfieldorientation.md
index f2ca2ea885c..312872f09ed 100644
--- a/api/Word.xlpivotfieldorientation.md
+++ b/api/Word.xlpivotfieldorientation.md
@@ -12,7 +12,7 @@ Specifies the location of the field in a PivotTable report.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlColumnField**|2|A column field.|
| **xlDataField**|4|A data field.|
diff --git a/api/Word.xlrgbcolor.md b/api/Word.xlrgbcolor.md
index d6453d76b3d..75c0cca212d 100644
--- a/api/Word.xlrgbcolor.md
+++ b/api/Word.xlrgbcolor.md
@@ -12,7 +12,7 @@ Specifies the RGB color.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlAliceBlue**|16775408|Alice Blue|
| **xlAntiqueWhite**|14150650|Antique White|
diff --git a/api/Word.xlrowcol.md b/api/Word.xlrowcol.md
index e0241d8962b..62c6eb31cf5 100644
--- a/api/Word.xlrowcol.md
+++ b/api/Word.xlrowcol.md
@@ -12,7 +12,7 @@ Specifies whether the values that correspond to a particular data series are in
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlColumns**|2|The data series is in a row.|
| **xlRows**|1|The data series is in a column.|
diff --git a/api/Word.xlscaletype.md b/api/Word.xlscaletype.md
index 8df95460e81..eb0144328fa 100644
--- a/api/Word.xlscaletype.md
+++ b/api/Word.xlscaletype.md
@@ -12,7 +12,7 @@ Specifies the scale type of the value axis.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlScaleLinear**|-4132|A linear scale.|
| **xlScaleLogarithmic**|-4133|A logarithmic scale.|
diff --git a/api/Word.xlseriesnamelevel.md b/api/Word.xlseriesnamelevel.md
index 8e7f7c9e1b4..38bd7327c34 100644
--- a/api/Word.xlseriesnamelevel.md
+++ b/api/Word.xlseriesnamelevel.md
@@ -15,7 +15,7 @@ Series-name-level constants passed to and returned by the [Chart.SeriesNameLevel
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlSeriesNameLevelAll**|-1|Sets series names to all series name levels within range on the chart. The default.|
| **xlSeriesNameLevelCustom**|-2|Indicates literal data in the series names.|
diff --git a/api/Word.xlsizerepresents.md b/api/Word.xlsizerepresents.md
index 6d4e2c9ac4e..f38983ef47e 100644
--- a/api/Word.xlsizerepresents.md
+++ b/api/Word.xlsizerepresents.md
@@ -12,7 +12,7 @@ Specifies what the bubble size represents on a bubble chart.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlSizeIsArea**|1|The area of the bubble.|
| **xlSizeIsWidth**|2|The width of the bubble.|
diff --git a/api/Word.xlticklabelorientation.md b/api/Word.xlticklabelorientation.md
index 1e08f1c1de1..755bf7b4705 100644
--- a/api/Word.xlticklabelorientation.md
+++ b/api/Word.xlticklabelorientation.md
@@ -12,7 +12,7 @@ Specifies the text orientation for tick-mark labels.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlTickLabelOrientationAutomatic**|-4105|The text orientation is set by Microsoft Word.|
| **xlTickLabelOrientationDownward**|-4170|The text runs downward.|
diff --git a/api/Word.xlticklabelposition.md b/api/Word.xlticklabelposition.md
index 25209b05063..50598dc2c84 100644
--- a/api/Word.xlticklabelposition.md
+++ b/api/Word.xlticklabelposition.md
@@ -12,7 +12,7 @@ Specifies the position of tick-mark labels on the specified axis.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlTickLabelPositionHigh**|-4127|The top or right side of the chart.|
| **xlTickLabelPositionLow**|-4134|The bottom or left side of the chart.|
diff --git a/api/Word.xltickmark.md b/api/Word.xltickmark.md
index 51995fbc16c..3f4bf738d44 100644
--- a/api/Word.xltickmark.md
+++ b/api/Word.xltickmark.md
@@ -12,7 +12,7 @@ Specifies the position of major and minor tick marks for an axis.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlTickMarkCross**|4|Crosses the axis.|
| **xlTickMarkInside**|2|Inside the axis.|
diff --git a/api/Word.xltimeunit.md b/api/Word.xltimeunit.md
index 707022bec44..7ee20cfd281 100644
--- a/api/Word.xltimeunit.md
+++ b/api/Word.xltimeunit.md
@@ -12,7 +12,7 @@ Specifies the unit of time for chart axes and data series.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlDays**|0|Days|
| **xlMonths**|1|Months|
diff --git a/api/Word.xltrendlinetype.md b/api/Word.xltrendlinetype.md
index 495a7739c6e..fd7d8e982b3 100644
--- a/api/Word.xltrendlinetype.md
+++ b/api/Word.xltrendlinetype.md
@@ -12,7 +12,7 @@ Specifies how the trendline that smoothes out fluctuations in the data is calcul
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlExponential**|5|Uses an equation to calculate the least squares fit through points (for example, y=ab^x) .|
| **xlLinear**|-4132|Uses the linear equation y = mx + b to calculate the least squares fit through points.|
diff --git a/api/Word.xlunderlinestyle.md b/api/Word.xlunderlinestyle.md
index ae8a5e3ac69..9e2dcf9346c 100644
--- a/api/Word.xlunderlinestyle.md
+++ b/api/Word.xlunderlinestyle.md
@@ -12,7 +12,7 @@ Specifies the type of underline that is applied to a font.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlUnderlineStyleDouble**|-4119|Double thick underline.|
| **xlUnderlineStyleDoubleAccounting**|5|Two thin underlines placed close together.|
diff --git a/api/Word.xlvalign.md b/api/Word.xlvalign.md
index 9d9d3eef2b2..65bba9381e4 100644
--- a/api/Word.xlvalign.md
+++ b/api/Word.xlvalign.md
@@ -12,7 +12,7 @@ Specifies the vertical alignment for the object.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
| **xlVAlignBottom**|-4107|Bottom alignment.|
| **xlVAlignCenter**|-4108|Center alignment.|
diff --git a/api/Word.xmlnamespaces.add.md b/api/Word.xmlnamespaces.add.md
index 433b5addfcd..0ba7e096ac3 100644
--- a/api/Word.xmlnamespaces.add.md
+++ b/api/Word.xmlnamespaces.add.md
@@ -25,14 +25,14 @@ ms.date: 06/08/2017
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Path_|Required| **String**|The path and file name of the schema. This may be a local file path, a network path, or an Internet address.|
| _NamespaceURI_|Optional| **String**|The namespace Uniform Resource Indicator as specified in the schema. The NamespaceURI parameter is case-sensitive and must be spelled exactly as specified in schema.|
| _Alias_|Optional| **String**|The name of the schema as it appears on the **Schemas** tab in the **Templates and Add-ins** dialog box.|
| _InstallForAllUsers_|Optional| **Boolean**| **True** if all users that log on to a computer can access and use the new schema. The default is **False** .|
-### Return Value
+### Return value
XMLNamespace
diff --git a/api/Word.xmlnamespaces.installmanifest.md b/api/Word.xmlnamespaces.installmanifest.md
index 4b34afaaf23..b5903a6da4c 100644
--- a/api/Word.xmlnamespaces.installmanifest.md
+++ b/api/Word.xmlnamespaces.installmanifest.md
@@ -25,7 +25,7 @@ Installs the specified XML expansion pack on the user's computer, making an XML
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Path_|Required| **String**|The path and file name of the XML expansion pack.|
| _InstallForAllUsers_|Optional| **Boolean**| **True** installs the XML expansion pack and makes it available to all users on a computer. **False** makes the XML expansion pack available for the current user only. Default is **False** .|
diff --git a/api/Word.xmlnamespaces.item.md b/api/Word.xmlnamespaces.item.md
index aeed85f98f7..5666ee4a260 100644
--- a/api/Word.xmlnamespaces.item.md
+++ b/api/Word.xmlnamespaces.item.md
@@ -25,11 +25,11 @@ Returns an individual **XMLNamespace** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
XMLNamespace
diff --git a/api/Word.xsltransforms.add.md b/api/Word.xsltransforms.add.md
index 4b094a1062d..2c735339925 100644
--- a/api/Word.xsltransforms.add.md
+++ b/api/Word.xsltransforms.add.md
@@ -25,13 +25,13 @@ Returns an **XSLTransform** object that represents an Extensible Stylesheet Lan
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Location_|Required| **String**|The path and file name of the XSLT. This may be a local file path, a network path, or an Internet address.|
| _Alias_|Optional| **String**|The name of the XSLT as it appears in the Schema Library.|
| _InstallForAllUsers_|Optional| **Boolean**| **True** if all users that log on to a computer can access and use the new schema. The default is **False** .|
-### Return Value
+### Return value
XSLTransform
diff --git a/api/Word.xsltransforms.item.md b/api/Word.xsltransforms.item.md
index bb2f9f0d864..9115553421b 100644
--- a/api/Word.xsltransforms.item.md
+++ b/api/Word.xsltransforms.item.md
@@ -25,11 +25,11 @@ Returns an **XSLTransform** object in a collection.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required| **Variant**|The individual object to be returned. Can be a **Long** indicating the ordinal position or a **String** representing the name of the individual object.|
-### Return Value
+### Return value
XSLTransform
diff --git a/api/overview/Library-Reference/msobroadcastcapabilities-enumeration-office.md b/api/overview/Library-Reference/msobroadcastcapabilities-enumeration-office.md
index 65e58a274ff..f5f387c062c 100644
--- a/api/overview/Library-Reference/msobroadcastcapabilities-enumeration-office.md
+++ b/api/overview/Library-Reference/msobroadcastcapabilities-enumeration-office.md
@@ -15,7 +15,7 @@ Specifies the application capabilities available for a document or presentation
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**BroadcastCapFileSizeLimited**|**1**|The size of the file being broadcasted is limited.|
|**BroadcastCapSupportsMeetingNotes**|**2**|The presenters and attendees can take shared notes.|
diff --git a/api/overview/Library-Reference/msobroadcaststate-enumeration-office.md b/api/overview/Library-Reference/msobroadcaststate-enumeration-office.md
index 2e1faeecc34..b50a2cfbc12 100644
--- a/api/overview/Library-Reference/msobroadcaststate-enumeration-office.md
+++ b/api/overview/Library-Reference/msobroadcaststate-enumeration-office.md
@@ -15,7 +15,7 @@ Specifies the current state of a document or presentation broadcast.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**BroadcastPaused**|**2**|The broadcast is paused.|
|**BroadcastStarted**|**1**|The broadcast has been started.|
diff --git a/api/overview/Library-Reference/msochartfieldtype-enumeration-office.md b/api/overview/Library-Reference/msochartfieldtype-enumeration-office.md
index 430f03c24bc..07ef4a3f7c2 100644
--- a/api/overview/Library-Reference/msochartfieldtype-enumeration-office.md
+++ b/api/overview/Library-Reference/msochartfieldtype-enumeration-office.md
@@ -15,7 +15,7 @@ Specifies the type of data field to be inserted into a data label in a chart.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**msoChartFieldBubbleSize**|**1**|Specifies the Bubble size of the data point.|
|**msoChartFieldCategoryName**|**2**|Specifies the category name size of the data point.|
diff --git a/api/overview/Library-Reference/msoiodgroup-enumeration-office.md b/api/overview/Library-Reference/msoiodgroup-enumeration-office.md
index 25ccec758a5..01d75af060f 100644
--- a/api/overview/Library-Reference/msoiodgroup-enumeration-office.md
+++ b/api/overview/Library-Reference/msoiodgroup-enumeration-office.md
@@ -15,7 +15,7 @@ Specifies constants that define the IOD (install on demand) groups.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**msoIodGroupPIAs**|0|PIAs group.|
|**msoIodGroupVSTOR35Mgd**|1|VSTO 3.5 managed group.|
diff --git a/api/overview/Library-Reference/msolinecapstyle-enumeration-office.md b/api/overview/Library-Reference/msolinecapstyle-enumeration-office.md
index a3def2f3a03..9bb1395b84f 100644
--- a/api/overview/Library-Reference/msolinecapstyle-enumeration-office.md
+++ b/api/overview/Library-Reference/msolinecapstyle-enumeration-office.md
@@ -15,7 +15,7 @@ Specifies the type of line cap.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**msoLineCapFlat**|**3**|Specifies a flat line cap.|
|**msoLineCapMixed**|**-2**|Specifies a mixture of line caps.|
diff --git a/api/overview/Library-Reference/msolinefilltype-enumeration-office.md b/api/overview/Library-Reference/msolinefilltype-enumeration-office.md
index 093fe16ad45..b38817f7cfe 100644
--- a/api/overview/Library-Reference/msolinefilltype-enumeration-office.md
+++ b/api/overview/Library-Reference/msolinefilltype-enumeration-office.md
@@ -15,7 +15,7 @@ Specifies the type of fill for a line.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**msoLineFillBackground**|**5**|Specifies the same fill as the background|
|**msoLineFillGradient**|**3**|Specifies a gradient line fill.|
diff --git a/api/overview/Library-Reference/msolinejoinstyle-enumeration-office.md b/api/overview/Library-Reference/msolinejoinstyle-enumeration-office.md
index 07c41cc27e6..c5aa98cf9ca 100644
--- a/api/overview/Library-Reference/msolinejoinstyle-enumeration-office.md
+++ b/api/overview/Library-Reference/msolinejoinstyle-enumeration-office.md
@@ -15,7 +15,7 @@ Specifies the type of join where two lines connect.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**msoLineJoinBevel**|**2**|Specifies a beveled join.|
|**msoLineJoinMiter**|**3**|Specifies a mitered join.|
diff --git a/api/overview/Library-Reference/msomergecmd-enumeration-office.md b/api/overview/Library-Reference/msomergecmd-enumeration-office.md
index 899b6cbf3e3..2d6ae6d578e 100644
--- a/api/overview/Library-Reference/msomergecmd-enumeration-office.md
+++ b/api/overview/Library-Reference/msomergecmd-enumeration-office.md
@@ -15,7 +15,7 @@ Specifies the output of a merge shapes operation.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**msoMergeCombine**|**2**|Creates a new shape from selected shapes. If the selected shapes overlap, the area where they overlap is cut out, or discarded. |
|**msoMergeFragment**|**5**|Breaks a shape into smaller parts or create new shapes from intersecting lines or from shapes that overlap.|
diff --git a/api/overview/Library-Reference/msopicturecompress-enumeration-office.md b/api/overview/Library-Reference/msopicturecompress-enumeration-office.md
index 9a24c4a34f2..8031587dbf6 100644
--- a/api/overview/Library-Reference/msopicturecompress-enumeration-office.md
+++ b/api/overview/Library-Reference/msopicturecompress-enumeration-office.md
@@ -12,7 +12,7 @@ Specifies whether a picture will be compressed or not when inserted into a file.
-|**Name**|**Value**|**Description**|
+|Name|Value|Description|
|:-----|:-----|:-----|
|**msoPictureCompressDocDefault**|-1|The picture is compressed or not depending on the settings for the document.|
|**msoPictureCompressFalse**|0|The picture is not compressed.|
diff --git a/api/overview/Library-Reference/workflowtemplate-item-property-office.md b/api/overview/Library-Reference/workflowtemplate-item-property-office.md
index 52039ccca06..ff1103a2001 100644
--- a/api/overview/Library-Reference/workflowtemplate-item-property-office.md
+++ b/api/overview/Library-Reference/workflowtemplate-item-property-office.md
@@ -25,11 +25,11 @@ Gets a **WorkflowTemplate** object from the **WorkflowTemplates** collection. Re
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
| _Index_|Required|**Long**|The index number of the **WorkflowTemplate** object to be returned.|
-### Return Value
+### Return value
WorkflowTemplate
diff --git a/outlook/Concepts/Outlook-Controls/move-method-outlook-controls.md b/outlook/Concepts/Outlook-Controls/move-method-outlook-controls.md
index 0e95c957110..7c29ccf488c 100644
--- a/outlook/Concepts/Outlook-Controls/move-method-outlook-controls.md
+++ b/outlook/Concepts/Outlook-Controls/move-method-outlook-controls.md
@@ -25,7 +25,7 @@ Moves a control to the specified location.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|Left|Optional| **Variant**|Single-precision value, in points, indicating the horizontal coordinate for the left edge of the object.|
|Top|Optional| **Variant**|Single-precision value, in points, that specifies the vertical coordinate for the top edge of the object.|
diff --git a/outlook/Concepts/Outlook-Controls/zorder-method-outlook-controls.md b/outlook/Concepts/Outlook-Controls/zorder-method-outlook-controls.md
index b9b8f37f339..58fe6e04552 100644
--- a/outlook/Concepts/Outlook-Controls/zorder-method-outlook-controls.md
+++ b/outlook/Concepts/Outlook-Controls/zorder-method-outlook-controls.md
@@ -25,7 +25,7 @@ Places the object at the front or back of the z-order.
-|**Name**|**Required/Optional**|**Data Type**|**Description**|
+|Name|Required/Optional|Data type|Description|
|:-----|:-----|:-----|:-----|
|zPosition|Optional| **Variant**|A control's position, front or back, in the container's z-order.|
From c22924e95eb95fdf0cab02b0a85d5b3dfe1dba57 Mon Sep 17 00:00:00 2001
From: Maira Wenzel **Important** By default, if no value is specified for this parameter, Word enters a value of 0, which specifies that the current compatibility mode of the document should be retained.
```sql
SELECT Avg(UnitPrice * Discount) AS [Average Discount] FROM [Order Details];
-
-
```
## See also
diff --git a/access/Concepts/Miscellaneous/calling-the-windows-api-differences-in-string-function-operations.md b/access/Concepts/Miscellaneous/calling-the-windows-api-differences-in-string-function-operations.md
index a5448e720a5..1d4f87e0304 100644
--- a/access/Concepts/Miscellaneous/calling-the-windows-api-differences-in-string-function-operations.md
+++ b/access/Concepts/Miscellaneous/calling-the-windows-api-differences-in-string-function-operations.md
@@ -11,7 +11,7 @@ ms.date: 06/08/2017
**Applies to:** Access 2013 | Access 2016
-The memory storage formats for text differ between Visual Basic for Applications (VBA) code and Access Basic code. (Access Basic was used in early versions of Microsoft Access.) Text is stored in ANSI format within Access Basic code and in Unicode format in Visual Basic. This topic discusses one potential issue when handling strings in the current version of Microsoft Access. For more information, see [Differences in String Function Operations](http://msdn.microsoft.com/library/40ce2b9a-cac6-589e-2b5e-d63be37efeee%28Office.15%29.aspx).
+The memory storage formats for text differ between Visual Basic for Applications (VBA) code and Access Basic code. (Access Basic was used in early versions of Microsoft Access.) Text is stored in ANSI format within Access Basic code and in Unicode format in Visual Basic. This topic discusses one potential issue when handling strings in the current version of Microsoft Access. For more information, see [Differences in String Function Operations](https://msdn.microsoft.com/library/40ce2b9a-cac6-589e-2b5e-d63be37efeee%28Office.15%29.aspx).
In several Windows API functions, the byte length of a string has a special meaning. For example, the following program returns a folder set up in Windows. In Microsoft Access, **LeftB** (Buffer, ret) does not return the correct string. This is because, in spite of the fact that it shows the byte length of an ANSI string, the **LeftB** function processes Unicode strings. In this case, use the **InStr** function so that only the character string, without nulls, is returned.
diff --git a/access/Concepts/Miscellaneous/cancel-method-example-vbscript.md b/access/Concepts/Miscellaneous/cancel-method-example-vbscript.md
index 38bb381efea..bce898f7d72 100644
--- a/access/Concepts/Miscellaneous/cancel-method-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/cancel-method-example-vbscript.md
@@ -11,7 +11,7 @@ ms.date: 06/08/2017
**Applies to:** Access 2013 | Access 2016
-The following example shows how to read the [Cancel](http://msdn.microsoft.com/library/747edc04-a5cc-3631-2d0b-82e7e41a76b7%28Office.15%29.aspx) method at run time. Cut and paste the following code to Notepad or another text editor and save it as **CancelVBS.asp**. You can view the result in any client browser.
+The following example shows how to read the [Cancel](https://msdn.microsoft.com/library/747edc04-a5cc-3631-2d0b-82e7e41a76b7%28Office.15%29.aspx) method at run time. Cut and paste the following code to Notepad or another text editor and save it as **CancelVBS.asp**. You can view the result in any client browser.
```vb
diff --git a/access/Concepts/Miscellaneous/cannot-open-a-database-created-with-a-previous-version-of-your-applicationerror.md b/access/Concepts/Miscellaneous/cannot-open-a-database-created-with-a-previous-version-of-your-applicationerror.md
index f696b62657d..3a678259406 100644
--- a/access/Concepts/Miscellaneous/cannot-open-a-database-created-with-a-previous-version-of-your-applicationerror.md
+++ b/access/Concepts/Miscellaneous/cannot-open-a-database-created-with-a-previous-version-of-your-applicationerror.md
@@ -19,9 +19,9 @@ You tried to access a database that is in an outdated format. Compact the databa
For information about how to compact and repair Access databases, see the following:
-- [Application.CompactRepair method (Access)](http://msdn.microsoft.com/library/4820fd79-d907-21bc-0ad5-5fc096c1ef3b%28Office.15%29.aspx)
+- [Application.CompactRepair method (Access)](https://msdn.microsoft.com/library/4820fd79-d907-21bc-0ad5-5fc096c1ef3b%28Office.15%29.aspx)
-- [Compact and Repair a Database](http://msdn.microsoft.com/library/5ad4e6b1-abfd-3f89-5c80-9e41397a96e8%28Office.15%29.aspx)
+- [Compact and Repair a Database](https://msdn.microsoft.com/library/5ad4e6b1-abfd-3f89-5c80-9e41397a96e8%28Office.15%29.aspx)
## See also
diff --git a/access/Concepts/Miscellaneous/collections-ado-for-visual-c-plus-plus-syntax.md b/access/Concepts/Miscellaneous/collections-ado-for-visual-c-plus-plus-syntax.md
index 41713a6b008..5e9d4ad681a 100644
--- a/access/Concepts/Miscellaneous/collections-ado-for-visual-c-plus-plus-syntax.md
+++ b/access/Concepts/Miscellaneous/collections-ado-for-visual-c-plus-plus-syntax.md
@@ -1,63 +1,74 @@
---
-title: Collections (ADO for Visual C++ Syntax)
+title: Collections (ADO for Visual C++ syntax)
ms.prod: access
ms.assetid: 3f5897d9-e618-7582-bb60-95f690c64cbb
-ms.date: 06/08/2017
+ms.date: 10/12/2018
---
-# Collections (ADO for Visual C++ Syntax)
-
-
+# Collections (ADO for Visual C++ syntax)
**Applies to:** Access 2013 | Access 2016
- **In this article**
-[Fields](#sectionSection0)
-[Errors](#sectionSection1)
-[Properties](#sectionSection2)
+## Parameters
+
+### Methods
+
+[Append](https://msdn.microsoft.com/library/cca133af-2b95-877d-0488-0d99631623f2%28Office.15%29.aspx)(IDispatch * _Object_ )
+
+[Delete](https://msdn.microsoft.com/library/03ffc24d-fea2-30fa-c8e9-43eb524fd51f%28Office.15%29.aspx)(VARIANT _Index_ )
+
+[Refresh](https://msdn.microsoft.com/library/f1c8829f-9c7d-12b6-7470-727ff38d663e%28Office.15%29.aspx)(void)
+
+### Properties
+[get_Count](https://msdn.microsoft.com/library/b59f9581-ffd1-471d-44fa-3c1bb812e140%28Office.15%29.aspx)(long * _c_ )
- **Parameters**
- **Methods**
-[Append](http://msdn.microsoft.com/library/cca133af-2b95-877d-0488-0d99631623f2%28Office.15%29.aspx)(IDispatch * _Object_ ) [Delete](http://msdn.microsoft.com/library/03ffc24d-fea2-30fa-c8e9-43eb524fd51f%28Office.15%29.aspx)(VARIANT _Index_ ) [Refresh](http://msdn.microsoft.com/library/f1c8829f-9c7d-12b6-7470-727ff38d663e%28Office.15%29.aspx)(void)
- **Properties**
-[get_Count](http://msdn.microsoft.com/library/b59f9581-ffd1-471d-44fa-3c1bb812e140%28Office.15%29.aspx)(long * _c_ ) [get_Item](http://msdn.microsoft.com/library/793c305f-0e5b-a529-e21f-b7ab0843ed49%28Office.15%29.aspx)(VARIANT _Index,_ _ADOParameter ** _ppvObject_ )
+[get_Item](https://msdn.microsoft.com/library/793c305f-0e5b-a529-e21f-b7ab0843ed49%28Office.15%29.aspx)(VARIANT _Index,_ _ADOParameter ** _ppvObject_ )
## Fields
-
- **Methods**
+### Methods
-[Append](http://msdn.microsoft.com/library/cca133af-2b95-877d-0488-0d99631623f2%28Office.15%29.aspx)(BSTR _bstrName,_ DataTypeEnum _Type,_ long _DefinedSize,_ FieldAttributeEnum _Attrib_ ) [Delete](http://msdn.microsoft.com/library/adc66365-703f-4491-fc5b-dbc9bca2ac53%28Office.15%29.aspx)(VARIANT _Index_ ) [Refresh](http://msdn.microsoft.com/library/f1c8829f-9c7d-12b6-7470-727ff38d663e%28Office.15%29.aspx)(void)
+[Append](https://msdn.microsoft.com/library/cca133af-2b95-877d-0488-0d99631623f2%28Office.15%29.aspx)(BSTR _bstrName,_ DataTypeEnum _Type,_ long _DefinedSize,_ FieldAttributeEnum _Attrib_ )
- **Properties**
+[Delete](https://msdn.microsoft.com/library/adc66365-703f-4491-fc5b-dbc9bca2ac53%28Office.15%29.aspx)(VARIANT _Index_ )
-[get_Count](http://msdn.microsoft.com/library/b59f9581-ffd1-471d-44fa-3c1bb812e140%28Office.15%29.aspx)(long * _c_ ) [get_Item](http://msdn.microsoft.com/library/793c305f-0e5b-a529-e21f-b7ab0843ed49%28Office.15%29.aspx)(VARIANT _Index,_ ADOField ** _ppvObject_ )
+[Refresh](https://msdn.microsoft.com/library/f1c8829f-9c7d-12b6-7470-727ff38d663e%28Office.15%29.aspx)(void)
+
+### Properties
+
+[get_Count](https://msdn.microsoft.com/library/b59f9581-ffd1-471d-44fa-3c1bb812e140%28Office.15%29.aspx)(long * _c_ )
+
+[get_Item](https://msdn.microsoft.com/library/793c305f-0e5b-a529-e21f-b7ab0843ed49%28Office.15%29.aspx)(VARIANT _Index,_ ADOField ** _ppvObject_ )
## Errors
-
- **Methods**
+### Methods
-[Clear](http://msdn.microsoft.com/library/5d51f42c-147b-1fcf-d05b-123e5714ecb7%28Office.15%29.aspx)(void) [Refresh](http://msdn.microsoft.com/library/f1c8829f-9c7d-12b6-7470-727ff38d663e%28Office.15%29.aspx)(void)
+[Clear](https://msdn.microsoft.com/library/5d51f42c-147b-1fcf-d05b-123e5714ecb7%28Office.15%29.aspx)(void)
- **Properties**
+[Refresh](https://msdn.microsoft.com/library/f1c8829f-9c7d-12b6-7470-727ff38d663e%28Office.15%29.aspx)(void)
-[get_Count](http://msdn.microsoft.com/library/b59f9581-ffd1-471d-44fa-3c1bb812e140%28Office.15%29.aspx)(long * _c_ ) [get_Item](http://msdn.microsoft.com/library/793c305f-0e5b-a529-e21f-b7ab0843ed49%28Office.15%29.aspx)(VARIANT _Index,_ ADOError ** _ppvObject_ )
+### Properties
+
+[get_Count](https://msdn.microsoft.com/library/b59f9581-ffd1-471d-44fa-3c1bb812e140%28Office.15%29.aspx)(long * _c_ )
+
+[get_Item](https://msdn.microsoft.com/library/793c305f-0e5b-a529-e21f-b7ab0843ed49%28Office.15%29.aspx)(VARIANT _Index,_ ADOError ** _ppvObject_ )
## Properties
-
- **Methods**
+### Methods
+
+[Refresh](https://msdn.microsoft.com/library/f1c8829f-9c7d-12b6-7470-727ff38d663e%28Office.15%29.aspx)(void)
-[Refresh](http://msdn.microsoft.com/library/f1c8829f-9c7d-12b6-7470-727ff38d663e%28Office.15%29.aspx)(void)
+### Properties
- **Properties**
+[get_Count](https://msdn.microsoft.com/library/b59f9581-ffd1-471d-44fa-3c1bb812e140%28Office.15%29.aspx)(long * _c_ )
-[get_Count](http://msdn.microsoft.com/library/b59f9581-ffd1-471d-44fa-3c1bb812e140%28Office.15%29.aspx)(long * _c_ ) [get_Item](http://msdn.microsoft.com/library/793c305f-0e5b-a529-e21f-b7ab0843ed49%28Office.15%29.aspx)(VARIANT _Index_, ADOProperty ** _ppvObject_ )
+[get_Item](https://msdn.microsoft.com/library/793c305f-0e5b-a529-e21f-b7ab0843ed49%28Office.15%29.aspx)(VARIANT _Index_, ADOProperty ** _ppvObject_ )
## See also
diff --git a/access/Concepts/Miscellaneous/collections-ado-wfc-syntax.md b/access/Concepts/Miscellaneous/collections-ado-wfc-syntax.md
index 9efff786c13..bb58b995fec 100644
--- a/access/Concepts/Miscellaneous/collections-ado-wfc-syntax.md
+++ b/access/Concepts/Miscellaneous/collections-ado-wfc-syntax.md
@@ -2,7 +2,7 @@
title: Collections (ADO/WFC syntax)
ms.prod: access
ms.assetid: d854bab9-5439-ebe7-2f89-b290dcaa0342
-ms.date: 06/08/2017
+ms.date: 10/12/2018
---
diff --git a/access/Concepts/Miscellaneous/collections-visual-c-plus-plus-syntax-index-with-import.md b/access/Concepts/Miscellaneous/collections-visual-c-plus-plus-syntax-index-with-import.md
index 49761d8348b..07ba8a756bb 100644
--- a/access/Concepts/Miscellaneous/collections-visual-c-plus-plus-syntax-index-with-import.md
+++ b/access/Concepts/Miscellaneous/collections-visual-c-plus-plus-syntax-index-with-import.md
@@ -2,7 +2,7 @@
title: Collections (Visual C++ syntax index with import)
ms.prod: access
ms.assetid: 839b8c78-b6dc-ea2b-fe9c-305b8b47b4b9
-ms.date: 06/08/2017
+ms.date: 10/12/2018
---
diff --git a/access/Concepts/Miscellaneous/command-ado-for-visual-c-plus-plus-syntax.md b/access/Concepts/Miscellaneous/command-ado-for-visual-c-plus-plus-syntax.md
index 64d2a044b8a..329a8b67795 100644
--- a/access/Concepts/Miscellaneous/command-ado-for-visual-c-plus-plus-syntax.md
+++ b/access/Concepts/Miscellaneous/command-ado-for-visual-c-plus-plus-syntax.md
@@ -1,22 +1,40 @@
---
-title: Command (ADO for Visual C++ Syntax)
+title: Command (ADO for Visual C++ syntax)
ms.prod: access
ms.assetid: a397daf5-2bcd-6c1a-3fb6-667c1309d0e3
-ms.date: 06/08/2017
+ms.date: 10/12/2018
---
-# Command (ADO for Visual C++ Syntax)
-
-
+# Command (ADO for Visual C++ syntax)
**Applies to:** Access 2013 | Access 2016
- **Methods**
+## Methods
+
+[Cancel](https://docs.microsoft.com/office/client-developer/access/desktop-database-reference/cancel-method-ado)(void)
+
+[CreateParameter](https://msdn.microsoft.com/library/cf080a0b-75d2-dcdf-2715-10af147358e9%28Office.15%29.aspx)(BSTR _Name,_ DataTypeEnum _Type,_ ParameterDirectionEnum _Direction,_ long _Size,_ VARIANT _Value,_ _ADOParameter ** _ppiprm_ )
+
+[Execute](execute-method-ado-command.md)(VARIANT * _RecordsAffected,_ VARIANT * _Parameters,_ long _Options,_ _ADORecordset ** _ppirs_ )
+
+## Properties
+
+[get_ActiveConnection](https://msdn.microsoft.com/library/5501b2d7-b62c-5fff-1edd-2b7efb3f8c4a%28Office.15%29.aspx)(_ADOConnection ** _ppvObject_ ) **put_ActiveConnection** (VARIANT _vConn_ ) **putref_ActiveConnection** (_ADOConnection * _pCon_ )
+
+[get_CommandText](https://msdn.microsoft.com/library/0debec1c-068f-0aea-fce8-e61aa39c5907%28Office.15%29.aspx)(BSTR * _pbstr_ ) **put_CommandText** (BSTR _bstr_ )
+
+[get_CommandTimeout](https://msdn.microsoft.com/library/a0b6209c-9feb-08ae-002a-15d1d20734a8%28Office.15%29.aspx)(LONG * _pl_ ) **put_CommandTimeout** (LONG _Timeout_ )
+
+[get_CommandType](https://msdn.microsoft.com/library/c8d4fc1c-502b-11f3-af9d-605a03b6f056%28Office.15%29.aspx)(CommandTypeEnum * _plCmdType_ ) **put_CommandType** (CommandTypeEnum _lCmdType_ )
+
+[get_Name](https://msdn.microsoft.com/library/4b19bd08-ac3c-86f0-471d-06a37a0d4f89%28Office.15%29.aspx)(BSTR * _pbstrName_ ) **put_Name** (BSTR _bstrName_ )
+
+[get_Prepared](https://msdn.microsoft.com/library/33becda2-faab-5000-8904-6ffd8c5805f2%28Office.15%29.aspx)(VARIANT_BOOL * _pfPrepared_ ) **put_Prepared** (VARIANT_BOOL _fPrepared_ )
+
+[get_State](https://msdn.microsoft.com/library/ade0a50c-e2d8-23ac-4ea9-b012fedcd5db%28Office.15%29.aspx)(LONG * _plObjState_ )
-[Cancel](http://msdn.microsoft.com/library/747edc04-a5cc-3631-2d0b-82e7e41a76b7%28Office.15%29.aspx)(void) [CreateParameter](http://msdn.microsoft.com/library/cf080a0b-75d2-dcdf-2715-10af147358e9%28Office.15%29.aspx)(BSTR _Name,_ DataTypeEnum _Type,_ ParameterDirectionEnum _Direction,_ long _Size,_ VARIANT _Value,_ _ADOParameter ** _ppiprm_ ) [Execute](execute-method-ado-command.md)(VARIANT * _RecordsAffected,_ VARIANT * _Parameters,_ long _Options,_ _ADORecordset ** _ppirs_ )
- **Properties**
-[get_ActiveConnection](http://msdn.microsoft.com/library/5501b2d7-b62c-5fff-1edd-2b7efb3f8c4a%28Office.15%29.aspx)(_ADOConnection ** _ppvObject_ ) **put_ActiveConnection** (VARIANT _vConn_ ) **putref_ActiveConnection** (_ADOConnection * _pCon_ ) [get_CommandText](http://msdn.microsoft.com/library/0debec1c-068f-0aea-fce8-e61aa39c5907%28Office.15%29.aspx)(BSTR * _pbstr_ ) **put_CommandText** (BSTR _bstr_ ) [get_CommandTimeout](http://msdn.microsoft.com/library/a0b6209c-9feb-08ae-002a-15d1d20734a8%28Office.15%29.aspx)(LONG * _pl_ ) **put_CommandTimeout** (LONG _Timeout_ ) [get_CommandType](http://msdn.microsoft.com/library/c8d4fc1c-502b-11f3-af9d-605a03b6f056%28Office.15%29.aspx)(CommandTypeEnum * _plCmdType_ ) **put_CommandType** (CommandTypeEnum _lCmdType_ ) [get_Name](http://msdn.microsoft.com/library/4b19bd08-ac3c-86f0-471d-06a37a0d4f89%28Office.15%29.aspx)(BSTR * _pbstrName_ ) **put_Name** (BSTR _bstrName_ ) [get_Prepared](http://msdn.microsoft.com/library/33becda2-faab-5000-8904-6ffd8c5805f2%28Office.15%29.aspx)(VARIANT_BOOL * _pfPrepared_ ) **put_Prepared** (VARIANT_BOOL _fPrepared_ ) [get_State](http://msdn.microsoft.com/library/ade0a50c-e2d8-23ac-4ea9-b012fedcd5db%28Office.15%29.aspx)(LONG * _plObjState_ ) [get_Parameters](http://msdn.microsoft.com/library/554387c3-3572-5391-3b24-c7d3443844cd%28Office.15%29.aspx)(ADOParameters ** _ppvObject_ )
+[get_Parameters](https://msdn.microsoft.com/library/554387c3-3572-5391-3b24-c7d3443844cd%28Office.15%29.aspx)(ADOParameters ** _ppvObject_ )
## See also
diff --git a/access/Concepts/Miscellaneous/command-ado-wfc-syntax.md b/access/Concepts/Miscellaneous/command-ado-wfc-syntax.md
index 29c952e942d..bc42d1673d1 100644
--- a/access/Concepts/Miscellaneous/command-ado-wfc-syntax.md
+++ b/access/Concepts/Miscellaneous/command-ado-wfc-syntax.md
@@ -2,7 +2,7 @@
title: Command (ADO/WFC syntax)
ms.prod: access
ms.assetid: fd244794-8831-883a-7892-3ad04d732790
-ms.date: 06/08/2017
+ms.date: 10/12/2018
---
diff --git a/access/Concepts/Miscellaneous/command-visual-c-plus-plus-syntax-index-with-import.md b/access/Concepts/Miscellaneous/command-visual-c-plus-plus-syntax-index-with-import.md
index c29bdbd8d0b..7aab84707c2 100644
--- a/access/Concepts/Miscellaneous/command-visual-c-plus-plus-syntax-index-with-import.md
+++ b/access/Concepts/Miscellaneous/command-visual-c-plus-plus-syntax-index-with-import.md
@@ -2,7 +2,7 @@
title: Command (Visual C++ syntax index with import)
ms.prod: access
ms.assetid: 9c3763f1-6242-a69c-bc2a-9d885f2b122a
-ms.date: 06/08/2017
+ms.date: 10/12/2018
---
diff --git a/access/Concepts/Miscellaneous/connect-property-example-vbscript.md b/access/Concepts/Miscellaneous/connect-property-example-vbscript.md
index df9d8e12418..df1beca531a 100644
--- a/access/Concepts/Miscellaneous/connect-property-example-vbscript.md
+++ b/access/Concepts/Miscellaneous/connect-property-example-vbscript.md
@@ -11,7 +11,7 @@ ms.date: 06/08/2017
**Applies to:** Access 2013 | Access 2016
-This code shows how to set the [Connect](http://msdn.microsoft.com/library/11aa3284-18e9-6d2d-761b-c25090370b77%28Office.15%29.aspx) property at design time:
+This code shows how to set the [Connect](https://msdn.microsoft.com/library/11aa3284-18e9-6d2d-761b-c25090370b77%28Office.15%29.aspx) property at design time:
```vb